New Members: Be sure to confirm your email address by clicking on the link that was sent to your email inbox. You will not be able to post messages until you click that link.
I am trying to build a scan when 18 EMA is above 50 EMA, 50EMA is above 100 EMA and 100EMA is above 200 EMA. At the same time, there is a pullback and price is bouncing from 50 EMA
Thank You
0
Comments
and [country is US]
and [sma(20,volume) > 400000]
and [close < ema(50,close)*1.01]
and [close > ema(50,close)*.99]
and[close >= 5]
and [close <= 25]
and [SCTR >=70]
and [EMA(18,Close ) > ema(50,Close)]
and [EMA(50,Close ) > ema(100,Close)]
and [EMA(100,Close ) > ema(200,Close)]
Or you could move the scan criteria back by putting the set back period of "5 days ago" for example, in front of the EMA's and then put a Rank by ROC(5) as the last line of the scan.
It's easier to change the setback of the starting date and then just change the Rank by to match, but embedding it in the scan code is also a decent choice.
I'm sure you could add an oscillator filter to produce the "bounce" indication as well, like Chande Trend Meter > 5 days ago Chande Trend Meter, or PPO or any other price oscillator.
Just some suggestions.
Select it from the list and add it to your scan, if desired.
and [Chande Trend Meter > 5 days ago Chande Trend Meter]