mirror of
https://github.com/mihakralj/QuanTAlib.git
synced 2026-08-23 21:18:04 +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:
@@ -12,9 +12,9 @@ Introduced by Karl Pearson in 1895, Skewness (along with Kurtosis) provides the
|
||||
|
||||
The `Skew` indicator uses a sliding window (RingBuffer) to maintain the last $N$ samples. To ensure O(1) performance, it maintains running sums of the first three powers of the input:
|
||||
|
||||
- $\sum x$
|
||||
- $\sum x^2$
|
||||
- $\sum x^3$
|
||||
* $\sum x$
|
||||
* $\sum x^2$
|
||||
* $\sum x^3$
|
||||
|
||||
This allows calculating the 2nd and 3rd central moments instantly without re-iterating the buffer.
|
||||
|
||||
|
||||
Reference in New Issue
Block a user