2026-01-18 19:02:03 -08:00
# Validation Across TA Libraries
> "Trust, but verify." — Russian proverb (applicable to both Cold War diplomacy and technical indicator libraries)
Every indicator implementation makes implicit claims about correctness. QuanTAlib validates these claims by comparing outputs against established libraries: TA-Lib, Tulip, Skender.Stock.Indicators, and OoplesFinance. Where implementations diverge, the differences get documented.
## Reading the Matrix
| Symbol | Meaning |
| :----: | :------ |
| ✔️ | Validated: outputs match within floating-point tolerance (1e-9) |
| ⚠️ | Partial match: minor discrepancies documented in indicator notes |
| ❔ | Implementation exists but not validated |
| - | No implementation in that library |
**Tolerance rationale:** Financial data uses double precision. Differences below 1e-9 stem from floating-point arithmetic order, not algorithmic divergence.
## Validation Philosophy
Three levels of confidence:
**Level 1: Cross-Library Agreement**
Multiple independent implementations produce identical results. Highest confidence. Most mainstream indicators (SMA, EMA, RSI, MACD) fall here.
**Level 2: Original Source Agreement**
No cross-library validation available, but implementation matches original research paper or patent description. JMA, various proprietary indicators fall here.
**Level 3: Mathematical Correctness Only**
No external reference exists. Implementation verified through unit tests, edge case handling, and mathematical properties (e.g., filter stability, energy preservation). Novel or obscure indicators fall here.
## Technical Indicators
| Indicator | QuanTAlib | TA-Lib | Tulip | Skender | Ooples |
| :-------- | :-------- | :----: | :---: | :-----: | :----: |
| **Aberration Bands** | [Abber ](../lib/channels/abber/abber.md ) | - | - | - | - |
| **Absolute Price Oscillator** | [Apo ](../lib/momentum/apo/apo.md ) | ✔️ | ✔️ | - | ✔️ |
2026-02-16 21:26:44 -08:00
| **Acceleration Bands** | [AccBands ](../lib/channels/accbands/accbands.md ) | ✔️ | - | - | ❔ |
2026-02-12 14:29:54 -08:00
| **Acceleration Oscillator** | [Ac ](../lib/oscillators/ac/Ac.md ) | - | - | - | ❔ |
2026-01-18 19:02:03 -08:00
| **Accumulation/Distribution Line** | [Adl ](../lib/volume/adl/adl.md ) | ✔️ | ✔️ | ✔️ | ✔️ |
| **Accumulation/Distribution Oscillator** | [Adosc ](../lib/volume/adosc/adosc.md ) | ✔️ | ✔️ | ✔️ | ✔️ |
| **Adaptive Price Zone** | [Apz ](../lib/channels/apz/apz.md ) | - | - | - | ❔ |
2026-02-16 21:26:44 -08:00
| **Andrews' Pitchfork** | Apchannel | - | - | ✔️ | - |
2026-01-18 19:02:03 -08:00
| **Archer Moving Averages Trends** | [Amat ](../lib/momentum/amat/Amat.md ) | - | - | ✔️ | ✔️ |
2026-01-28 08:56:41 -08:00
| **Archer On-Balance Volume** | [Aobv ](../lib/volume/aobv/Aobv.md ) | - | - | - | - |
2026-01-18 19:02:03 -08:00
| **Arnaud Legoux Moving Average** | [Alma ](../lib/trends/alma/alma.md ) | - | - | ✔️ | ✔️ |
| **Aroon** | [Aroon ](../lib/momentum/aroon/aroon.md ) | ✔️ | ✔️ | ✔️ | - |
| **Aroon Oscillator** | [AroonOsc ](../lib/momentum/aroonosc/AroonOsc.md ) | ✔️ | ✔️ | ✔️ | - |
2026-02-16 21:26:44 -08:00
| **ATR Bands** | Atrbands | ✔️ | - | ✔️ | ❔ |
2026-01-18 19:02:03 -08:00
| **Adaptive FIR Moving Average** | [Afirma ](../lib/forecasts/afirma/Afirma.md ) | - | - | - | - |
| **Average Daily Range** | [Adr ](../lib/volatility/adr/Adr.md ) | - | - | - | - |
| **Average Directional Index** | [Adx ](../lib/momentum/adx/adx.md ) | ✔️ | ✔️ | ✔️ | ✔️ |
| **Average Directional Movement Rating** | [Adxr ](../lib/momentum/adxr/Adxr.md ) | ✔️ | ✔️ | - | - |
| **Average True Range** | [Atr ](../lib/volatility/atr/atr.md ) | ✔️ | ✔️ | ✔️ | ✔️ |
2026-02-16 21:26:44 -08:00
| **Average True Range Normalized [0,1]** | [Atrn ](../lib/volatility/atrn/Atrn.md ) | - | - | ✔️ | - |
2026-01-18 19:02:03 -08:00
| **Average True Range Percent** | [Atrp ](../lib/volatility/atrp/Atrp.md ) | ✔️ | ✔️ | ✔️ | ✔️ |
| **Awesome Oscillator** | [Ao ](../lib/momentum/ao/ao.md ) | - | ✔️ | ✔️ | ✔️ |
| **Balance of Power** | [Bop ](../lib/momentum/bop/Bop.md ) | ✔️ | ✔️ | ✔️ | ✔️ |
2026-02-16 21:26:44 -08:00
| **Bollinger Bands** | [Bbands ](../lib/channels/bbands/Bbands.md ) | ✔️ | ✔️ | ✔️ | ✔️ |
2026-01-18 19:02:03 -08:00
| **Bessel Filter** | [Bessel ](../lib/trends/bessel/Bessel.md ) | - | - | - | - |
| **Bessel-Weighted MA** | [Bwma ](../lib/trends_FIR/bwma/Bwma.md ) | - | - | - | - |
2026-02-16 21:26:44 -08:00
| **Beta Coefficient** | [Beta ](../lib/statistics/beta/Beta.md ) | ❔ | - | ✔️ | - |
2026-02-02 19:47:21 -08:00
| **Bias** | [Bias ](../lib/statistics/bias/Bias.md ) | - | - | - | - |
2026-01-18 19:02:03 -08:00
| **Bilateral Filter** | [Bilateral ](../lib/trends/bilateral/Bilateral.md ) | - | - | - | - |
| **Blackman Window MA** | [Blma ](../lib/trends/blma/Blma.md ) | - | - | - | - |
2026-02-16 21:26:44 -08:00
| **Bollinger %B** | [Bbb ](../lib/oscillators/bbb/Bbb.md ) | - | - | ✔️ | ❔ |
| **Bollinger Band Squeeze** | [Bbs ](../lib/oscillators/bbs/Bbs.md ) | - | - | ✔️ | ❔ |
| **Bollinger Band Width** | Bbw | - | - | ✔️ | ❔ |
2026-01-18 19:02:03 -08:00
| **Bollinger Band Width Normalized** | Bbwn | - | - | - | - |
| **Bollinger Band Width Percentile** | Bbwp | - | - | - | - |
| **Bollinger Bands** | Bbands | ✔️ | ✔️ | ✔️ | ❔ |
| **Butterworth Filter** | [Butter ](../lib/trends/butter/Butter.md ) | - | - | - | ✔️ |
2026-02-16 21:26:44 -08:00
| **Camarilla Pivot Points** | [Pivotcam ](../lib/reversals/pivotcam/Pivotcam.md ) | - | - | - | ❔ |
| **Chandelier Exit** | [Chandelier ](../lib/reversals/chandelier/Chandelier.md ) | - | - | ✔️ | - |
2026-02-13 21:44:45 -08:00
| **Chande Kroll Stop** | [Ckstop ](../lib/reversals/ckstop/Ckstop.md ) | - | - | - | - |
2026-01-18 19:02:03 -08:00
| **Chaikin Money Flow** | Cmf | - | - | ✔️ | ❔ |
2026-02-16 21:26:44 -08:00
| **Chaikin Volatility** | [Cvi ](../lib/volatility/cvi/Cvi.md ) | - | ❔ | - | ❔ |
| **Chande Forecast Oscillator** | [Cfo ](../lib/oscillators/cfo/Cfo.md ) | - | - | ✔️ | ❔ |
| **Chande Momentum Oscillator** | Cmo | - | ✔️ | ✔️ | ❔ |
2026-01-18 19:02:03 -08:00
| **Chebyshev Type I Filter** | Cheby1 | - | - | - | - |
| **Chebyshev Type II Filter** | Cheby2 | - | - | - | - |
| **Choppiness Index** | Chop | - | - | ✔️ | ❔ |
| **Close-to-Close Volatility** | Ccv | - | - | - | - |
| **Cointegration** | Cointegration | - | - | - | - |
| **Commodity Channel Index** | Cci | ✔️ | ✔️ | ✔️ | ❔ |
| **Composite Fractal Behavior** | [Cfb ](../lib/momentum/cfb/cfb.md ) | - | - | - | - |
2026-02-01 17:48:16 -08:00
| **Conditional Volatility** | [Cv ](../lib/volatility/cv/Cv.md ) | - | - | - | - |
2026-01-18 19:02:03 -08:00
| **Convolution Moving Average** | [Conv ](../lib/trends/conv/conv.md ) | ✔️ | ✔️ | ✔️ | ✔️ |
2026-02-16 21:26:44 -08:00
| **Correlation** | Correlation | - | - | ✔️ | - |
2026-01-18 19:02:03 -08:00
| **Cumulative Moving Average** | [Cma ](../lib/statistics/cma/Cma.md ) | - | - | - | - |
2026-01-21 14:41:31 -05:00
| **Decay Min-Max Channel** | [Decaychannel ](../lib/channels/decaychannel/decaychannel.md ) | - | - | - | - |
2026-02-16 21:26:44 -08:00
| **DeMark Pivot Points** | [Pivotdem ](../lib/reversals/pivotdem/Pivotdem.md ) | - | - | - | ❔ |
2026-02-12 14:29:54 -08:00
| **Detrended Price Oscillator** | [Dpo ](../lib/oscillators/dpo/Dpo.md ) | - | ⚠️ | - | ❔ |
2026-01-18 19:02:03 -08:00
| **Detrended Synthetic Price** | Dsp | - | - | - | ❔ |
| **Deviation-Scaled MA** | Dsma | - | - | - | ❔ |
2026-02-16 21:26:44 -08:00
| **Directional Movement Index** | Dx | ✔️ | ✔️ | ✔️ | ✔️ |
2026-01-18 19:02:03 -08:00
| **Directional Movement Index (Jurik)** | [Dmx ](../lib/momentum/dmx/dmx.md ) | - | - | - | - |
| **Dirty Data Detection** | Dirty | - | - | - | - |
2026-01-21 14:41:31 -05:00
| **Donchian Channels** | [Dchannel ](../lib/channels/dchannel/Dchannel.md ) | - | - | ✔️ | ❔ |
2026-01-18 19:02:03 -08:00
| **Double Exponential Moving Average** | [Dema ](../lib/trends/dema/dema.md ) | ✔️ | ✔️ | ✔️ | ✔️ |
2026-02-16 21:26:44 -08:00
| **Double Weighted Moving Average** | [Dwma ](../lib/trends/dwma/dwma.md ) | ✔️ | ✔️ | ✔️ | - |
| **Ease of Movement** | [Eom ](../lib/volume/eom/Eom.md ) | - | ✔️ | - | - |
2026-02-04 11:43:59 -08:00
| **Ehlers Autocorrelation Periodogram** | [Eacp ](../lib/cycles/eacp/eacp.md ) | - | - | - | - |
2026-02-16 21:26:44 -08:00
| **BandPass Filter** | [Bpf ](../lib/filters/bpf/Bpf.md ) | - | - | - | - |
2026-01-18 19:02:03 -08:00
| **Ehlers Center of Gravity** | Cg | - | - | - | ❔ |
2026-02-04 11:43:59 -08:00
| **Ehlers Even Better Sinewave** | [Ebsw ](../lib/cycles/ebsw/ebsw.md ) | - | - | - | ❔ |
2026-01-18 19:02:03 -08:00
| **Ehlers Fractal Adaptive MA** | [Frama ](../lib/trends_IIR/frama/Frama.md ) | - | - | - | ❔ |
| **Ehlers Highpass Filter** | [Hpf ](../lib/filters/hpf/Hpf.md ) | - | - | - | ❔ |
| **Ehlers Phasor Analysis** | Phasor | - | - | - | - |
| **Ehlers Sine Wave** | Sine | - | - | - | ❔ |
| **Ehlers SSF-Based Detrended Synthetic Price** | Ssfdsp | - | - | - | - |
| **Ehlers Super Smooth Filter** | [Ssf ](../lib/trends/ssf/Ssf.md ) | - | - | - | ✔️ |
| **Ehlers Ultrasmooth Filter** | Usf | - | - | - | - |
| **Elliptic (Cauer) Filter** | [Elliptic ](../lib/filters/elliptic/Elliptic.md ) | - | - | - | ❔ |
| **Exponential Moving Average** | [Ema ](../lib/trends/ema/ema.md ) | ✔️ | ✔️ | ✔️ | ✔️ |
| **Exponential Transformation** | Exptrans | - | - | - | - |
2026-02-16 21:26:44 -08:00
| **Exponential Weighted MA Volatility** | [Ewma ](../lib/volatility/ewma/Ewma.md ) | - | - | - | ❔ |
| **Extended Traditional Pivots** | [Pivotext ](../lib/reversals/pivotext/Pivotext.md ) | - | - | - | - |
2026-01-18 19:02:03 -08:00
| **Fibonacci Pivot Points** | Pivotfib | - | - | - | ❔ |
2026-02-16 21:26:44 -08:00
| **Fisher Transform** | [Fisher ](../lib/oscillators/fisher/Fisher.md ) | - | ❔ | ❔ | ❔ |
| **Force Index** | [Efi ](../lib/volume/efi/Efi.md ) | - | - | ✔️ | ✔️ |
2026-01-21 14:41:31 -05:00
| **Fractal Chaos Bands** | [Fcb ](../lib/channels/fcb/fcb.md ) | - | - | ✔️ | ❔ |
2026-02-01 17:48:16 -08:00
| **Garman-Klass Volatility** | [Gkv ](../lib/volatility/gkv/Gkv.md ) | - | - | - | - |
2026-01-18 19:02:03 -08:00
| **Gaussian Filter** | [Gauss ](../lib/filters/gauss/Gauss.md ) | - | - | - | ❔ |
| **Gaussian-Weighted MA** | Gwma | - | - | - | - |
2026-02-15 21:59:03 -08:00
| **Geometric Mean** | [Geomean ](../lib/statistics/geomean/Geomean.md ) | - | - | - | - |
| **Harmonic Mean** | [Harmean ](../lib/statistics/harmean/Harmean.md ) | - | - | - | - |
| **Granger Causality Test** | [Granger ](../lib/statistics/granger/Granger.md ) | - | - | - | - |
2026-01-18 19:02:03 -08:00
| **Hamming Window MA** | Hamma | - | - | - | ❔ |
| **Hann FIR Filter** | [Hann ](../lib/filters/hann/Hann.md ) | - | - | - | - |
| **Hanning Window MA** | Hanma | - | - | - | ❔ |
2026-02-01 17:48:16 -08:00
| **High-Low Volatility (Parkinson)** | [Hlv ](../lib/volatility/hlv/Hlv.md ) | - | - | - | - |
2026-01-18 19:02:03 -08:00
| **Highest value** | [Highest ](../lib/numerics/highest/Highest.md ) | ✔️ | ✔️ | - | - |
2026-02-04 11:43:59 -08:00
| **Hilbert Transform Dominant Cycle Period** | [HtDcPeriod ](../lib/cycles/ht_dcperiod/ht_dcperiod.md ) | ✔️ | - | - | - |
| **Hilbert Transform Dominant Cycle Phase** | [HtDcPhase ](../lib/cycles/ht_dcphase/ht_dcphase.md ) | ✔️ | - | - | - |
2026-01-18 19:02:03 -08:00
| **Hilbert Transform Instantaneous Trend** | [Htit ](../lib/trends/htit/htit.md ) | ✔️ | - | ✔️ | ✔️ |
2026-02-04 11:43:59 -08:00
| **Hilbert Transform Phasor** | [HtPhasor ](../lib/cycles/ht_phasor/ht_phasor.md ) | ✔️ | - | - | - |
| **Hilbert Transform Sine Wave** | [HtSine ](../lib/cycles/ht_sine/ht_sine.md ) | ✔️ | - | - | - |
2026-01-18 19:02:03 -08:00
| **Hilbert Transform Trend Mode** | Ht_trendmode | ✔️ | - | - | - |
2026-02-01 17:48:16 -08:00
| **Historical Volatility (Close-to-Close)** | [Hv ](../lib/volatility/hv/Hv.md ) | - | - | - | - |
2026-01-18 19:02:03 -08:00
| **Hodrick-Prescott Filter** | [Hp ](../lib/filters/hp/Hp.md ) | - | - | - | - |
| **Holt Weighted MA** | Hwma | - | - | - | ❔ |
2026-02-04 11:43:59 -08:00
| **Homodyne Discriminator Dominant Cycle** | [Homod ](../lib/cycles/homod/homod.md ) | - | - | - | ❔ |
2026-01-18 19:02:03 -08:00
| **Huber Loss** | Huber | - | - | - | - |
| **Hull Exponential MA** | [Hema ](../lib/trends_IIR/hema/Hema.md ) | - | - | - | - |
| **Hull Moving Average** | [Hma ](../lib/trends/hma/hma.md ) | - | ✔️ | ✔️ | [⚠️ ](../lib/trends/hma/hma.md#external-library-discrepancies ) |
2026-02-16 21:26:44 -08:00
| **Hurst Exponent** | Hurst | - | - | - | ❔ |
2026-01-18 19:02:03 -08:00
| **Ichimoku Cloud** | Ichimoku | - | - | ✔️ | ❔ |
2026-02-13 21:44:45 -08:00
| **Impulse (Elder)** | [Impulse ](../lib/dynamics/impulse/Impulse.md ) | - | - | - | - |
2026-02-12 14:29:54 -08:00
| **Inertia** | [Inertia ](../lib/oscillators/inertia/Inertia.md ) | - | - | - | ❔ |
2026-01-18 19:02:03 -08:00
| **Interquartile Range** | Iqr | - | - | - | - |
2026-01-28 08:56:41 -08:00
| **Intraday Intensity Index** | [Iii ](../lib/volume/iii/Iii.md ) | - | - | - | - |
2026-01-18 19:02:03 -08:00
| **Intraday Momentum Index** | Imi | - | - | - | ❔ |
2026-02-16 16:54:36 -08:00
| **Jarque-Bera Test** | [Jb ](../lib/statistics/jb/Jb.md ) | - | - | - | - |
2026-01-18 19:02:03 -08:00
| **Jurik Moving Average** | [Jma ](../lib/trends/jma/jma.md ) | - | - | - | ❔ |
2026-02-02 13:42:47 -08:00
| **Jurik Volatility** | [Jvolty ](../lib/volatility/jvolty/Jvolty.md ) | - | - | - | - |
2026-01-21 14:41:31 -05:00
| **Jurik Adaptive Envelope Bands** | [Jbands ](../lib/channels/jbands/Jbands.md ) | - | - | - | - |
2026-02-02 13:42:47 -08:00
| **Jurik Volatility Normalized [0,100]** | [Jvoltyn ](../lib/volatility/jvoltyn/Jvoltyn.md ) | - | - | - | - |
2026-01-18 19:02:03 -08:00
| **Kalman Filter** | [Kalman ](../lib/filters/kalman/Kalman.md ) | - | - | - | - |
| **Kaufman Adaptive Moving Average** | [Kama ](../lib/trends/kama/kama.md ) | ✔️ | ✔️ | ✔️ | ✔️ |
2026-02-12 14:29:54 -08:00
| **KDJ Indicator** | [Kdj ](../lib/oscillators/kdj/Kdj.md ) | - | - | - | - |
2026-01-21 14:41:31 -05:00
| **Keltner Channel** | [Kchannel ](../lib/channels/kchannel/kchannel.md ) | - | - | ✔️ | ❔ |
2026-02-16 16:54:36 -08:00
| **Kendall Rank Correlation** | [Kendall ](../lib/statistics/kendall/Kendall.md ) | - | - | - | - |
2026-01-28 15:33:47 -08:00
| **Klinger Volume Oscillator** | [Kvo ](../lib/volume/kvo/Kvo.md ) | - | ✔️ | ✔️ | ❔ |
2026-02-16 16:54:36 -08:00
| **Kurtosis** | [Kurtosis ](../lib/statistics/kurtosis/Kurtosis.md ) | - | - | - | [✔️ ](../lib/statistics/kurtosis/Kurtosis.md#validation ) |
2026-02-16 21:26:44 -08:00
| **Least Squares Moving Average** | [Lsma ](../lib/trends/lsma/lsma.md ) | - | - | ✔️ | ❔ |
| **Linear Regression** | [LinReg ](../lib/statistics/linreg/LinReg.md ) | - | - | ✔️ | [⚠️ ](../lib/statistics/linreg/LinReg.md#validation ) |
2026-01-18 19:02:03 -08:00
| **Linear Transformation** | Lineartrans | - | - | - | - |
| **Linear Trend MA** | Ltma | - | - | - | - |
| **LOESS/LOWESS Smoothing** | [Loess ](../lib/filters/loess/Loess.md ) | - | - | - | - |
| **Logarithmic Transformation** | Logtrans | - | - | - | - |
| **Logistic Function** | [Sigmoid ](../lib/numerics/sigmoid/Sigmoid.md ) | - | - | - | - |
| **Lowest value** | [Lowest ](../lib/numerics/lowest/Lowest.md ) | ✔️ | ✔️ | - | - |
| **Lunar Phase** | Lunar | - | - | - | - |
| **Lowest value** | [Lowest ](../lib/numerics/lowest/Lowest.md ) | ✔️ | ✔️ | - | - |
| **Lunar Phase** | Lunar | - | - | - | - |
2026-02-16 21:26:44 -08:00
| **Mass Index** | [Massi ](../lib/volatility/massi/Massi.md ) | - | - | - | ❔ |
2026-01-18 19:02:03 -08:00
| **McGinley Dynamic** | [Mgdi ](../lib/trends/mgdi/mgdi.md ) | - | - | ✔️ | ✔️ |
| **Mean Absolute Error** | Mae | - | - | - | - |
| **Mean Absolute Percentage Difference** | Mapd | - | - | - | - |
| **Mean Absolute Percentage Error** | Mape | - | - | - | - |
| **Mean Absolute Scaled Error** | Mase | - | - | - | - |
| **Mean Error** | Me | - | - | - | - |
| **Mean Percentage Error** | Mpe | - | - | - | - |
| **Mean Squared Error** | Mse | - | - | - | - |
| **Mean Squared Logarithmic Error** | Msle | - | - | - | - |
2026-02-16 21:26:44 -08:00
| **MESA Adaptive Moving Average** | [Mama ](../lib/trends/mama/mama.md ) | - | - | ✔️ | ✔️ |
2026-01-18 19:02:03 -08:00
| **Midpoint** | [Midpoint ](../lib/numerics/midpoint/Midpoint.md ) | ✔️ | - | - | - |
2026-02-16 21:26:44 -08:00
| **Min-Max Channel** | [Mmchannel ](../lib/channels/mmchannel/mmchannel.md ) | - | - | ✔️ | - |
2026-01-18 19:02:03 -08:00
| **Min-Max Scaling (Normalization)** | [Normalize ](../lib/numerics/normalize/Normalize.md ) | - | - | - | - |
| **Mode (Most Frequent)** | Mode | - | - | - | - |
| **Modified MA** | [Mma ](../lib/trends_IIR/mma/Mma.md ) | - | - | - | - |
2026-02-16 21:26:44 -08:00
| **Momentum** | Mom | ✔️ | ✔️ | ✔️ | ❔ |
2026-01-18 19:02:03 -08:00
| **Momentum change; 2nd derivative** | Accel | - | - | - | - |
2026-02-16 21:26:44 -08:00
| **Money Flow Index** | [Mfi ](../lib/volume/mfi/Mfi.md ) | - | - | ✔️ | ✔️ |
2026-01-18 19:02:03 -08:00
| **Moon Phase** | Moon | - | - | - | - |
2026-02-16 21:26:44 -08:00
| **Moving Average Convergence/Divergence** | [Macd ](../lib/momentum/macd/Macd.md ) | ✔️ | ✔️ | ✔️ | ✔️ |
2026-01-21 14:41:31 -05:00
| **Moving Average Envelopes** | [Maenv ](../lib/channels/maenv/maenv.md ) | - | - | ✔️ | ❔ |
2026-01-28 15:33:47 -08:00
| **Negative Volume Index** | [Nvi ](../lib/volume/nvi/Nvi.md ) | - | ✔️ | - | - |
2026-02-16 21:26:44 -08:00
| **Normalized Average True Range** | Natr | ✔️ | ✔️ | ✔️ | ✔️ |
2026-01-18 19:02:03 -08:00
| **Normalized Shannon Entropy** | Entropy | - | - | - | - |
| **Notch Filter** | [Notch ](../lib/filters/notch/Notch.md ) | - | - | - | - |
2026-01-28 17:54:43 -08:00
| **On Balance Volume** | [Obv ](../lib/volume/obv/Obv.md ) | [⚠️ ](../lib/volume/obv/Obv.md#validation ) | ✔️ | ✔️ | [⚠️ ](../lib/volume/obv/Obv.md#validation ) |
2026-02-16 21:26:44 -08:00
| **Parabolic SAR** | [Psar ](../lib/reversals/psar/Psar.md ) | - | - | ✔️ | ❔ |
| **Pascal Weighted Moving Average** | [Pwma ](../lib/trends/pwma/pwma.md ) | - | - | - | ✔️ |
| **Percentage Change** | [Change ](../lib/numerics/change/Change.md ) | - | ✔️ | - | - |
| **Percentage Price Oscillator** | Ppo | ✔️ | ✔️ | - | ✔️ |
| **Percentage Volume Oscillator** | [Pvo ](../lib/volume/pvo/Pvo.md ) | - | - | - | ❔ |
2026-01-18 19:02:03 -08:00
| **Percentile** | Percentile | - | - | - | - |
2026-02-16 21:26:44 -08:00
| **Pivot Points** | [Pivot ](../lib/reversals/pivot/Pivot.md ) | - | - | - | ❔ |
| **Pivot Points (Camarilla)** | [Pivotcam ](../lib/reversals/pivotcam/Pivotcam.md ) | - | - | - | ❔ |
| **Pivot Points (DeMark)** | [Pivotdem ](../lib/reversals/pivotdem/Pivotdem.md ) | - | - | - | ❔ |
| **Pivot Points (Extended)** | [Pivotext ](../lib/reversals/pivotext/Pivotext.md ) | - | - | - | ❔ |
| **Pivot Points (Fibonacci)** | [Pivotfib ](../lib/reversals/pivotfib/Pivotfib.md ) | - | - | - | ❔ |
2026-01-28 17:54:43 -08:00
| **Positive Volume Index** | [Pvi ](../lib/volume/pvi/Pvi.md ) | - | ✔️ | - | - |
2026-02-12 14:29:54 -08:00
| **Pretty Good Oscillator** | [Pgo ](../lib/oscillators/pgo/Pgo.md ) | - | - | - | ❔ |
2026-02-16 21:26:44 -08:00
| **Price Channel** | [Pchannel ](../lib/channels/pchannel/pchannel.md ) | - | - | ✔️ | - |
| **Price Momentum Oscillator** | Pmo | - | - | ✔️ | ✔️ |
2026-01-18 19:02:03 -08:00
| **Price Relative Strength** | Prs | - | - | ✔️ | - |
2026-01-28 17:54:43 -08:00
| **Price Volume Divergence** | [Pvd ](../lib/volume/pvd/Pvd.md ) | - | - | - | - |
2026-02-16 21:26:44 -08:00
| **Price Volume Rank** | [Pvr ](../lib/volume/pvr/Pvr.md ) | - | - | - | - |
| **Price Volume Trend** | [Pvt ](../lib/volume/pvt/Pvt.md ) | - | - | - | ✔️ |
2026-01-18 19:02:03 -08:00
| **Qstick Indicator** | Qstick | - | - | - | ❔ |
| **Quad Exponential MA** | [Qema ](../lib/trends_IIR/qema/Qema.md ) | - | - | - | - |
| **Quantile** | Quantile | - | - | - | - |
| **Rate of acceleration; 3rd derivative** | [Jerk ](../lib/numerics/jerk/Jerk.md ) | - | - | - | - |
2026-02-16 21:26:44 -08:00
| **Rate of Change** | [Roc ](../lib/momentum/roc/Roc.md ) | - | ✔️ | ✔️ | ❔ |
| **Rate of change; 1st derivative** | [Slope ](../lib/statistics/linreg/LinReg.md ) | - | - | ✔️ | ❔ |
2026-01-18 19:02:03 -08:00
| **Rate of Change Percentage** | Rocp | ✔️ | - | - | - |
| **Rate of Change Ratio** | Rocr | ✔️ | ✔️ | - | - |
2026-02-02 13:42:47 -08:00
| **Realized Volatility** | [Rv ](../lib/volatility/rv/Rv.md ) | - | - | - | - |
2026-01-18 19:02:03 -08:00
| **Rectified Linear Unit** | [Relu ](../lib/numerics/relu/Relu.md ) | - | - | - | - |
| **Recursive Gaussian MA** | [Rgma ](../lib/trends_IIR/rgma/Rgma.md ) | - | - | - | - |
2026-01-21 14:41:31 -05:00
| **Regression Channels** | [Regchannel ](../lib/channels/regchannel/regchannel.md ) | - | - | - | - |
2026-01-18 19:02:03 -08:00
| **Regularized Exponential MA** | [Rema ](../lib/trends_IIR/rema/Rema.md ) | - | - | - | ❔ |
| **Relative Absolute Error** | Rae | - | - | - | - |
| **Relative Squared Error** | Rse | - | - | - | - |
| **Relative Strength Index** | [Rsi ](../lib/momentum/rsi/Rsi.md ) | ✔️ | ✔️ | ✔️ | ✔️ |
| **Relative Strength Quality Index** | [Rsx ](../lib/momentum/rsx/rsx.md ) | - | - | - | ❔ |
2026-02-02 13:42:47 -08:00
| **Relative Volatility Index** | [Rvi ](../lib/volatility/rvi/Rvi.md ) | - | - | - | ❔ |
2026-01-18 19:02:03 -08:00
| **Renko** | - | - | - | ✔️ | - |
| **Rogers-Satchell Volatility** | Rsv | - | - | - | - |
| **Root Mean Squared Error** | Rmse | - | - | - | - |
| **Root Mean Squared Logarithmic Error** | Rmsle | - | - | - | - |
| **R-Squared** | [RSquared ](../lib/statistics/linreg/LinReg.md ) | - | - | ✔️ | ❔ |
| **Savitzky-Golay Filter** | [Sgf ](../lib/filters/sgf/Sgf.md ) | - | - | - | - |
| **Savitzky-Golay MA** | [Sgma ](../lib/trends_FIR/sgma/Sgma.md ) | - | - | - | - |
| **Schaff Trend Cycle** | [Stc ](../lib/cycles/stc/Stc.md ) | - | - | ✔️ | ❔ |
| **Simple Moving Average** | [Sma ](../lib/trends/sma/sma.md ) | ✔️ | ✔️ | ✔️ | ✔️ |
| **Sine-weighted MA** | [Sinema ](../lib/trends_FIR/sinema/Sinema.md ) | - | - | - | - |
2026-02-16 21:26:44 -08:00
| **Smoothed Moving Average** | [Rma ](../lib/trends/rma/rma.md ) | - | - | ✔️ | ✔️ |
2026-01-18 19:02:03 -08:00
| **Solar Activity Cycle** | Solar | - | - | - | - |
| **Spearman Rank Correlation** | Spearman | - | - | - | ❔ |
| **Square Root Transformation** | [Sqrttrans ](../lib/numerics/sqrttrans/Sqrttrans.md ) | - | - | - | - |
2026-01-21 14:41:31 -05:00
| **Standard Deviation Channel** | [Sdchannel ](../lib/channels/sdchannel/sdchannel.md ) | - | - | - | ❔ |
2026-01-18 19:02:03 -08:00
| **Standardization (Z-score)** | Standardize | - | - | - | ❔ |
| **Starc Bands** | Starc | - | - | - | - |
2026-02-16 21:26:44 -08:00
| **Stochastic Fast** | [Stochf ](../lib/oscillators/stochf/Stochf.md ) | ✔️ | - | ✔️ | ❔ |
| **Stochastic Momentum Index** | [Smi ](../lib/oscillators/smi/Smi.md ) | - | - | - | ❔ |
2026-02-12 14:29:54 -08:00
| **Stochastic Oscillator** | [Stoch ](../lib/oscillators/stoch/Stoch.md ) | - | - | ✔️ | - |
2026-02-16 21:26:44 -08:00
| **Stochastic RSI** | [Stochrsi ](../lib/oscillators/stochrsi/Stochrsi.md ) | ✔️ | - | ✔️ | ✔️ |
| **Stoller Average Range Channel** | [Starchannel ](../lib/channels/starchannel/starchannel.md ) | - | - | ✔️ | ❔ |
2026-01-24 19:07:52 -08:00
| **Super Trend Bands** | [Stbands ](../lib/channels/stbands/Stbands.md ) | - | - | - | - |
2026-01-18 19:02:03 -08:00
| **SuperTrend** | [Super ](../lib/trends/super/super.md ) | - | - | ✔️ | ❔ |
2026-02-16 21:26:44 -08:00
| **Swing High/Low Detection** | [Swings ](../lib/reversals/swings/Swings.md ) | - | - | - | ❔ |
2026-01-18 19:02:03 -08:00
| **Symmetric Mean Absolute Percentage Error** | Smape | - | - | - | - |
| **T3 Moving Average** | [T3 ](../lib/trends/t3/t3.md ) | ✔️ | - | ✔️ | ✔️ |
| **Theil Index** | Theil | - | - | - | - |
| **Time Series Forecast** | Tsf | ✔️ | ✔️ | - | ❔ |
| **Time Weighted Average Price** | Twap | - | - | - | - |
| **Trade Volume Index** | Tvi | - | - | - | ❔ |
| **Triangular Moving Average** | [Trima ](../lib/trends/trima/trima.md ) | ✔️ | ✔️ | ✔️ | ❔ |
2026-02-12 19:43:09 -08:00
| **Triple Exponential Average** | [Trix ](../lib/oscillators/trix/Trix.md ) | ✔️ | ✔️ | ✔️ | ❔ |
2026-01-18 19:02:03 -08:00
| **Triple Exponential Moving Average** | [Tema ](../lib/trends/tema/tema.md ) | ✔️ | ✔️ | ✔️ | ❔ |
2026-02-16 21:26:44 -08:00
| **True Range** | Tr | ✔️ | ✔️ | - | - |
| **True Strength Index** | Tsi | - | - | ✔️ | ✔️ |
2026-01-18 19:02:03 -08:00
| **TTM Trend** | Ttm | - | - | - | - |
2026-02-16 21:26:44 -08:00
| **TTM Scalper Alert** | [TtmScalper ](../lib/reversals/ttm_scalper/TtmScalper.md ) | - | - | - | - |
2026-02-12 19:43:09 -08:00
| **TTM Wave** | [TtmWave ](../lib/oscillators/ttm_wave/TtmWave.md ) | - | - | - | - |
2026-01-18 19:02:03 -08:00
| **Two-Argument Arctangent** | Atan2 | - | - | - | - |
2026-02-16 21:26:44 -08:00
| **Ulcer Index** | Ui | - | - | - | ❔ |
2026-01-24 19:07:52 -08:00
| **Ultimate Bands (Ehlers)** | [Ubands ](../lib/channels/ubands/Ubands.md ) | - | - | - | - |
| **Ultimate Channel** | [Uchannel ](../lib/channels/uchannel/Uchannel.md ) | - | - | - | - |
2026-01-18 19:02:03 -08:00
| **Ultimate Oscillator** | [Ultosc ](../lib/momentum/ultosc/Ultosc.md ) | ✔️ | ✔️ | ✔️ | ✔️ |
2026-02-16 21:26:44 -08:00
| **Variable Index Dynamic Average** | [Vidya ](../lib/trends/vidya/vidya.md ) | - | - | - | ❔ |
2026-01-18 19:02:03 -08:00
| **Velocity (Jurik)** | [Vel ](../lib/momentum/vel/vel.md ) | - | - | - | - |
| **Volatility Adjusted Moving Average** | [Vama ](../lib/trends_IIR/vama/Vama.md ) | - | - | - | ❔ |
2026-02-02 13:42:47 -08:00
| **Volatility of Volatility** | [Vov ](../lib/volatility/vov/Vov.md ) | - | - | - | - |
2026-02-02 19:47:21 -08:00
| **Volatility Ratio** | [Vr ](../lib/volatility/vr/Vr.md ) | - | - | - | - |
2026-01-18 19:02:03 -08:00
| **Volume Accumulation** | Va | - | - | - | ❔ |
| **Volume Force** | Vf | - | - | - | - |
2026-02-16 21:26:44 -08:00
| **Volume Oscillator** | Vo | - | - | - | - |
2026-01-18 19:02:03 -08:00
| **Volume Rate of Change** | Vroc | - | - | - | - |
2026-01-31 11:21:09 -08:00
| **Volume Weighted Accumulation/Distribution** | [Vwad ](../lib/volume/vwad/Vwad.md ) | - | - | - | - |
2026-02-16 21:26:44 -08:00
| **Volume Weighted Average Price** | [Vwap ](../lib/volume/vwap/Vwap.md ) | - | - | - | - |
2026-01-31 11:21:09 -08:00
| **Volume Weighted Moving Average** | [Vwma ](../lib/volume/vwma/Vwma.md ) | - | - | ✔️ | - |
2026-01-18 19:02:03 -08:00
| **Vortex Indicator** | Vortex | - | - | ✔️ | ❔ |
2026-01-24 19:07:52 -08:00
| **VWAP Bands** | [Vwapbands ](../lib/channels/vwapbands/Vwapbands.md ) | - | - | - | - |
| **VWAP with Standard Deviation Bands** | [Vwapsd ](../lib/channels/vwapsd/Vwapsd.md ) | - | - | - | - |
2026-02-16 21:26:44 -08:00
| **Weighted Moving Average** | [Wma ](../lib/trends/wma/wma.md ) | ✔️ | ✔️ | ✔️ | - |
2026-01-18 19:02:03 -08:00
| **Wiener Filter** | Wiener | - | - | - | - |
2026-02-12 19:43:09 -08:00
| **Williams %R** | [Willr ](../lib/oscillators/willr/Willr.md ) | ✔️ | ✔️ | ✔️ | ❔ |
2026-02-16 21:26:44 -08:00
| **Williams Accumulation/Distribution** | [Wad ](../lib/volume/wad/Wad.md ) | - | ✔️ | - | [⚠️ ](../lib/volume/wad/Wad.md#validation ) |
2026-01-18 19:02:03 -08:00
| **Williams Alligator** | Alligator | - | - | ✔️ | ❔ |
2026-02-16 21:26:44 -08:00
| **Williams Fractal** | [Fractals ](../lib/reversals/fractals/Fractals.md ) | - | - | ✔️ | ❔ |
| **Woodie's Pivot Points** | [Pivotwood ](../lib/reversals/pivotwood/Pivotwood.md ) | - | - | - | ❔ |
2026-01-18 19:02:03 -08:00
| **Yang-Zhang Volatility** | Yzv | - | - | - | - |
| **Yang-Zhang Volatility Adjusted MA** | [Yzvama ](../lib/trends_IIR/yzvama/Yzvama.md ) | - | - | - | - |
| **Zero-Lag Double Exponential MA** | Zldema | - | - | - | - |
2026-02-16 21:26:44 -08:00
| **Zero-Lag Exponential Moving Average** | [Zlema ](../lib/trends_IIR/zlema/Zlema.md ) | - | - | - | ❔ |
2026-01-18 19:02:03 -08:00
| **Zero-Lag Triple Exponential MA** | Zltema | - | - | - | ❔ |
| **ZigZag** | - | - | - | ✔️ | - |
2026-02-16 16:54:36 -08:00
| **Z-score standardization** | Zscore | - | - | - | ✔️ Manual + Standardize cross-validation |
2026-01-18 19:02:03 -08:00
| **Z-Test** | Ztest | - | - | - | - |
## Statistical Indicators
| Indicator | QuanTAlib | MathNet | TA-Lib | Tulip | Skender |
| :-------- | :-------- | :-----: | :----: | :---: | :-----: |
2026-02-02 19:47:21 -08:00
| **Autocorrelation Function** | [Acf ](../lib/statistics/acf/Acf.md ) | - | - | - | - |
2026-01-18 19:02:03 -08:00
| **Covariance** | [Covariance ](../lib/statistics/covariance/Covariance.md ) | - | - | - | - |
2026-02-13 21:44:45 -08:00
| **Entropy (Shannon)** | [Entropy ](../lib/statistics/entropy/Entropy.md ) | - | - | - | - |
2026-02-16 21:26:44 -08:00
| **Geometric Mean** | [Geomean ](../lib/statistics/geomean/Geomean.md ) | - | - | - | - |
| **Harmonic Mean** | [Harmean ](../lib/statistics/harmean/Harmean.md ) | - | - | - | - |
2026-02-15 21:59:03 -08:00
| **Hurst Exponent** | [Hurst ](../lib/statistics/hurst/Hurst.md ) | - | - | - | - |
| **Interquartile Range** | [Iqr ](../lib/statistics/iqr/Iqr.md ) | - | - | - | - |
2026-02-13 21:44:45 -08:00
| **Granger Causality** | [Granger ](../lib/statistics/granger/Granger.md ) | - | - | - | - |
2026-02-16 16:54:36 -08:00
| **Jarque-Bera Test** | [Jb ](../lib/statistics/jb/Jb.md ) | - | - | - | - |
| **Kendall Rank Correlation** | [Kendall ](../lib/statistics/kendall/Kendall.md ) | - | - | - | - |
2026-01-18 19:02:03 -08:00
| **Median (Statistical)** | [Median ](../lib/statistics/median/Median.md ) | ✔️ | - | - | - |
2026-02-16 16:54:36 -08:00
| **Mode** | [Mode ](../lib/statistics/mode/Mode.md ) | - | - | - | - |
| **Percentile** | [Percentile ](../lib/statistics/percentile/Percentile.md ) | - | - | - | - |
| **Quantile** | [Quantile ](../lib/statistics/quantile/Quantile.md ) | - | - | - | - |
2026-01-18 19:02:03 -08:00
| **Skewness** | [Skew ](../lib/statistics/skew/Skew.md ) | ✔️ | - | - | - |
2026-02-16 16:54:36 -08:00
| **Spearman Rank Correlation** | [Spearman ](../lib/statistics/spearman/Spearman.md ) | - | - | - | - |
2026-01-18 19:02:03 -08:00
| **Standard Deviation** | [StdDev ](../lib/statistics/stddev/StdDev.md ) | ✔️ | ✔️ | ✔️ | ✔️ |
| **Sum (Rolling)** | [Sum ](../lib/statistics/sum/Sum.md ) | - | ✔️ | ✔️ | - |
2026-02-16 16:54:36 -08:00
| **Theil T Index** | [Theil ](../lib/statistics/theil/Theil.md ) | - | - | - | - |
2026-02-02 19:47:21 -08:00
| **Partial Autocorrelation Function** | [Pacf ](../lib/statistics/pacf/Pacf.md ) | - | - | - | - |
2026-01-18 19:02:03 -08:00
| **Variance** | [Variance ](../lib/statistics/variance/Variance.md ) | ✔️ | ✔️ | ✔️ | ✔️ |
2026-02-16 16:54:36 -08:00
| **Z-Score** | [Zscore ](../lib/statistics/zscore/Zscore.md ) | - | - | - | - |
| **Z-Test** | [Ztest ](../lib/statistics/ztest/Ztest.md ) | - | - | - | - |
2026-01-18 19:02:03 -08:00
## Error Metrics
| Indicator | QuanTAlib | MathNet | Notes |
| :-------- | :-------- | :-----: | :---- |
| **Mean Absolute Error** | [Mae ](../lib/errors/mae/Mae.md ) | ✔️ | Validated via `Distance.MAE()` |
| **Mean Squared Error** | [Mse ](../lib/errors/mse/Mse.md ) | ✔️ | Validated via `Distance.MSE()` |
| **Root Mean Squared Error** | [Rmse ](../lib/errors/rmse/Rmse.md ) | ✔️ | Validated via `sqrt(Distance.MSE())` |
| **R-Squared** | [Rsquared ](../lib/errors/rsquared/Rsquared.md ) | - | Uses streaming-optimized TSS calculation |
| **Huber Loss** | [Huber ](../lib/errors/huber/Huber.md ) | - | No external validation available |
| **Pseudo-Huber Loss** | [PseudoHuber ](../lib/errors/pseudohuber/PseudoHuber.md ) | - | No external validation available |
| **Log-Cosh Loss** | [LogCosh ](../lib/errors/logcosh/LogCosh.md ) | - | No external validation available |
| **Tukey Loss** | [Tukey ](../lib/errors/tukey/Tukey.md ) | - | No external validation available |
| **Quantile Loss** | [Quantile ](../lib/errors/quantile/Quantile.md ) | - | No external validation available |
| **MAPE** | [Mape ](../lib/errors/mape/Mape.md ) | - | No external validation available |
| **SMAPE** | [Smape ](../lib/errors/smape/Smape.md ) | - | No external validation available |
| **MAAPE** | [Maape ](../lib/errors/maape/Maape.md ) | - | No external validation available |
| **MASE** | [Mase ](../lib/errors/mase/Mase.md ) | - | No external validation available |
| **MSLE** | [Msle ](../lib/errors/msle/Msle.md ) | - | No external validation available |
| **RMSLE** | [Rmsle ](../lib/errors/rmsle/Rmsle.md ) | - | No external validation available |
| **Theil U** | [TheilU ](../lib/errors/theilu/TheilU.md ) | - | No external validation available |
| **Mean Error** | [Me ](../lib/errors/me/Me.md ) | - | No external validation available |
| **MPE** | [Mpe ](../lib/errors/mpe/Mpe.md ) | - | No external validation available |
| **RSE** | [Rse ](../lib/errors/rse/Rse.md ) | - | No external validation available |
| **RAE** | [Rae ](../lib/errors/rae/Rae.md ) | - | No external validation available |
| **MRAE** | [Mrae ](../lib/errors/mrae/Mrae.md ) | - | No external validation available |
| **MdAE** | [MdAE ](../lib/errors/mdae/MdAE.md ) | - | No external validation available |
| **MdAPE** | [MdAPE ](../lib/errors/mdape/MdAPE.md ) | - | No external validation available |
| **MAPD** | [Mapd ](../lib/errors/mapd/Mapd.md ) | - | No external validation available |
| **WMAPE** | [Wmape ](../lib/errors/wmape/Wmape.md ) | - | No external validation available |
| **WRMSE** | [Wrmse ](../lib/errors/wrmse/Wrmse.md ) | - | Validated via internal RMSE equivalence (uniform weights) |
## Validation Libraries
| Library | Language | License | Notes |
| :------ | :------- | :------ | :---- |
| [TA-Lib ](https://ta-lib.org/ ) | C (via .NET wrapper) | BSD | Industry standard. C implementation, battle-tested. |
| [Tulip ](https://tulipindicators.org/ ) | C (via .NET wrapper) | LGPL | Lightweight, well-documented. |
| [Skender.Stock.Indicators ](https://dotnet.stockindicators.dev/ ) | C# | MIT | Pure .NET. Active development. |
| [OoplesFinance ](https://github.com/ooples/OoplesFinance.StockIndicators ) | C# | Apache 2.0 | Large indicator collection. Validation coverage varies. |
| [MathNet.Numerics ](https://numerics.mathdotnet.com/ ) | C# | MIT | Statistical functions, not TA-specific. |
## Running Validation Tests
```bash
# All validation tests
dotnet test lib/QuanTAlib.Tests.csproj --filter "Category=Validation"
# Specific library comparison
dotnet test lib/QuanTAlib.Tests.csproj --filter "FullyQualifiedName~TalibValidation"
dotnet test lib/QuanTAlib.Tests.csproj --filter "FullyQualifiedName~SkenderValidation"
# Single indicator validation
dotnet test lib/QuanTAlib.Tests.csproj --filter "FullyQualifiedName~EmaValidation"
```
## Discrepancy Investigation
When validation fails:
1. **Check parameter mapping.** TA-Lib uses 0-based indexing for some parameters. Skender uses 1-based.
2. **Check warmup handling.** Different libraries handle the first N values differently.
3. **Check smoothing assumptions.** Some libraries use SMA for initial EMA seed. Others use the first value.
4. **Check edge cases.** NaN handling, zero division, and boundary conditions vary.
Discrepancies get documented in the indicator's markdown file under a "Validation Notes" section. The goal is not to match every library exactly. The goal is to understand why differences exist and document them.
## References
- [TA-Lib Documentation ](https://ta-lib.org/d_api/d_api.html )
- [Skender.Stock.Indicators Wiki ](https://dotnet.stockindicators.dev/guide/ )
2026-01-21 14:41:31 -05:00
- [Tulip Indicators Reference ](https://tulipindicators.org/list )