Hi guys
I want to know if you create a screener for the following in daily timeframe .
Last 52 week high greater than one month Old
Price less than 8 percent from 52 week high
Second screener
Price 15 percent or less away from 52 week high
Last daily candle a hammer
I would really appreciate it Thanks!
Moved to the ProScreener forum.
Please try to post in the correct forum with future topics 🙂
Here is the code for the first screener: (Close is 8% away of less than the 52 weeks high which is the same since 4 weeks)
timeframe(weekly)
hh = highest[52](high)
c1 = hh=hh[4]
c2 = close/hh>=0.92
screener[c1 and c2] (close/hh)
and the second one: (15% away or less than the 52 weeks high and daily candle forming an hammer)
timeframe(weekly)
hh = highest[52](high)
c1 = close/hh>=0.85
timeframe(daily)
c2 = (close>open and low=open and (high-close)>=3*(close-open)) or (close>open and high=close and (open-low)>=3*(close-open))
screener[c1 and c2] (close/hh)