Indicators.OsMA()

計算振盪器指標的移動平均線並返回其值。
await Indicators.OsMA(symbol:string, timeframe:string, fastEmaPeriod:int, slowEmaPeriod:int, signalPeriod:int, appliedPrice:int, priceType:int)

Parameters

Name Type Действие Значение по умолчанию
symbol string 將計算指標的數據上的交易品種名稱。 null 表示當前符號。
timeframe string 大體時間。 它可以是任何 TimeFrame 枚舉值。 0 表示當前圖表時間範圍。
fastEmaPeriod int 快速 EMA 平均週期。
slowEmaPeriod int 緩慢的 EMA 平均週期。
signalPeriod int 信號線平均週期。
appliedPrice int 應用價格。 它可以是任何AppliedPrice枚舉值。
priceType int Price type

Return value

振盪器移動平均線的數值。

Example

let list = await Indicator.OsMA(null, 0, 12, 26, 9, AppliedPrice.Open, PriceType.Bid);