Lower time frame

Viewing 9 posts - 1 through 9 (of 9 total)
  • #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
    6

    timeframe(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
    9

    timeframe (weekly)
    yearHi=highest[52](high)

    timeframe(daily)
    todayhi=high

    c1=todayhi>yearhi[1]

    screener[c1] (yearhi as”yearHigh”)

     

     

     

    #234214

    These modifications allow you to use them on any TF equal or lower than the DAILY timeframe.

    Code 1:

    code 2:

     

     

    1 user thanked author for this post.
    #234229

    Hello, thanks for the reply. Doesn’t work unfortunately, still gives the Weekly results.

    #234238
    JS

    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) …?

    2 users thanked author for this post.
    #234270

    That was it. Thank you.

    Do you know how to add an other criteria : MACD at the highest 52 weeks or 265 days ?

    #234272
    JS

    Hi Sam,

    Here is the screener for “MACD highest 265 days”…

    1 user thanked author for this post.
    #234274

    Thank you for the reply, i think something is missing, it gives 0 results, even if i edit the timeframe.

    #234275
    JS

    Strange, I do get results…

    1 user thanked author for this post.
    #234277

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

     

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

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