Hello
i am using 5 minute bars and trying to get the 9 ema of 1 minute bars. 
the data returning seems to be incorrect when i compare it visually. 
can someone help in pointing out the error.
// i am using 5 minute timeframe and want to see the values of 1 minute 
bar.
OneMinuteBars=TimeFrameGetPrice("C",in1Minute,0,expandLast);
" 9 ema at 1 minute bar is " + WriteVal(EMA(OneMinuteBars,9),1.5); // 
" 20 ema at 1 minute bar is " + WriteVal(EMA(OneMinuteBars,20),1.5); // 

// trying to use it directly

//TimeFrameGetPrice(EMA(C,9), in1Minute, 0,expandLast);
//First parameter - pricefield - i

Reply via email to