moar Chart indicators

This commit is contained in:
Miha Kralj
2024-11-07 21:40:02 -08:00
parent 2a72b2881b
commit 351214ed31
49 changed files with 697 additions and 42 deletions
+2 -1
View File
@@ -2,6 +2,7 @@
✔️ AFIRMA - Adaptive FIR Moving Average
✔️ ALMA - Arnaud Legoux Moving Average
✔️ CONVOLUTION - 1D Convolution with sliding kernel
✔️ DEMA - Double Exponential Moving Average
✔️ DSMA - Dynamic Simple Moving Average
✔️ DWMA - Dynamic Weighted Moving Average
@@ -17,7 +18,7 @@
✔️ KAMA - Kaufman Adaptive Moving Average
✔️ LTMA - Linear Time Moving Average
✔️ MAAF - Moving Average Adaptive Filter
✔️ *MAMA - MESA Adaptive Moving Average (MAMA, FAMA)
✔️ MAMA - MESA Adaptive Moving Average (MAMA, FAMA)
✔️ MGDI - McGinley Dynamic Indicator
✔️ MMA - Modified Moving Average
✔️ PWMA - Parabolic Weighted Moving Average
-1
View File
@@ -31,7 +31,6 @@ public sealed class Fisher : AbstractBase
private readonly int _period;
private readonly double[] _prices;
private double _prevFisher;
private double _prevValue;
/// <param name="source">The data source object that publishes updates.</param>
/// <param name="period">The calculation period (default: 10)</param>