mirror of
https://github.com/mihakralj/QuanTAlib.git
synced 2026-08-23 04:58:08 +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:
@@ -11,8 +11,6 @@ indicator("Volume Oscillator (VO)", "VO", overlay=false)
|
||||
//@returns Volume Oscillator value
|
||||
//@optimized for performance and dirty data
|
||||
vo(simple int short_period, simple int long_period, simple int signal_period, series float vol=volume) =>
|
||||
if short_period >= long_period
|
||||
runtime.error("Short period must be less than long period")
|
||||
volume_val = math.max(nz(vol, 0.0), 1.0)
|
||||
var p_short = short_period
|
||||
var buffer_short = array.new_float(p_short, na)
|
||||
|
||||
Reference in New Issue
Block a user