Auhor: shoee63
Searches for stocks making new 52 week highs.
timeframe (weekly)
yearHi=highest[52](high)
timeframe(daily)
todayhi=high
c1=todayhi>yearhi[1]
screener[c1] (yearhi as"yearHigh")
You must be logged in to post a comment.
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).
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?