This formula gives you +1 for a long entry and -1 for an exit
Ind1:=Mov(C,2E);
Ind2:=Mov(C,5,E);
Signal:=If(Cross(Ind1,Ind2),1,If(Cross(Ind2,Ind1),-1,0));
Signal
to show only +1 for long entries all other points will show 0
Ind1:=Mov(C,2E);
Ind2:=Mov(C,5,E);
Signal:=If(Cross(Ind1,Ind2),1,0);
Signal
I would use the top formula! First reason,it shows more events, second if you keep building new indicators that only show 1 event, you will run out of room in the indicator builder. The indicator builder will only allow for 2000 indicators; 1 event X 2000 indicators =2000 events,
2 event X 2000 indicators = 4000 events
hope you see my point