I have been looking to take an ExponentialMovingAverage of a LeastSquaresMovingAverage as an indicator for trading decisions.  

After reading Combining Indicators - QuantConnect.com, with different levels of success, I found at I get different results for EMA, depending on which method I use to combine with the LSMA.

Backtest attached, showing that the second method used below produces different results.

 _ema1 = IndicatorExtensions.EMA(_lsma, 10);
 _ema2 = (EMA(_symbol, 10)).Of(_lsma);
 _ema3 = (new ExponentialMovingAverage(_symbol,10)).Of(_lsma);

Am I doing something wrong?