mirror of
https://github.com/mihakralj/QuanTAlib.git
synced 2026-08-17 18:18:04 +00:00
- Introduced a new `Sum` class implementing the Kahan-Babuška algorithm for high-precision rolling summation. - Added comprehensive documentation for the `Sum` class, detailing its mathematical foundation, performance profile, and use cases. - Refactored `VarianceIndicator` tests to improve clarity and coverage, including checks for different source types and the ability to change properties. - Enhanced `UsfIndicator` tests to validate initialization, processing of updates, and property changes. - Updated `UsfIndicator` implementation to simplify source handling and improve short name generation. - Modified Qodana configuration to exclude unused auto property accessor warnings.
35 lines
1.3 KiB
Markdown
35 lines
1.3 KiB
Markdown
# Statistics
|
|
|
|
Statistical analysis tools applied to price/returns.
|
|
|
|
| Indicator | Full Name | Description |
|
|
| :--- | :--- | :--- |
|
|
| BETA | Beta Coefficient | |
|
|
| BIAS | Bias | |
|
|
| COINTEGRATION | Cointegration | |
|
|
| CORRELATION | Correlation (Pearson's) | |
|
|
| [COVARIANCE](covariance/Covariance.md) | Covariance | |
|
|
| [CMA](cma/Cma.md) | Cumulative Moving Average | Running average of ALL values (Welford's algorithm). No window. |
|
|
| ENTROPY | Normalized Shannon Entropy | |
|
|
| GEOMEAN | Geometric Mean | |
|
|
| GRANGER | Granger Causality Test | |
|
|
| HARMEAN | Harmonic Mean | |
|
|
| HURST | Hurst | |
|
|
| IQR | Interquartile Range | |
|
|
| JB | Jarque-Bera Test | |
|
|
| KENDALL | Kendall Rank Correlation | |
|
|
| KURTOSIS | Kurtosis | |
|
|
| [LINREG](linreg/LinReg.md) | Linear Regression Curve | |
|
|
| [MEDIAN](median/Median.md) | Median (Statistical) | |
|
|
| MODE | Mode (Most Frequent) | |
|
|
| PERCENTILE | Percentile | |
|
|
| QUANTILE | Quantile | |
|
|
| [SKEW](skew/Skew.md) | Skewness | |
|
|
| SPEARMAN | Spearman Rank Correlation | |
|
|
| [STDDEV](stddev/StdDev.md) | Standard Deviation | |
|
|
| [SUM](sum/Sum.md) | Rolling Sum | Kahan-Babuška summation for numerical stability. |
|
|
| THEIL | Theil Index | |
|
|
| [VARIANCE](variance/Variance.md) | Variance | |
|
|
| ZSCORE | Z-score standardization | |
|
|
| ZTEST | Z-Test | |
|