Indicators.EnvelopesOnArray()

計算數據的包絡指標,存儲在數組中,並返回其值。
Indicators.EnvelopesOnArray(series:Array, total:int, maPeriod:int, maMethod:int, maShift:int, deviation:float, mode:int)

Parameters

Name Type Действие Значение по умолчанию
series Array 數據數組。
total int 要計算的項目數。 0 表示整個數組。
maPeriod int 計算主線的平均週期。
maMethod int 移動平均法。 它可以是任何 Averaging 枚舉值。
maShift int MA shift. 指標線偏移按時間範圍與圖表相關。
deviation float 與主線的百分比偏差。
mode int 指標線索引。 它可以是任何指標線標識符枚舉值 IndicatorLine

Return value

包絡線指標的數值,根據數據計算,存儲在數組 [] 中。

Example

let list = Indicator.EnvelopesOnArray(ExtBuffer,10,13,Averaging.Simple,0,0.2,IndicatorLine.Upper);