Calculates the Relative Strength Index indicator on data, stored in array, and returns its value.
Indicators.RSIOnArray(prices:Array, total:int, period:int)
Parameters
Name |
Type |
Действие |
Значение по умолчанию |
prices |
Array |
Array dengan data. |
— |
total |
int |
Jumlah item yang akan dihitung. 0 berarti seluruh array. |
— |
period |
int |
Periode rata-rata untuk perhitungan. |
— |
Return value
Nilai numerik dari indikator Relative Strength Index, dihitung pada data, disimpan dalam array[].
Example
let list = Indicator.RSIOnArray(ExtBuffer, 1000, 14);