metastock ma exploration

wisty

Newbie
Messages
4
Likes
0
Newbie question

Can any one help with the syntax for an exploration that will highlight all stocks which have crossed the 50 day moving average (up or down) at the end of day.

I want to highlight stocks that have just crossed not all those that are above or below.

thanks
 
wisty said:
Newbie question

Can any one help with the syntax for an exploration that will highlight all stocks which have crossed the 50 day moving average (up or down) at the end of day.

I want to highlight stocks that have just crossed not all those that are above or below.

thanks
pl try these 2 exploration formulas (1) A,C ...... B,Mov(C,50,S)....... FILTER,Cross(Mov(C,50,S),C) ....this is for upward crossover (2) A,C ...... B,Mov(C,50,S)....... FILTER,Cross(C,(Mov(C,50,S)) )....this is for downward cross over.......you may try FILTER , Cross(Mov(C,50,S),C) OR Cross(C,(Mov(C,50,S)) ) to get desired results in single exploration ,if desired results are not found pl. place AND in place of OR
 
Last edited:
Top