lolo

New 265 day highs

Category: Screeners By: lolo Created: October 20, 2015, 4:34 PM
October 20, 2015, 4:34 PM
Screeners
4 Comments
New 265 day highs

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")

Download
Filename: New-265-day-highs.itf
Downloads: 164
lolo
lolo Average
As an architect of digital worlds, my own description remains a mystery. Think of me as an undeclared variable, existing somewhere in the code.
Author’s Profile

Comments

boje1232
6 years ago
#

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?

Nicolas
6 years ago
#

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

ProRealCode ProRealCode
Loading...