mirror of
https://github.com/mihakralj/QuanTAlib.git
synced 2026-08-18 02:28: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,8 +8,6 @@ indicator("Ulcer Index (UI)", shorttitle="UI", format=format.price, precision=2,
|
||||
//@param period The lookback period. Default is 14.
|
||||
//@returns float The Ulcer Index value.
|
||||
ui(series float src, int period) =>
|
||||
if period <= 0
|
||||
runtime.error("Period must be greater than 0")
|
||||
var deque = array.new_int(0)
|
||||
var src_buffer = array.new_float(period, na)
|
||||
var int current_index = 0
|
||||
|
||||
Reference in New Issue
Block a user