Is it possible to see the indicators only on some time frames? for example do not display them on the daily.
JSParticipant
Senior
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…
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
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.
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