mirror of
https://github.com/mihakralj/QuanTAlib.git
synced 2026-08-21 12: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:
@@ -11,10 +11,6 @@ indicator("Chaikin Money Flow (CMF)", "CMF", overlay=false)
|
||||
//@param src_vol The volume (default: built-in volume)
|
||||
//@returns float CMF value between -1 and 1
|
||||
cmf(len = 20, src_high = high, src_low = low, src_close = close, src_vol = volume) =>
|
||||
// Validate parameters
|
||||
if len < 1
|
||||
runtime.error("Length must be >= 1")
|
||||
|
||||
// Calculate Money Flow Multiplier
|
||||
float mfm = 0.0
|
||||
if not na(src_high) and not na(src_low) and not na(src_close)
|
||||
|
||||
Reference in New Issue
Block a user