Trying to find if somebody has already coded a screener for Inside Days and Inside Weeks
I have located code for inside days for stocks trading a certain % off their 26 week highs (see below) but really just want the code for simple inside day (yesterday)
or last week for inside weeks.
Timeframe(Weekly)
HIw = Highest[26](high)
H15 = HIw * 0.85
Timeframe(daily)
InsideBar = (high[1] < high[2]) AND (low[1] > low[2])
Cond = (close >= H15) AND InsideBar
SCREENER[Con](H15 AS “High”)