JJ
    
        
            EMA at different timeframe
            
                 09 Dec 2016, 09:48
            
                    
Good day to all of you,
I would like to know the EMA at H4 while Im using my Cbot at H15. any possibility? I was able to do it in Ichimoku but not in EMA. any other way? thanks
private ExponentialMovingAverage Ema;
private IchimokuKinkoHyo Ichifour;
protected override void OnStart()
        {
            
            var Kwatro = MarketData.GetSeries(TimeFrame.Hour4);
            Ichifour = Indicators.IchimokuKinkoHyo(Kwatro, 9, 26, 52);
Ema = Indicators.ExponentialMovingAverage(Kwatro, 9);   
        }

GoldnOil750
15 Dec 2016, 12:33
RE:
Add ".close"
Ema = Indicators.ExponentialMovingAverage(Kwatro.Close, 9);
jjvmalaluan said:
@GoldnOil750