pullback 52 week high
- This topic has 5 replies, 3 voices, and was last updated 1 year ago by .
Viewing 6 posts - 1 through 6 (of 6 total)
Viewing 6 posts - 1 through 6 (of 6 total)
Forums › ProRealTime English forum › ProScreener support › pullback 52 week high
Hi,
Could you help me with following:
I would like to see all the stocks on daily timeframe that meet the following requirements:
Gr Marco
There you go:
|
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
Timeframe(Weekly) ONCE N = 10 high52 = highest[52](high) Timeframe(Daily) Cond1 = close <= (high52 * 0.85) BarID = -1 FOR i = 0 TO (N - 1) IF (high[i] = high52) THEN BarID = i break ENDIF NEXT Cond2 = (BarID >= 0) Screener[Cond1 AND Cond2 AND (high <> low)](BarID AS "Bars") |