Hello,
I had input my formula as per the instruction given in manual... in case of Long Entry signal, it result is saw in Expert Advisor Symbol area..given below
MY Long Entry Signal
LE:=Cross(Mov(C,3,E),Mov(C,7,E));
LX:=Cross(Mov(C,7,E),Mov(C,3,E));
SE:=Cross(Mov(C,7,E),Mov(C,3,E));
SX:=Cross(Mov(C,3,E),Mov(C,7,E));
B:= ExtFml("Forum20.Latch",LE,LX,SE,SX);
B = 1 AND Ref(B,-1) <> 1
In case Long Exit, it is not sawing any result ..
MY Long Exit Signal
LE:=Cross(Mov(C,3,E),Mov(C,7,E));
LX:=Cross(Mov(C,7,E),Mov(C,3,E));
SE:=Cross(Mov(C,7,E),Mov(C,3,E));
SX:=Cross(Mov(C,3,E),Mov(C,7,E));
B:= ExtFml("Forum20.Latch",LE,LX,SE,SX);
B = 0 AND Ref(B,-1) = 1
Kindly Help to below formula is perfect or Not...
Thank you...