mirror of
https://github.com/mihakralj/QuanTAlib.git
synced 2026-08-24 13:38:05 +00:00
Update file paths for QuanTAlib packages in main_automation.yml
This commit is contained in:
@@ -60,7 +60,7 @@ public class EMA_Series : Single_TSeries_Indicator {
|
||||
else {
|
||||
_ema = _k * (TValue.v - _lastema) + _lastema;
|
||||
}
|
||||
_lastema = _ema;
|
||||
_lastema = Double.IsNaN(_ema)?_lastema:_ema;
|
||||
|
||||
base.Add((TValue.t, _ema), update, _NaN);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user