Indicators.MAOnArray()

計算數據的移動平均指標,存儲在數組中,並返回其值。
Indicators.MAOnArray(prices:array, total:int, maPeriod:int, maShift:int, maMethod:int)

Parameters

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

Return value

移動平均線指標的數值,根據數據計算,存儲在數組 [] 中。

Example

let maCurrent = Indicator.MAOnArray(ExtBuffer, 0, 5, 0, Averaging.LinearWeighted);