Hello,
is it possible to run a screener to show (for example) all stocks which moved >10% in 2 hours for a specific time?
I ´m often using a 2-hour chart and would like to see all stocks which had a 2-hour movement > 10% (2H candle) on that day.
What i understood is that the realtime scanner “fires” a signal when the creterium has matched at this time. And when the time
has passed the signal vanishes. The vanishing would happen very quick at very short time periodes like 5m or 1m.
But would it be possible to get all signals which occured during the day (it would be like trade-ideas)?
Thanks
JSParticipant
Veteran
Try this… In this screener I look at the last 24 hours (Summation[12]) but you can change this time to for example the last 8 hours (Summation[4])…
TimeFrame(2 hours)
UpPerc=(Close-Close[1])/Close[1]*100
C1=Summation[12](UpPerc>10)>=1
Screener[C1](UpPerc as "%UP")
@JS
Thanks a lot.
Is it possible to look into the past with “idate” when the scanner conditions were met?
For example i want to see if the scanner conditions were met on the 27th march.
“idate=20240327”