mirror of
https://github.com/mihakralj/QuanTAlib.git
synced 2026-08-21 12:08: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:
@@ -9,8 +9,6 @@ indicator("Volatility Ratio (VR)", shorttitle="VR", format=format.price, precisi
|
||||
//@param atrPeriod The lookback period for ATR. Must be > 0.
|
||||
//@returns float The Volatility Ratio value for the current bar.
|
||||
vr(int atrPeriod) =>
|
||||
if atrPeriod <= 0
|
||||
runtime.error("ATR Period must be greater than 0")
|
||||
var float EPSILON_ATR = 1e-10
|
||||
var float raw_atr = 0.0
|
||||
var float e_compensator = 1.0
|
||||
|
||||
Reference in New Issue
Block a user