All the examples of setGlobalValue() and getGlobalValue() show simple single value variables.
Can a pass a series from one study to another such as?
test1 = ema(10,"IBM,30");
setGlobalValue("PassedSeries",test1);
now in another study, can I do something like this?
getGlobalValue("PassedSeries",xseries);
var temp = xseries.getValue(-4);
jgr
Can a pass a series from one study to another such as?
test1 = ema(10,"IBM,30");
setGlobalValue("PassedSeries",test1);
now in another study, can I do something like this?
getGlobalValue("PassedSeries",xseries);
var temp = xseries.getValue(-4);
jgr
Comment