• 概述
  • 评论
  • 评论
  • 新特性

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!


推荐产品
Trade Dashboard MT4
Fatemeh Ameri
5 (21)
Tired of complex order placement and manual calculations? Trade Dashboard is your solution. With its user-friendly interface, placing orders becomes effortless, by a single click, you can open trades, set stop loss and take profit levels, manage trade lot size, and calculate risk to reward ratios, allowing you to only focus on your strategy. Say goodbye to manual calculations and streamline your trading experience with Trade Dashboard. Download   demo version  right now. You can find details
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
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
Auto risk manager Free is a utility for order management. Regardless of whether the orders are opened manually or by Expert Advisors, the utility removes pending orders (if needed) and disables the terminal (not letting the EAs open new trades) when a specified profit or loss percentage is reached. This demo versions allows you to understand the work of the full version of Auto risk manager . The demo works only with AUDNZD orders only. Profit_Percent and Loss_Percent may have either positive or
FREE
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 purpose
Trailing and SL TP
Konstantin Kulikov
5 (2)
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. Parameters magic  - magic number. If less than 0, positions with any magic number are tracked. only_this_symbol  - only chart symbol. If  false
HotKeys MT4
Alexey Valeev
4 (2)
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
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
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
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
ChartChanger 是一个很棒的实用工具,可以减少终端上打开的图表数量。它分为三个部分:符号、时间框架和模板。您只需要打开一张图表,并且仍然可以向上滚动到多个图表。 符号:只需按一下按钮,您就可以从一个符号更改为另一个符号,并且您应用的指标将保留在下一张图表上。对于符号有自动检测模式,或者您可以手动输入所需的符号。您可以使用全部 28 或低于该数字的任何数字。您可以使用 MetaTrader 拥有的任何符号:货币对、能源、指数、商品等。 时间范围:在面板中间添加了时间范围更改器功能。只需按一下按钮,您就可以更改为所需的时间范围,从 1 分钟图表到每月图表。 模板:该面板的第三个功能是模板更换器。九个内置模板,使用任何或都不使用。 所有按钮都位于自由浮动面板内。将光标放在面板的顶部,然后单击鼠标左键,您可以将面板自由移动到图表上的任何位置。您无法将面板移出价格图表窗口。 每三个部分都可以使用该部分右上角的“+”或“-”按钮折叠或展开。通过此功能,当面板不使用时,您可以最大限度地减少价格图表中占用的空间。 请注意:在一张图表中只能使用一个 ChartChanger。无法回溯测试。 C
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
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
Telegram Signal Sender
Biswarup Banerjee
5 (1)
Whether you're a seasoned forex trader or just starting, Telegram Signal Sender is a must-have tool for anyone looking to start their telegram channel as a forex signal provider. With its user-friendly interface and advanced features, you can easily set up your signals and watch as your followers start to grow. So, what are you waiting for?  Features:  Highly customizable panel for calculating stop loss and take profit values  User-friendly interface for easy setup of forex signals Ability to se
风险控制专家顾问,该程序可让您控制交易顾问对您账户的总风险。 使用此程序,您可以控制所有顾问在账户上允许的最大风险。 例如,您设置了最大回撤的 30% 的风险,这意味着如果您的股票交易机器人超过 30% 的风险,风险控制员将关闭顾问的所有仓位,也可以关闭所有打开的图表,从而防止顾问进一步工作。 当您用鞅交易平均机器人并希望在不可抗力或其他不可预见的情况下限制机器人的最大损失时,EA 将是“安宁睡眠”所必需的,因为与其希望市场逆转。 The Risk Controller Expert Advisor is a very important and, in my opinion, necessary program for every trader who trades robots. 可以以账户上最大损失的限制货币美元等值和百分比来进行控制。 为了让顾问工作,只需将其附加到货币对的图表上,并以存款货币或当前余额的百分比设置最大允许风险。 顾问功能 在达到指定的总损失水平后平仓所有头寸 $ 和% 在达到以美元和百分比表示的总利润后平仓所有头寸 当达到指定的亏损/盈利时删除挂单 达到指
这个QuickClose帮助您一键即可立即关闭所有订单,其工作非常快。您可以选择您想要的符号或关闭所有符号,因此它将有助于您在交易中更快地管理交易。该EA可以通过选定的符号或总数快速关闭所有买入和卖出订单。此SymbolButton专为关闭订单而设计。有手动和自动预设利润关闭功能。 带有总利润追踪功能,能锁定70%的目标利润,同时新的目标利润成倍提高. 并且带有自动删除全部挂单功能或者某个货币对全部挂单功能。 参数 PROFIT -> 某个货币对的全部订单利润达到PROFIT时,仅仅这个货币对的仓位全部平仓。 TOTALPROFIT   ->   全部货币对的利润达到TOTALPROFIT时全部平仓。 InpTrailingPercentage   ->   自动锁定70%的目标利润 ISEQUITY   ->   YES_EQ/NO_EQ. YES_EQ - 选择YES_EQ则净值低于EQUITY平仓. NO_EQ - 选择NO_EQ时净值低于EQUITY也不平仓。 EQUITY   ->   1.00. 净值低于EQUITY时全部平仓. ButtonsInARow   ->   每
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 h
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 i
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
News Calculator and Trading Panel is a high-tech exclusive calendar indicator, which shows news for many currencies. At the same time, it is a versatile trading panel. The News Calculator indicator shows the news on the chart in a detailed form and draws vertical lines: for low, medium and high-impact news. The indicator contains multiple features. Many buttons are displayed on the chart, each button is responsible for a certain action. When a news event occurs, the indicator generates notificat
Quick Lines
Andrey Vasilenko
一个简单的趋势和水平线交易工具。图表上的一小组按钮允许您一键设置触发线并跟踪其状态。当价格触及线时,市场订单自动打开。订单方向(买入或卖出)由安装时的线条颜色设置。允许您应用无限数量的行,它们将在价格触及时工作。您可以创建任何图形模式:级别,通道,三角形,标志,网格等。 原理很简单: 给定颜色的实线是活跃的(有两种颜色 - 买入和卖出)。当价格触及该行并且订单被打开时,该行变为非活动状态并变为虚线,之后该行可以移动到新位置并再次激活,变为实线。 使用图表上的按钮,您可以立即关闭一个方向上的所有头寸(买入或卖出),或特定符号上的所有未平仓头寸或终端中的所有未平仓头寸。 使用“买入”和“卖出”按钮创建线时,默认批次等于设置中指定的批次。您可以停用该行,再次激活该行,更改该行属性中的批次,如下图所示。 它允许您设置止损,获利,以及使用追踪止损和盈亏平衡。您可以通过触摸相反的线来设置关闭位置。可以将线设置为剪切以限制其时间动作。 您可以使用Magic来识别您的订单。如果设置Magic = 0,您可以手动并行交易,它将同时看到自己的订单和手动订单。 您可以启用警报,发送邮件
Advanced Pending Orders
Fernando Jose Velasco Borea
This EA facilitates sending multiple orders simultaneously. It also facilitates a function designed to be executed in a specific hour, ideal to facilitate its operation during the night, allowing to schedule positions while we are not next to the graph. The system can send direct orders at the market price or pending orders, speeding up the execution of operations with multiple Take Profit as well as controlling the Slippage of each order. The parameters of the system are: •          Broker Info
This tool monitors your current Expert Advisors and manages stop losses and take profits. You can customize which EAs and/or which currencies to monitor. It is primarily meant for EAs that you feel manage stop losses and/or take profits poorly. If you want this tool to be able to monitor manual trades, please use '0' (zero) as the magic number. Supports hidden stoploss and take profit Supports ATR-calculated dynamic stoploss Supports Breakeven for individual trades Supports Trailing stop Lower r
MT4 Telegram Management (from now simply “EA”) will be attached on specific MT4 chart user want to manage from remote. Note to developer: if possible, EA will be able to read info from command from user to select automatically the correct pair to work on, even if EA is attached only on one pair. EA should open/close position or manage opened or pending position. The MT4 Telegram Management l (form now simply “panel”) will be a simple Telegram group setted from user. By panel, user should be able
Risk Control Utility MT4   designed for manual trading. It helps to calculate and control your risks, transfer transactions to breakeven and accompany positions with trailing stop. Easy to set up and use. It can be used for calculating a trading lot, calculating stop loss and take profit levels. Works with currency pairs, CFDs, stocks, indices, futures, cryptocurrencies Displays   volume,   potential loss and profit before   placing an order Ability to set the expiration time of a pending order
Hello Trader, This EA let you manage your daily drawdown and profit. The EA close All market & pending orders  when your account reach a choosen level in daily drawdown and choosen level in profit. The level of the loss and the profit can be choosen by 3 ways;  - a pourcentage amount of your account - an amount in USD (profit and loss) - an equity target (minimum equity/maximum equity target)
该产品的买家也购买
Trade Assistant MT4
Evgeniy Kravchenko
4.46 (181)
它有助于计算每笔交易的风险,容易安装新的订单,具有部分关闭功能的订单管理, 7 种类型的追踪止损和其他有用的功能。 注意,该应用程序在策略测试器中不起作用。 Manual, Description, Download demo 线条功能  - 在图表上显示开仓线、止损线、止盈线。 有了这个功能,就可以很容易地设置一个新的订单,并在开仓前看到它的附加特性。   风险管理  - 风险计算功能在考虑到设定的风险和止损单的大小的情况下,计算新订单的成交量。它允许你设置任何大小的止损,同时观察设定的风险。 批量计算按钮 - 启用 / 禁用风险计算。 在 " 风险 " 一栏中设置必要的风险值,从 0 到 100 的百分比或存款的货币。 在 " 设置 " 选项卡上选择风险计算的变量: $ 货币, % 余额, % 资产, % 自由保证金, % 自定义, %AB 前一天, %AB 前一周, %AB 前一个月。   R/TP 和 R/SL - 设置止盈和止损的关系。 这允许你设置相对于损失的利润大小。 例如, 1 : 1 - 这决定了 TP = SL 的大小。 2 : 1 - 这意味着 TP 是
您认为在价格可以瞬间变化的市场中,下单应该尽可能简单吗? 在 Metatrader 中,每次您要开单时,您都必须打开一个窗口,您可以在其中输入开盘价、止损和止盈以及交易规模。 在金融市场交易中,资本管理对于维持您的初始存款并使其倍增至关重要。 因此,当您想下订单时,您可能想知道应该开多大的交易? 在这单笔交易中,您应该承担多少百分比的存款? 您可以从这笔交易中获利多少,利润风险比是多少? 在您设置交易规模之前,您需要进行必要的计算,以获得交易规模应该是多少的问题的答案。 想象一下,您有一个工具可以自动完成所有这些工作。 您打开图表,进行市场分析并用水平线标记入场点、防御点(止损)和目标(止盈),最后您定义风险水平,例如 作为可用资本的百分比,您可以在此交易中承担,此时程序提供: 定义风险和止损规模的可接受交易规模 以点数、点数和账户货币计的止损和获利值 风险回报率 现在剩下的就是点击面板上的相应按钮来打开交易。 如果您是黄牛,需要在不设置防御或目标的情况下快速打开和关闭交易,那么您可以在交易管理器面板中轻松掌握一切,您可以在其中定义固定订单参数并通过单击“购买”或 “卖出”按钮。 关闭
Local Trade Copier EA MT4
Juvenille Emperor Limited
5 (80)
通过 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
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.91 (87)
交易面板是一个多功能的交易助手。 该应用程序包含 50 多个专为手动交易而设计的功能。 允许您自动执行大多数交易操作。 在购买之前,您可以在演示帐户上测试演示版本。 演示 这里 。 完整说明 这里 。 应用程序的主要功能: 适用于任何交易工具(外汇、差价合约、期货及其他)。 通过一个终端窗口即可使用所有交易工具。 允许您创建最多四个交易工具工作列表。 允许您选择您最喜欢的交易工具。 允许您在所有(或选定的)终端图表上快速切换交易品种。 允许您使用多种方法来计算交易量。 自动计算每笔交易的风险。 根据止损的大小计算风险。 风险经理。 让您可以在图表上直观地看到新订单的交易水平。 允许您设置虚拟止损和获利。 允许您设置指定的止损和获利比率。 允许您在共同价格水平上为所有头寸设置止损或止盈。 允许您下 OCO 订单(一个订单取消另一个订单)。 允许您根据指定参数关闭订单和平仓。 允许您在达到指定的总利润或损失时平仓。 允许您在图表上设置任务线。 允许您反转“卖出转买入”和“买入转卖出”仓位。 允许您锁定仓位。 允许您设置追踪止损功能。 允许您设置盈亏平衡函数。 允许您设置部分平仓功能。 允许
控制您的外匯投資組合。立即查看您的站立位置、工作原理以及導致您疼痛的原因! 此處提供 MT5 版本: https://www.mql5.com/en/market/product/58658 交易經理儀表板旨在讓您一目了然地顯示您當前在外匯市場中的每個頭寸,並使風險管理和貨幣敞口更易於理解。 對於通過多個頭寸或交易網格和籃子策略逐漸進入市場的交易者,這是需要查看的關鍵信息。監控終端中的多個位置通常很難管理。 過度槓桿化和使用低風險:回報是新交易者和一些經驗豐富的交易者面臨的主要問題,交易經理向您展示您對每種貨幣的風險敞口,確保您不會同時進行雙向交易。 特徵: 未平倉交易 - 查看您當前按貨幣對排序的所有未平倉交易。您不僅可以在該貨幣對上看到您的方向偏差,還可以在該貨幣對上運行的每筆交易或頭寸上看到您的方向偏差。 回撤和利潤信息 - 立即查看您交易活躍的貨幣對的回撤或盈利情況。輕鬆識別需要管理的交易。 手數大小 - 查看您在每個貨幣對上的手數以及您進行的交易數量。 風險敞口 - 查看您對每種貨幣的方向偏差,以確保您不會在另一個入場時以相反的方向交易。另請查看您在該貨幣中使用
交易管理器可帮助您快速进入和退出交易,同时自动计算风险。 包括帮助您防止过度交易、报复性交易和情绪化交易的功能。 交易可以自动管理,账户绩效指标可以在图表中可视化。 这些功能使该面板成为所有手动交易者的理想选择,并有助于增强 MetaTrader 4 平台。多语言支持。 MT5版本  |  用户指南+演示 交易经理在策略测试器中不起作用。 如需演示,请参阅用户指南 风险管理 根据%或$自动调整风险 可选择使用固定手数或根据交易量和点自动计算手数 使用 RR、点数或价格设置盈亏平衡止损 追踪止损设置 最大每日损失百分比,在达到目标时自动平仓所有交易。 保护账户免遭过多提款并阻止您过度交易 最大每日损失(以美元为单位)在达到目标时自动关闭所有交易。 保护账户免遭过多提款并阻止您过度交易 一键实现所有交易的盈亏平衡 自动计算从手机/电话发送的交易的风险 OCO 在设置中可用 交易和头寸管理 通过设置每月、每周、每天、每小时或每分钟的最大交易次数,停止过度交易和报复性交易。 高级挂单管理。 调整何时关闭挂单的规则 追踪挂单 支持市价订单和挂单 每日最大利润目标(以美元为单位)以确保头寸并停
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
-25% discount ($199 -> $149) Advanced trading tool: One click smart orders that execute under your conditions Developed by trader for trading community:  position size calculator (lot size), open position after price action, strategy builder, set and forget trading, mobile notifications... Risk Management -  Risk percentage position size calculator, gain percentage, target risk reward ratio, spread and commissions are included in calculations 7 Advanced order types   - Set and forget trading
Exp COPYLOT CLIENT for MT4
Vladislav Andruschenko
4.66 (67)
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
DrawDown Limiter MT4
Haidar, Lionel Haj Ali
5 (9)
Drawdown Limiter EA You are in the right place if you were searching for Drawdown control, Drawdown limiter, Balance protection, Equity Protection or Daily Drawdown Limit related to Prop Firm, FTMO, or Funded account trading, or if you want to protect your trading account. Have you suffered from controlling your drawdown when trading funded accounts? This EA is meant for you. Prop firms usually set a rule called “Trader Daily Drawdown”, and if it is not respected, you are disqualified.  I am an
Risk Manager for MT4
Sergey Batudayev
4.5 (8)
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 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
Mentfx Mmanage
Anton Jere Calmes
5 (16)
The added video will show you the full functionality, effectiveness, and simplicity of this trade manager. Drag and Drop Trade Manager. Draw your entry and have the tool calculate the rest. Advanced targeting and close portions of a trade directly available in tool (manage trades while you sleep). Market order or limit order on either side with factored spread. Just draw the entry, the tool does the rest. Hotkey setup to make it simple. Draw where you want to enter, and the stop loss, the tool c
Take a Break
Eric Emmrich
5 (27)
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
将信号从您所属的任何渠道(包括私人和受限渠道)直接复制到您的 MT4。 该工具在设计时充分考虑了用户的需求,同时提供了管理和监控交易所需的许多功能。 该产品采用易于使用且具有视觉吸引力的图形界面。 自定义您的设置并在几分钟内开始使用该产品! 用户指南 + 演示  |     MT5版本  |     不和谐版本 如果您想尝试演示,请参阅用户指南。 Telegram To MT4 接收器在策略测试器中不起作用! Telegram 至 MT4 功能 一次复制多个通道的信号 从私人和受限频道复制信号 不需要机器人令牌或聊天 ID(如果出于某种原因需要,您仍然可以使用这些) 使用风险百分比或固定手数进行交易 排除特定符号 选择复制所有信号或自定义要复制的信号 配置单词和短语以识别所有信号(默认值应适用于 99% 的信号提供商) 配置时间和日期设置以仅在需要时复制信号 设置一次打开的最大交易量 交易和头寸管理 使用信号或自动设置的管理 通过设置每月、每周、每天、每小时或每分钟的最大交易次数,停止过度交易和报复性交易。 支持市价订单和挂单 每日最大利润目标(以美元为单位)以确保头寸并停止
Trade Copier Pro
Vu Trung Kien
4.6 (15)
Trade Copier Pro 是一个强大的工具,多账户之间进行远程复制的贸易超过互联网不同的位置。这是一个信号提供商的理想解决方案,谁想要与全球范围内对自己规则的人分享他的贸易。一个供应商的交易可以复制到多接收器和一个接收器可以得到贸易额从多供应商也是如此。 供应商和接收器可与供电内置的数据库管理系统来管理他的合作伙伴名单。 这个工具允许全局配置模式(copy过来互联网)和本地模式(在同一台PC/服务器内复制)之间进行选择。 要求: MetaTrader4的4.00版构建670或以上。 参考: 如果你只需要在本地复制与更低的价格,你可以检查Auto Trade Copier在: https://www.mql5.com/en/market/product/4676 以下是亮点功能:     在一个工具提供商或接收器之间转换角色。     一个供应商的交易可以复制到多接收器和一个接收器可以从多个供应商收到交易。     供应/接收器可通过供电数据库管理系统,而无需额外的工具管理自己的接收器/供应商名单(添加,删除,编辑,启用/禁用)。     全球模式(copy过来互联
VirtualTradePad mt4 Extra
Vladislav Andruschenko
4.88 (60)
一键交易的交易面板。处理头寸和订单!通过图表或键盘进行交易 交易小组进行人工交易。您可以从图表(图表窗口)或键盘进行交易。打开和关闭,反向和锁定。处理职位和订单! МetaТrader4中主要订单的交易控制面板:买入,卖出,买入,买入,卖出,卖出限制,收盘,删除,修改,追踪止损,止损,止损。 MT5版本 详细描述   +DEMO +PDF 如何购买 如何安装     如何获取日志文件     如何测试和优化     Expforex 的所有产品 从符号窗口交易并从键盘交易! 您正在为MetaTrader 4终端提供一个独特的插件 - 虚拟控制面板VirtualTradePad。 Description on English 注意!如果您想学习如何交易 策略测试器  ,请查看我们的免费 TesterPad 实用程序 VirtualTradePad在“  MQL5语言最佳图形面板  ”竞赛中 获得二等奖 。 工作标签 职位标签   -使用职位: 开/关买入和卖出, 冲销所有头寸, 锁定一个共同的立场, 更改止损/获利, 设定一般的止损/获利的位置, 启用追踪止损, 实现盈亏
The Expert Advisor will help you forward all pop-up alert with screenshot from  MetaTrader 4 to Telegram channel/ group, also forward all notifications to Telegram. Parameters  -  Telegram Bot Token - create bot on Telegram and get token.  -  Telegram Chat ID  - input your Telegram user ID,  group / channel ID  -  Forward Alert - default true, to forward alert.  -  Send message as caption of Screenshot - default false, set true to send message below Screenshot  How to setup and guide  - Telegram
Grid Manual MT4
Alfiya Fazylova
4.71 (17)
Grid Manual是一个交易面板,用于处理订单网格。 该实用程序是通用的,具有灵活的设置和直观的界面。 它不仅可以在亏损方向上设置订单网格,还可以在盈利方向上设置订单网格。 交易者不需要创建和维护订单网格,实用程序会这样做。 打开一个订单就足够了,Grid manual会自动为它创建一个订单网格,并伴随它直到非常关闭。 该实用程序的主要特性和功能: 伴隨以任何方式打開的訂單,包括從移動終端打開的訂單。 適用於兩種類型的網格:“限制”和“停止”。 使用兩種方法計算網格間距:固定和動態(基於 ATR 指標)。 允許您更改未結訂單網格的設置。 顯示圖表上每個網格的盈虧平衡水平。 顯示每個網格的利潤率。 允許您一鍵關閉網格中的盈利訂單。 讓您一鍵關閉每個訂單網格。 允許您對訂單網格應用追踪止損功能。 允許您在訂單網格上應用將訂單網格的止損轉移到盈虧平衡水平的功能。 相對於訂單網格的盈虧平衡水平自動重新排列止盈(僅在限價網格模式下,距離取決於所選的計算類型:“保守”或“激進”)。 最多可管理 20 個訂單網格,每個網格最多可包含 100 個訂單。 計算初始手數時,要考慮入金的大小,不要讓大手
Custom Ultimate Sniper Dashboard
Hispraise Chinedum Abraham
5 (2)
这个自定义终极狙击手仪表盘是原始终极狙击手仪表盘指标的一个EA升级。它与多达98种不同的算法一起工作,以确保它能捕捉到你工作的资产类别上的趋势的真实性质。 它是对我们几个月来从大多数客户那里得到的很多建议和意见的直接回应。   这个自定义版本是完全可定制的。 由98个独立的自定义算法提供。 非常漂亮的视觉界面,因此你可以轻松和自信地跟踪任何货币对或时间框架的整体市场趋势 可以向telegram发送实时警报 允许你根据你所交易的货币对创建自己的指数 可以向你的手机实时发送警报,所以你不必在电脑前就知道有一个动作正在酝酿。 让你从输入设置中设置8个指数 让你设置你想获得警报的指数和时间框架 当检测到没有互联网连接时,会显示警报   自定义终极狙击手仪表盘已经进行了大量的优化,在动作开始后立即显示。这样,你就不会错过你感兴趣的货币对的任何变动。它的速度非常快,可以在移动发生时迅速捕捉到,并实时向你发送警报,这样你就可以利用移动的优势,而不必整天坐在办公桌前。 它是任何交易策略的一个超级补充,你可以将这个工具与任何其他交易策略和指标一起使用。它主要是为了与我们的其他
MT4 Alert Signal Trader  is an EA that helps you trade MT4 Alert popup. Some indicators can provide signals by showing an alert popup containing signal texts. This EA will read and trade these signal texts. The alert texts should contain at least 2 elements:  (1) a symbol text   (ex: "EURUSD") and  (2) a command type   (ex: "Buy", "Sell", "Close") that trigger EA's trading activities. Some other contents that may have or not are open price, stop loss, take profit values... The EA needs an aweso
MT4 to Discord Signal Provider 是一款用户友好、完全可定制的工具,专为直接向 Discord 发送交易信号而设计。这个工具将您的交易账户转变为一个高效的信号提供者。 自定义消息格式以适应您的风格!为了方便使用,您可以从预先设计的模板中选择,并决定包括或排除哪些消息元素。 [ 演示 ] [ 手册 ] [ MT5 版本 ] [ Telegram 版本 ] 设置 遵循我们详细的 用户指南 进行简单设置。 不需要预先了解 Discord API;我们提供所有必要工具。 主要特性 为订阅者更新自定义订单详情。 实施分层订阅模型,如铜牌、银牌、金牌,每一层都提供不同级别的信号访问。 附加执行订单的图表截图。 在这些截图上显示已关闭的订单,以增加清晰度。 提供延迟发送新订单消息的选项,以便在发送前进行最后调整。 透明和详细的订单信息: 带截图的新市场订单。 订单修改(止损、获利)。 已关闭和部分关闭的订单。 新的和修改的挂起订单。 挂起订单的激活和删除。 关于历史订单的详细报告。 每个订单的可定制评论。 注意: * 截图包括图表上的任何对象,如指标。 ** 在报
OrderManager MT4
Lukas Roth
4.63 (19)
介绍 OrderManager :MT4的革命性工具 使用全新的Order Manager实用程序,像专业人士一样管理您在MetaTrader 4上的交易。Order Manager设计简单,易于使用,可让您轻松定义和可视化每笔交易的风险,从而做出明智的决策并优化您的交易策略。有关OrderManager的更多信息,请参阅手册。 [ 手册 ] [ MT5版本 ] [ Telegram 频道 ] 主要功能: 风险管理:快速轻松地定义您交易的风险,让您做出更好的决策并提高交易性能。 视觉表示:图形化地查看您的交易和相关风险,以清晰简洁地了解您的开放头寸。 订单修改:只需几次点击即可轻松修改或关闭您的订单,简化您的交易过程,为您节省宝贵的时间。 掌握新闻:一键获取最新市场新闻。 不要错过这个MT4交易员的必备工具。用Order Manager提升您的交易体验,将您的交易游戏提升到新的水平。 OrderManager在startegyTester中 不 工作! OrderManager 仅与 Windows 兼容。 请考虑给这个产品一个5星级评价。您的优秀反馈将激励作者加快更新
TPSpro Trade PRO
Roman Podpora
5 (3)
-  Version MT5  (Coming soon) An instrument capable of instantly calculating position size or risk based on a specified stop-loss level is critically important for both professional traders and beginners. Trading utility  TRADE PRO   provides fast and accurate calculations, helping you make decisions in conditions of limited time and increased market volatility. Main functions: Original. Simple. Effective. Original and convenient opening of the main trading panel: Simply hover your mouse over th
TakePropips TradePad Pro
Eric John Pajarillaga Aldana
5 (4)
TakePropips TradePad Pro 包括一个强大的交易管理器、货币强度计、账户报告工具、风险管理工具等等! 它是您将遇到的最先进的外汇交易经理和交易助手之一!对于想要更有效地管理贸易交易的交易者来说,它是完美的解决方案。 您可以在我们的博文中下载用户手册: User Manual 您可以在 Strategy Tester 上测试此交易系统(启用可视模式)。如果您喜欢在实时图表上进行测试,也可以给我发消息以获取 7 天试用版。 视频教程也可在说明下方获得更多详细信息。 如果您有任何疑问或需要帮助,请随时与我联系,我很乐意提供帮助。 TradePad Pro 适用于所有外汇对、金属、商品、指数和加密货币。 主要特点 订单管理 - 公开市场或挂单,轻松调整止盈、止损和手数大小。 获利计算 - 手动点数、ATR 乘数和风险回报率。 止损计算- 手动点,   ATR 乘数和供应/需求。 批量计算 - 手动点,   每笔交易的风险百分比和风险金额。 账户保护 - 回撤保护允许您设置账户回撤的最大限额以避免进一步损失。利润保护为您的账户设置最大利润限额以避免过度交易。 编辑订
RedFox Copier Pro
Rui Manh Tien
4.75 (12)
FREE SIGNAL CHANEL:  https://t.me/redfox_daily_forex_signals Time saving and fast execution Whether you’re traveling or sleeping, always know that Telegram To Mt4 performs the trades for you. In other words, Our   Telegram MT4 Signal Trader  will analyze the trading signals you receive on your selected Telegram channels and execute them to your Telegram to MT4 account. Reduce The Risk Telegram To Mt4   defines the whole experience of copying signals from   Telegram signal copier to mt4  p
ADAM for FTMO 40
Vyacheslav Izvarin
ADAM EA Special Version for FTMO  Our 1st EA created using ChatGPT technology Trade only GOOD and checked PROP FIRMS  Default parameters for Challenge $100,000 Tested on EURUSD and GBPUSD only  Use 15MIN Time Frame Close all deals and Auto-trading  before Weekend at 12:00 GMT+3  Friday For Prop Firms MUST use special Protector  https://www.mql5.com/en/market/product/94887 Signal using ADAM  https://www.mql5.com/en/signals/2190554 --------------------------------------------------------------
Virtual Grid
Vladimir Gribachev
用於半自動交易的實用程序。應用動態水平來設置經紀人不可見的止損、止損、止盈和追踪止損。適合與任何經紀人合作,包括具有 FIFO 要求的美國經紀人。 MT5 版顧問鏈接 可以使用按鈕或線條打開交易。為了讓顧問沿著這條線開倉:在圖表上畫一條線並重命名。當價格穿過它時,EA 將執行相應的命令。 OPEN_SELL - 開一個賣單 CLOSE_SELL - 關閉所有賣單 OPEN_BUY - 未結買單 CLOSE_BUY - 關閉所有買單 命令執行後,寫註釋“OK”,該行只執行一次命令。 該圖表顯示有關收到的利潤、當前未平倉頭寸(訂單數量、手數和利潤)、開倉訂單按鈕、執行速度和滑點的信息。當您單擊“i”按鈕時,會顯示交易歷史的視覺顯示。 選項: MAGIC_NUMBER - 幻數; FIX_LOT_SIZE - 固定起始手數; LOT_SIZE_MULTIPLY - 平均訂單的手數乘數; MIN_GRID_STEP - 平均訂單之間的最小步長; GRID_PRICE_STEP - 打開平均訂單前的最小步長; STOPLOSS - 一籃子訂單的止損; TAKEP
作者的更多信息
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
筛选:
无评论
回复评论
版本 1.4 2023.09.07
-Customizable daily report message
Time management for sending the message

-In case of an error in sending messages, 3 attempts

-Various minor improvements