mirror of
https://github.com/mihakralj/QuanTAlib.git
synced 2026-08-23 04:58:08 +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("Ease of Movement (EOM)", "EOM", overlay=false)
|
||||
//@returns float Ease of Movement value
|
||||
//@optimized for performance and dirty data
|
||||
eom(i_smoothing, i_vol_scale, i_high=high, i_low=low, i_volume=volume) =>
|
||||
if i_smoothing < 1 or i_vol_scale <= 0
|
||||
runtime.error("Smoothing or Volume scale out or range")
|
||||
var float oldMidPoint = na
|
||||
midPoint = (i_high + i_low) * 0.5
|
||||
midPointChange = midPoint - nz(oldMidPoint, midPoint)
|
||||
|
||||
Reference in New Issue
Block a user