EMA at different timeframe

Created at 09 Dec 2016, 09:48
How’s your experience with the cTrader Platform?
Your feedback is crucial to cTrader's development. Please take a few seconds to share your opinion and help us improve your trading experience. Thanks!
JJ

jjvmalaluan

Joined 14.11.2016

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);   
        }

 


@jjvmalaluan
Replies

GoldnOil750
15 Dec 2016, 12:33

RE:

Add ".close"

Ema = Indicators.ExponentialMovingAverage(Kwatro.Close, 9);   

 

jjvmalaluan said:

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