計算移動平均線收斂/發散指標並返回其值。
await Indicators.MACD(symbol:string, timeframe:string, fastEmaPeriod:int, slowEmaPeriod:int, signalPeriod:int, appliedPrice:int, priceType:int, mode: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 |
— |
mode |
int |
指標線索引。 它可以是 Indicators line 標識符枚舉值 IndicatorLine 之一。 |
— |
Return value
振盪器指標的移動平均線的數值。
Description
在某些系統中,它被稱為 MACD 直方圖並繪製為兩條線。 在 MetaTrader 4 客戶端中,MACD 被繪製為直方圖。
Example
let listMACD = await Indicator.MACD(null, 0, 12, 26, 9, AppliedPrice.Close, PriceType.Bid, IndicatorLine.Main);