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
View File
@@ -8,8 +8,6 @@ indicator("Normalized Average True Range", "NATR", overlay=false, format=format.
//@returns The NATR value as a percentage of close price.
//@optimized Beta precomputation for RMA warmup compensation
natr(simple int length) =>
if length <= 0
runtime.error("Period must be greater than 0")
float prevClose = nz(close[1], close)
float tr1 = high - low
float tr2 = math.abs(high - prevClose)