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("Historical Volatility (HV)", "HV", overlay=false)
//@returns float The Historical Volatility value.
//@optimized for performance and dirty data
hv(series float src_price, simple int length_hv, simple bool annualize = true, simple int annualPeriods = 252) =>
if length_hv <= 1
runtime.error("Length for HV must be greater than 1")
if annualize and annualPeriods <= 0
runtime.error("Annual periods must be greater than 0 if annualizing")
var array<float> _buffer_hv = array.new_float(length_hv, na)
var int _head_idx_hv = 0
var int _current_fill_count_hv = 0