Topics
16 Oct 2014, 13:50
 3015
 3
Replies

TAlgo
16 Oct 2014, 14:14

RE:

Spotware said:

You can obtain market series for specific timeframe using MarketData.GetSeries method:

var marketSeries = MarketData.GetSeries(TimeFrame.Hour);

Than you can create EMA over series from marketSeries: 

var ems = Indicators.ExponentialMovingAverage(marketSeries.Close, 14);

 

Yeah, Got IT!

I was missing the ".Close" at the end of the statement.

Thank you!


@TAlgo