mirror of
https://github.com/mihakralj/QuanTAlib.git
synced 2026-08-22 20:48:04 +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:
@@ -9,8 +9,6 @@ indicator("Chaikin's Volatility (CVI)", "CVI", overlay=false)
|
||||
//@returns float Volatility value measuring change in trading ranges
|
||||
//@optimized for performance using efficient range ROC calculation
|
||||
cvi(simple int roc_length, simple int smooth_length) =>
|
||||
if roc_length <= 0 or smooth_length <= 0
|
||||
runtime.error("Lengths must be greater than 0")
|
||||
var float prevEma = 0.0
|
||||
hlRange = high - low
|
||||
alpha = 2.0 / (smooth_length + 1)
|
||||
|
||||
Reference in New Issue
Block a user