Indicators.Envelopes()

計算信封指標並返回其值。
await Indicators.Envelopes(symbol:string, timeframe:string, maPeriod:int, maMethod:int, maShift:int, appliedPrice:int, priceType:int, deviation:float, mode:int)

Parameters

Name Type Действие Значение по умолчанию
symbol string 將計算指標的數據上的交易品種名稱。 null 表示當前符號。
timeframe string 大體時間。 它可以是任何 TimeFrame 枚舉值。 0 表示當前圖表時間範圍。
maPeriod int 計算主線的平均週期。
maMethod int 移動平均法。 它可以是任何 Averaging 枚舉值。
maShift int MA shift. 指標線偏移按時間範圍與圖表相關。
appliedPrice int 適用價格。 它可以是任何 AppliedPrice 枚舉值。
priceType int Price type
deviation float 與主線的百分比偏差。
mode int 指標線索引。 它可以是任何指標線標識符枚舉值 IndicatorLine。

Return value

信封指示器的數值。

Example

let list = await Indicator.Envelopes(null, 0, 13, Averaging.Simple, 10, AppliedPrice.Close, PriceType.Bid, 0.2, IndicatorLine.Upper);