Indicators.Stochastic()

計算隨機振盪器並返回其值。
await Indicators.Stochastic(symbol:string, timeframe:string, KPeriod:int, DPeriod:int, Slowing:int, method:int, priceField:int, priceType:int, mode:int)

Parameters

Name Type Действие Значение по умолчанию
symbol string 將計算指標的數據上的交易品種名稱。 null 表示當前符號。
timeframe string 大體時間。 它可以是任何 TimeFrame 枚舉值。 0 表示當前圖表時間範圍。
KPeriod int %K 線的周期。
DPeriod int %D 行的周期。
Slowing int 減速值。
method int 移動平均法。 它可以是任何 Averaging 枚舉值。
priceField int 價格字段參數。 可以是以下值之一: 0 - Low/High or 1 - Close/Close.
priceType int Price type
mode int 指標線索引。 它可以是任何 Indicators line 標識符枚舉值 IndicatorLine。

Return value

隨機振盪器的數值。

Example

let list = await Indicator.Stochastic(null, 0, 5, 3, 3, Averaging.Simple, 0, PriceType.Bid);
let listMain = list[IndicatorLine.Main];