52 week high
Forums › ProRealTime English forum › ProScreener support › 52 week high
- This topic has 5 replies, 2 voices, and was last updated 2 days ago by
robertogozzi.
-
-
11/18/2025 at 5:10 PM #253735
Hello,
I have the screener below. Could you add the following to it:
- The close of the first 5 minute candle should be a 52 week high
Screener
TimeFrame(1 Day)
c1=Close>2 and close<150
c2=Volume[1]*close[1]>10000000c7=close>close[1]
c8=close>open
c6=(high-close)<0.15*(high-low)TimeFrame(5 minutes)
If OpenTime=153000 then
myVolume=Volume
Avg20Vol=Average[20](myVolume)
EndIf
c4=Volume>3*Avg20Vol
ATRpercent=100*(AverageTrueRange[14](close))/close
c9=((high-low)/low)*100>3*ATRpercent
c11=volume*close>340000
c12=volume>1*volume[1]
Screener[c1 and c2 and c4 and c6 and c7 and c8 and c9 and c11 and c12](Volume as “Volume”)11/18/2025 at 5:41 PM #253736There you go:
123456789101112131415161718192021222324Timeframe(Weekly)weekHigh = highest[52](high)TimeFrame(1 Day)c1=Close>2 and close<150c2=Volume[1]*close[1]>10000000c7=close>close[1]c8=close>openc6=(high-close)<0.15*(high-low)TimeFrame(5 minutes)If OpenTime=153000 thenmyVolume=VolumeAvg20Vol=Average[20](myVolume)myHigh = highEndIfc4=Volume>3*Avg20VolATRpercent=100*(AverageTrueRange[14](close))/closec9=((high-low)/low)*100>3*ATRpercentc11=volume*close>340000c12=volume>1*volume[1]c13=(myHigh >= weekHigh)Screener[c1 and c2 and c4 and c6 and c7 and c8 and c9 and c11 and c12 and c13](Volume as "Volume")11/19/2025 at 7:28 AM #25373911/20/2025 at 12:11 PM #253805I can’t find any result, please post the code you used and attach the ITF file.
11/20/2025 at 1:23 PM #25381011/20/2025 at 5:43 PM #253823Remove line 25, otherwise it overrides line 24.
Only the last SCREENER keyword is meaningful.
-
AuthorPosts
