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
@@ -12,8 +12,6 @@ indicator("Money Flow Index (MFI)", "MFI", overlay=false)
//@returns float The MFI value (0-100)
//@optimized Uses circular buffers for O(1) performance with proper NA handling
mfi(simple int len, series float src_high=high, series float src_low=low, series float src_close=close, series float src_vol=volume) =>
if len < 1
runtime.error("Invalid parameter: len must be >= 1")
float typical_price = (src_high + src_low + src_close) / 3.0
float raw_money_flow = typical_price * nz(src_vol, 0.0)
float prev_typical_price = nz(typical_price[1], typical_price)