mirror of
https://github.com/mihakralj/QuanTAlib.git
synced 2026-08-23 21:18: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("Volatility of Volatility (VOV)", shorttitle="VOV", format=format.pric
|
||||
//@param vovPeriod The lookback period for calculating the standard deviation of the volatility series. Default is 10.
|
||||
//@returns float The VOV value.
|
||||
vov(series float src, int volatilityPeriod, int vovPeriod) =>
|
||||
if volatilityPeriod <= 0 or vovPeriod <= 0
|
||||
runtime.error("Periods must be greater than 0")
|
||||
var int p1 = 0
|
||||
var array<float> buffer1 = array.new_float(0)
|
||||
var int head1 = 0, var int count1 = 0
|
||||
|
||||
Reference in New Issue
Block a user