Rank: Newbie
Groups: Registered, Registered Users Joined: 2/16/2007(UTC) Posts: 3
|
Hello all,
I am a new member and have stumbled along on to this great forum of meatstock users. First I would like to thank all the people that keep this place running for new people like myself to learn more about my charting package :)
I have been trying to create a Explorer that will give me a list of stocks/indices that have just made a moving average cross to the up or down side. So far I have been able to find this much
If(Mov(C,10,S)>Mov(C,30,S),1,If(Mov(C,10,S)<Mov(C,30,S),-1,0)); If(BarsSince(If(Mov(C,10,S)>Mov(C,30,S),1,If(Mov(C,10,S)<Mov(C,30,S),-1,0));=1) <BarsSince(If(Mov(C,10,S)>Mov(C,30,S),1,If(Mov(C,10,S)<Mov(C,30,S),-1,0));=-1),1,-1)
Im not sure if the code is completely wrong but if anyone out there could show me how to get all working it would be much appreciated.
Thank you in advance.
|