Lower time frame
Forums › ProRealTime English forum › ProScreener support › Lower time frame
- This topic has 8 replies, 3 voices, and was last updated 4 months ago by sam00075.
-
-
06/22/2024 at 2:07 AM #234207
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.
https://www.prorealcode.com/prorealtime-market-screeners/jd-52-week-high/
JD 52 Week High
2
3
4
5
6timeframe(Daily)
indicator1 = highest[250](close[1])
c1 = (close >= indicator1)
Criteria = RSI[14](Close)SCREENER[c1] (Criteria as”RSI”)
https://www.prorealcode.com/prorealtime-market-screeners/new-265-day-highs/
New 265 day highs
2
3
4
5
6
7
8
9timeframe (weekly)
yearHi=highest[52](high)timeframe(daily)
todayhi=highc1=todayhi>yearhi[1]
screener[c1] (yearhi as”yearHigh”)
06/22/2024 at 10:31 AM #234214These modifications allow you to use them on any TF equal or lower than the DAILY timeframe.
Code 1:
Code 112345678timeframe(Daily)indicator1 = highest[250](close[1])Timeframe(default)c1 = (close >= indicator1)Criteria = RSI[14](Close)SCREENER[c1] (Criteria as”RSI”)code 2:
Code 212345678910timeframe (weekly)yearHi=highest[52](high)timeframe(daily)todayhi=hightimeframe(default)c1=todayhi>yearhi[1]screener[c1] (yearhi as”yearHigh”)1 user thanked author for this post.
06/22/2024 at 9:56 PM #23422906/23/2024 at 1:22 PM #234238Hi 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) …?Screener 112345TimeFrame(4 hours) //or 1 hour, 30 minutes, 5 minutes, 1 minuteIndicator1=Highest[250](Close[1]C1=(Close>=Indicator1)Criteria=RSI[14](Close)Screener[C1](Criteria as “RSI”)2 users thanked author for this post.
06/23/2024 at 10:16 PM #23427006/24/2024 at 6:53 AM #234272Hi Sam,
Here is the screener for “MACD highest 265 days”…
Highest MACD123456TimeFrame(Daily)myMACD=MACD[12,26,9](Close)myHighestMACD=Highest[265](myMACD)C1=myMACD>myHighestMACD[1]Screener[C1](myMACD as "myMACD")1 user thanked author for this post.
06/24/2024 at 7:30 AM #23427406/24/2024 at 7:39 AM #23427506/24/2024 at 8:21 AM #234277I 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”)
-
AuthorPosts
Find exclusive trading pro-tools on