• 概述
  • 评论 (6)
  • 评论 (61)
  • 新特性

NotifyMe for MT4

5

概览

本 EA 在检测到交易账户的任何变化时,发送通知到移动终端,通过邮件或激活声音警报: 开仓/平仓,改变订单参数,余额或杠杆。此外,EA 在交易账户的净值跌至低于指定值或可用保证金相比保证金很小的时候发送通知。本 EA 不进行交易, 它仅监控您的账户。


启动 EA

为了 EA 的工作,将文件 NotifyMe.ex4 放置 终端文件夹/experts (可能它会自动放在那里)。NotifyMe 应该会出现在导航窗口的 EA 区域。如果没有, 重启 MetaTrader 4 终端。

为了让 EA 工作,在 MetaTrader 4 的设置中允许使用 EA。为此,进入工具菜单,之后选项,之后选择 EA 选栏。启用允许 EA 选项 (接受定制指标和脚本)。

要启动 EA,在导航器窗口鼠标右键点击其名称,然后选择 "挂载到图表",或者用鼠标拖放到图表上。EA 的参数窗口将会出现:设置所需的参数,然后点击确定。

此 EA 可以挂载到任意金融工具的图表上,因为 EA 在每次即时报价来到时分析交易账户状态,为了降低通知的延迟,建议在报价比较活跃的品种里运行此 EA (例如, 以下货币对之一: EURUSD, GBPUSD, USDCHF 或 USDJPY)。时间帧任意。


EA 的输入参数

  • Push_Notify_Events - 选择您希望通过移动终端通知的事件 (0 - 通知禁用, 1 - 仅通知开/平仓, 2 - 通知所有事件);
  • Push_Notify_Critical_Equity - 交易账户 (净值) 的临界值 (入金货币)。当达到该值时,通知被发送到移动终端;
  • Push_Notify_Critical_Margin - 可用保证金相比保证金的临界百分比。当达到该值时,通知被发送到移动终端;
  • Push_Repeat_Interval - 到达临界值时发送推送通知的最小间隔时间 (秒);
  • Push_Notify_Interval - 发送通知到移动终端的最小时间间隔 (单位秒);
  • Push_Length_Limit - 发送到移动终端的最大消息长度;
  • Mail_Notify_Events - 选择您希望通过移动终端通知的事件 (0 - 通知禁用, 1 - 仅通知开/平仓, 2 - 通知所有事件);
  • Mail_Notify_Critical_Equity - 交易账户 (净值) 的临界值 (入金货币)。当达到该值时,通知通过邮件发送;
  • Mail_Notify_Critical_Margin - 可用保证金相比保证金的临界百分比。当达到该值时,通知通过邮件发送;
  • Mail_Repeat_Interval - 到达临界值时发送邮件通知的最小间隔时间 (秒);
  • Mail_Notify_Interval - 通过邮件发送通知的最小时间间隔 (单位秒);
  • Sound_Notify_Events - 选择您希望通过声音通知的事件 (0 - 通知禁用, 1 - 仅通知开/平仓, 2 - 通知所有事件);
  • Sound_Notify_Critical_Equity -交易账户 (净值) 的临界值 (入金货币)。当达到该值时,播放通知声音;
  • Sound_Notify_Critical_Margin - 可用保证金相比保证金的临界百分比。当达到该值时,播放通知声音;
  • Sound_Repeat_Interval -到达临界值时播放声音通知的最小间隔时间 (秒);
  • Sound_Notify_Interval -  通过声音提示通知的最小时间间隔 (单位秒);
  • Sound_File_Name - 当事件发生时激活提示声音的文件名;
  • Use_Local_Time - 指定发送消息至移动终端或邮件的时间 (false - 服务器时间, true - 运行 EA 的 PC 本地时间);
  • Show_Information -显示 (true) 或隐藏 (false) 有关服务器的时间信息, 本地时间并设置触发通知的条件。


计算可用保证金级别

正如前面提到的,EA 可以通知可用保证金相比保证金百分比的减少。让我们来看看计算可用保证金水平的更多细节。在大多数情况下 (包括 MetaTrader 4 交易终端),保证金数值的定义要考虑经纪商提供的杠杆。但经纪商可以随时更改杠杆,保证金价值也随后改变。大多数情况下,杠杆值对于交易不是那么关键 (除非使用最大可能的开仓量进行风险交易)。因此,该 EA 计算保证金数值,而不考虑杠杆。可用保证金水平定义为可用保证金与保证金的百分比数值。

我们来研究以下例子。假设 1 手等于 10 万基本货币单位。EURUSD 的开仓位在 1.3,手数为 0.10 手。对于买入或卖出 0.10 * 100000 = 10000 EUR,我们需要 13000 美元。此数值被认作 EA 的保证金 (虽然许多情况这个数值会有杠杆作用, 例如, 如果杠杆为 1:100, 则我们需要 130 美元保证金)。如果本金等于 1000 美元, 在开仓之后可用保证金为 1000 - 130 = 870 美元, 此刻保证金级别的计算将按照 870 / 13000 = 0.0669 或 6.69 %。如果我们设置保证金限制, 在到达 5% 时发送, 则可用保证金等于 0.05 * 13 000 = 650 美元或净值比较 650 + 130 = 780 美元。

尽管定义可用保证金级别明显很复杂,这种方法提供了在实践中最有意义的结果。


发送通知至移动终端。

首先,您应该有 MetaTrader 4 或 MetaTrader 5 的移动版本终端安装在您的安卓或 iOS 的智能设备上,以便接收通知。您可以下载 MetaTrader 4MetaTrader 5 移动终端,安卓版和 iOS 版都是免费的。

您也应该在启动 EA 的 MetaTrader 4 交易终端上允许推送通知。为此, 进入工具 – 选项 – 通知选栏, 选中 "启用推送通知" 参数,并指定您的移动终端上消息栏里面的 MetaQuotes_ID。

"Push_Notify_Events" 参数允许您指定发送到移动终端的事件类型。如果设为 2, 您将接收以下事件通知: 开仓和平仓, 持仓的止损和止盈改变, 挂单参数改变 (开仓价, 止损或止盈), 账户余额和杠杆的变化。数值 1 意味着通知仅在开仓和平仓时发送。数值 0 意即禁用发送通知到移动终端 (此参数不影响可用保证金和净值通知)。

"Push_Notify_Critical_Equity" 参数允许定义临界值 (最小) 净值 (按照入金货币)。当到达此值, 发送通知到移动终端。如果设为 0, 不会发送净值降低通知到移动终端。

"Push_Notify_Critical_Margin" 参数允许定义临界值 (最小) 可用保证金级别 (百分比数值)。当到达此值, 发送通知到移动终端。如果设为 0, 不会发送可用保证金级别通知到移动终端。

有关交易账户事件, 还有净值或可用保证金触及临界级别的信息, 在一定条件下都会加入发送到移动终端的消息里。

"Push_Repeat_Interval" 参数允许您设置时间间隔 (秒), 净值或可用保证金临界级别的信息加入到推送消息准备发送。

"Push_Notify_Interva" 输入参数允许您设置发送通知到移动终端的最小时间间隔 (单位秒)。如果当前与之前发送的消息时间间隔小于指定时间,EA 不会发送新的通知。它将以保存通知替代。若当前时间距之前发送的时间大于 "Push_Notify_Interval" 参数中指定的时间,EA 会发送间隔期间累积的所有事件的描述信息。这有一个限制 (由 MetaQuotes 开发的推送通知服务),即单位时间内发送消息的数量: 每秒不超过 2 条,或每分钟不超过 10 条消息 (如果违反此限制,发送推送通知可被 MetaQuotes 阻止)。因此,不建议设置非常小的数值 (特别是那些会产生高频事件的交易帐户)。

" Push_Length_Limit" 参数允许您设置发送到移动终端的消息所含最大字符数量。如果消息太长,按照参数中指定的长度截尾。最大允许推送消息的长度为 255 个字符。一条消息包括两部分: 账户号码和拥有者的名字 (自动生成) 和由 EA 生成的事件描述 (它的长度由 "Push_Length_Limit" 参数限制)。在某些情况下,如果一条消息的长度超过 255 个字符,则可能在移动终端中变得不可见。"Push_Length_Limit" 参数值的选择应该基于自动添加的消息部分 (账户号码和拥有者名字)。


通过邮件发送通知

要通过邮件接收通知,您应当在运行 NotifyMe 免费版的 MetaTrader 4 交易终端的设置里允许发送邮件。为此,进入工具 – 选项 – 邮件选栏, 选中启用参数并指定您的邮件账户以及 SMTP 邮件服务器参数。

由 EA 通过邮件发送的消息标题为 "Account account_number notification"。 

"Mail_Notify_Events" 参数定义邮件通知的事件类型 (类似于 "Push_Notify_Level" 发送到移动终端的参数)。如果设为 2, 您将接收以下事件通知: 开仓和平仓, 持仓的止损和止盈改变, 挂单参数改变 (开仓价, 止损或止盈), 账户余额和杠杆的变化。数值 1 意味着通知仅在开仓和平仓时发送。数值 0 意即禁用发送邮件通知 (此参数不影响可用保证金和净值通知)。

"Mail_Notify_Critical_Equity" 参数允许定义临界值 (最小) 净值 (按照入金货币)。当达到该值时,通知通过邮件发送。如果设为 0, 不会发送净值降低通知邮件。

"Mail_Notify_Critical_Margin" 参数允许定义临界值 (最小) 可用保证金级别 (百分比数值)。当达到该值时,通知通过邮件发送。如果设为 0, 不会发送保证金降低通知邮件。

有关交易账户事件, 还有净值或可用保证金触及临界级别的信息, 在一定条件下都会加入发送到邮件的消息里。

"Mail_Repeat_Interval" 参数允许您设置时间间隔 (秒), 净值或可用保证金临界级别的信息加入到邮件消息准备发送。

"Mail_Notify_Interval" 输入参数允许您设置通过邮件发送通知的最小时间间隔 (单位秒)。如果当前与之前发送的消息时间间隔小于指定时间,EA 不会发送新的通知。它将以保存通知替代。若当前时间距之前发送的时间大于 "Mail_Notify_Interval" 参数中指定的时间,EA 会发送间隔期间累积的所有事件的描述邮件。一些邮件服务器将频繁的邮件视为不良行为。因此,不建议在 "Mail_Notify_Interval" 参数里设置过小的数值。


音频提示通知

"Sound_Notify_Events" 参数定义声音提示的事件类型 (类似于 "Push_Notify_Level" 发送到移动终端的参数)。如果设为 2, 您将接收以下事件通知: 开仓和平仓, 持仓的止损和止盈改变, 挂单参数改变 (开仓价, 止损或止盈), 账户余额和杠杆的变化。数值 1 意味着通知仅在开仓和平仓时发送。数值 0 意即禁用声音提示 (此参数不影响可用保证金和净值通知)。

"Sound_Notify_Critical_Equity" 输入参数允许您设置发送声音提示的最小时间间隔 (单位秒)。如果设为 0, 不会发送净值降低声音提示。

"Sound_Notify_Critical_Margin" 参数允许定义声音提示的临界值 (最小) 可用保证金级别 (百分比数值)。如果设为 0, 不会发送保证金降低声音提示。

" Sound_Repeat_Interval" 参数允许您设置净值或可用保证金临界级别的声音提示时间间隔 (秒)。

"Sound_Notify_Interval" 输入参数允许您设置发送通知的最小时间间隔 (单位秒)。

"Sound_File_Name" 允许您设置通知到达时激活的声音文件名。文件以 .wav 格式保存在 终端文件夹/sounds 或它的子目录里。


屏幕上显示数据

如果 Show_Information 参数设为 true,则服务器和本地时间的信息将显示在图表的左上角,以及每个通知类型触发的条件和设置。

通过程序发送的消息例子

  • Placing a pending order: 2013.08.12 14:56:13 EURUSD Place Sell Limit 0.10 at 1.32920, SL: 1.33000, TP: 1.32820, Comment: Test order;
  • Changing pending order parameters: 2013.08.12 14:56:28 EURUSD Modify Sell Limit 0.10, Open: 1.32920 -> 1.32900, SL: 1.33000 -> 1.32980, TP: 1.32820 -> 1.32800;
  • Deleting a pending order: 2013.08.12 14:56:34 EURUSD Delete Sell Limit 0.10 at 1.32900;
  • Opening pending order: 2013.08.12 14.56.49 Sell Limit -> Sell at 1.32900, SL: 1.32980, TP: 1.32800, Comment: Test order;
  • Opening market position: 2013.08.12 14:56:52 EURUSD Sell 0.10 at 1.32900, SL: 1.32980, TP: 1.32800, Magic: 17;
  • Closing position: 2013.08.12 15:13:20 EURUSD Close Sell 0.10 at 1.32800, Magic: 17, (Profit: 10.00 USD), Balance: 1010.00 USD (Equity: 1010.00 USD);
  • Reaching critical equity or free margin: 2013.08.12 15.32.16 Equity: 1004.30 USD, Free Margin: 868.47 USD;


免费版本和 MetaTrader 5 版本

NotifyMe 免费版用于 MT4  - 免费版与完整版的不同之处在于, 它只允许发送开、平仓通知。同样, 用于 MetaTrader 5 终端上的完整版和免费版应用程序功能类似。


警告

对于 MT4 的 NotifyMe 免费版,开发者不负责由于 MT4 交易终端或 MQL4 语言升级带来的程序修改或终止 - MetaQuotes 公司。对于 MT4 的 NotifyMe,开发者不负责因使用该程序工作,或其故障,而导致的任何亏损,破坏或错失利润。


联系信息

如果您对应用程序有任何问题,它的操作评论,或未来的改进建议,请通过 邮件 发送它们或通过本网站的个人消息留言。让我知道您希望看到什么样的产品 (EA,指标,脚本)。

评论 6
Johan Julien Aubry
884
Johan Julien Aubry 2021.06.06 10:00 
 

Works correctly. Please don't write directly to me about my review, I'll not answer.

PETER LUISI
1981
PETER LUISI 2021.01.18 12:03 
 

Just what I was looking for. Works very well.

Hatem Abou Ouf
5276
Hatem Abou Ouf 2017.09.21 22:19 
 

Excellent but I wish if He can add DrawDown% feature

推荐产品
Trend Ray
Andriy Sydoruk
The indicator shows the potential trend direction by cyclical-wave dependence. Thus, all the rays of the intersection will be optimal rays, in the direction of which the price is expected to move, taking into account the indicator period. Rays can be used as a direction for potential market movement. But we must not forget that the approach must be comprehensive, the indicator signals require additional information to enter the market.
Easy Backtest 2 Pro try the demo version now! Easy Backtest 2 Pro   is a great alternative for all those expensive testing software that exist on the market!. You can    test your new strategy in   Strategy Tester   in your   MT4 , using all available historical data. Beyond the basic functions such as: BUY, SELL PENDING ORDERS STOP LOSE, TAKE PROFIT AUTO RISK MANAGMANT AUTO LOT SIZE  You can modify  each of them at any time, exactly like in live trading. Advanced features PRO such as: P
FREE
Rainbow MT4
Jamal El Alama
Rainbow MT4 is a technical indicator based on Moving average with period 34 and very easy to use. When price crosses above MA and MA changes color to green, it’s a signal to buy. When price crosses below MA and MA changes color to red, it’s a signal to sell. The Expert advisor ( Rainbow EA MT4) based on Rainbow MT4 indicator, as you can see in the short video below is now available here .
FREE
TrendPlus
Sivakumar Subbaiya
4.15 (13)
Trend Plus   Trendplus  Indicator   Time Frame: Suitable for any time frame.  Purpose: Trend Prediction. Blue and red candle indicate the buy and sell call respectively. Buy: When the blue candle is formed buy call is initiated. close the buy trades when the next red candle will formed.   Sell: When the Red candle is formed Sell call is initiated. close the Sell trades when the next blue candle will formed.   Happy trade!!
FREE
Strong Retracement Points Pro demo edition! SRP (Strong Retracement/Reversal Points) is a powerful and unique support and resistance indicator. It displays the closest important levels which we expect the price retracement/reversal! If all level are broken from one side, it recalculates and draws new support and resistance levels, so the levels might be valid for several days depending on the market! If you are still hesitating to start using this wonderful tool, you can check this link to see h
Market Profile 3
Hussien Abdeltwab Hussien Ryad
3 (2)
Market Profile 3 MetaTrader 4 indicator  — is a classic Market Profile implementation that can show the price density over time, outlining the most important price levels, value area, and control value of a given trading session. This indicator can be attached to timeframes between M1 and D1 and will show the Market Profile for daily, weekly, monthly, or even intraday sessions. Lower timeframes offer higher precision. Higher timeframes are recommended for better visibility. It is also possible t
FREE
TSim
Sergey Kruglov
Утилита  TSim   позволяет симулировать ручную торговлю в Тестере Стратегий MetaTrader 4. В панеле можно устанавливать размеры лота, тейпрофита и стоплосса. Панель имеет кнопки Sell   и Buy для выставления рыночных ордеров, а также кнопки CloseSell, CloseBuy и CloseAll для быстрого закрытия ордеров. Под панелью отображается список открытых ордеров. Внимание. Панель работает только в Визуальном режиме Тестера Стратегий MetaTrader 4.
FREE
The Arrow Scalper
Fawwaz Abdulmantaser Salim Albaker
1 (2)
Dear Friend..  I share with you this simple Expert Adviser .. it is full automatic  this Expert Adviser following the trend of the pair you install on or any stocks or indices , it is works like that: - when the trend on H4 chart show a start of up trend the expert will wait till the 15M & 1H charts show an up trend the EA will open a buy order directly , and do the same for down trend and open a sell order the buy or sell  order lot size and take profit and stop loss will measured manually  by
FREE
Trend Catcher with Alert
Issam Kassas
4.72 (54)
趋势捕捉器: 具有警示指标的趋势捕捉器策略是一种多功能的技术分析工具,可帮助交易员识别市场趋势和潜在的进出点。它采用动态趋势捕捉器策略,根据市场条件进行调整,清晰地呈现趋势方向。交易员可以自定义参数,以符合其偏好和风险容忍度。该指标有助于识别趋势,发出潜在的反转信号,充当跟踪止损机制,并提供实时警报,以便及时应对市场。 具有警示指标的趋势捕捉器策略是一种多功能的技术分析工具,可帮助交易员识别市场趋势和潜在的进出点。它采用动态趋势捕捉器策略,根据市场条件进行调整,清晰地呈现趋势方向。交易员可以自定义参数,以符合其偏好和风险容忍度。该指标有助于识别趋势,发出潜在的反转信号,充当跟踪止损机制,并提供实时警报,以便及时应对市场。 特点: 趋势识别:信号牛市趋势和熊市趋势。 趋势反转:当蜡烛颜色从牛市变为熊市,反之亦然时,提醒可能的反转。 实时警报:为新趋势识别生成警报。 建议: 货币和货币对:EURUSD,AUDUSD,XAUUSD... 时间框架:H1。 账户类型:任何ECN,低点差账户。
FREE
КopirFIFO — копировщик нетто-позиций для терминалов МТ4. Копировщик копирует на счет-клиент чистую нетто-позицию со счёта-сервера по правилу FIFO, то есть всегда первой закрывается та сделка, которая была открыта раньше всего. При копировании так же полностью исключается хеджирование позиций. Если на счёте-сервере открываются хеджирующие сделки, то на счете-клиенте происходит закрытие позиций на величину хеджа. Данный копир идеально подходит для копирования вашей не нетто-торговли на сервисы то
FREE
Harvest GOLD
Sayan Vandenhout
Harvest GOLD USES THE TREND WAVE INDICATOR AND IT CAN IDENTIFY THE BEGINNING AND THE END OF A NEW WAVE TREND MOVEMENT. AS AN OSCILLATOR, THE INDICATOR IDENTIFIES THE OVERBOUGHT AND OVERSOLD ZONES. IT WORKS GREAT TO CATCH THE SHORT TERM PRICE REVERSALS AND USES A MARTINGALE STRATEGY TO CLOSE ALL TRADES IN PROFIT. USE DEFAULT SETTINGS ON H1 OR HIGHER TIME FRAME ON ANY PAIR FOR MORE ACCURATE TRADES WHY THIS EA : Smart entries calculated by 3 great strategies The EA can be run on even a $
Exp Swing
Vladislav Andruschenko
4.28 (39)
它使用称为 Swinger (Pendulum, Cheburashka) 的著名策略模型 - 交替放置增加手数的挂单。 策略在于放置两个相反的挂单。当价格向某个方向移动时,触发一个挂单,同时增加另一个订单的手数。 EA 提供三种类型的挂单(TypeofTrade) 放置后自动开仓(即时开仓AutoTrade) 手动开仓后的开仓管理(Manual opening ManualTrade) 按高/低水平开盘(过去的 TFTrade 柱线的高低) OCO(一个取消另一个)订单是一种由两个订单组成的条件订单。如果第二个订单被执行,第一个订单就会自动取消。 Swing - 完整说明 MT5 version 如何购买 如何安装     如何获取日志文件     如何测试和优化     Expforex 的所有产品 这个怎么运作? 开始时,EA 发出两个订单 - 买入止损 和 卖出止损 ,距离当前价格的距离为 StopOrderDeltaifUSE。 如果 Buy Stop 触发,则 Sell Stop 将被删除,并且将放置一个交易量为 BuyStop   *   Martin
FREE
这是一个常规面板,放置买卖订单网络。 这个专家顾问关闭设置中定义的利润订单。 然后,有一个名为Ladder的参数,其中包括订单之间的距离开始增加由梯形参数指示的点(这里,在主要设置中,它是10点),这意味着二阶是10点,三阶是20点,四阶 然后,你需要知道这个顾问是什么,因为这不是在设置中,但它会影响这个顾问提出的策略的逻辑。. 假设在这里的设置中,顾问将打开五个订单。.. 或购买。.. 或出售。.. 好。.. 但是,当打开订单时,它会将下一个打开订单的手数增加先前打开订单的一半。 也就是说,如果您在设置中设置了0.1手,那么根据方案将打开五个订单,第一个更接近当前价格的订单将以0.1手的价格打开。 第二,对于给定的步骤,这里50点的步骤将以0.15手的价格打开。 第三个,在另一个50点之后,将以大约0.22手的价格开盘。 第四个,以0.33手的价格通过50点的设定步骤。 第五个,以0.49手的价格设定50点。 也就是说,通过打开订单,这个顾问将增加每个后续订单的一半数量的前一个订单每次。 这种交易的逻辑是什么? (我通常使用日间交易和未平仓头寸,在上午10:00之前的某个时间。
Free automatic fibonacci
Tonny Obare
4.66 (47)
Free automatic Fibonacci is an indicator that automatically plots a Fibonacci retracement based on the number of bars you select on the BarsToScan setting in the indicator. The Fibonacci is automatically updated in real time as new highest and lowest values appears amongst the selected bars. You can select which level values to be displayed in the indicator settings. You can also select the color of the levels thus enabling the trader to be able to attach the indicator several times with differe
FREE
PatternVol EA
Alexandr Gribanov
4.5 (2)
PatternVol EA是根据其对市场的观察创建的,包括样式,烛台分析,烛台数量分析,并且该EA不包含指标。目前,顾问程序是我的非指标策略的小型构造函数,您可以分别禁用和启用每个策略,也可以从多个策略中进行组装。顾问的工作一直持续到今天,添加了新策略,改进了算法。将来,它将成为非指标策略的大型聚合器(构造函数),每个人都可以在其中组装自己的交易策略。 *建议将EA交易用于ECN帐户(5位数字)和带有H1时间范围的EURUSD对​​。 EA交易使用严格的SL和TP设置。 Test DEMO: https://www.mql5.com/ru/signals/978514 EA交易参数 Slippage   - 最大滑点级别 OnOff ... - 启用/禁用策略(1 =启用\ 0 =禁用) Lot... - 未平仓头寸的数量 TakeProfit ... - 固定利润 StopLoss1 ... - 损失固定 Volume... - 入口蜡烛的体积。
FREE
The indicator detects and displays Shark harmonic pattern (see the screenshot). The pattern is plotted by the extreme values of the ZigZag indicator (included in the resources, no need to install). After detecting the pattern, the indicator notifies of that by a pop-up window, a mobile notification and an email. The indicator highlights the process of the pattern formation and not just the complete pattern. In the former case, it is displayed in the contour triangles. After the pattern is comple
HMA Trend
Pavel Zamoshnikov
4.6 (68)
A trend indicator based on the Hull Moving Average (HMA) with two periods. The Hull Moving Average is an improved variant of the moving average, which shows the moment of trend reversal quite accurately. It is often used as a signal filter. Combination of two types of Hull Moving Averages makes a better use of these advantages: HMA with a slow period identifies the trend, while HMA with a fast period determines the short-term movements and signals in the trend direction. Features The movement
FREE
Max LotSize
Luis Alberto Atuncar Sanchez
5 (2)
LotSize Indicator Discover the appropriate lot size to use in your trades based on the available margin. This indicator provides valuable information for risk management. If the indicator shows a value of 0, it means that your balance or available margin is insufficient for trading. It is important to maintain adequate margin levels for safe trading practices. This indicator is exclusively designed for the MT4 platform, a popular and reliable trading platform in the market. With the LotSize Indi
FREE
EasyGRID MT4
Nina Yermolenko
5 (6)
The utility places a grid of pending orders. You can select the number of orders in the grid, the step between orders, multiplier for the order size, SL and TP levels and the magic number. MT5 version of the utility is avaliable by the link -  https://www.mql5.com/en/market/product/73489 If you like this utility, take a look at my other products -  https://www.mql5.com/en/users/nina_yermolenko/seller
FREE
Show Pips
Roman Podpora
4.28 (54)
对于那些总是想了解帐户当前情况的人来说,此信息指示器将很有用。该指标显示诸如利润点数、百分比和货币等数据,以及当前货币对的点差以及柱在当前时间范围内收盘的时间。 MT5版本 -   更多有用的指标 有多种选项可用于在图表上放置信息线: 价格右侧(运行在价格后面); 作为评论(在图表的左上角); 在屏幕的选定角落。 还可以选择信息分隔符: | / 。 \ # 该指标具有内置热键: 键 1 - 退一步显示信息类型(价格、评论或角落的右侧) 关键2——信息显示类型的进步 键 3 - 更改信息行显示的位置 可以在设置中重新分配热键。 该指标易于使用且信息丰富。可以在设置中禁用不必要的信息项目。 设置 替换显示信息的热键(向后)   - 后退信息显示类型 用于替换显示信息的热键(前进)       - 信息显示类型向前迈进了一步 用于更改外观/角信息字符串类型的热键     - 更改信息行显示的位置 文字颜色     - 文字颜色 盈利颜色     - 有浮动利润时的文字颜色 失色     - 存在浮动损失时的文本颜色 分离器     - 一行中的数据分隔符。可以采用五个值:“|”、“/
FREE
The indicator displays price distribution on a horizontal histogram. Horizontal histogram help find out key levels of price so that you can make good decision on setting point of take profit, stop loss... You can improve exist trading strategy or get new trading idea with the histogram of price. Outstanding features Support multiple time frame : you can choose to work with history data in any time frame you want. It does not depend on current display time frame. Support weighting by volume a
FREE
NAS100 Auto Sl And TP
Moustapha Boulouz
5 (2)
介绍适用于 MT4 的 NAS100 Auto SL 和 TP Maker: 有了我们的 NAS100 Auto SL 和 TP Maker,再也不会错过止损和止盈的设置,这是交易者在 MetaTrader 4 上浏览纳斯达克 100 市场时不可或缺的助手。该工具专为寻求自动管理止损和止盈水平的无缝解决方案的用户而设计。 主要功能 轻松实现自动化: 自动监控无止损和/或止盈的纳斯达克 100 指数交易。 根据用户配置设置动态调整水平。 订单类型的多样性: 兼容纳斯达克 100 指数的市价订单和挂单。 支持 MetaTrader 4 中的各种订单类型。 定制配置: 用户友好的参数设置允许自定义跟踪偏好和止损/止盈水平。 范围灵活: 可选择为其运行的特定 NAS100 工具或所有交易工具设置止损和止盈。 快速执行: 确保快速设置所需的 StopLoss 和/或 TakeProfit 值,无需等待新的 tick 即可迅速响应。 MetaTrader 4 兼容性: 与 MetaTrader 4 中的所有订单类型兼容,实现无缝集成。 使用 NAS100 Auto SL 和 TP Maker 增
FREE
Follow The Line
Oliver Gideon Amofa Appiah
4.07 (14)
FOLLOW THE LINE GET THE FULL VERSION HERE: https://www.mql5.com/en/market/product/36024 This indicator obeys the popular maxim that: "THE TREND IS YOUR FRIEND" It paints a GREEN line for BUY and also paints a RED line for SELL.  It gives alarms and alerts of all kinds. IT DOES NOT REPAINT and can be used for all currency pairs and timeframes. Yes, as easy and simple as that. Even a newbie can use it to make great and reliable trades. NB: For best results, get my other premium indicators for more
FREE
Super helper
Aleksei Moshkin
5 (1)
The expert utility is designed to automate the trading of most arrow indicators. You do not need to wait for the indicator signal in order to open an order manually, the utility will handle it for you. When a signal arrow to buy or sell appears on the chart, the EA opens an order itself. To connect the indicator, you need to add the signal arrow buffer number to the EA settings. Settings.  INDICATOR SIGNAL SETTINGS Name of the indicator - the name of the indicator Subwindow number - subwi
Are you tired of drawing trendlines every time you're analyzing charts? Or perhaps you would like more consistency in your technical analysis. Then this is for you. This indicator will draw trend lines automatically when dropped on a chart. How it works Works similar to standard deviation channel found on mt4 and mt5. It has 2 parameters: 1. Starting Bar 2. Number of bars for calculation The   starting bar   is the bar which drawing of the trend lines will begin, while the   number of bars for c
FREE
“可调分形” - 是分形指标的高级版本,非常有用的交易工具! 据我们所知,标准分形 mt4 指标根本没有设置 - 这对交易者来说非常不方便 可调整分形已经解决了这个问题 - 它具有所有必要的设置: 指标可调周期(建议值-7以上) 距价格高点/低点的可调距离 可调节设计 af 分形箭头 ............................................................................................................. // 这里提供更多优秀的 EA 交易和指标: https://www.mql5.com/en/users/def1380/seller 它是仅在该 MQL5 网站上提供的原创产品。
Cumulative Delta MT4
Evgeny Shevtsov
4.93 (27)
The indicator analyzes the volume scale and splits it into two components - seller volumes and buyer volumes, and also calculates the delta and cumulative delta. The indicator does not flicker or redraw, its calculation and plotting are performed fairly quickly, while using the data from the smaller (relative to the current) periods. The indicator operation modes can be switched using the Mode input variable: Buy - display only the buyer volumes. Sell - display only the seller volumes. BuySell -
FREE
Money Meter
Makarii Gubaydullin
The indicator displays the levels of potential profit/loss for each direction (buy and sell). My   #1 Utility : includes 65+ functions  |   Contact me  if you have any questions You can set:  Lot size (there is also an option to auto-set the last used lot); Grid step : percentage / amount of money (green switch); Number of levels for each direction; Risk calculation for the current account balance / or for the free margin; In the initial settings of the indicator, you can select: Color of lines
Wise Men Indicator demo
Bohdan Kasyanenko
3 (2)
The indicator displays signals according to the strategy of Bill Williams on the chart. Demo version of the indicator has the same features as the paid, except that it can work only on a demo account . Signal "First Wise Man" is formed when there is a divergent bar with angulation.  Bullish divergent bar - with lower minimum and closing price in the upper half. Bearish divergent bar - higher maximum and the closing price at the bottom half. Angulation is formed when all three lines of Alligat
FREE
Lot by Risk
Sergey Vasilev
4.81 (21)
风险交易面板是为手动交易而设计的. 这是发送订单的另一种方式。 面板的第一个特点是使用控制线方便地下订单。 第二个特征是在存在止损线的情况下计算给定风险的交易量。 使用热键设置控制行: 获利-默认情况下T键; 价格-默认情况下p键; 止损-默认情况下,S键; 您可以在交易面板的设置中自行配置密钥。 运算算法: 1)-我们把水平在所需的地方(这是没有必要把所有的水平); 2)-指定风险(可选); 3)-点击绿色发送订单按钮; 4)-我们正在等待下订单,或者会出现带有错误消息的警报; 5)-如果我们想关闭当前符号的所有订单,通过魔术链接到专家顾问,然后点击关闭订单按钮。 您不应该多次按下发送订单按钮。 一次就够了。 下单后,按钮将呈现"未按下"状态。 要发送带有风险计算的订单,需要设置止损线并在交易面板的"风险"字段中设置风险。 否则,订单将以当前交易工具的最低手数放置。 风险是从账户余额计算出来的. 由于经纪商对保证金交易细节的限制,不可能承担100%的风险。 在"风险"字段中允许小数(例如,您可
FREE
该产品的买家也购买
Trade Assistant MT4
Evgeniy Kravchenko
4.43 (180)
它有助于计算每笔交易的风险,容易安装新的订单,具有部分关闭功能的订单管理, 7 种类型的追踪止损和其他有用的功能。 注意,该应用程序在策略测试器中不起作用。 Manual, Description, Download demo 线条功能  - 在图表上显示开仓线、止损线、止盈线。 有了这个功能,就可以很容易地设置一个新的订单,并在开仓前看到它的附加特性。   风险管理  - 风险计算功能在考虑到设定的风险和止损单的大小的情况下,计算新订单的成交量。它允许你设置任何大小的止损,同时观察设定的风险。 批量计算按钮 - 启用 / 禁用风险计算。 在 " 风险 " 一栏中设置必要的风险值,从 0 到 100 的百分比或存款的货币。 在 " 设置 " 选项卡上选择风险计算的变量: $ 货币, % 余额, % 资产, % 自由保证金, % 自定义, %AB 前一天, %AB 前一周, %AB 前一个月。   R/TP 和 R/SL - 设置止盈和止损的关系。 这允许你设置相对于损失的利润大小。 例如, 1 : 1 - 这决定了 TP = SL 的大小。 2 : 1 - 这意味着 TP 是
欢迎来到 Trade Manager EA——这是一个终极风险管理工具,旨在使交易变得更直观、精准和高效。它不仅仅是一个下单工具,而是一个用于无缝交易计划、仓位管理和风险控制的全面解决方案。不论您是新手交易员、资深交易员,还是需要快速执行的剥头皮交易员,Trade Manager EA 都可以满足您的需求,适用于外汇、指数、大宗商品、加密货币等各种市场。 借助 Trade Manager EA,复杂的计算已成过去。只需分析市场,在图表上用水平线标记入场、止损和止盈,设置您的风险水平,Trade Manager 就会立即计算出理想的头寸规模,并实时显示以点、账户货币计价的止损和止盈。每笔交易都得以轻松管理。 主要功能: 头寸规模计算器 :根据定义的风险瞬间确定交易规模。 简单的交易计划 :在图表上用可拖动的水平线直接计划交易,设置入场、止损和止盈。 实时显示 SL 和 TP :以账户货币、点或分显示止损和止盈,便于分析。 高级保护工具 盈亏平衡选项 : 基本盈亏平衡 :当您的交易达到设定水平时自动保护利润。 多级盈亏平衡 :设置多达 4 个级别以逐步保护利润。 尾随止损选项 : 基本尾随
Local Trade Copier EA MT4
Juvenille Emperor Limited
5 (83)
通过 Local Trade Copier EA MT4 获得非常快速的交易复制体验。它的简单1分钟设置,使您可以在同一台Windows计算机或Windows VPS上在多个MetaTrader终端之间复制交易,具有闪电般快速的复制速度,低于0.5秒。 无论您是初学者还是专业交易者, Local Trade Copier EA MT4 都提供了广泛的选项,可根据您的特定需求进行自定义。对于任何希望增加利润潜力的人来说,这都是终极解决方案。 今天就尝试一下,看看为什么它是市场上最快、最简单的贸易复印机! 提示: 您可以在您的模拟账户中下载并试用 Local Trade Copier EA MT4 模拟版: 这里 将下载的免费演示文件粘贴到您的 MT4 >> 文件 >> 打开数据文件夹 >> MQL4 >> 专家文件夹并重新启动您的终端。  免费演示版本每次可在 4 小时内发挥全部功能,仅限演示帐户。 要重置试用期,请转至 MT4 >> 工具 >> 全局变量 >> Control + A >> 删除。 请仅在非关键模拟账户上执行此操作,不要在挑战道具公司账户中执行此操作。 Local
Custom Alerts 是一款多功能的多市场监控工具,可识别所有八种主要货币(美元、加元、英镑、欧元、瑞士法郎、日元、澳元和新西兰元)、黄金 (XAU)、基于这些货币的所有 28 种外汇和黄金货币对以及 US30、UK100、WTI、比特币等多达七种指数中的有前景的设置。该工具可完全自定义。该工具从我们的 FX Power、FX Volume 和 IX Power 指标中收集数据,并在发生重大事件时通知您。  开始使用前,您必须在终端上安装好使用过的指标,以便从多市场扫描仪提供的所有选项中获益。 有关功能和各种警报选项的更多详情,请参阅 ->   自定义警报常见问题                                                                                                        Custom Alerts 是一款多功能的多市场监控工具,可识别所有八种主要货币(美元、加元、英镑、欧元、瑞士法郎、日元、澳元和新西兰元)、黄金 (XAU)、基于这些货币的所有 28 种外汇和黄金货币对以及
Exp COPYLOT CLIENT for MT4
Vladislav Andruschenko
4.69 (62)
MetaTrader 4 的交易复制器。     它从任何账户复制外汇交易、头寸、订单。 它是最好的贸易复印机之一     MT4 - MT4,MT5 - MT4     为了   复制 MT4     版本(或     MT4 - MT5 MT5 - MT5     为了   复制MT5     版本)。 MT5版本 详细描述   +DEMO +PDF 如何购买 如何安装     如何获取日志文件     如何测试和优化     Expforex 的所有产品 复印机 版本       MetaTrader 5 终端 (   МТ5 - МТ5, МТ4 - МТ5   )-   Copylot 客户端 MT5 独特的复制算法将所有交易从主账户准确复制到您的客户账户。 该产品还以其高运行速度而著称,并且具有强大的错误处理能力。 一组强大的功能。 该程序可以在多个终端绑定上运行。 使用它作为您在一个账户上交易的多个账户的交易 的同步器 , - COPYLOT 会将您的交易复制到其他终端。 从已关闭的账户中复制 Invest 密码; 部分关闭仅从 mt4 到 mt4
Trade Dashboard MT4
Fatemeh Ameri
5 (38)
疲于复杂的订单下达和手动计算?Trade Dashboard 是您的解决方案。凭借其用户友好的界面,订单下达变得轻而易举,只需点击一下,您就可以开设交易、设置止损和止盈水平、管理交易手数,并计算风险回报比,让您只需专注于您的策略。告别手动计算,使用 Trade Dashboard 简化您的交易体验。 立即下载演示版本 。 您可以在这里找到仪表盘功能和特性的详细信息 。 加入 Telegram 频道 。 购买后请给我发消息以获取支持。如果您需要添加更多功能,可以在产品的评论区留下您的想法,我愿意听取任何建议,希望您能在使用我的产品时获得最佳体验 。 这是 MT5 版本。 风险管理:使用 Trade Dashboard,可以将您的风险设置为账户余额或权益的百分比,或将风险设置为总金额。在图表上直观地定义您的止损,让工具准确计算每个货币对的适当手数。该工具还可以根据您期望的风险回报比自动设置止盈水平。它甚至可以在手数计算中涵盖佣金和点差费用。此外,您的止损和止盈可以转变为虚拟水平,隐藏于经纪商。通过 Trade Dashboard 的高级风险管理功能,掌控风险,保护您的资本。
The product will copy all telegram signal to MT4   ( which you are member  ) , also it can work as remote copier.  Easy to set up, copy order instant, can work with almost signal formats, image signal, s upport to translate other language to English Work with all type of channel or group, even channel have "Restrict Saving Content", work with  multi channel, multi MT5 Work as remote copier: with signal have ticket number, it will copy exactly via ticket number. Support to backtest signal. How to
MT4 至 Telegram 信号提供者 是一款易用、可完全自定义的工具,它使发送信号到 Telegram 成为可能,将您的账户变成信号提供者。 消息的格式 可以完全自定义! 但是,为了简便使用,您也可以选择一个预设模板,并能够启用或禁用消息的特定部分。 [ 演示 ]  [ 手册 ] [ MT5 版本 ] [ Discord 版本 ] [ Telegram 频道 ] 设置 可通过 用户指南 获取逐步说明。 无需了解 Telegram API;开发者提供所需的一切。 主要特性 自定义发送给订阅者的订单详情的能力 您可以创建分层订阅模型,例如铜牌、银牌、金牌。金牌订阅可获得所有信号等。 按订单号、符号或备注过滤订单 包括执行订单的图表的屏幕截图 在发送的屏幕截图上绘制已关闭的订单,以便额外验证 推迟发送新订单消息的可能性,以便在发送前对位置进行调整 订单详情的全透明度: 新的市场订单 *附带屏幕截图 订单修改(止损、获利点) 已关闭订单 *附带屏幕截图 部分关闭订单 ** 新的挂起订单 修改的挂起订单(进场价格) 挂起订单激活(作为新的市场订单) 已删除的挂起订单
TradePanel MT4
Alfiya Fazylova
4.9 (86)
交易面板是一个多功能的交易助手。 该应用程序包含 50 多个手动交易功能,并允许您自动执行大多数交易操作。 购买之前,您可以在模拟帐户上测试演示版本。 演示 此处 。 完整说明 此处 。 贸易。 让您一键执行基本交易操作: 开立挂单和开仓。 打开订单网格。 平仓挂单和持仓。 仓位反转(平仓买入并开仓卖出,或平仓卖出并开仓买入)。 锁定仓位(通过开立相反仓位使卖出和买入仓位的交易量相等)。 对所有仓位进行部分平仓。 将所有头寸的止盈和/或止损设置为同一水平。 将所有仓位的止损设置为盈亏平衡水平。 开仓订单和仓位时,您可以: 根据既定风险自动计算订单量。 一键打开多个订单。 将计算出的交易量分配给多个订单。 使用面板创建的线条和标记在图表上可视化未来订单的交易水平位置。 开仓时,设置最大点差限制。 使用止盈规模与止损规模的自动比率。 使用虚拟止损和止盈。 将当前点差添加到止损和止盈。 使用 ATR 指标计算止盈和止损。 设置待处理订单的到期日期。 使用挂单跟踪(挂单自动移动到价格后面指定的距离)。 平仓订单和平仓时,您可以: 一键按订单或仓位类型关闭。 只需点击一下,即可仅平仓盈利或无利可
Trade copier MT4
Alfiya Fazylova
4.52 (29)
Trade Copier 是一种专业实用程序,旨在复制和同步交易账户之间的交易。 复制发生从供应商的帐户/终端到收件人的帐户/终端,安装在同一台计算机或 vps 上。 在购买之前,您可以在演示帐户上测试演示版本。 演示 这里 。 完整说明 这里 。 主要功能和优点: 支持复制MT4>MT4、MT4>MT5、MT5>MT4,包括МТ5 netting账户。 供应商和收件人模式在同一产品中实现。 简单直观的界面,允许您直接从图表中实时控制复制。 连接中断或终端重新启动时不会丢失设置和位置。 允许您选择要复制的符号,也可以替换接收者的符号,例如 EURUSD> USDJPY。 支持回拷贝。 能够仅复制某些订单。 允许您设置开仓交易价格的最大差异和最大时间延迟。 正确复制部分订单关闭的执行。 计算复制手数的几种方法。 同步止盈和止损。有几种方法可以计算它们的位置。 支持通过执行在“Market account”上工作,其中 SL / TP 仅在开仓后设置。 如何使用简单的设置复制交易 将供应商终端和接收终端安装在同一台计算机或 VPS 上。 在供应商终端上以“Master”模式安装复印机,然后
将信号从任何您是会员的渠道(无需机器人令牌或管理员权限)直接复制到您的 MT4。 它的设计以用户为中心,同时提供您需要的许多功能 该产品采用易于使用且具有视觉吸引力的图形界面。 自定义您的设置并在几分钟内开始使用该产品! 用户指南 + 演示  | MT5版本 | 电报版本 如果您想尝试演示,请参阅用户指南。 Discord To MT4 在策略测试器中不起作用。 Discord MT4 功能 从您是会员的任何频道复制。 无需机器人令牌或聊天 ID 使用风险百分比或固定手数进行交易 排除特定符号 选择复制所有信号或自定义要复制的信号 配置单词和短语以识别所有信号(默认值应适用于 99% 的信号提供商) 配置时间和日期设置以仅在需要时复制信号 设置一次打开的最大交易量 交易和头寸管理 使用信号或自动设置的管理 通过设置每月、每周、每天、每小时或每分钟的最大交易次数,停止过度交易和报复性交易。 支持市价订单和挂单 每日最大利润目标(以美元为单位)以确保头寸并停止过度交易 确保仓位的每日最大利润目标(%) 最大开放交易以限制风险和敞口。 使用 RR、点数或价格自动获取部分内容 使用固
News Trapper EA
Noha Mohamed Fathy Younes Badr
4.86 (14)
Hi, all.  News trapper EA It is an expert for trading news very safe expert  Automated Trading on the news of the economic calendar. It shows stable trading during last 10  years. EA doesn't use dangerous technologies like martingale, grid. The Expert is very simple to use.      sale will end after 48 h how to install it     and set files     read the blog         after purchase contact me to add you to   VIP   channel  The program contains flexible settings for trading on the news of the econ
跟单->方便快捷的界面交互,用户上手即用      ->>>> 推荐在windows电脑,或者VPS Windows上使用 特色功能: 多样化个性跟单设置: 1.对不同的信号源可以设置不同的手数模式 2.不同的信号源分别设置正向反向跟单 3.信号分别设置注释 4.是否根据合约手数校准手数 多样化个性跟单设置2: 1.对不同的品种可以设置不同的手数模式 2.不同的品种分别设置正向反向跟单 3.信号分别设置注释 4.是否根据合约手数校准手数 注释过滤,MAGIC过滤,信号手数过滤,本地品种过滤 工作时间设置 反向同步接收端的平仓 订单绑定功能:任意订单可以绑定到设置信号源订单上 (双击表格更改) 账户风险控制  基本功能: 跟单正常交互速度0.5s以下 自动检测信号源,并显示信号源账号列表 自动匹配品种,不同平台常用交易品种(后缀不同等特殊情况)95%自动匹配,基本无需手动设置,品种映射表可随意双击更改对应品种.(映射表具有快速搜索品种功能) 4种手数计算模式(1.倍率 2.固定手数 3.自适应资金风险 4.源账户资金比例风险) 特殊手数模式:可以根据止损资金风险反算手数(可能止损过
Layer Master Toolbox
Peter Andrew Thomas
5 (3)
GRID TRADING - Layer Master tool kit is the ultimate, easy to use trading toolkit makes it simple to layer grids of Orders over any entry level. This toolkit will make it simple and fast to Open / Enter and Manage your grid trades on MT4. Every function is simple - but clicking and dragging the order zone - you define an area you want your orders, then you can quickly drag the SL and TP levels to where you want them. Hit one button and your orders are sent!!!  Features: It is capable to send h
Trade Sync MT4
Anna Kolchina
5 (1)
« Trade Sync » — Really fast copying and precise synchronization of trades. Simple installation and configuration of the application within 5 seconds allows you to copy trades between different MetaTrader terminals installed on one Windows PC or Windows VPS at maximum speed. «Trade Sync» contains a large number of options for customizing the application to your specific needs and allows you to cope with even complex user tasks. Separate use: Trade Sync MT4 - allows you to copy (Мt4 > Мt4), Trade
Telegram To MT4 Receiver
Levi Dane Benjamin
5 (3)
将信号从您所属的任何渠道(包括私人和受限渠道)直接复制到您的 MT4。 该工具在设计时充分考虑了用户的需求,同时提供了管理和监控交易所需的许多功能。 该产品采用易于使用且具有视觉吸引力的图形界面。 自定义您的设置并在几分钟内开始使用该产品! 用户指南 + 演示  |     MT5版本  |     不和谐版本 如果您想尝试演示,请参阅用户指南。 Telegram To MT4 接收器在策略测试器中不起作用! Telegram 至 MT4 功能 一次复制多个通道的信号 从私人和受限频道复制信号 不需要机器人令牌或聊天 ID(如果出于某种原因需要,您仍然可以使用这些) 使用风险百分比或固定手数进行交易 排除特定符号 选择复制所有信号或自定义要复制的信号 配置单词和短语以识别所有信号(默认值应适用于 99% 的信号提供商) 配置时间和日期设置以仅在需要时复制信号 设置一次打开的最大交易量 交易和头寸管理 使用信号或自动设置的管理 通过设置每月、每周、每天、每小时或每分钟的最大交易次数,停止过度交易和报复性交易。 支持市价订单和挂单 每日最大利润目标(以美元为单位)以确保头寸并停止
交易助手 : 交易助手-MT4(点击下载) 交易助手-MT5(点击下载) 操作说明文档,请仔细阅读 基本使用设置 基本: 快捷开平仓,一键开平仓,一键挂单 划线交易 自动止盈止损 多品种平仓 账户保盈 保护止损 移动止损 账户风控 影子订单 万向加仓策略 自动平仓 定海神针 商品信息汇总 图标批量打开 数据统计(详单统计,盈亏全览,持仓分布,货币点图,余额净值曲线,每单盈亏,多品种曲线,专业分析报告等) 支持语言的选择切换(目前支持中文和英文)   自动识别语言 支持 热键开平仓 绑定, 使用快捷键进行快速开平仓......   快捷键平仓.支持最大30多种热键 解锁支持大部分功能 复盘 操作,可以在 测试环境下使用 开仓平仓区域: 一键开仓( 包含止盈止损的便捷设置,手数自动计算等便捷功能) 一键平仓 (锁仓),极简的风格设计,可以自由选择平仓品种,平仓类型(多单,空单,或者挂单),是否平仓盈利大于0的订单,是否平仓亏损订单,平仓比例的设置(0~100%),且是否平仓反向,以及锁仓功能,均在选项中可以直接实现操作. 多键平仓 划线开单控件 计算出多单或者空单的
控制您的外匯投資組合。立即查看您的站立位置、工作原理以及導致您疼痛的原因! 此處提供 MT5 版本: https://www.mql5.com/en/market/product/58658 交易經理儀表板旨在讓您一目了然地顯示您當前在外匯市場中的每個頭寸,並使風險管理和貨幣敞口更易於理解。 對於通過多個頭寸或交易網格和籃子策略逐漸進入市場的交易者,這是需要查看的關鍵信息。監控終端中的多個位置通常很難管理。 過度槓桿化和使用低風險:回報是新交易者和一些經驗豐富的交易者面臨的主要問題,交易經理向您展示您對每種貨幣的風險敞口,確保您不會同時進行雙向交易。 特徵: 未平倉交易 - 查看您當前按貨幣對排序的所有未平倉交易。您不僅可以在該貨幣對上看到您的方向偏差,還可以在該貨幣對上運行的每筆交易或頭寸上看到您的方向偏差。 回撤和利潤信息 - 立即查看您交易活躍的貨幣對的回撤或盈利情況。輕鬆識別需要管理的交易。 手數大小 - 查看您在每個貨幣對上的手數以及您進行的交易數量。 風險敞口 - 查看您對每種貨幣的方向偏差,以確保您不會在另一個入場時以相反的方向交易。另請查看您在該貨幣中使用
Trade Manager MT4 DaneTrades
Levi Dane Benjamin
4.33 (9)
交易管理器可帮助您快速进入和退出交易,同时自动计算风险。 包括帮助您防止过度交易、报复性交易和情绪化交易的功能。 交易可以自动管理,账户绩效指标可以在图表中可视化。 这些功能使该面板成为所有手动交易者的理想选择,并有助于增强 MetaTrader 4 平台。多语言支持。 MT5版本  |  用户指南+演示 交易经理在策略测试器中不起作用。 如需演示,请参阅用户指南 风险管理 根据%或$自动调整风险 可选择使用固定手数或根据交易量和点自动计算手数 使用 RR、点数或价格设置盈亏平衡止损 追踪止损设置 最大每日损失百分比,在达到目标时自动平仓所有交易。 保护账户免遭过多提款并阻止您过度交易 最大每日损失(以美元为单位)在达到目标时自动关闭所有交易。 保护账户免遭过多提款并阻止您过度交易 一键实现所有交易的盈亏平衡 自动计算从手机/电话发送的交易的风险 OCO 在设置中可用 交易和头寸管理 通过设置每月、每周、每天、每小时或每分钟的最大交易次数,停止过度交易和报复性交易。 高级挂单管理。 调整何时关闭挂单的规则 追踪挂单 支持市价订单和挂单 每日最大利润目标(以美元为单位)以确保头寸并停
MT4 To Notion
Levi Dane Benjamin
5 (2)
该程序将允许您使用非常友好的用户界面将所有交易从 MetaTrader 帐户直接导出到 Notion。 MT5版本  |   用户指南+演示 要开始使用,请使用用户指南并下载概念模板。 如果您想要演示,请参阅用户指南。 在策略测试器中不起作用! 主要特点 将所有交易从您的交易账户导出到您的 Notion 将运行交易和挂单导出到 Notion 并更新它们 创建模板 最后一日出口贸易 上周出口贸易 上个月出口贸易 从自定义时间范围导出交易 自动将所有新的已平仓交易发送至 Notion 选择要包含在导出中的字段,例如订单类型、数量、开仓时间、平仓时间等 如何开始 转到上面的用户指南或启动 EA 并单击“获取连接帮助” 连接后,单击“开始:导出全部”将历史记录中的所有当前交易发送到 Notion 如果您希望它自动将所有新的已平仓交易发送到 Notion,请选中“更新新已平仓交易” 如果您有任何问题,请告诉我。 随着产品的开发,将添加新功能。
BBMA Oma Ally Signals Scanner (BBMA Oma Ally Analyzer Dashboard EA) This is a multi-pair and multi scanner dashboard to find the key signal of BBMA Oma Ally Strategy BBMA consists of the use of 2 indicators: Moving Averages Bollinger Bands BBMA consists of many types of entries: Reentry Extreme Rejection EMA50 GAP (EMA50 to Upper/Lower BB) MHV Full Setup (CSE>TPW>MHV>Direction>Reentry) There are many multi timeframe signals based on this strategy. RRE (Reentry - Reentry - Extreme) REE (Reentry
Grid Manual MT4
Alfiya Fazylova
4.72 (18)
Grid Manual是一个交易面板,用于处理订单网格。 该实用程序是通用的,具有灵活的设置和直观的界面。 它不仅可以在亏损方向上设置订单网格,还可以在盈利方向上设置订单网格。 交易者不需要创建和维护订单网格,实用程序会这样做。 打开一个订单就足够了,Grid manual会自动为它创建一个订单网格,并伴随它直到非常关闭。 完整说明和演示版 此處 。 该实用程序的主要特性和功能: 伴隨以任何方式打開的訂單,包括從移動終端打開的訂單。 適用於兩種類型的網格:“限制”和“停止”。 使用兩種方法計算網格間距:固定和動態(基於 ATR 指標)。 允許您更改未結訂單網格的設置。 顯示圖表上每個網格的盈虧平衡水平。 顯示每個網格的利潤率。 允許您一鍵關閉網格中的盈利訂單。 讓您一鍵關閉每個訂單網格。 允許您對訂單網格應用追踪止損功能。 允許您在訂單網格上應用將訂單網格的止損轉移到盈虧平衡水平的功能。 相對於訂單網格的盈虧平衡水平自動重新排列止盈(僅在限價網格模式下,距離取決於所選的計算類型:“保守”或“激進”)。 最多可管理 20 個訂單網格,每個網格最多可包含 100 個訂單。
Risk Manager for MT4
Sergey Batudayev
4.56 (9)
MT4 的 Expert Advisor 风险管理器是一个非常重要的程序,我认为对每个交易者来说都是必要的程序。 使用此 EA 交易,您将能够控制您交易账户中的风险。风险和利润控制可以以货币形式和百分比形式进行。 要让智能交易系统工作,只需将其附加到货币对图表并以存款货币或当前余额的百分比设置可接受的风险值。 顾问功能 PROMO BUY 1 GET 2 FREE -   https://www.mql5.com/en/blogs/post/754725 该风险经理将帮助您控制风险: - 交易 - 每天 - 一个星期 - 一个月 你也可以控制 1) 交易时允许的最大手数 2) 每天最大订单数 3) 每天最大利润 4) 设置 Equity 的获利了结 不仅如此,如果您在设置中指定自动设置,顾问还可以为您设置默认的止损和止盈。 顾问会在每个事件中附上警报,并向您解释删除订单的原因。比如你开了,你开了第6个订单,按照你的规则你每天只允许开5个订单,顾问会立即删除6个并说明原因。 例如,您开仓的手数比您最初向自己指示的手数大,顾问将删除订单并解释原
The top-selling EAs on the market cost a lot and one day they are suddenly gone. This is because one strategy will not work in the forex market all the time. Our product is unique from all others in the MQL Marketplace because our EA comes with 34+ built-in indicators that allow adding more strategies every time.  You build your strategy and keep updating it. If one strategy does not work, simply build another all using only one EA. This is All-In-One EA in this market place. You can use as trad
Ultimate Trade Copier
BLAKE STEVEN RODGER
5 (1)
This trade copy utility allows you to instantly and seamlessly replicate and synchronize unlimited orders from multiple master accounts to multiple slave accounts on your local machine. You can create custom channels (or portfolios) with advanced filtering capabilities to copy from multiple master accounts to multiple slave accounts. Moreover, you can tailor these channels with a range of lot sizing and trade condition options to ensure that copied trades outperform the original source. You can
CloseIfProfitorLoss with Trailing
Vladislav Andruschenko
4.86 (28)
在 MetaTrader 4 中使用利润跟踪功能在达到总利润/亏损时平仓。 您可以启用 虚拟停止(单独订单)   , 分别计算和平仓 买入和卖出头寸 (Separate BUY SELL)   , 关闭和计算 所有交易品种或仅当前交易品种(所有交易品种)   , 启用追踪获利( 追踪 利润) 关闭存款货币、点数、余额百分比的总损益。 该应用程序旨在与任何其他 EA 一起用于任何账户或与手动交易结合使用。 MT5 版本 详细描述   +DEMO +PDF 如何购买 如何安装     如何获取日志文件     如何测试和优化     Expforex 的所有产品 一旦某些货币对或所有货币对的交易总余额大于或等于设置中指定的值,所有头寸将被关闭并删除订单。 此版本不仅能够在指定的利润水平平仓,而且还可以追踪利润以获得更好的结果。 我们实用程序的主要功能 按所有交易品种的总利润平仓; 按单独交易的总利润结算。 (虚拟模式); 按总利润结算并追踪利润; 按总利润以点数、百分比或货币结算; 所有交易或单独交易均以总亏损结束; 关闭交易后关闭图表和终端、风险管理器、包含关闭信息的邮件
Ultimate No Nonsense FX Backtester - You can Run Forward Test Simulation with this tool! Do Not Download the Demo Here, Please Read Below! Step by Step Manual Guide PDF for this backtester PDF List of Commands(Shortcuts) for this backtester Ultimate NNFX Backtester is a powerful utility tool that significantly reduces the length of backtesting process for NNFX followers.  As well as for Forex traders that operates their entries and exits at the close of a candle and manage the risk using A
The product will copy all  Discord  signal   to MT4   ( which you are member  ) , also it can work as remote copier.  Easy to set up. Work with almost signal formats, support to translate other language to English Work with multi channel, multi MT4. Work with Image signal. Copy order instant, auto detect symbol. Work as remote copier: with signal have ticket number, it will copy exactly via ticket number. How to setup and guide: Let read all details about setup and download Discord To MetaTrade
Take a Break
Eric Emmrich
5 (26)
The most advanced news filter and drawdown limiter on MQL market NEW: Take a Break can be backtested against your account history! Check the " What's new " tab for details. Take a Break has evolved from a once simple news filter to a full-fledged account protection tool. It pauses any other EA during potentially unfavorable market conditions and will continue trading when the noise is over. Typical use cases: Stop trading during news/high volatility (+ close my trades before). Stop trading when
This tool will allow you to export MetaTrader indicators data (Buffers) for any financial instrument present in your MetaTrader 4. You can download multiple Symbols and Timeframes in the same csv file. Also, you can schedule the frequency of download (every minute, 5 minutes, 60 minutes, etc.). No need to open a lot of charts in order to get the last data, the tool will download the data directly. The CSV File will be stored in the folder:   \MQL4\Files . How it works Report Tab : Select
作者的更多信息
This is Advanced NotifyMe version with large interface. Overview The Expert Advisor allows you to receive notifications to the mobile phone (or tablet PC), mailbox or play the sound alert when some events occured: opening or closing position, placing or deleting pending order; changing open price, stop loss or take profit; the account balance, equity, margin level, free margin or drawdown has reached the user specified level. You can specify a notification interval, notification text template
NotifyMe Free for MT5
Denis Zyatkevich
5 (5)
Overview The Expert Advisor sends notifications to a mobile phone, via e-mail or activates an audio alarm in case any changes are detected on the trading account: opening/closing positions, changing order parameters, balance or leverage. Also, the Expert Advisor can inform that Equity on the trading account has dropped below a specified value or Free Margin is small compared to Margin. The Expert does not trade, it only monitors your account and orders. Launching the Expert Advisor You should
FREE
Overview The script displays information about the trade account: Information about the trade account: Account - account number and type (Real, Contest or Demo); Name - name of the account owner; Company - name of a company that provide the access to trading; Server - trade server name; Connection State - connection state; Trade Allowed - shows whether trading is allowed on the account at the moment; Experts Allowed - shows whether it is allowed to trade using Expert Advisors; Balance - account
FREE
NotifyMe Free for MT4
Denis Zyatkevich
5 (4)
概览 此 EA 发送通知到移动电话, 通过邮件或激活声音提示交易账户内的开仓或平仓。此 EA 不进行交易, 它仅监视您的账户和订单。 启动 EA 为了让 EA 工作,将文件 NotifyMe_free.ex4 保存在终端的/experts 目录 (可能它会自动放在那里)。NotifyMe_free 应该出现在导航窗口的 EA 板块。如果没有, 重启 MetaTrader 4 终端。 为了让 EA 工作,在 MetaTrader4 的设置中允许使用 EA。为此,进入工具菜单,之后选项,之后选择 EA 选栏。启用允许 EA 选项 (接受定制指标和脚本)。 要启动 EA,在导航器窗口鼠标右键点击其名称,然后选择 "挂载到图表",或者用鼠标拖放到图表上。EA 的参数窗口将会出现:设置所需的参数,然后点击确定。 此 EA 可以挂载到任意金融工具的图表上,因为 EA 在每次即时报价来到时分析交易账户状态,为了降低通知的延迟,建议在报价比较活跃的品种里运行此 EA (例如, 以下货币对之一: EURUSD, GBPUSD, USDCHF 或 USDJPY)。时间帧任意。 EA 的输入参数 P
FREE
Overview The script displays information about the trade account: Account - account number and type (Real or Demo); Name - name of the account owner; Company - name of a company that provide the access to trading; Server - trade server name; Connection State - connection state; Trade Allowed - shows whether trading is allowed on the account at the moment; Balance - account balance; Equity - account equity; Credit - amount of credit; Profit - profit size; Free Margin - free margin on the account;
FREE
Overview The script displays information about the trade account and the current financial instrument. Information about the trade account: Account - account number and type (Real or Demo); Name - name of the account owner; Company - name of a company that provide the access to trading; Server - trade server name; Connection State - connection state; Trade Allowed - shows whether trading is allowed on the account at the moment; Balance - account balance; Equity - account equity; Credit - amount
Overview The Expert Advisor allows you to receive notifications to the mobile phone (or tablet PC), mailbox or play the sound alert when some events occured: opening or closing position, placing or deleting pending order; changing open price, stop loss or take profit; the account balance, equity, margin level, free margin or drawdown has reached the user specified level. You can specify a notification interval, notification text template and audio file for sound alerts. Expert Advisor saves the
Overview The Expert Advisor sends notifications to a mobile phone, via e-mail or plays a sound in case any changes are detected on the trading account: opening/closing positions, changing order parameters, balance or leverage. Also, the Expert Advisor can inform that Equity on the trading account has dropped below a specified value or Free Margin is small compared to Margin. The Expert does not trade, it only monitors your account. Launching the Expert Advisor For the Expert Advisor to work, p
NotifyMe for MT5
Denis Zyatkevich
5 (4)
Overview The Expert Advisor sends notifications to a mobile phone, via e-mail or activates an audio alarm in case any changes are detected on the trading account: opening/closing positions, changing order and position parameters, balance or leverage. Also, the Expert Advisor can inform that Equity on the trading account has dropped below a specified value or Free Margin is small compared to Margin. The Expert Advisor does not trade, it only monitors your account and orders. Launching the Exper
Overview The script displays information about the trade account and the current financial instrument. Information about the trade account: Account - account number and type (Real, Contest or Demo); Name - name of the account owner; Company - name of a company that provide the access to trading; Server - trade server name; Connection State - connection state; Trade Allowed - shows whether trading is allowed on the account at the moment; Experts Allowed - shows whether it is allowed to trade usin
Overview The Expert Advisor allows you to receive notifications to the mobile phone (or tablet PC), mailbox or play the sound alert when some events occured: opening or closing position (also closing all positions), placing or deleting pending order; changing open price, stop loss or take profit; the account balance, equity, margin level, free margin or drawdown has reached the user specified level. You can specify a notification interval, notification text template and audio file for sound ale
This is Advanced NotifyMe version with large interface. Overview The Expert Advisor allows you to receive notifications to the mobile phone (or tablet PC), mailbox or play the sound alert when some events occured: opening or closing position (also closing all positions), placing or deleting pending order; changing open price, stop loss or take profit; the account balance, equity, margin level, free margin or drawdown has reached the user specified level. You can specify a notification interval
Overview The Expert Advisor sends notifications to a mobile phone, via e-mail or plays a sound in case any changes are detected on the trading account: opening/closing positions, changing order or position parameters, balance or leverage. Also, the Expert Advisor can inform that Equity on the trading account has dropped below a specified value or Free Margin is small compared to Margin. The Expert Advisor does not trade, it only monitors your account. Launching the Expert Advisor You should al
筛选:
Johan Julien Aubry
884
Johan Julien Aubry 2021.06.06 10:00 
 

Works correctly. Please don't write directly to me about my review, I'll not answer.

PETER LUISI
1981
PETER LUISI 2021.01.18 12:03 
 

Just what I was looking for. Works very well.

procorner
99
procorner 2018.03.26 08:10 
 

用户没有留下任何评级信息

Hatem Abou Ouf
5276
Hatem Abou Ouf 2017.09.21 22:19 
 

Excellent but I wish if He can add DrawDown% feature

project13et
173
project13et 2017.09.04 20:07 
 

Excellent product! A+++

Zack van Zyl
591
Zack van Zyl 2015.04.09 10:44 
 

Great Product!

回复评论
版本 1.1 2018.09.27
Bug fixed;
Optimize for new MQL4;
User-friendly input parameters.