Hello,
I would like to see all the stocks that meet all the following criteria:
On 1 minute, day and week timeframe:
Price>EMA10
Price>EMA20
EMA10>EMA20
EMA10 and EMA 20 are both rising
On 1 minute timeframe:
Latest candle price is high of the day
The price of current candle is above price previous candle
The price of previous candle is above price of the candle before that
Thanks
gr Marco
JSParticipant
Veteran
Hi Marco,
Try this one…
EMA10=ExponentialAverage[10](close)
C1=Close>EMA10
EMA20=ExponentialAverage[20](close)
C2=Close>EMA20
C3=EMA10>EMA20
C4=EMA10>EMA10[1]
C5=EMA20>EMA20[1]
TimeFrame(1 minute)
C6=Close>=DHigh(0)
C7=Close>Close[1] and Close[1]>Close[2]
Screener[C1 and C2 and C3 and C4 and C5 and C6 and C7]