Merge remote-tracking branch 'origin/dev' into dev

This commit is contained in:
Miha Kralj
2022-04-24 17:37:16 -07:00
7 changed files with 12 additions and 12 deletions
+1 -1
View File
@@ -23,7 +23,7 @@ public class ENTP_Series : Single_TSeries_Indicator
this._logbase = logbase;
if (base._data.Count > 0) { base.Add(base._data); }
}
private readonly double _logbase = 2.0;
private readonly double _logbase;
private readonly System.Collections.Generic.List<double> _buffer = new();
private readonly System.Collections.Generic.List<double> _buff2 = new();
+2 -2
View File
@@ -20,7 +20,7 @@ Calculation:
Sources:
https://en.wikipedia.org/wiki/Kurtosis
https://stats.oarc.ucla.edu/other/mult-pkg/faq/general/faq-whats-with-the-different-formulas-for-kurtosis/
</summary> */
public class KURT_Series : Single_TSeries_Indicator
@@ -30,7 +30,7 @@ public class KURT_Series : Single_TSeries_Indicator
this._logbase = logbase;
if (base._data.Count > 0) { base.Add(base._data); }
}
protected double _logbase = 2.0;
protected double _logbase;
private readonly System.Collections.Generic.List<double> _buffer = new();
public override void Add((System.DateTime t, double v) TValue, bool update)