hey termi21.... there are several ways to achive that..... slightly modifying your code is perhaps one of the best methods..... it should plot a 1 only on the initial day the new buy/cross occurs.....holler back if more is needed.....h
--------------------------------
a:=Mov(C,3,E) > Mov(C,70,E);
b:=Ref(a,-1);
If((a=1 AND b=0),1,0)
-------------------------------
a second popular method would be to use the cross function..... it also only plots a 1 on the initial day of the cross.....such as;
-------------------------------
Cross(Mov(C,3,E),Mov(C,70,E))
-------------------------------