mirror of
https://github.com/mihakralj/QuanTAlib.git
synced 2026-08-23 21:18: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:
@@ -9,8 +9,6 @@ indicator("Mass Index (MASSI)", "MASSI", overlay=false)
|
||||
//@returns float Mass Index value
|
||||
//@optimized for performance and dirty data
|
||||
massi(simple int ema_length, simple int sum_length) =>
|
||||
if ema_length <= 0 or sum_length <= 0
|
||||
runtime.error("Periods must be greater than 0")
|
||||
float a = 2.0 / (ema_length + 1)
|
||||
float beta = 1.0 - a
|
||||
var bool warmup = true, var float e = 1.0
|
||||
|
||||
Reference in New Issue
Block a user