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
+3 -2
View File
@@ -1,11 +1,12 @@
// Licensed under the Apache License, Version 2.0
// © mihakralj
//@version=6
// LRSI: Laguerre RSI
// John Ehlers, "Cybernetic Analysis for Stocks and Futures" (2004)
// A modified RSI that uses a 4-element Laguerre filter as its core moving average.
// The gamma parameter controls the damping of the filter stages, trading
// responsiveness against smoothness. Output is dimensionless [0, 1].
indicator("LRSI: Laguerre RSI", shorttitle="LRSI", overlay=false)
indicator("Laguerre RSI (LRSI)", "LRSI", overlay=false)
gamma = input.float(0.5, "Gamma", minval=0.0, maxval=1.0, step=0.01,
tooltip="Damping factor [0,1]. Lower = more responsive; higher = smoother.")