Available in version1.1 and above
Honestly I rarely look at other timeframes, not because it's not useful because it is! It's more of because I'm lazy, that's why we made Vanguard AI ?
Now, I can easily compare the same period EMA, albeit different timeframes but on a single chart - giving us an eagle's eye view without changing chart timeframes. We can see that prices will find major support and resistance on higher timeframes.
In the future, we'll be able to use this same structure for intraday trading when live data comes 4Q 2021.
Grab the scrip below:
timeframe(monthly)
set closem=close
set emam = ema(closem,20)
timeframe(weekly)
set closew=close
set emaw = ema(closew,20)
timeframe(daily)
set emad = ema(close,20)
plot(emam,line,seagreen,main)
plot(emaw,line,dodgerblue,main)
plot(emad,line,firebrick,main)
