mirror of
https://github.com/mihakralj/QuanTAlib.git
synced 2026-08-24 05:28: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("Wilder's Moving Average (RMA)", "RMA", overlay=true)
|
||||
//@returns RMA value from first bar with proper compensation for early values
|
||||
//@optimized Uses exponential warmup compensator with Wilder's alpha (1/period) for O(1) complexity
|
||||
rma(series float source, simple int period) =>
|
||||
if period <= 0
|
||||
runtime.error("Period must be provided")
|
||||
float a = 1.0 / float(period)
|
||||
float beta = 1.0 - a
|
||||
var bool warmup = true
|
||||
|
||||
Reference in New Issue
Block a user