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
@@ -4,7 +4,7 @@
| ---------------- | -------------------------------- |
| **Category** | Reversal |
| **Inputs** | OHLCV bar (TBar) |
| **Parameters** | `lookback` (default DefaultLookback) |
| **Parameters** | `lookback` (default 5) |
| **Outputs** | Single series (Swings) |
| **Output range** | Varies (see docs) |
| **Warmup** | 1 bar |
@@ -12,7 +12,7 @@
### TL;DR
- Swing High/Low detection identifies local price extremes using a configurable lookback window.
- Parameterized by `lookback` (default defaultlookback).
- Parameterized by `lookback` (default 5).
- Output range: Varies (see docs).
- Requires 1 bar of warmup before first valid output (IsHot = true).
- Validated against TA-Lib, Skender, and Tulip reference implementations where available.