mirror of
https://github.com/mihakralj/QuanTAlib.git
synced 2026-08-18 18:48: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:
@@ -8,9 +8,6 @@ indicator("Elder's Thermometer", "ETHERM", overlay=false)
|
||||
//@returns [thermometer, signal] The raw thermometer value and EMA signal line
|
||||
//@optimized Beta precomputation for EMA warmup compensation
|
||||
etherm(simple int period) =>
|
||||
if period <= 0
|
||||
runtime.error("Period must be greater than 0")
|
||||
|
||||
// Step 1: Calculate raw thermometer value
|
||||
// Temperature = max of upward high protrusion and downward low protrusion
|
||||
// Only outward extensions count; contractions clamp to zero
|
||||
|
||||
Reference in New Issue
Block a user