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
-8
View File
@@ -10,14 +10,6 @@ indicator("Conditional Volatility (CV)", "CV", overlay=false)
//@returns float Conditional volatility value
//@optimized for performance and efficient variance updating
cv(simple int length, simple float alpha, simple float beta) =>
if length <= 0
runtime.error("Length must be greater than 0")
if alpha <= 0.0 or alpha >= 1.0
runtime.error("Alpha must be between 0 and 1")
if beta <= 0.0 or beta >= 1.0
runtime.error("Beta must be between 0 and 1")
if alpha + beta >= 1.0
runtime.error("Alpha + Beta must be less than 1 for stationarity")
var float omega = 0.0
var float longRunVar = 0.0
var float prevVariance = 0.0