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
-4
View File
@@ -11,10 +11,6 @@ indicator("Chaikin Money Flow (CMF)", "CMF", overlay=false)
//@param src_vol The volume (default: built-in volume)
//@returns float CMF value between -1 and 1
cmf(len = 20, src_high = high, src_low = low, src_close = close, src_vol = volume) =>
// Validate parameters
if len < 1
runtime.error("Length must be >= 1")
// Calculate Money Flow Multiplier
float mfm = 0.0
if not na(src_high) and not na(src_low) and not na(src_close)