mirror of
https://github.com/mihakralj/QuanTAlib.git
synced 2026-08-26 14:28:05 +00:00
Add eventing support to WMA indicator and implement unit tests for various indicators
- Enhanced WMA indicator with event-driven capabilities using ITValuePublisher interface. - Created a new TODO file listing various indicators and their corresponding libraries. - Added unit tests for DEMA, HMA, TEMA, and WMA indicators to ensure proper functionality. - Implemented tests for handling new bars, ticks, and historical data updates across indicators. - Verified that indicators correctly compute values and handle different source types.
This commit is contained in:
@@ -0,0 +1,65 @@
|
||||
# Averages
|
||||
|
||||
| Indicator | Name |
|
||||
| --------- | ------------------------------ |
|
||||
| ALMA | Arnaud Legoux MA |
|
||||
| BESSEL | Bessel Filter |
|
||||
| BILATERAL | Bilateral Filter |
|
||||
| BLMA | Blackman Window MA |
|
||||
| BPF | Ehlers Bandpass Filter |
|
||||
| BUTTER | Butterworth Filter |
|
||||
| BWMA | Bessel-Weighted MA |
|
||||
| CHEBY1 | Chebyshev Type I Filter |
|
||||
| CHEBY2 | Chebyshev Type II Filter |
|
||||
| CONV | Convolution MA with any kernel |
|
||||
| [DEMA](dema/Dema.cs) | Double Exponential MA |
|
||||
| DSMA | Deviation-Scaled MA |
|
||||
| DWMA | Double Weighted MA |
|
||||
| ELLIPTIC | Elliptic (Cauer) Filter |
|
||||
| [EMA](ema/Ema.cs) | Exponential MA |
|
||||
| EPMA | Endpoint MA |
|
||||
| FRAMA | Fractal Adaptive MA |
|
||||
| GAUSS | Gaussian Filter |
|
||||
| GWMA | Gaussian-Weighted MA |
|
||||
| HAMMA | Hamming Window MA |
|
||||
| HANN | Hann FIR Filter |
|
||||
| HANMA | Hanning Window MA |
|
||||
| HEMA | Hull Exponential MA |
|
||||
| [HMA](hma/Hma.cs) | Hull MA |
|
||||
| HP | Hodrick-Prescott Filter |
|
||||
| HPF | Ehlers Highpass Filter |
|
||||
| HTIT | Hilbert Transform Instantaneous Trend |
|
||||
| HWMA | Holt Weighted MA |
|
||||
| JMA | Jurik MA |
|
||||
| KAMA | Kaufman Adaptive MA |
|
||||
| KF | Kalman Filter |
|
||||
| LOESS | LOESS/LOWESS Smoothing |
|
||||
| LSMA | Least Squares MA |
|
||||
| LTMA | Linear Trend MA |
|
||||
| MAMA | MESA Adaptive MA |
|
||||
| MEDIAN | Median Filter |
|
||||
| MGDI | McGinley Dynamic Indicator |
|
||||
| MMA | Modified MA |
|
||||
| NOTCH | Notch Filter |
|
||||
| PWMA | Pascal Weighted MA |
|
||||
| QEMA | Quadruple Exponential MA |
|
||||
| REMA | Regularized Exponential MA |
|
||||
| RGMA | Recursive Gaussian MA |
|
||||
| RMA | wildeR MA (SMMA, MMA) |
|
||||
| SGF | Savitzky-Golay Filter |
|
||||
| SGMA | Savitzky-Golay MA |
|
||||
| SINEMA | Sine-weighted MA |
|
||||
| [SMA](sma/Sma.cs) | Simple MA |
|
||||
| SSF | Ehlers Super Smooth Filter |
|
||||
| T3 | Tillson T3 MA |
|
||||
| [TEMA](tema/Tema.cs) | Triple Exponential MA |
|
||||
| [TRIMA](trima/Trima.cs) | Triangular MA |
|
||||
| USF | Ehlers Ultrasmooth Filter |
|
||||
| VAMA | Volatility Adjusted MA |
|
||||
| VIDYA | Variable Index Dynamic Average |
|
||||
| WIENER | Wiener Filter |
|
||||
| [WMA](wma/Wma.cs) | Weighted MA |
|
||||
| YZVAMA | Yang-Zhang Volatility Adjusted MA |
|
||||
| ZLDEMA | Zero-Lag Double Exponential MA |
|
||||
| ZLEMA | Zero-Lag Exponential MA |
|
||||
| ZLTEMA | Zero-Lag Triple Exponential MA |
|
||||
Reference in New Issue
Block a user