oops, sorry, i think i posted this in the wrong forum so here it is here. Cheers
Hi all,
First of all, each posts here by you guys are great and very helpful plus educational.
I was wondering if anyone can help me out (if it hasn’t been listed or posted yet) with a code for a 30 day high/low screener, and a 90 day high/low screener?
I already have the 52 week high / low screener so perhaps this code can be slightly adjusted?
Many thanks.
Please share your 52 weeks high/low screener, it is indeed a simple lookback period modification in its code I guess.
Hi Nicolas, many thanks for responding. Below are the codes.
52 week hi –
1.timeframe(Daily)
2.indicator1 = highest[250](close[1])
3.c1 = (close >= indicator1)
4.Criteria = RSI[14](Close)
5.
6.SCREENER[c1] (Criteria as”RSI”)
7.
52 week low –
1.timeframe(Daily)
2.indicator1 = Lowest[250](close[1])
3.c1 = (close <= indicator1)
4.
5.criteria = RSI[14](close)
6.
7.SCREENER[c1] (criteria AS”RSI”)
8.
Sorry for my late reply.
Cheers
Anyone can give you the code adjustment but seriously if you think about it for 1 minute you can work it out . The ‘ teach a man to fish ‘ analogy applies here .
Just replace 250 with 30 or 90 or whatever else 🙂