Hello,

I am very inexperienced in AFL and programming in general but I'm learning I 
think.  I'm trying to do a back test and utilize Applystop instead of other 
entry/exits. 
What is wrong here:
Condition1=IIf(C>Wmovavg,1,0);
BSTP=IIf(Condition1,H*1.01,0);
SSTP=IIf(Condition1,L*0.99,0);
Buy=IIf(Condition1,ApplyStop(2,0,BSTP,1,1),0);
BuyValue=IIf(Buy,C,0);
Condition2=IIf(C<Wmovavg,1,0);
Sell=IIf(Condition2,ApplyStop(2,0,SSTP,1,1),0);

It still executes on the close with zero delay.

Any help will be greatly appreciated - Thanks in Advance

Bill


Reply via email to