Trading System using EMA and PSCR

#1
Hi Everyone,

This is a trading system which i came cross various forums and websites. I have only tried to program it into metastock. I would like forum members to use the trading system and modify it even further. It would be great if someone and increase the trading efficiency of the system. This system works better with higher time frames, but can also be used for lower ones.

The trading system is as follows:-
ENTER LONG
((Mov(C,3,E)>Mov(C,8,E)) AND (Cross(Mov(C,8,E),Mov(C,13,E))AND SAR(0.02,0.2)<C)
OR
(Mov(C,8,E)>Mov(C,13,E)) AND (Cross(Mov(C,3,E),Mov(C,8,E)) AND SAR(0.02,0.2)<C)
OR
(Mov(C,3,E)>Mov(C,8,E) AND Mov(C,8,E)>Mov(C,13,E) AND Cross(C,SAR(0.02,0.2))));

EXIT LONG
Cross(SAR(0.015,0.2),C);

ENTER SHORT
(Mov(C,3,E)<Mov(C,8,E)) AND (Cross(Mov(C,13,E),Mov(C,8,E))AND SAR(0.02,0.2)>C)
OR
(Mov(C,8,E)<Mov(C,13,E)) AND (Cross(Mov(C,8,E),Mov(C,3,E))AND SAR(0.02,0.2)>C)
OR
(Mov(C,3,E)<Mov(C,8,E) AND Mov(C,8,E)<Mov(C,13,E) AND Cross(SAR(0.02,0.2),C));

EXIT SHORT
Cross(C,SAR(0.015,0.2));

Please feel free to contact me and develop/modify the system. I have back-tested the system on nifty 5min data and commodities 5 min data. If anyone is interested i can share the report.

Also planning to convert this into Amibroker, can anyone help me????
 

Similar threads