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)
|
this will plot the three Ma's, but just what ma crossover are you
looking for? {3 ma's indicator} M5:=mov(C,5,E); M13:=mov(C,13,E); M26:=mov(C,26,E); M5;M13;M26;
{3 ma's crossover indicator} M5:=mov(C,5,E); M13:=mov(C,13,E); M26:=mov(C,26,E); CX1:=If(Cross(M5,M13),1,If(Cross(M13,M5),-1,0)); CX2:=If(Cross(M5,M26),2,If(Cross(M26,M5),-2,0)); CX3:=If(Cross(M13,M26),3,If(Cross(M26,M13),-3,0)); CX1+CX2+CX3
here are the possible crossovers
|