Rank: Newbie
Groups: Registered, Registered Users, Subscribers Joined: 7/30/2013(UTC) Posts: 8
|
Hi could someone help me to write this exploration please I am nee and would like the formulae written for me. I live in AUS.
The stock must meet these parameters to buy: The XAO must be above a 24 EMA weekly The XAO must be above a 6 EMA weekly The 7 EMA is above the 12 EMA The stock to be making a 52 week closing high The stock price is less than $20
XAO is actually all the stocks in the Australian Market.
Thanks
biggles
|
|
|
|
Rank: Advanced Member
Groups: Registered, Registered Users, Subscribers Joined: 7/25/2005(UTC) Posts: 1,042
Was thanked: 57 time(s) in 54 post(s)
|
Hi biggles
I've sent you a private message with code for a weekly periodicity exploration. This is repeated below. The "X" variable will need the pathname corrected to match where your XAO data is stored.
If you need to introduce daily data to the mix then custom Multi-Frame indicators, or similar, will be needed to deliver weekly values. If possible load 120 weekly bars of data - this is essential if your 24-week EMA is to be accurate. Significantly less weekly bars will affect the accuracy of results at some point.
Roy
{ColA; Weekly}
{CLOSE of XAO} X:=Security("C:\Equis\Stocks\ASX\Indices\XAO",C);
Mov(X,6,E) > Mov(X,24,E) AND Mov(X,7,E) > Mov(X,12,E) AND C >= HHV(C,52) AND C<20;
{Filter} colA;
|
|
|
|
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.