mirror of
https://github.com/mihakralj/QuanTAlib.git
synced 2026-08-22 12:38:06 +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("Elder's Force Index (EFI)", "EFI", overlay=false)
|
||||
//@param src_vol The volume (default: built-in volume)
|
||||
//@returns float The smoothed Force Index value
|
||||
efi(len = 13, src = close, src_vol = volume) =>
|
||||
if len < 1
|
||||
runtime.error("Length must be >= 1")
|
||||
var float prev_src = src
|
||||
float raw_force = (nz(src) - nz(prev_src)) * nz(src_vol)
|
||||
prev_src := src
|
||||
|
||||
Reference in New Issue
Block a user