Indicators.Ichimoku()

計算 Gator 振盪器並返回其值。計算 Ichimoku Kinko Hyo 指標並返回其值。
await Indicators.Ichimoku(symbol:string, timeframe:string, tenkanSen:int, kijunSen:int, senkouSpanB:int, priceType:int, mode:int)

Parameters

Name Type Действие Значение по умолчанию
symbol string 將計算指標的數據上的交易品種名稱。 null 表示當前符號。
timeframe string 大體時間。 它可以是任何 TimeFrame 枚舉值。 0 表示當前圖表時間範圍。
tenkanSen int Tenkan Sen 平均週期。
kijunSen int Kijun Sen 平均週期。
senkouSpanB int Senkou SpanB 平均週期。
priceType int Price type
mode int 數據來源。 它可以是 Ichimoku Kinko Hyo 模式枚舉 IndicatorLine 之一。

Return value

Ichimoku Kinko Hyo 指標的數值。

Example

let list = await Indicator.Ichimoku(null, 0, 9, 26, 52, PriceType.Bid);
let listTenkanSen = list[IndicatorLine.TenkanSen];