logo
Welcome Guest! To enable all features please Login or Register.

Notification

Icon
Error

Options
Go to last post Go to first unread
mozillan  
#1 Posted : Thursday, March 1, 2007 10:03:55 AM(UTC)
mozillan

Rank: Member

Groups: Registered, Registered Users
Joined: 2/23/2007(UTC)
Posts: 26

Hello Friends!!

I want to analyse all securities that are being advised as "Buys" by the in-built Expert advisors. To be more precise, I want a list of all securities that Gil Raff's MarketSpace Timing System has advised as "Buy" during the last 10 weeks. Do I create an exploration? Thanks in advance for any advice.
Maxforce  
#2 Posted : Friday, March 2, 2007 10:02:28 AM(UTC)
Maxforce

Rank: Member

Groups: Registered, Registered Users
Joined: 7/22/2006(UTC)
Posts: 11
Location: Malaysia

Yes Exploration will do the job though, you may have a problem with the Buy signals for the last 10 weeks. I normally use explorations to filter each day.

Results will be stored in the Last Exploration folder. But thereafter, it gets overwritten each day. And I m not sure about backdating.

wabbit  
#3 Posted : Monday, March 5, 2007 8:53:04 AM(UTC)
wabbit

Rank: Advanced Member

Groups: Registered, Registered Users, Subscribers, Unverified Users
Joined: 10/28/2004(UTC)
Posts: 3,111
Location: Perth, Western Australia

Was thanked: 16 time(s) in 16 post(s)
mozillan,

To achieve your aim, place the code for the system in one of the exploration columns and amend it using the BarsSince() function to return the period elapsed since the signal was TRUE. You can then filter the results.

Maybe this will help:

{column A}
{Elapsed}
x:=((MACD()>Mov(MACD(),45,E) AND C>Mov(C,25,E))=TRUE) AND
(Ref(MACD()>Mov(MACD(),45,E) AND C>Mov(C,25,E),-1)=FALSE) AND
BarsSince(Ref(((MACD()>Mov(MACD(),45,E) AND C>Mov(C,25,E))=TRUE) AND
(Ref(MACD()>Mov(MACD(),45,E) AND C>Mov(C,25,E),-1)=FALSE),-1)) >=
BarsSince(Ref(Cross(0.9*Ref(C,-7),C),-1));
BarsSince(x);

{filter}
ColA>0 AND ColA<48


wabbit [:D]

P.S. I haven't checked the code for its accuaracy with the canned system. I found this code somewhere on the web a few days ago but have been too distracted by other projects to validate this code. I can see that it can be simplified considerably, but I will leave that up to you.

mozillan  
#4 Posted : Sunday, March 11, 2007 5:55:33 AM(UTC)
mozillan

Rank: Member

Groups: Registered, Registered Users
Joined: 2/23/2007(UTC)
Posts: 26

Thanks for the reply, Wabbit. However, it makes no reference to the Expert Advisor (Gil Raff). Will give it a try, though.
mozillan  
#5 Posted : Sunday, March 11, 2007 6:03:17 AM(UTC)
mozillan

Rank: Member

Groups: Registered, Registered Users
Joined: 2/23/2007(UTC)
Posts: 26

Dear Maxforce,

"Formula is password-protected or read-only" is the message I get from MS. How, then can I paste the formula and run the exploration?

Users browsing this topic
Guest (Hidden)
Forum Jump  
You cannot post new topics in this forum.
You cannot reply to topics in this forum.
You cannot delete your posts in this forum.
You cannot edit your posts in this forum.
You cannot create polls in this forum.
You cannot vote in polls in this forum.