Update file paths for QuanTAlib packages in main_automation.yml

This commit is contained in:
Miha Kralj
2023-04-12 13:10:00 -07:00
parent badea98dc0
commit b99d451ea8
22 changed files with 403 additions and 253 deletions
+1 -1
View File
@@ -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);
}