Forums › ProRealTime English forum › ProScreener support › Scan on specific date › Reply To: Scan on specific date
02/18/2019 at 11:06 AM
#91618
Sure, here it is: (adjust the minVolume setting, default is set to 1M)
1 2 3 4 5 6 7 8 9 10 11 12 13 |
ONCE Periods = 20 //last 20 bars ONCE PerCent = Periods * 0.9 //90% of times on the rise ONCE RsiNum = 14 MyRsi = rsi[RsiNum](close) idate = 20190106 minVolume = 1000000 if summation[Periods](MyRsi > MyRsi[1]) >= PerCent and date=idate and volume>minVolume then test=1 endif SCREENER[test] |