MACD Divergence 外汇EA

MACD Divergence 外汇EA-EA侦探社 - 全球领先的MQL5官网外汇EA机器人MT4自动化交易EA资源免费分享网站
MACD Divergence 外汇EA
此内容为免费资源,请登录后查看
0积分
免费资源

如果免费资源下载的文件为TXT文档

请联系站长更新!站长微信:Lv596999  Telegram:@eapoj

“Mql5官网”板块的EA基本都有,大部分是无限制NODLL版,NODLL版本MT1420升级,大多数不可用!这些EA来源为国外花钱买过来的

有需要,请联系站长!

“EA测评”板块资源全部现有,看见不错的,可以联系站长看EA在确定是否收费

“无限制EA”板块,大部分免费,下载文件全部存在,都可以免费下载

站长硬盘EA太多,因大部分时间做交易,做风控,没太多时间更新下载地址,请谅解!

需要更新下载文件,请联系站长微信!国外朋友请联系Telegram。


The indicator detects divergence signals – the divergences between the price peaks and the MACD oscillator values. The signals are
displayed as arrows in the additional window and are maintained by the messages in a pop-up window, e-mails and push-notifications. The
conditions which formed the signal are displayed by lines on the chart and in the indicator window.

Indicator Parameters

  • MacdFast – fast MACD line period
  • MacdSlow – slow MACD line period
  • MacdSignal – MACD signal line period
  • MacdPrice – MACD indicator price
  • PeakPoints – amount of bars for the MACD peak detection
  • PeakDistance – the minimum distance between the MACD peaks
  • lineColor – line color to display conditions on the chart
  • deltaPraice – minimal divergence of price peaks in points
  • deltaOscillator – minimal divergence of oscillator peaks in points
  • UseAlert – enable pop-up window
  • UseNotification – enable PUSH message
  • UseMail – enable Email
  • PlaySound – file name for play

Sample for EA:

void OnTick() {
 double x;
 x = iCustom(Symbol(),PERIOD_CURRENT,"MACD-DV",5,1); if (x != 0 && x != EMPTY_VALUE) goBuy();
 x = iCustom(Symbol(),PERIOD_CURRENT,"MACD-DV",4,1); if (x != 0 && x != EMPTY_VALUE) goSell();
}

void goBuy() { // function for open BUY
}

void goSell() { // function for open SELL
}

© 版权声明
THE END
喜欢就支持一下吧
点赞11 分享
相关推荐