Easy mt4 to telegram

Jarfac Mt4ToTelegram

Introduction

Jarfac Mt4ToTelegram  is an MT4 system designed to facilitate real-time communication between the MetaTrader 4 platform and Telegram.  This script allows traders to receive customizable instant notifications based on different trade types, ensuring optimal responsiveness without having to constantly monitor the trading platform.

main Features

  • Real-time notifications  : Receive notifications directly on Telegram as soon as an action occurs on MT4.
  • Emoji support  : Notifications can include emoji for better viewing.
  • Configuration settings  : Customize your Telegram messages based on various trading actions (buy, sell, close in profit/loss, etc.).
  • HTML messages and links  : Embed links directly into your notifications.
  • Test button  : A button is provided to test the functionality of the script directly from MT4.
  • Automatic calculation of pips  : The script is able to calculate the difference in pips depending on the currency pair and the type of order.
  • Support for multiple currencies  : The script supports a wide variety of currencies and displays the corresponding flag for each pair.
  • Daily report message : It is possible to customize it and add trade details with {TRADES_DETAILS}, {TRADESD}{PROFITMONEYD},  {PROFIT%D} and manage the sending time.

Instructions d'installation

  1. Make sure you have a Telegram bot and know the token and chatId. 
  2. You must authorize WebRequest and add the URL  https://api.telegram.org  in "Tools" → "Options" → "Expert Consultant".
  3. Configure external parameters with your own values, such as your bot's token, chatId, custom messages, etc.
  4. Run the script and verify that you receive the notifications on Telegram.

Tutorial Creating a bot with BotFather:

Step 1: Start BotFather
  • Open the Telegram app.
  • Search "BotFather" in the Telegram search bar.
  • Click on the chat with BotFather to start it.
Step 2: Create a new bot
  • In the BotFather chat, type or click /newbot .
  • BotFather will ask you to name your bot.  Enter the desired name.
  • Next, you will be asked to create a username for the bot.  It must end with "_bot" (for example, "mychatbot_bot").
Step 3: Collect your TOKEN
  • Once you have created the bot, BotFather will provide you with a TOKEN.  Keep it secret and don't share it!  You will need it to interact with the Telegram API.

2. Find the ChatId

To get the ChatId, follow these steps:

Step 1: Start your bot
  • In Telegram, search for your bot's username (eg "@mychatbot_bot") and start a conversation with it by clicking "Start".
Step 2: Use Telegram API
  • Open your web browser.
  • Type  https://api.telegram.org/bot  [YOUR_TOKEN]/getUpdates replacing [YOUR_TOKEN] with the TOKEN that BotFather gave you.
  • You will see a JSON return of the messages your bot received.  Locate an entry that looks like "chat":{"id":123456789,"first_name":"YourName",... .
  • The numeric ID (for example, 123456789 ) is your ChatId.

Note  : If you don't see your ChatId immediately, try sending a few messages to your bot via Telegram and then refreshing the API page.

And There you go !  You have now created a bot with BotFather and obtained the ChatId to communicate with your bot.


Manual

  1. Once the script is installed and configured, notifications will automatically be sent to Telegram based on trading actions.
  2. Use the test button to verify that everything is working properly.

FormatMessage User Guide

The formatMessage function allows customizing messages sent to Telegram based on transaction details.  Each message can contain variables that will be replaced with real values ​​at runtime.

Possible variables to use in your message:

  1. {SYMBOL}  : The currency pair traded (eg: EUR/USD) accompanied by their respective flags (eg: 🇪🇺🇺🇸).
  2. {TICKET}  : The transaction ticket number.
  3. {TIMEFRAME}  : The time period of the transaction (for example: M5, H1).
  4. {BUYSELL}  : The type of transaction (for example: BUY, SELL).
  5. {ORDERLOTS}  : The number of lots traded.
  6. {OPENPRICE}  : The open price of the trade.
  7. {TAKEPROFIT}  : The price from which the profit will be made.
  8. {PROFIT%}  : Percentage of profit made in relation to the total account balance.
  9. {PROFITPIPS}  : Profit or loss in pips.
  10. {PROFITMONEY}  : Profit or loss in monetary terms (for example: $50).
  11. {STOPLOSS}  : The price from which the loss will be realized.
  12. {CLOSINGPRICE}  : The closing price of the transaction.
  13. {ORDERCOMMENT}  : Comments or remarks associated with the transaction.
  14. {TRADES_DETAILS}  : Specific details of the transaction or trades made.
  15. {TRADESD} : Number of trades for the day.
  16. {PROFITMONEYD} : Total profits in $ for the day.
  17. {PROFIT%D} : Total profit in % for the day.
  18. {MONTH}  : The current month.
  19. {LINK1}  ,  {LINK2}  ,  {LINK3}  : Customizable links to direct the user to external resources.
  20. {BR}  : To create a new line in the message.
  21. {B}  and  {/B}  : To put the text between these tags in bold.
  22. {U}  and  {/U}  : To underline the text between these tags.
  23. {I}  and  {/I}  : To put the text between these tags in italics.

Example of use :

Suppose you want to create a message with the following format:

{U+1F916} {B}TRADE CLOSED{/B} {U+1F916}{BR}---------------{BR}{U+1F44D}{BuySell}:{Symbol}{BR}{U+2705}Prix CLOSE:{ClosingPrice}{BR}{U+1F3C6}{ProfitPips},{ProfitMoney},{Profit%}{U+1F60D}{BR}---------------

At runtime, if a new trade for  GBPJPY  was closed at a closing price of  185.174  , the resulting message would be:


🤖   TRADE CLOSED  🤖 
---------------
👍 SELL:GBPJPY.4x
 Prix CLOSE:185.174
🏆 0.58 pips,14.37 $,0.29% 😍
---------------

Explanation of Emojis substitutions:

  • {U+1F600} will be replaced by 😀 (Grinning Face).
  • {U+1F602} will be replaced by 😂 (Face with Tears of Joy).
  • {U+1F604} will be replaced by 😄 (Grinning Face with Smiling Eyes).
  • {U+1F606} will be replaced by 😆 (Grinning Squinting Face).
  • {U+1F609} will be replaced by 😉 (Winking Face).
  • {U+1F60E} will be replaced by 😎 (Smiling Face with Sunglasses).
  • {U+1F60D} will be replaced by 😍 (Smiling Face with Heart-Eyes).
  • {U+1F618} will be replaced by 😘 (Face Blowing a Kiss).
  • {U+1F61C} will be replaced by 😜 (Winking Face with Tongue).
  • {U+1F622} will be replaced by 😢 (Crying Face).
  • {U+1F44D} will be replaced by 👍 (Thumbs Up).
  • {U+1F44E} will be replaced by 👎 (Thumbs Down).
  • {U+274C} will be replaced by ❌ (Cross Mark).
  • {U+2705} will be replaced by ✅ (Check Mark Button).
  • {U+1F3C6} will be replaced by 🏆 (Trophy).
  • {U+1F947} will be replaced by 🥇 (1st Place Medal).
  • {U+1F948} will be replaced by 🥈 (2nd Place Medal).
  • {U+1F949} will be replaced by 🥉 (3rd Place Medal).
  • {U+1F916} will be replaced by 🤖 (Robot).
  • {U+1F535} will be replaced by 🔵 (Blue Circle).
  • {U+1F534} will be replaced by 🔴 (Red Circle).
  • {U+2734} will be replaced by ✴️ (Eight-Pointed Star).
  • {U+2747} will be replaced by ❇️ (Sparkle).
  • {U+1F4C8} will be replaced by 📈 (Chart Increasing).

Note  : Always be sure to test your custom messages to ensure they are formatted correctly before using them live.


FAQ

  • Can I personalize the messages sent?
    Yes, you can define your own messages for each type of transaction in the script's external parameters.

  • Does the script support emojis?
    Yes, you can add emojis in your messages using the "{U+Code}" format.  For example, "{U+1F600}" will be replaced by the emoji 😀.

Feedback et support

If you have any suggestions, comments, or encounter any issues with the script, please don't hesitate to contact us.

Disclaimer / Disclaimer

Trading involves risk.  Although this script aims to improve your trading experience, it is essential to use it wisely and fully understand the implications of each trading action.  We are not responsible for any loss or damage that may arise from the use of this script.

Good luck with  Jarfac Mt4ToTelegram  and your trading on MT4!


推荐产品
BreakEven ProSync EA – 交易管理与风险控制工具 概述 BreakEven ProSync EA 是一款专为 MetaTrader 4 设计的专家顾问(EA),旨在通过自动化止损调整和确保仓位同步,帮助交易者高效管理未平仓头寸。该工具适合希望在多笔交易中标准化止损和止盈水平,并集成盈亏平衡功能的交易者。 该 EA 通过计算所有未平仓头寸的平均价格,并根据交易者的判断将止损调整至盈亏平衡点。它还提供了可视化总止损(Total SL)和总止盈(Total TP)水平的工具,并高效管理交易退出。 主要功能 Customizable HotKeys: Market Buy Market Sell Buy Limit Sell Limit Buy Stop Sell Stop HotKeys for BreakEven and Close All positions alongside with the Buttons 盈亏平衡功能 激活后,将止损移至盈亏平衡水平。 添加新仓位时,自动重新计算盈亏平衡价格。 止损与止盈同步 确保所选交易品种的所有未平仓交易具有相同的止损
Pending Orders Grid Complete System opens any combination of Buy Stop, Sell Stop, Buy Limit and Sell Limit pending orders and closes all existing pending orders. You will be able to Drag-and-Drop the Script on the chart and it will pick up the start price for the first position in the grid from the "Drop" point. Usually it should be in the area of Support/Resistance lines. Input Parameters Before placing all pending orders, the input window is opened allowing you to modify all input parameters:
The utility is designed to send signals from MT4 to Telegram. It has several unique features, allowing not only the sending of trade signals but also the following functionalities: Send messages directly from the terminal to Telegram Send emojis along with custom text Send text and images from Telegram All of these features enable users to manage a signal channel while focusing on trading and finding quality signals. [DEMO and  Instruction for utility] Customizable Signal Messages You can fully
Pending provider
Andrey Frolov
5 (1)
The script greatly simplifies trader's work with pending stop orders (BuyStop, SellStop). The script places any number of pending orders at a user-defined distance (in points). Order expiration time in seconds can also be specified. It is also possible to place only Buy Stop or only Sell Stop orders. All stop orders are accompanied by user-defined take profit and stop loss levels. Volume is customizable as well. Parameters Open BuyStop - place a pending Buy order Open SellStop - place a pending
Drawdown Partial Closure
Jerome Thierry Francois Delobel
Drawdown Partial Closure Expert Advisor Description: The Drawdown Partial Closure Expert Advisor is a tool designed for MetaTrader 4 that assists traders in managing their positions during drawdown periods. It monitors the drawdown of the trading account in real-time and automatically closes a portion of losing positions when the drawdown exceeds a specified threshold. This helps traders to mitigate losses during adverse market conditions while allowing profitable positions to remain open. Featu
MT4 To Notion
Levi Dane Benjamin
5 (2)
该程序将允许您使用非常友好的用户界面将所有交易从 MetaTrader 帐户直接导出到 Notion。 MT5版本  |   用户指南+演示 要开始使用,请使用用户指南并下载概念模板。 如果您想要演示,请参阅用户指南。 在策略测试器中不起作用! 主要特点 将所有交易从您的交易账户导出到您的 Notion 将运行交易和挂单导出到 Notion 并更新它们 创建模板 最后一日出口贸易 上周出口贸易 上个月出口贸易 从自定义时间范围导出交易 自动将所有新的已平仓交易发送至 Notion 选择要包含在导出中的字段,例如订单类型、数量、开仓时间、平仓时间等 如何开始 转到上面的用户指南或启动 EA 并单击“获取连接帮助” 连接后,单击“开始:导出全部”将历史记录中的所有当前交易发送到 Notion 如果您希望它自动将所有新的已平仓交易发送到 Notion,请选中“更新新已平仓交易” 如果您有任何问题,请告诉我。 随着产品的开发,将添加新功能。
PRODUCT description: Market Data Logger   PRO  is a utility tool specially created for the sole purpose of logging your Broker's market data to a text file. With this tool, you will be able to record and export metrics from your MT4 Broker such as the "MT4 Market Watch Time", "Bid Price", "Ask Price", "High Price", "Low Price" and various measures of "Spread". This tool may be of interest to traders, data scientists wanting to capture and analyze market data, entrepreneurs, archival purposes,
HotKeys MT4
Alexey Valeev
3 (1)
This utility provides the ability to use hot keys in manual trading instantly responding to the current market situation. You can assign hot keys to open/close positions by their type, close all positions on the current chart and remove all orders on the current chart. You can also assign hot keys for five predefined trade volumes and switch between them if necessary with no need to change the volume manually from time to time. It is also possible to set the auto calculation of a trade volume in
LMBF Executor
Graeme Dakers
5 (1)
**IMPORTANT** THIS TOOL REQUIRES YOU TO FIRST PURCHASE "Graphical Trade Planner" https://www.mql5.com/en/market/product/56702. Without it, this tool will do nothing of any use. -------------------------- Use "Graphical Trade Planner"  to plan your trades directly on your charts and get instant feedback on account risk, trade risk to reward and  required position size. Plus, purchase LMBF Executor separately to easily convert planned trades into orders and manage them from your charts. Features i
ChartChanger 是一个很棒的实用工具,可以减少终端上打开的图表数量。它分为三个部分:符号、时间框架和模板。您只需要打开一张图表,并且仍然可以向上滚动到多个图表。 符号:只需按一下按钮,您就可以从一个符号更改为另一个符号,并且您应用的指标将保留在下一张图表上。对于符号有自动检测模式,或者您可以手动输入所需的符号。您可以使用全部 28 或低于该数字的任何数字。您可以使用 MetaTrader 拥有的任何符号:货币对、能源、指数、商品等。 时间范围:在面板中间添加了时间范围更改器功能。只需按一下按钮,您就可以更改为所需的时间范围,从 1 分钟图表到每月图表。 模板:该面板的第三个功能是模板更换器。九个内置模板,使用任何或都不使用。 所有按钮都位于自由浮动面板内。将光标放在面板的顶部,然后单击鼠标左键,您可以将面板自由移动到图表上的任何位置。您无法将面板移出价格图表窗口。 每三个部分都可以使用该部分右上角的“+”或“-”按钮折叠或展开。通过此功能,当面板不使用时,您可以最大限度地减少价格图表中占用的空间。 请注意:在一张图表中只能使用一个 ChartChanger。无法回溯测试。 C
Trailing and SL TP
Konstantin Kulikov
5 (1)
The utility places trailing stop, breakeven, stop loss and take profit.‌ It is necessary to allow automated trading in the terminal settings. In testing mode, the utility opens Buy or Sell positions on the first ticks, which allows you to visually observe the given logic, changing the utility parameters. In real mode, the utility does not open positions. Discuss the complexities of Forex trading here:  chat "Age of Expert Advisors" . Parameters magic  - magic number. If less than 0, positions wi
One Click Trader is a tool designed for MetaTrader 4 platform, which enables you to take your trading to the next level. It enables you to open, manage and close your trades in simple an efficient way by just one click of your mouse button. Up arrow minimizes the OCT panel Down arrow maximizes the OCT panel Right arrow displays the next panel with additional features Left arrow hides the panel with additional features Red SELL button enables you to open short market orders Red SELL STOP button e
The informer provides information on the current state of open market positions. The visual presentation consists of two parts.  The left side contains the latest transactions executed on the account. Transactions are sorted by time. The right part shows the current state of the aggregate positions of the instruments. Sorting of positions is carried out in descending order of the margin load on the account. Updating and recalculating the status of positions is performed automatically and/or by
图表同步指示器 - 设计用于同步终端窗口中的图形对象。可以用作 TradePanel 的补充。 购买之前,您可以在模拟帐户上测试演示版本。 演示 此处 。 要工作,请将指标安装在您要从中复制对象的图表上。在此图表上创建的图形对象将由指标自动复制到具有相同交易品种的所有图表。该指标还将复制图形对象中的任何更改。 输入参数: Exception - 指不需要复制的图形对象的名称。可以通过分号“;”指定多个名称。如果名称具有相同的部分,可以使用符号“*”。例如,Btn_1453、Btn_7565、Btn_1453 具有相同的部分 Btn_,因此可以在字段中输入 Btn_*。 Custom symbols - 用于复制(同步)图形对象的附加图表符号。您可以指定多个符号,并用“;”分隔符分隔。 Hide objects not from symbol — 在图表上仅显示为当前品种创建的图形对象(如果图形对象不是为当前品种创建的,则隐藏该对象)。如果您通过 TradePanel 应用在图表上切换品种,则可以使用此选项。 SyncVLINE - 同步垂直线。 SyncHLINE - 水平线。 Syn
One more Copier MT4
Oleksii Chepurnyi
5 (1)
Yet another signal copier. Nothing special. Demo version can be downloaded here . Key Features The utility copies trades between terminals: by market, pending orders (optional), as well as their stop loss and take profit levels (optional as well). You can copy from one Master account to several Slave accounts, as well as from several Master accounts to one Slave account. Volume calculation At the moment, there are two options for calculating the volume: The trade volume is taken 1 to 1 from th
AW Metatrader to Telegram
AW Trading Software Limited
用于发送通知的自动化系统,这样您的订阅者就不会错过您交易终端上的交易事件。一种实用程序,可向 Telegram Messenger 发送有关您账户上任何交易操作的通知。 将实用程序连接到 Telegram ->   HERE   / MT5 ->   HERE 中的频道的分步说明 优点: 简单的设置和详细的说明, 可以发送可调整的屏幕截图, 使用表情符号可定制的通知文本, 调整有关开仓、全部或部分平仓以及订单修改的通知, 默认发送通知时,会自动下载文本文件, 调整有关放置或删除挂单的通知, 通过符号和幻数方便地过滤。 输入变量: TELEGRAM BOT AND CHAT SETTINGS Telegram bot token - Enter the token number received after registering the bot in "BotFather" Telegram Chat ID - Enter the identification number received from "userinfobot" SETTING TRIGGERS SETTINGS
BuyLimit_SellLimit_Grid script opens BuyLimit and SellLimit pending orders. You just need to drop this script on the chart with a desired currency pair.  Before placing all pending orders, the input window is opened allowing you to modify all input parameters: LongPos - if TRUE, BuyLimit order is opened. ShortPos - if TRUE, SellLimit order is opened. InitLot - initial lot. LotCoeff - if 1, all pending orders will have the same lot size. InitStep - difference between two consecutive orders in poi
SFG Telegram Trade Notifier for MT4 is a professional notification system that sends instant messages to your Telegram group or channel every time a trade is opened or closed on your MT4 account. MAIN FEATURES Sends notifications for every trade open and close Compatible with Telegram Groups, Channels, and Topics (threads) ️ Customizable scan frequency and filters Persistent memory (no duplicate messages after restart) Ignores trade history — sends only new events ️ 100% safe: no
Chart Button
Chantal Sala
3 (1)
Chart Button is a very useful indicator that allows you to navigate all charts with a simple click. This tool has been designed to work both vertically and horizontally. The particularity of this navigator is that you can change more charts simultaneously setting the input value. This tool will give you the ability to optimize your navigation and speed up all your analyzes. Input Values Direction (the direction of symbols buttons) Horizontal Vertical 32 SYMBOLS Forex_Suffix_Symbols (add Forex S
Shortcuts MT4 Hotkeys Scalping
Pablo Filipe Soares De Almeida
MT4 Hotkeys – 订单与持仓管理工具 该工具允许用户使用键盘快捷键在 MetaTrader 4 平台上管理订单和持仓。支持下单执行、平仓、移动止损调整和通过可自定义设置的风险管理功能。 主要命令 “B”:提交买入订单。 “S”:提交卖出订单。 “C”:关闭所有打开的持仓。 “X”:关闭特定持仓(根据配置为最旧或最新持仓)。 “T”:激活移动止损,根据前一根K线的最低点(买单)或最高点(卖单)进行调整。 “P”:关闭开放仓位的可配置百分比(默认:50%)。 “K”:将所有打开仓位的止损移动到盈亏平衡点(开仓价)。 注意:命令必须使用大写字母激活。 风险管理选项 用户可以选择: 固定手数。 以美元为单位的风险限制,并通过前一根K线及用户定义的设置自动计算止损。手数根据每笔交易的指定风险进行调整。 功能 用于下单、平仓、止损管理的可配置键盘快捷键。 基于前一根K线的高点或低点的移动止损功能。 支持同时关闭所有持仓。 支持可定制的手数、止损、止盈和 Magic Number 设置。 兼容 MetaTrader 4 的所有品种和时间周期。
The  Silver Volatility Trend Line for MT4 is an EA that helps you trade using the trendlines, drawn on your chart. It basically allows you to send and manage orders using trend lines. It automatically calculates the True Range of your asset to allow you to send orders well calibrated with the market volatility. Take Profit and Stop Loss are calculated in number of True Range. You can do that for two different orders at the same time , so that you can trade two different kind of risk / profit rat
Watermark Symbol
Makarii Gubaydullin
图表上的水印:符号+时间帧/或您自己的文本 我的#1实用程序 :包括66+功能 /  如果您有任何问题 ,请与我联系 在指示器的设置中,您可以配置: 字体大小;文字颜色; 字体名称; 职位: 1=左上; 2=右上; 3=左下; 4=右下; 5=中心; 显示当前时间范围:开/关; 要删除的符号的前缀(n_AUDCAD-->AUDCAD); 要删除的符号的后缀(USD CAD pro-->USD CAD); 显示自定义文本:如果启用,将显示您自己的文本,如下所示: 自己的水印; 我的#1实用程序 :包括38+功能 /  如果您有任何问题 ,请与我联系 .....................................................
该面板具有每个初学者都可以处理的最直观的界面。 在 SLp 列中 - 您需要以点子为单位指定 SL 大小。如果该值变为灰色,同时 Bay / Sell 按钮也处于非活动状态,则您指定的 SL 值小于经纪商设置之前允许的值。 在 TP% 列中 - 您以帐户余额的百分比表示 TP。在设置中,您可以根据此指标的计算方式选择净值、余额或可用保证金。 在 R% 栏中,您可以设置交易的风险值。 插入按钮。 - 允许您立即使用设置的值打开订单,如果禁用,则您可以直接在图表上预设交易参数。 在顶部,您可以通过单击左上角的减号来最小化图表上的面板。 还可以通过调整面板名称下方的 + 和 - 按钮来增加或减少面板本身的大小。 如果您还想开挂单和转移到BU,追踪止损,保存开单的各种设置,支持各种技术的定单,那么考虑一个功能更强大的EasyTradePad面板,您可以在我的产品中找到它。
风险控制专家顾问,该程序可让您控制交易顾问对您账户的总风险。 使用此程序,您可以控制所有顾问在账户上允许的最大风险。 例如,您设置了最大回撤的 30% 的风险,这意味着如果您的股票交易机器人超过 30% 的风险,风险控制员将关闭顾问的所有仓位,也可以关闭所有打开的图表,从而防止顾问进一步工作。 当您用鞅交易平均机器人并希望在不可抗力或其他不可预见的情况下限制机器人的最大损失时,EA 将是“安宁睡眠”所必需的,因为与其希望市场逆转。 The Risk Controller Expert Advisor is a very important and, in my opinion, necessary program for every trader who trades robots. 可以以账户上最大损失的限制货币美元等值和百分比来进行控制。 为了让顾问工作,只需将其附加到货币对的图表上,并以存款货币或当前余额的百分比设置最大允许风险。 顾问功能 在达到指定的总损失水平后平仓所有头寸 $ 和% 在达到以美元和百分比表示的总利润后平仓所有头寸 当达到指定的亏损/盈利时删除挂单 达到指定
Pointer synchronization is an indicator with which the pointer can be synchronized in all the visible charts of the terminal. It shows a crossed cursor in all the visible charts of the terminal, in position relative to the cursor of the active chart. To activate the indicator, simply press the button that appears in one of the corners of the chart once the indicator is added to the chart. To deactivate the indicator, simply press the button again. Once the indicator has been deactivated, the cr
Hello This EA for send Orders Signals when you open or close order and send statics to your channel in Telegram with sum of profit or Loss Pips you can share your orders with your clients in your telegram please watch our video  to see how it is fast. https://www.youtube.com/watch?v=u_7twtYZhyI you must have Telegram channel then make bot and give it Permission and get token (watch this video to know how do it) https://www.youtube.com/watch?v=x1bKWFOjSBE and you must download this files https
Pending Orders Grid Complete System opens any combination of Buy Stop, Sell Stop, Buy Limit and Sell Limit pending orders and closes all existing pending orders. You will have a possibility to put a legitimate Open Price for the first position in the grid. Usually it should in the area of Support/Resistance lines. You just need to drop this script on the chart of a desired currency pair. Input Parameters Before placing all pending orders, the input window is opened allowing you to modify all in
This trade panel is able to greatly simplify the work for news traders. The utility allows to place market or pending orders with a single mouse click. The trade panel is a good assistant for scalping, news trading and for opening a multitude deals. The orders are placed manually, the lines indicate distance for placing the orders. The trailing stop and breakeven features will take care of the deal, in case it is unable to reach the take profit level. The trade panel can work with both limit and
The utility is designed to send signals from MT4 to Telegram. It has several unique features, allowing not only the sending of trade signals but also the following functionalities: Send messages directly from the terminal to Telegram All of these features enable users to manage a signal channel while focusing on trading and finding quality signals. User-Friendly Interface Installation Telegram bot Create a Telegram bot that sends messages from the MT4 to the chat, channel or group. Set Up Tele
Telegram Forwarder can forward all activities related to trades and position taking as a signal to Telegram messenger. It can also forward indicators' alert to Telegram if you modify indicator code (I can do it for you too) to hand over alerts to Telegram Forwarder. This EA is intended for business and professional usage. You can introduce your own Telegram bot and customize water mark in screenshots. Telegram forwarder is able to forward signals for "new order", "modification of order", "Pendin
该产品的买家也购买
欢迎来到 Trade Manager EA——这是一个终极风险管理工具,旨在使交易变得更直观、精准和高效。它不仅仅是一个下单工具,而是一个用于无缝交易计划、仓位管理和风险控制的全面解决方案。不论您是新手交易员、资深交易员,还是需要快速执行的剥头皮交易员,Trade Manager EA 都可以满足您的需求,适用于外汇、指数、大宗商品、加密货币等各种市场。 借助 Trade Manager EA,复杂的计算已成过去。只需分析市场,在图表上用水平线标记入场、止损和止盈,设置您的风险水平,Trade Manager 就会立即计算出理想的头寸规模,并实时显示以点、账户货币计价的止损和止盈。每笔交易都得以轻松管理。 主要功能: 头寸规模计算器 :根据定义的风险瞬间确定交易规模。 简单的交易计划 :在图表上用可拖动的水平线直接计划交易,设置入场、止损和止盈。 实时显示 SL 和 TP :以账户货币、点或分显示止损和止盈,便于分析。 高级保护工具 盈亏平衡选项 : 基本盈亏平衡 :当您的交易达到设定水平时自动保护利润。 多级盈亏平衡 :设置多达 4 个级别以逐步保护利润。 尾随止损选项 : 基本尾随
Trade Assistant MT4
Evgeniy Kravchenko
4.43 (195)
它有助于计算每笔交易的风险,容易安装新的订单,具有部分关闭功能的订单管理, 7 种类型的追踪止损和其他有用的功能。 附加材料和说明 安装说明 - 应用程序说明 - 模拟账户应用程序的试用版 线条功能  - 在图表上显示开仓线、止损线、止盈线。 有了这个功能,就可以很容易地设置一个新的订单,并在开仓前看到它的附加特性。   风险管理  - 风险计算功能在考虑到设定的风险和止损单的大小的情况下,计算新订单的成交量。它允许你设置任何大小的止损,同时观察设定的风险。 批量计算按钮 - 启用 / 禁用风险计算。 在 " 风险 " 一栏中设置必要的风险值,从 0 到 100 的百分比或存款的货币。 在 " 设置 " 选项卡上选择风险计算的变量: $ 货币, % 余额, % 资产, % 自由保证金, % 自定义, %AB 前一天, %AB 前一周, %AB 前一个月。   R/TP 和 R/SL - 设置止盈和止损的关系。 这允许你设置相对于损失的利润大小。 例如, 1 : 1 - 这决定了 TP = SL 的大小。 2 : 1 - 这意味着 TP 是 SL 的两倍。 RR - 它禁用比率。  
Local Trade Copier EA MT4
Juvenille Emperor Limited
4.96 (110)
通过 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 >> 删除。 请仅在非关键模拟账户上执行此操作,不要在挑战道具公司账户中执行此操作。 如果您无法在
Copy Cat More Trade Copier MT4 (复制猫MT4) 不仅仅是一个简单的本地交易复制工具;它是一个为当今交易挑战而设计的完整风险管理与执行框架。从 prop firm 挑战到个人账户管理,它都能通过强大的执行力、资本保护、灵活配置以及先进的交易处理来适应各种情况。 该复制器同时支持 Master(发送端) 和 Slave(接收端) 模式,能够实时同步市价单与挂单、交易修改、部分平仓以及 Close By 操作。它兼容模拟账户与真实账户,支持交易或投资者密码,并通过持久交易记忆系统(Persistent Trade Memory)确保即使 EA、终端或 VPS 重启后也能恢复。可同时管理多个 Master 与 Slave,并通过前缀/后缀自动调整或自定义符号映射来处理跨平台或跨经纪商差异。 使用手册/设置: Copy Cat Trading Copier 使用手册 Copy Cat More MT5: https://www.mql5.com/en/market/product/139088 加入频道: https://www.mql5.com/en/cha
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
The News Filter
Leolouiski Gan
5 (25)
这个产品在新闻时间过滤所有的专家顾问和手动图表,因此您不必担心突然的价格波动会破坏您的手动交易设置或其他专家顾问输入的交易。此产品还带有完整的订单管理系统,可在任何新闻发布前处理您的持仓和挂单。一旦您购买了 The News Filter ,您将不再需要依赖以后的专家顾问内置的新闻过滤器,因为这个产品可以从此过滤它们所有。 新闻选择 新闻来源于Forex Factory的经济日历。 选择可以基于任何一种货币,如USD,EUR,GBP,JPY,AUD,CAD,CHF,NZD和CNY等。 选择也可以基于关键识别,例如Non-Farm (NFP),FOMC,CPI等。 能够选择新闻影响级别的筛选,从低、中、到高影响。 自动模式只选择与图表相关的新闻。 新闻来源每小时自动刷新,以确保最新的新闻数据。 为每个新闻影响级别提供单独的输入,以确定您要过滤掉的新闻发布前后的分钟数。 订单管理选项 在新闻发布前关闭未平仓头寸的选项,并在新闻发布后恢复它们。 在新闻发布前删除挂单的选项,并在新闻发布后恢复它们。 在新闻发布前移除止损和止盈水平的选项,并在新闻发布后恢复它们。 在新闻发布前移动止损和止盈
Exp COPYLOT CLIENT for MT4
Vladislav Andruschenko
4.69 (65)
MetaTrader 4 专业交易复制器 快速、专业、可靠的 MetaTrader 4 交易复制器。 COPYLOT 可在 MetaTrader 4 与 MetaTrader 5 终端之间复制外汇交易,并为不同账户类型和交易场景提供灵活的同步方案。 COPYLOT MT4 版本支持: MetaTrader 4 → MetaTrader 4 MetaTrader 5 Hedge → MetaTrader 4 MetaTrader 5 Netting → MetaTrader 4   MT5 版本 完整说明 + DEMO + PDF 如何购买 如何安装 如何获取日志文件 如何测试与优化 Expforex 的全部产品 您也可以使用 MetaTrader 5 版本,在 MetaTrader 5 → MetaTrader 5 和 MetaTrader 4 → MetaTrader 5 之间进行复制: COPYLOT CLIENT for MT5 COPYLOT 是一款专业级交易复制器,可稳定运行于 2、3 甚至 10 个终端之间。 支持从模拟账户和投资者密码账户进行复制 可同时运行在多个终端上
Ultimate Trailing Stop EA
BLAKE STEVEN RODGER
4.33 (15)
This EA Utility allows you to manage (with advanced filtering) unlimited open orders (manual or EA) with 16 trailing stop methods: fixed, percent, ATR Exit, Chandelier Exit, Moving Average, Candle High Low Exit, Bollinger Bands, Parabolic, Envelope, Fractal, Ichimoku Kijun-Sen, Alligator, Exit After X Minutes or Bars, RSI and Stochastic. The trailing stop can be either real or virtual, and you can exit fully or with a partial close percent on touch or bar close.  Moreover, you can add (overrid
TradePanel MT4
Alfiya Fazylova
4.84 (95)
交易面板是一款多功能交易助手。该应用包含超过50种手动交易功能,并允许您自动执行大多数交易任务。 在购买之前,您可以在演示账户上测试演示版本。下载用于演示账户的试用版应用程序: https://www.mql5.com/zh/blogs/post/762579 。 完整说明 这里 。 贸易. 只需单击一下即可执行交易操作: 打開掛單和頭寸,並自動計算風險。 一鍵打開多個訂單和頭寸。 打開訂單網格。 按組別關閉掛單和頭寸。 反轉頭寸方向(關閉買入>打開賣出,關閉賣出>打開買入)。 鎖定頭寸(通過開啟缺少的頭寸,使買入和賣出頭寸的數量相等)。 一鍵部分關閉所有頭寸。 將所有頭寸的止盈和止損設置在同一價格水平。 將所有頭寸的止損設置在盈虧平衡水平。 開倉時,可使用以下功能: 在多個訂單或倉位之間分配計算出的數量(在單擊一次時開啟多個訂單和倉位)。 在開啟訂單前在圖表上可視化交易水平。 僅在當前點差不超過設定值時才開啟倉位。 止盈和止損之間的自動比例。 虛擬止損和止盈。 自動將止損和止盈的大小增加為當前點差的大小。 基於ATR指標讀數計算止盈和止損。 設置掛單的到期日期。 為掛單設置追蹤(掛單
RiskManager
Roman Zhitnik
5 (4)
The Expert Advisor is a risk manager helping users to control their trading. In the settings, it is possible to specify the parameters at which the risk manager force closes the opened trades and closes the terminal as well, if it is needed to prevent opening trades on emotions, which do not correspond to the trading strategy. Risk Manager settings Check limit to close - check the equity limit Limit to close (account currency)   - equity limit that is checked when  Check limit to close is activ
Telegram to MT4 Coppy
Sergey Batudayev
4 (10)
Telegram 到 MT4: 终极信号复制解决方案 使用 Telegram 转 MT4 简化您的交易流程,这款先进的实用程序旨在将交易信号直接从 Telegram 频道和聊天复制到您的 MetaTrader 4 平台,无需 DLL 文件。这款强大的解决方案确保信号执行的无缝衔接,拥有无与伦比的精度和丰富的自定义选项,从而节省您的时间并提高您的效率。 [ Instructions and DEMO ] 主要特点 直接 Telegram API 集成 通过电话号码和安全码进行身份验证。 使用用户友好的 EXE 桥轻松获取和管理聊天 ID。 添加、删除和刷新多个频道/聊天以同时复制信号。 使用高级过滤器进行信号解析 跳过包含自定义例外词(例如“报告”、“摘要”)的不需要的信号。 支持灵活的 SL 和 TP 格式:价格、点数或点数。 当信号指定点而不是价格时自动计算入场点。 订单定制和灵活性 使用多种模式定制订单规模:固定手数、动态手数(% 风险)或特定符号手数。 使用信号数据或自定义参数调整 SL/TP。 配置滑点、挂单到期和重试设置以实现完美执行。 综合符号管理 排除特定符号或匹配自定义
Custom Alerts AIO:多市场智能监控,一键启动,无需设置 概述 Custom Alerts AIO 是一款“开箱即用”的高级市场扫描工具,无需额外安装任何其他指标或进行复杂设置。它内置了 Stein Investments 的所有核心指标(FX Power、FX Volume、FX Dynamic、FX Levels 和 IX Power),可帮助您轻松监控所有主要资产类别,如外汇、黄金、指数和加密货币。如果您的经纪商支持股票,您也可以手动添加个股进行监控。 1. 为什么选择 Custom Alerts AIO? 无需额外购买任何指标 • 所有关键指标均已内置,开箱即用。 • 专注于实时预警,不包含任何图形元素,性能高效,界面简洁。 全面覆盖所有主要市场 • 支持监控外汇、金属、加密货币和指数市场。 • 无需手动输入任何交易品种,只需在设置中勾选资产类别即可启用。 • 股票并不属于默认类别,如有需要可手动通过参数输入添加。 高效、专业、便捷 • 无需图表模板和手动加载,适合自动化或远程交易环境。 • 非常适合 VPS 上长期运行,或作为后台市场预警工具使用。 2
Managing trades MT4
David Julio Cuenca Oliver
Managing Trades 3.0 MT5 version:  https://www.mql5.com/en/market/product/172666?source=Site With Managing Trades 3.0, you can manage your trades quickly and efficiently. It features an intuitive visual interface with large buttons, allowing you to manage your trades as quickly as possible. With Managing Trades 3.0 you can: - Open a Buy and Sell order instantly with a single click, using any lot size you want. You can also optionally set Stop Loss and Take Profit. - Close all open trades in
Auto Trade Copier
Vu Trung Kien
4.76 (85)
自动交易复制器旨在以 100% 的准确度在多个 MT4/MT5 账户/终端之间复制交易。提供商和接收方账户必须位于同一台 PC/VPS 上。使用此工具,您可以将交易复制到同一台 PC/VPS 上的接收方账户。所有交易操作都将从提供商复制到接收方,不会有任何延迟。此版本仅适用于 MT4 账户。对于 MT5 账户,您必须使用 MT5 的自动交易复制器。参考: 参考: 对于 MT4 接收器,请下载“Trade Receiver Free” 这里 . 对于 MT5 接收器,请下载“Trade Receiver Free MT5”  这里 . 对于同一台 PC/VPS 上的 MT5 提供商,请检查“Auto Trade Copier MT5” 这里 . 如果您需要通过互联网在不同的 PC/VPS 上进行账户复制,请查看“Trade Copier Pro” 这里 . 如果您需要通过互联网在不同的 PC/VPS 账户之间进行复制,且接收方数量不限,请查看“无限交易复制器专业版” 这里 . 以下是重点功能 在 MT4 和 MT5 账户之间复制。 一个提供商可以将交易复制到多个接收者的账户。 一个提
Trading History MT4
Siarhei Vashchylka
5 (9)
Trading History - A program for trading and money management on the history of quotes in stratagy tester. It can work with pending and immediate orders, and is equipped with trailing stop, breakeven and take profit functions. Very good for training and testing different strategies. Manual (Be sure to read before purchasing) Advantages 1. Allows you to test any trading strategy in the shortest possible time 2. An excellent simulator for trading training. You can gain months of trading experience
EchoTrade Telegram to MT4 Copier
Perpetual Chinemerem Vincent
5 (2)
EchoTrade Telegram to MT5 Copier Seamless, Instant, and Reliable Signal Copying - Direct from Telegram to MetaTrader 4! The product does not run in the strategy tester but you can get free trial version   here  for testing before purchase. Tired of manually executing trades from Telegram signals? EchoTrade automates the process, instantly copying trades from any Telegram channel or group directly into your MT5 account—accurately, efficiently, and without delay. Key Features: Universal Compatib
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 MetaTrader
Grid Manual MT4
Alfiya Fazylova
4.71 (17)
Grid Manual是一个交易面板,用于处理订单网格。 该实用程序是通用的,具有灵活的设置和直观的界面。 它不仅可以在亏损方向上设置订单网格,还可以在盈利方向上设置订单网格。 交易者不需要创建和维护订单网格,实用程序会这样做。 打开一个订单就足够了,Grid manual会自动为它创建一个订单网格,并伴随它直到非常关闭。 完整说明和演示版 此處 。 该实用程序的主要特性和功能: 伴隨以任何方式打開的訂單,包括從移動終端打開的訂單。 適用於兩種類型的網格:“限制”和“停止”。 使用兩種方法計算網格間距:固定和動態(基於 ATR 指標)。 允許您更改未結訂單網格的設置。 顯示圖表上每個網格的盈虧平衡水平。 顯示每個網格的利潤率。 允許您一鍵關閉網格中的盈利訂單。 讓您一鍵關閉每個訂單網格。 允許您對訂單網格應用追踪止損功能。 允許您在訂單網格上應用將訂單網格的止損轉移到盈虧平衡水平的功能。 相對於訂單網格的盈虧平衡水平自動重新排列止盈(僅在限價網格模式下,距離取決於所選的計算類型:“保守”或“激進”)。 最多可管理 20 個訂單網格,每個網格最多可包含 100 個訂單。
Riskless Pyramid
Snapdragon Systems Ltd
5 (1)
Introduction This powerful MT4 trade mangement EA offers a way potentially to aggressively multiply trade profits in a riskfree manner. Once a trade has been entered with a defined stoploss and take profit target then the EA will add three pyramid add-on trades in order to increase the overall level of profit. The user sets the total combined profit target to be gained if everything works out. This can be specified either as a multiple of the original trade profit or as a total dollar amount. Fo
If you need an advisor on any arrow indicator signals - this utility will definitely help you.  You will be able, with the help of this utility to form an unlimited number of EAs on YOUR signals , with your set of settings, with your copyright and complete source code . You will be able to use the resulting EAs unlimitedly , including adding them to the Market and other resources. Free simple version of the generation script to help you understand how it works - here What does the utility do? 
Take a Break
Eric Emmrich
5 (31)
News filter, equity guard & session control for all your EAs — one tool, full protection Take a Break has evolved from a basic news filter into a comprehensive account protection solution . It pauses your other Expert Advisors during news events or based on custom filters. When trading resumes, it automatically restores your entire chart setup , including all EA settings. Why traders choose Take a Break One news filter for all your EAs — no more relying on individual built-in filters that may o
Edge Zone EA
FXsolutions
5 (1)
With this Expert Advisor you will follow the sound trading principle Buy Low and Sell High by default ! And you can do that even with a normal day job . You will be even able to trade on lower timeframes which you could never do without such an Expert Advisor. And the best thing is that you are in control! You can tell the Edge Zone EA where it has to enter and where it has to exit. And you can do that even many hours before the trade will occur . This EA is therefore an excellent assistant for
MultiOrder Assistent V3.0   - Your professional trading assistant for MetaTrader 4 The  MultiOrder Manager  is a powerful trading tool designed to optimize your trading while managing risk efficiently. With intuitive features and a user-friendly interface, this Tool is ideal for traders who want to manage multiple orders simultaneously without losing track.   Symbols: FX pairs, gold and cryptocurrencies Here you get a detailed description of the parameters and functions Manual     Features and
News Filter EA: Advanced Algo Trading Assistant News Filter EA is an advanced algo trading assistant designed to enhance your trading experience. By using the   News Filter EA , you can integrate a Forex economic news filter into your existing expert advisor, even if you do not have access to its source code. In addition to the news filter, you can also specify   trading days   and   hours   for your expert. The News Filter EA also includes   risk management   and   equity protection   features
Copy Master mt4
Evgenii Aksenov
5 (5)
此实用程序将允许您将具有主设置的一个终端的任何事务复制到具有从属设置的其他终端 与此同时,您可以选择要复制的对,根据几个参数设置复制顺序的大小。 设定亏损限额或只复制盈利交易 您可以将MT4或MT5的交易复制到其他经纪商的MT4或MT5 现在,将任何在MT4中工作的专家的信号复制到MT5终端或返回并不困难 使用复制大师复制任何交易从其他信号,专家顾问,手动交易.  使用设置,您可以更改批量大小,交易方向,只复制有利可图的交易,并设置价值以保存您的存款  复制大师可以在一个帐户上组合不同订阅信号的几种策略 要复制交易到MT4,你需要复制主MT5版本: https://www.mql5.com/zh/market/product/74371 有关复制向导设置的其他信息: https://www.mql5.com/en/blogs/post/749356 (抱歉文本的自动翻译)
EasyTrade MT4
Alain Verleyen
5 (1)
Easy Trade – 智能、简洁且强大的交易管理工具 Easy Trade 是为 MetaTrader 用户打造的一体化交易管理解决方案,帮助您轻松掌控风险,实现流畅交易执行。 它是根据交易者的反馈从零开始开发的,简化了多品种交易的执行、监控和管理流程,无需繁琐的操作。 无论您是手动短线交易者,还是管理多个交易设置的小型投资组合,Easy Trade 都能让您专注于明智决策和稳定盈利。 ⸻ 为什么选择 Easy Trade? 精准风险管理:可选择固定手数或按百分比定义每笔交易的风险。实时显示风险与潜在收益。 篮子式跟踪止盈:追踪多笔交易的总利润,目标达成时自动锁定部分收益,适用于组合交易。 交易截图记录:每笔交易都可截图保存,方便日记记录、回顾与绩效分析。 定时自动平仓:可设定具体日期和时间自动关闭持仓,适合日终或周末前平仓。 界面可自定义:可调整按钮排序与大小、线条样式与颜色、缩放比例等,满足个人使用习惯。 ⸻ 主要功能(版本 1.0) 魔术号与策略标签: 使用注释标记轻松区分不同策略的交易,便于统计与复盘。 手数设置: 支持固定手数或基于止损与账户资金百分比的动态手
Exp4 Duplicator
Vladislav Andruschenko
4.5 (22)
Duplicator for MetaTrader 4 —— 单终端内的专业交易与订单复制系统 这是一款面向专业交易者的强大 Expert Advisor,用于自动复制已经存在的交易、放大或调整仓位,并按照你的规则管理复制出的订单与持仓。 它非常适合手动交易者、自动化系统使用者,以及希望对现有仓位进行更灵活管理的用户。 Duplicator 本身并不会按自己的交易策略主动开仓。它的核心任务是监控 MetaTrader 4 终端中已经存在的仓位和订单,然后按照你的设定创建精确副本,包括复制次数、手数、止损、止盈、过滤条件以及后续管理逻辑。 如果你需要的是 同一个终端内部 的智能交易复制模块,而不是不同终端之间的复制工具,那么 Duplicator 正是为此而设计。 MT5版本 详细描述 + DEMO + PDF 如何购买 如何安装 如何获取日志文件 如何测试和优化 Expforex 的所有产品 链接 如果你需要 MetaTrader 终端之间的交易复制工具,请查看: COPYLOT 为什么交易者会选择 Duplicator 可复制手动开立的交易、其他 Expert Advisor 开立
达到目标利润时自动锁定利润 EquityTargetCloser   — 是一款 MetaTrader 5 实用工具型专家顾问,当   净值(Equity)超过当前余额达到指定的利润金额时 ,它会自动平掉所有市价单并删除挂单。平仓后目标自动提高:新门槛 = 新余额 + 指定利润。该 EA 不负责开仓,仅管理现有头寸,帮助可靠地锁定利润并保护积累的资金。 MT5-version:  https://www.mql5.com/en/market/product/169839 工作原理 该专家顾问持续将   净值(Equity)   与动态目标进行比较: 目标 =   当前余额(Balance) + plusMoney   (美元)。 当净值大于或等于该金额时,触发保护机制: 平掉   所有市价单   (任何品种)。 如果参数   Delete pending orders = true ,则删除   所有挂单 。 平仓后余额更新,目标重新计算:   新余额 + plusMoney 。这样,EA 在每个成功周期后逐步提高利润锁定门槛。 重要提示 :触发条件取决于   累计浮动利润 ,而不是
Coppy Master MT4
Sergey Batudayev
4 (3)
Coppy Master MT4     是一款适用于 MetaTrader 4 和 MetaTrader 5 终端的交易复制工具。它支持双向复制: 从 MT4 到 MT5,从 MT5 到 MT4,以及同类型账户之间的 MT4 到 MT4。 为了正常工作,所有终端必须在同一台 PC 或 VPS 上运行。 [ Instruction  and Demo ]  如需复制到 MetaTrader 4,需另行购买 —       Coppy Master MT5       - 是必须的。 主要特点: 复印模式 支持主账户和接收账户角色。灵活设置发送和接收交易。 订单管理 复制市价单和挂单。支持同步平仓、部分平仓、交易逆转以及止损/获利修改。 符号处理 支持前缀和后缀。允许排除或包含特定符号,并为资产分配自定义名称。 风险控制与限额 每日交易限额、最大亏损限制以及停止复制的余额水平阈值。 批量设置 固定手数、风险百分比、手数乘数。可选择拒绝未设置止损或止盈的交易。 信号检查 检测重复交易,限制每个符号的交易数量,并验证订单类型以避免冲突。 时间过滤器 用于定义允许交易复制的时间段
Exp SafetyLock PRO
Vladislav Andruschenko
4.57 (28)
SAFETYLOCK for MetaTrader 4 是一款高级交易保护工具,可在市场突然反转时自动放置反向安全订单,从而保护已开仓位。 一旦交易者或 Expert Advisor (EA) 开立仓位, SAFETYLOCK for MT4 就会在相反方向创建对应的挂单(Buy Stop 或 Sell Stop)。 如果市场朝着原始交易的不利方向运行,该挂单将被触发并形成保护锁仓,帮助交易者控制回撤,更高效地组织恢复逻辑。 该 Expert Advisor 允许您灵活管理仓位:关闭原始交易、对已激活的安全仓位进行追踪、以更大的手数扩展锁仓,或根据市场条件组合多种安全管理方案。 SAFETYLOCK for MT4 还支持动态移动挂单价格,使保护结构能够实时跟随市场,并在价格走势变化时保持有效。 使用 SAFETYLOCK 升级您的 MetaTrader 4 保护逻辑——这是一款面向 2026 的高级解决方案,可实现更智能的锁仓、更清晰的恢复管理以及更强的交易控制。     Exp5 SafetyLock PRO for MT5 完整说明 +DEMO +PDF   如何购买    如何
作者的更多信息
Trades Extractor
Medilane Bernard Philippe Couratier
Jarfac Trades Extractor Description: Le "Jarfac Trades Extractor" est un script MQL4 conçu pour les traders qui souhaitent exporter et analyser leurs trades historiques. En un seul clic, le script génère un fichier CSV contenant des informations détaillées sur chaque trade exécuté pendant une période spécifiée. Caractéristiques principales : Filtrage par Période : Définissez une période personnalisée pour l'extraction. Possibilité de désactiver le filtrage par période. Filtrage par Commentaire :
FREE
筛选:
无评论
回复评论