display indicators only on some timeframes

Forums ProRealTime English forum ProRealTime platform support display indicators only on some timeframes

Viewing 5 posts - 1 through 5 (of 5 total)
  • #228970

    Is it possible to see the indicators only on some time frames? for example do not display them on the daily.

    #228977
    JS

    Hi Danny,

    If you don’t want to show the indicator in your graph, you can hide it…

    (Use “hide” in the setting)

    You can also display the indicator in a different period, for example 1 hour, than your (daily) graph…

    #228983

    Hi JF, I want to see it, but I don’t want to see it only on high timeframes, for example I see it on h1 ok, but when I switch to daily I would like it to be removed automatically. Thank you

    #228986

    You could create shortcuts with the graphical models in such a way that you have the indicators you want to see on 1h charts and the ones you want to see on 1d charts.

    #229204

    You can use a code for your “problem”

     

    for example:

     

    CODE:

    TZone = GetTimeFrame

     

    if TZone = 60 then //1 Minute

    ‘your Code what you will see’

     

    elsif TZone = 300 then //5 Minute

    ‘your Code what you will see’

     

    elsif TZone = 900 then // 15 Minute

    ‘your Code what you will see’

     

    elsif TZone = 1800 then // 30 Minute

    ‘your Code what you will see’

     

    elsif TZone = 3600 then // 1 Hour

    ‘your Code what you will see’

     

    elsif TZone = 14400 then // 4 Hour

    ‘your Code what you will see’

     

    elsif TZone = 86400 then // 1 Day

    ‘your Code what you will see’

     

    elsif TZone = 604800 then // 1 Week

    ‘your Code what you will see’

     

    elsif TZone = 2592000 then // 1 Month

    ‘your Code what you will see’

     

    endif

     

    Return

    2 users thanked author for this post.
Viewing 5 posts - 1 through 5 (of 5 total)

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