I am trying to create a MTF MACD indicator, and to start with I've defined the following variables:
var vMACD_15 =macd(12, 26, 9, "Close", false, inv(5));
var vMACD_S_15 =macdSignal(12, 26, 9, "Close", false, inv(5));
var vMACD_60 =macd(12, 26, 9, "Close", false, inv(15));
var vMACD_S_60 =macdSignal(12, 26, 9, "Close", false, inv(15));
But when I goto plot the signal to verify its working, it only Displays the time frame that I am on...
So that leads to my question... Is it possible to build a MACD study that will look at Multiple Time Frames?
var vMACD_15 =macd(12, 26, 9, "Close", false, inv(5));
var vMACD_S_15 =macdSignal(12, 26, 9, "Close", false, inv(5));
var vMACD_60 =macd(12, 26, 9, "Close", false, inv(15));
var vMACD_S_60 =macdSignal(12, 26, 9, "Close", false, inv(15));
But when I goto plot the signal to verify its working, it only Displays the time frame that I am on...
So that leads to my question... Is it possible to build a MACD study that will look at Multiple Time Frames?
Comment