TAlgo
TAlgo 16 Oct 2014, 14:14
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);
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
16 Oct 2014, 14:14
RE:
Spotware said:
Yeah, Got IT!
I was missing the ".Close" at the end of the statement.
Thank you!
@TAlgo