Rank: Newbie
Groups: Registered, Registered Users, Subscribers Joined: 12/29/2006(UTC) Posts: 3
|
Hi Team:
can you pl. help me with devising an alert for short entry which is based on Jeff Cooper Whoops Shorting strategy. It works as below:
- Stock is trading below 10 day and 50 day MA
- Previous day's close must be below the open
- Today's open must be at least 1/4th point above yesterday's close
- Sell short at 1/8th of a point below yesterday's close
so the alert watching intraday data TODAY should notify me with: a) symbol of ANY security satisfying conditions 1 through 4 on an intraday basis b) short entry point at which the condition 4 triggered).
Looks like this will require some form of interaction between Explorer and Expert Advisor which I dont know how to do. It will have to constantly look out for stocks on an intraday basis satisfying 1, 2 and 3 and then notify when 4 is achieved. Below code I found on the internet may not be accurate since it does not give intraday data connection that 3 and 4 require.
A:close B:C<Mov(C,10,S) AND C<Mov(C,50,S) AND O>Ref(C,-1)+.25 C:{Entry}Ref(C,-1)-.125 D:{Stop}Ref(C,-1)-.125+1 Filter:C<Mov(C,10,S) AND C<Mov(C,50,S) AND O>Ref(C,-1)+.25
thanks!
|
|
|
|
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.