fix(docs): correct .md documentation across errors, dynamics, filters, forecasts, momentum, numerics, oscillators, reversals, statistics, trends, volatility, volume

Deep review of all indicator categories verified .md headers against .cs WarmupPeriod, parameters, inputs, and outputs. Fixes include warmup corrections, parameter documentation, output type accuracy, and Pine Script alignment.
This commit is contained in:
Miha Kralj
2026-03-10 18:38:23 -07:00
parent 8906c62dcf
commit 35a6702b06
178 changed files with 2579 additions and 998 deletions
+2 -2
View File
@@ -7,7 +7,7 @@
| **Parameters** | `length` |
| **Outputs** | Single series (Bessel) |
| **Output range** | Tracks input |
| **Warmup** | 1 bar |
| **Warmup** | `length` bars |
| **Signature** | [bessel_signature](bessel_signature.md) |
### TL;DR
@@ -15,7 +15,7 @@
- The Bessel Filter is a 2nd-order low-pass IIR filter designed to preserve the **shape** and **timing** of price moves.
- Parameterized by `length`.
- Output range: Tracks input.
- Requires 1 bar of warmup before first valid output (IsHot = true).
- Requires `length` bars of warmup before first valid output (IsHot = true).
- Validated against TA-Lib, Skender, and Tulip reference implementations where available.
> When you care more about *when* the market turns than how aggressively you can torture the noise, you reach for a Bessel.