mirror of
https://github.com/mihakralj/QuanTAlib.git
synced 2026-08-25 13:58:04 +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,8 +10,6 @@ indicator("Tillson T3 Moving Average (T3)", "T3", overlay=true)
|
||||
//@returns T3 value with optimized coefficients
|
||||
//@optimized Uses six cascaded EMAs with precomputed coefficients for O(1) complexity
|
||||
t3(series float src, simple int period, simple float v) =>
|
||||
if period <= 0
|
||||
runtime.error("T3 period must be > 0")
|
||||
float a = 2.0 / (period + 1)
|
||||
float v2 = v * v
|
||||
float v3 = v2 * v
|
||||
|
||||
Reference in New Issue
Block a user