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("Percentage Volume Oscillator (PVO)", "PVO", overlay=false)
//@returns tuple with [pvo, signal, histogram] values
//@optimized Beta precomputation for EMA warmup compensation
pvo(series float vol, simple int fast_period, simple int slow_period, simple int signal_period) =>
if fast_period <= 0 or slow_period <= 0 or signal_period <= 0
runtime.error("All periods must be greater than 0")
if fast_period >= slow_period
runtime.error("Fast period must be less than slow period")
float vol_val = nz(vol, 0.0)
float fast_alpha = 2.0 / (fast_period + 1)
float slow_alpha = 2.0 / (slow_period + 1)