Rank: Advanced Member
Groups: Registered, Registered Users, Subscribers Joined: 10/29/2004(UTC) Posts: 1,394 Location: Glastonbury, CT
Was thanked: 2 time(s) in 2 post(s)
|
C> Mov(C,20,S) will show only stocks that are greater than the MA
Cross(C,Mov(C,20,S)) will show only the stocks that have crossed today
If(Cross(C,Mov(C,20,S)),2,If(Cross(Mov(C,20,S),C)),-2,If(C>Mov(C,20,S),1,If(C<Mov(C,20,S),-1,0))));
will show +2 for todays crossing above the ma,+1 for c> Ma,-2 for todays cross below the Ma, and -1 if the stock is below the ma
|