Is it possible to... while looking at a 30 min chart, place a simple moving avarage from the 60 min time frame?
Please tell me how I can accomplish this???
Please tell me how I can accomplish this???
xMA = offsetSeries(eval(Type)(Length, eval(Source)(sym(vSymbol))),Offset);
xMA = eval(Type)(Length, eval(Source)(sym(vSymbol)));
return getSeries(xMA);
if(Offset!=0) return xMA.getValue(-(Offset));
else return getSeries(xMA);
Comment