Indicators.RSIOnArray()

計算數據的相對強度指數指標,存儲在數組中,並返回其值。
Indicators.RSIOnArray(prices:Array, total:int, period:int)

Parameters

Name Type Действие Значение по умолчанию
prices Array 數據數組。
total int 要計算的項目數。 0 表示整個數組。
period int 計算的平均週期。

Return value

相對強弱指數指標的數值,根據數據計算,存儲在數組 [] 中。

Example

let list = Indicator.RSIOnArray(ExtBuffer, 1000, 14);