Hi,
I am very new and working on a screener script that needs these three conditions:
Volume today >30,000
Price 4% above previous day close
Timeframe for screens set to 20 minutes after market open
Can these three conditions be coded into a script? What are the related variables that i can use?
Thank you so much!
There you go:
Timeframe(Daily)
PreviousClose = close[1]
TodayVol = volume
Timeframe(default)
c1 = close >= (PreviousClose * 1.04)
c2 = TodayVol > 30000
c3 = time = 092000 //or whatever time needs to be
Cond = c1 and c2 and c3
Screener[Cond]