Indicators.RVI()

計算相對活力指數指標並返回其值。
await Indicators.RVI(symbol:string, timeframe:string, period:int, priceType:int, mode:int)

Parameters

Name Type Действие Значение по умолчанию
symbol string 將計算指標的數據上的交易品種名稱。 null 表示當前符號。
timeframe string 大體時間。 它可以是任何 TimeFrame 枚舉值。 0 表示當前圖表時間範圍。
period int 計算的平均週期。
priceType int Price type
mode int 指標線索引。 它可以是任何指標線標識符枚舉值。

Return value

相對活力指數指標的數值。

Example

let list = await Indicator.RVI(null, 0, 10, PriceType.Bid, IndicatorLine.Main);