mirror of
https://github.com/mihakralj/QuanTAlib.git
synced 2026-08-21 20:18:05 +00:00
Refactor documentation for various filters and indicators to enhance clarity and consistency
- Updated Bessel, Bilateral, Blma, Butter, Conv, Ema, Kama, LSMA, MAMA, MGDI, SSF, USF, ATR, ADL, and ADOSC documentation to use bullet points for key concepts and features. - Added a new Qodana configuration file for code analysis. - Removed coverage configuration from Quantower.Tests.csproj to streamline testing setup.
This commit is contained in:
@@ -50,10 +50,10 @@ $$ M_n = M_{n-1} + \frac{x_n - M_{n-1}}{n} $$
|
||||
|
||||
Where:
|
||||
|
||||
- $M_n$ = cumulative mean after $n$ values
|
||||
- $M_{n-1}$ = previous cumulative mean
|
||||
- $x_n$ = new value
|
||||
- $n$ = total count of values
|
||||
* $M_n$ = cumulative mean after $n$ values
|
||||
* $M_{n-1}$ = previous cumulative mean
|
||||
* $x_n$ = new value
|
||||
* $n$ = total count of values
|
||||
|
||||
### 2. Algebraic Equivalence
|
||||
|
||||
@@ -94,4 +94,4 @@ CMA is a fundamental statistical operation rather than a standard TA library ind
|
||||
1. **Responsiveness**: CMA becomes nearly unresponsive after many values. For a reactive average, use SMA or EMA instead.
|
||||
2. **Memory of Bad Data**: A single extreme outlier early in the stream permanently affects the average. Consider filtering before feeding CMA.
|
||||
3. **No Period Parameter**: Unlike SMA/EMA, CMA has no period. It always includes all data. This is by design.
|
||||
4. **Session Resets**: If you need per-session averages, call `Reset()` at session boundaries.
|
||||
4. **Session Resets**: If you need per-session averages, call `Reset()` at session boundaries.
|
||||
|
||||
Reference in New Issue
Block a user