PureBytes Links
Trading Reference Links
|
--- In Metastockusers@xxxxxxxxxxxxxxx, "alex14612" <alex14612@xxxx>
wrote:
> HELLO FROM NEW META STOCK USER
>
> anyone know the formula for 50 day moving avg crossing over 200
day
> moving avg with increased volume
>
>
> THANKS IN ADVANCE
>
> TIBOR
A1:=Mov(C,50,S);
A2:=Mov(C,200,S);
B:=If(V>Mov(V,10,S)*2,1,0);
D:=If(Cross(A1,A2) and B=1,-1,If(Cross(A2,A1) and B=1,1,0));
D= {-1 for Buy} {1 for Sell}
------------------------ Yahoo! Groups Sponsor ---------------------~-->
Get A Free Psychic Reading! Your Online Answer To Life's Important Questions.
http://us.click.yahoo.com/Lj3uPC/Me7FAA/uetFAA/zMEolB/TM
---------------------------------------------------------------------~->
To unsubscribe from this group, send an email to:
Metastockusers-unsubscribe@xxxxxxxxxxx
Your use of Yahoo! Groups is subject to http://docs.yahoo.com/info/terms/
|