Code Quality

This commit is contained in:
Miha Kralj
2022-11-11 11:42:06 -08:00
56 changed files with 48 additions and 268 deletions
+1 -1
View File
@@ -52,7 +52,7 @@ public class EMA_Series : Single_TSeries_Indicator
}
else
{
_ema = TValue.v * this._k + this._lastema * this._k1m;
_ema = (TValue.v * this._k) + (this._lastema * this._k1m);
}
this._lastlastema = this._lastema;