Hi,
Can you help me with the following
I would like to see all the stocks on a weekly time frame that fit following criteria:
-
The price of the stock is above the EMA10 week for at least 6 weeks. The total price range (low-high) needs to be above the EMA10 for 6 weeks
-
The low of the current candle needs to be below the EMA10 week
Gr Marco
JSParticipant
Senior
Hi,
Try this one…
EMA10=Average[10,1](Close)
c1=Summation[6](Low[1]>EMA10[1])=6
c2=Low<EMA10
Screener[c1 and c2]((Low<EMA10) as "PullBack")