Indicators.MA()

計算移動平均線指標並返回其值。
await Indicators.MA(symbol:string, timeframe:string, maPeriod:int, maShift:int, maMethod:int, appliedPrice:int, priceType:int)

Parameters

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

Return value

移動平均線指標的數值。

Example

let listMA = await Indicator.MA(null, 0, 13, 8, Averaging.Smoothed, AppliedPrice.Median, PriceType.Bid);