Could I get assistance with this screen please?
Screen for stocks where:
Stocks are priced between $100 and $200.
EMA(20) > EMA(40) and EMA(40) > EMA(60) on Daily Timeframe
EMA(20) > EMA(40) and EMA(40) > EMA(60) on H4 Timeframe
Stochastic K Crossed above Stochastic D, 1 bar ago. (H4)
Stochastic K is below 30. (H4)
Thank you.
There you go;
Timeframe(Daily)
D1 = close >= 100
D2 = close <= 200
Ema20d = average[20,1](close)
Ema40d = average[40,1](close)
Ema60d = average[60,1](close)
D3 = Ema20d > Ema40d
D4 = Ema40d > Ema60d
//
Timeframe(4 hours)
Ema20h = average[20,1](close)
Ema40h = average[40,1](close)
Ema60h = average[60,1](close)
H1 = Ema20h > Ema40h
H2 = Ema40h > Ema60h
K = stochastic[8,3]
D = average[3](K)
H3 = K crosses over D
H4 = K < 30
//
Timeframe(default)
CondD = D1 and D2 and D3 and D4
CondH = H1 and H2 and H3[1] and H4
Cond = CondD and CondH
Screener[Cond]