ITC - Weekly
For interpretation refer to the July 2004 issue of ACTIVE TRADER magazine.
Entry Long
return ADX(14) < 30 and CrossAbove(Mov(C, 30, S), Mov(C, 60, S));
Exit Long
var
bc:=ADX(14) < 30 and CrossAbove(Mov(C, 30, S), Mov(C, 60, S));
end_var
if BarsSince(bc) <= 10 then return L < Lowest(L,60)\1\;
return Mov(C,30,S) < Mov(C,60,S);
Entry Short
return ADX(14) < 30 and CrossAbove(Mov(C, 60, S), Mov(C, 30, S));
Exit Short
var
sc:=ADX(14) < 30 and CrossAbove(Mov(C, 60, S), Mov(C, 30, S));
end_var
if BarsSince(sc) <= 10 then return H > Highest(H,60)\1\;
return Mov(C, 30, S) >Mov(C, 60, S);
|
Download to import into Tradecision. 
How to use this strategy in Tradecision:
Click Download.
Save this strategy in a safe location on your hard drive.
Open Tradecision and in the Tools menu click the Strategy Builder.
In the Strategy Builder dialog, click Import, locate the saved file and then click OK.
|