Indicators.Alligator()

計算鱷魚指標並返回其值。
await Indicators.Alligator(symbol:string, timeframe:string, jawPeriod:int, jawShift:int, teethPeriod:int, teethShift:int, lipsPeriod:int, lipsShift:int, maMethod:int, appliedPrice:int, priceType:int, mode:int)

Parameters

Name Type Действие Значение по умолчанию
symbol string 將計算指標的數據上的交易品種名稱。 null 表示當前符號。
timeframe string 大體時間。 它可以是任何 TimeFrame 枚舉值。 0 表示當前圖表時間範圍。
jawPeriod int 藍線平均週期(鱷魚顎)。
jawShift int 藍線相對於圖表移動。
teethPeriod int 紅線平均週期(鱷魚的牙齒)。
teethShift int 紅線相對於圖表移動。
lipsPeriod int 綠線平均週期(鱷魚的嘴唇)。
lipsShift int 綠線相對於圖表移動。
maMethod int MA method. 它可以是任何移動平均方法。 它可以是任何 Averaging 枚舉值。
appliedPrice int 適用價格。 它可以是任何 AppliedPrice 枚舉值。
priceType int Price type
mode int 數據源,指標線的標識符。 它可以是以下任何值:
IndicatorLine.GatorJaw - Gator Jaw(藍色)平衡線,
IndicatorLine.GatorTeeth - 鱷魚牙齒(紅色)平衡線,
IndicatorLine.GatorLips - Gator Lips(綠色)平衡線。

Return value

鱷魚指標的數值。

Example

let listAlligator = await Indicator.Alligator(null,0,13,8,8,5,5,3, Averaging.Smoothed, AppliedPrice.Median, PriceType.Bid, IndicatorLine.GatorJaw);