mirror of
https://github.com/mihakralj/QuanTAlib.git
synced 2026-08-25 22:08: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:
@@ -21,9 +21,6 @@ indicator("NMA - Natural Moving Average", "NMA", overlay=true)
|
||||
// @param period Lookback window for volatility analysis (must be > 0)
|
||||
// @returns NMA value
|
||||
nma(series float source, simple int period) =>
|
||||
if period <= 0
|
||||
runtime.error("Period must be greater than 0")
|
||||
|
||||
float src = nz(source)
|
||||
|
||||
// Step 1: scaled natural log of price
|
||||
|
||||
Reference in New Issue
Block a user