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:
Miha Kralj
2026-03-10 18:38:23 -07:00
parent 8906c62dcf
commit 35a6702b06
178 changed files with 2579 additions and 998 deletions
+1 -3
View File
@@ -9,8 +9,6 @@ indicator("Chaikin A/D Oscillator (ADOSC)", "ADOSC", overlay=false)
//@returns (float) The ADOSC value for the current bar (difference between short and long EMAs of ADL)
adosc(simple int shortPeriod, simple int longPeriod) =>
float EPSILON = 1e-10
if shortPeriod <= 0 or longPeriod <= 0
runtime.error("Periods must be greater than 0")
short_alpha = 2.0 / (shortPeriod + 1)
long_alpha = 2.0 / (longPeriod + 1)
one_minus_long_alpha = 1.0 - long_alpha
@@ -36,4 +34,4 @@ longPeriod = input.int(10, "Long Period", minval=1)
osc = adosc(shortPeriod, longPeriod)
// ---------- Plotting ----------
plot(osc, "ADOSC", color.new(color.yellow, 0, color=color.yellow, linewidth=2), linewidth=2)
plot(osc, "ADOSC", color=color.yellow, linewidth=2)