mirror of
https://github.com/mihakralj/QuanTAlib.git
synced 2026-08-26 06:18:05 +00:00
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:
@@ -10,8 +10,6 @@ indicator("Variable Index Dynamic Average (VIDYA)", "VIDYA", overlay=true)
|
||||
//@returns VIDYA value that adapts to market volatility
|
||||
//@optimized Uses volatility index calculation with O(n) complexity per bar due to lookback loops
|
||||
vidya(series float source, simple int period, simple int std_period=0) =>
|
||||
if period <= 0
|
||||
runtime.error("Period must be greater than 0")
|
||||
float alpha = 2.0 / (period + 1.0)
|
||||
var float vidya = na
|
||||
if not na(source)
|
||||
|
||||
Reference in New Issue
Block a user