mirror of
https://github.com/mihakralj/QuanTAlib.git
synced 2026-08-22 12:38:06 +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,9 +10,6 @@ indicator("Volume Rate of Change (VROC)", "VROC", overlay=false)
|
||||
//@returns Volume Rate of Change value
|
||||
//@optimized for performance and dirty data
|
||||
vroc(simple int period, simple bool calc_type, series float vol = volume) =>
|
||||
if period <= 0
|
||||
runtime.error("Period must be greater than 0")
|
||||
|
||||
float current_volume = vol
|
||||
float historical_volume = vol[period]
|
||||
if na(current_volume) or na(historical_volume)
|
||||
|
||||
Reference in New Issue
Block a user