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
@@ -10,8 +10,6 @@ indicator("Volume Weighted Moving Average (VWMA)", "VWMA", overlay=true)
//@returns VWMA value representing volume-weighted moving average
//@optimized for performance and dirty data
vwma(series float src, series float vol, simple int period) =>
if period <= 0
runtime.error("Period must be greater than 0")
var int p = math.max(1, period), var int head = 0, var int count = 0
var array<float> price_buffer = array.new_float(p, na)
var array<float> vol_buffer = array.new_float(p, na)