Hello the community, can you help me please with these 2 screeners, i need them to be working on 4H/1H/30min/5min/1min instead of the Day/Week.
Thanks in advance.
JD 52 Week High
JD 52 Week High
2
3
4
5
6
timeframe(Daily)
indicator1 = highest[250](close[1])
c1 = (close >= indicator1)
Criteria = RSI[14](Close)
SCREENER[c1] (Criteria as”RSI”)
New 265 day highs
New 265 day highs
2
3
4
5
6
7
8
9
timeframe (weekly)
yearHi=highest[52](high)
timeframe(daily)
todayhi=high
c1=todayhi>yearhi[1]
screener[c1] (yearhi as”yearHigh”)
These modifications allow you to use them on any TF equal or lower than the DAILY timeframe.
Code 1:
timeframe(Daily)
indicator1 = highest[250](close[1])
Timeframe(default)
c1 = (close >= indicator1)
Criteria = RSI[14](Close)
SCREENER[c1] (Criteria as”RSI”)
code 2:
timeframe (weekly)
yearHi=highest[52](high)
timeframe(daily)
todayhi=high
timeframe(default)
c1=todayhi>yearhi[1]
screener[c1] (yearhi as”yearHigh”)
Hello, thanks for the reply. Doesn’t work unfortunately, still gives the Weekly results.
JSParticipant
Senior
Hi Sam,
I don’t think it’s entirely clear what you want to achieve…
Instead of the “weekly and daily time frame”, do you want to use the mentioned time frame (4H, 1H, 30 min, 5 min, 1 min) …?
TimeFrame(4 hours) //or 1 hour, 30 minutes, 5 minutes, 1 minute
Indicator1=Highest[250](Close[1]
C1=(Close>=Indicator1)
Criteria=RSI[14](Close)
Screener[C1](Criteria as “RSI”)
That was it. Thank you.
Do you know how to add an other criteria : MACD at the highest 52 weeks or 265 days ?
JSParticipant
Senior
Hi Sam,
Here is the screener for “MACD highest 265 days”…
TimeFrame(Daily)
myMACD=MACD[12,26,9](Close)
myHighestMACD=Highest[265](myMACD)
C1=myMACD>myHighestMACD[1]
Screener[C1](myMACD as "myMACD")
Thank you for the reply, i think something is missing, it gives 0 results, even if i edit the timeframe.
JSParticipant
Senior
Strange, I do get results…
I lowered the number from 265 to 255 and it works, might be some limitations of the Complete version vs the Premium version.
Now the issue is that some results are not accurate : example $JVA where the MACD was higher less than 255 days before.
TimeFrame(Daily)
myMACD=MACD[12,26,9](Close)
myHighestMACD=Highest[255](myMACD)
C1=myMACD>myHighestMACD[1]
Screener[C1](myMACD as “myMACD”)