Auhor: shoee63
Searches for stocks making new 52 week highs.
1 2 3 4 5 6 7 8 9 |
timeframe (weekly) yearHi=highest[52](high) timeframe(daily) todayhi=high c1=todayhi>yearhi[1] screener[c1] (yearhi as"yearHigh") |
Share this
No information on this site is investment advice or a solicitation to buy or sell any financial instrument. Past performance is not indicative of future results. Trading may expose you to risk of loss greater than your deposits and is only suitable for experienced investors who have sufficient financial means to bear such risk.
ProRealTime ITF files and other attachments :
Filename : download the ITF files
How to import ITF files into ProRealTime platform?
PRC is also on YouTube, subscribe to our channel for exclusive content and tutorials
Hi! I was wondering how to make a New 265 day lows
timeframe (weekly)
yearLo=lowest[52](low)
timeframe(daily)
todaylo=low
c1=todayhi>yearhi[1]
screener[c1] (yearhi as”yearlow”)
I am not really sure if it like that
hello … just ran this query but it is running the condition of the previous weeks high rather than the daily high… because the query has [1] in it. although when i do look to remove the [1] it refuses to return anything back which is quite sad. Do you know how can get around getting the current price is > than the current year high?
if the current high is higher than the 52 weeks high, than it is the new 52 weeks high, that’s why the screener is testing with the previous fixed value. If you want to check intrabar that the price exceeds the current 52 weeks high, use the Close instead (it is the current price).