Screening for inside days & weeks

Forums ProRealTime English forum ProScreener support Screening for inside days & weeks

Viewing 2 posts - 1 through 2 (of 2 total)
  • #181539

    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.

    #181540

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

Viewing 2 posts - 1 through 2 (of 2 total)

Create your free account now and post your request to benefit from the help of the community
Register or Login