MT5 to Telegram Informer

MT5 to Telegram Signal Provider
Real-Time Trade Notifications for MetaTrader 5
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
OVERVIEW
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
MT5 to Telegram Signal Provider is a utility Expert Advisor for MetaTrader 5 that automatically sends trade notifications to one or more Telegram chats or channels. Every trade event on the account is captured and delivered as a formatted message in real time.

The EA runs on any chart and monitors the entire account. It does not place, modify, or close any orders. Its sole function is to observe trade events and report them instantly to Telegram.
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
CORE FEATURES
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━

Real-Time Trade Notifications
Detects and reports all trade events: market orders opened and closed, partial closes, close by, SL/TP modifications, pending orders placed, filled, and cancelled — delivered to Telegram the moment each event occurs.

Multi-Channel Support
Notifications can be sent to up to three Telegram chats or channels simultaneously. Ideal for distributing signals to multiple subscriber groups.

Rich Message Content
Each notification contains all relevant trade data: symbol, direction, lot size, entry price, stop loss, take profit, ticket number, comment, and time. Close messages additionally include pip result, gross profit (pure price movement), and net profit including all commissions and swap from both the opening and closing deal. Partial close messages show the closed volume alongside the remaining open volume.

Modify Cooldown Timer
SL/TP modification events are buffered per position. Only one message is sent per configurable interval (default 60 seconds), regardless of how many changes arrive during that period. Ideal for trailing stops that fire on every tick. Set Ev_ModifyDelay to 0 for instant delivery.

HTML-Formatted Messages
Messages use HTML formatting with bold field labels for clear readability. A separator line appears at the top and bottom of each message. Optional account info line shows account number and balance.

Chart Screenshot Delivery
Optionally captures and sends a screenshot of the chart with each trade open, close, or pending fill notification. Falls back automatically from sendPhoto to sendDocument for maximum compatibility with Telegram groups and channels.

Daily Summary Report
Sends an automated daily performance summary at a configurable time. Includes total trades, winners and losers, win rate, net P&L (including all commissions and swap from both opening and closing deals), and current account balance.

Symbol and Magic Number Filters
Restrict monitoring to specific symbols or a specific magic number. Run multiple instances on different charts to route different instruments to separate Telegram channels.

Connection Monitoring
The Telegram connection is verified every five minutes. A status label on the chart reflects the current connection state at all times. Start and stop messages are sent automatically when the EA is attached or removed.

UTF-8 Encoding
All message text is fully encoded in UTF-8 before transmission, ensuring correct rendering of all characters, symbols, and emojis in Telegram. Handles any EA comment content without HTTP errors.

━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
REPORTED EVENTS
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━

Market order opened (buy or sell)
Market order fully closed — includes gross and net result in account currency
Market order partially closed — shows closed volume and remaining open volume
Close by — position closed against an opposite position
Stop Loss or Take Profit modified on any open position
Pending order placed (buy/sell limit, buy/sell stop, buy/sell stop limit)
Pending order triggered and filled
Pending order cancelled
Daily summary report (optional, at configurable hour)
EA started / stopped (with reason)

━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
INPUT PARAMETERS
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━

TELEGRAM CONFIGURATION

TG_BotToken         (empty)   Bot token obtained from @BotFather. Required.
TG_ChatID1          (empty)   Primary Telegram chat or channel ID. Required.
TG_ChatID2          (empty)   Second chat ID. Optional.
TG_ChatID3          (empty)   Third chat ID. Optional.

MESSAGE EVENTS

Ev_OnOpen           true     Send notification when a market order is opened.
Ev_OnClose          true     Send notification when a position is fully closed, partially closed, or closed by.
Ev_OnModify         true     Send notification when SL or TP is modified.
Ev_ModifyDelay      60        Cooldown in seconds between modify notifications per position. All SL/TP changes during this interval are buffered; only the latest values are sent when the timer expires. Set to 0 for instant delivery. Prevents message floods from trailing stops.
Ev_OnPendingSet     true     Send notification when a pending order is placed.
Ev_OnPendingFill    true     Send notification when a pending order is filled.
Ev_OnPendingCancel  true     Send notification when a pending order is cancelled.
Ev_DailyReport      false    Send automated daily summary at the configured hour.
Ev_ReportHour       20       Hour of day (0–23) at which the daily report is sent.

FILTERS

F_AllowedSymbols    (empty)   Comma-separated symbols to monitor. Empty = all symbols. Example: XAUUSD,EURUSD
F_BlockedSymbols    (empty)   Comma-separated symbols to ignore.
F_MagicNumber       -1        Report trades with this magic number only. -1 = all trades.
F_Comment           (empty)   Report trades whose comment contains this text only. Empty = all.

MESSAGE FORMAT

Fmt_ProviderName    MY SIGNALS  Name shown at the top of every notification.
Fmt_ShowAccount     true       Append account number and currency to each message. Balance is always shown when this option is enabled.
Fmt_ShowEquity      false      Also show current equity alongside the balance. Only used when Fmt_ShowAccount is enabled.
Fmt_ShowPips        true       Include pip result in trade close messages.
Fmt_UseEmojis       true       Use colored circle indicators for trade direction. False = plain text labels (BUY / SELL).

CHART SCREENSHOT

Sc_Send              false     Capture and send a chart screenshot with each trade notification.
Sc_DeleteAfterSend   true       Delete the screenshot file after successful upload.
Sc_Width             800       Screenshot width in pixels.
Sc_Height            500       Screenshot height in pixels.
Sc_Caption          (empty)   Optional caption text. Empty = provider name and symbol.

CONNECTION

Conn_Timeout        10000     Maximum wait time in milliseconds for a Telegram API response.
Conn_ShowStatus     true       Display a connection status label on the chart.
Conn_StartMsg       true       Send a startup message when the EA initialises. Includes account, broker, balance, and chart.
Conn_StopMsg        true       Send a stop message when the EA is removed or the terminal closes. Includes stop reason.

━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
INSTALLATION
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━

1. Copy the compiled .ex5 file to the MetaTrader 5 Experts folder:
   [MT5 data folder] / MQL5 / Experts /

2. Restart MetaTrader 5 or press F5 to refresh the Navigator.

3. In MT5, open Tools > Options > Expert Advisors. Enable "Allow WebRequests for listed URL"
   and add the following URL: https://api.telegram.org/

4. Create a Telegram bot via @BotFather and copy the bot token.

5. Drag the EA onto any chart. Enter your Bot Token in TG_BotToken and your Chat ID in TG_ChatID1.

6. Enable "Allow automated trading" in the EA properties and click OK.
   A green status label appears on the chart and a startup message is sent to Telegram.

FIRST STEPS

1. Open Telegram and start a conversation with @BotFather. Use /newbot to create a new bot and copy the token.

2. For a private chat: retrieve your Chat ID from @userinfobot.
   For a channel: add the bot as administrator and use the channel username (e.g. @mysignals) as Chat ID.

3. Enter the bot token and Chat ID in the EA input parameters and attach it to any chart.

4. Verify the green connection label appears on the chart and check Telegram for the startup message.

5. Configure which events to report and which symbols or magic numbers to filter via the input parameters.

IMPORTANT NOTES

- AutoTrading must be active in MetaTrader 5 (toolbar button or Ctrl+E).
- WebRequests must be allowed for https://api.telegram.org/ in MT5 Options > Expert Advisors.
- The EA monitors all positions on the account, not only those on the chart it is attached to.
- Multiple instances can run simultaneously on different charts to route symbols to separate channels.
- The EA does not trade. It has no effect on open positions, pending orders, or account funds.

━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
COMPATIBILITY
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━

Platform      MetaTrader 5 (Build 3000+)
Language      MQL5
Instruments   All — Forex, Metals (XAU/XAG), Indices, Crypto, Energy, CFDs
Timeframes    All timeframes
Account Type  Demo and Live (Hedge and Netting accounts)
AutoTrading   Must be enabled in terminal and EA properties

━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━

MORE TOOLS FROM fi.con INVESTMENT GROUP

We offer a complete MT5 toolkit built by traders. If you trade actively and want more automation, reporting, and control, these tools extend your MT5 setup significantly: 

    🏆  Enhanced Telegram Position Tracker MT5 — the most complete Telegram reporting solution for MT5. Every trade open, close, SL/TP change, and partial close delivered in real time. Live streaming messages update P/L every 30 seconds. Dual-posting to channel + group topics. 15-button interactive follower menu. Crash detection, HFT burst protection, zero missed closures. Automatic daily, weekly, and monthly P&L reports. If you share your trades with a Telegram audience, this is the EA. 

    📊  Telegram Trading Reporter MT5 — automated performance reports delivered to Telegram on schedule: daily EOD summary, weekly stats, monthly overview. Analyses your full trade history and sends structured reports with P&L, win rate, profit factor, best/worst trade — all without you having to open MT5. 

    🛠️  Chart Order Trade Manager MT5 — professional on-chart trade management panel for active traders. Visual SL/TP placement, automatic lot size calculation from risk %, one-click breakeven, trailing stop, partial close. Designed for traders who manage positions manually while running EAs in parallel. 

    🚫  Position Closure Management MT5 — automatically resolves hedged position pairs and locks in the net result at exactly the right moment. Essential for grid and martingale strategies, prop firm challenge rules that prohibit hedging, and any setup where open buy/sell pairs need controlled resolution. 



MT5 to Telegram Signal Provider v2.52 | fi.con Investment Group | MQL5 Marketplace
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
Recommended products
Follow The Line MT5
Oliver Gideon Amofa Appiah
4.6 (35)
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. (you can change the colors). 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 powerful and reliable signals. Get them here: https://www.m
FREE
IMPORTANT NOTE: This is a professional Trade Management Utility and on-chart assistant. It is NOT an automated trading robot. It does not open trades on its own. The UltraFast Trade Manager MT5 is the ultimate execution and risk-management suite designed to give you absolute control over your manual and algorithmic trades. When managing multiple positions, calculating complex net break-even points, or constantly monitoring the economic calendar, hesitation can lead to costly mistakes. This utili
FREE
Donchian Breakout And Rsi
Mattia Impicciatore
4.5 (2)
General Description This indicator is an enhanced version of the classic Donchian Channel , upgraded with practical trading functions. In addition to the standard three lines (high, low, and middle), the system detects breakouts and displays them visually with arrows on the chart, showing only the line opposite to the current trend direction for a cleaner view. The indicator includes: Visual signals : colored arrows on breakout Automatic notifications : popup, push, and email RSI filter : to val
FREE
CosmiCLab SMC FIBO CosmiCLab SMC FIBO is a professional trading indicator designed for traders who use Smart Money Concepts (SMC), market structure analysis and Fibonacci retracement levels. The indicator automatically detects market swings and builds Fibonacci levels based on the latest impulse movement. It also identifies market structure changes such as BOS (Break of Structure) and CHOCH (Change of Character), helping traders understand the current market direction. CosmiCLab SMC FIBO also pr
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
Show Pips for MT5
Roman Podpora
4.54 (28)
This information indicator will be useful for those who always want to be aware of the current situation on the account. VERSION MT 4 - More useful indicators The indicator displays data such as profit in points, percentage and currency, as well as the spread for the current pair and the time until the bar closes on the current timeframe. There are several options for placing the information line on the chart: - To the right of the price (runs behind the price); - As a comment (in the upper lef
FREE
The Ultimate Risk Calculator
Elias Jose Vielma Molina
Risk Calculator EA – Utility for Precise Trade Sizing If you find this tool useful consider to  Buy me a coffee!   The Ultimate Risk Calculator is a lightweight in-chart Expert Advisor (EA) designed to help you easily and quickly calculate position size and set stop-loss / take-profit levels with full control over risk management directly on the chart. What it does? It turns manual risk decisions into fast, visual, and accurate calculations. You draw or adjust the Entry, Stop-Loss and Take-P
FREE
This indicator is especially for the binary trading. Time frame is 1 minutes and exp time 5 or 3 minutes only. You must be use martingale 3 step. So you must put lots size is 10 % at most. You should use Mt2 trading platform to connect with my indicator to get more signal without human working. This indicator wining rate is over 80% but you may get 100% of profit by using martingale 3 step. You should use MT2 Trading Platform to connect meta trader platform and binary platform . You can get mt2
FREE
DF Fib Trader Pro DF Fib Trader Pro is an automated trading system designed for MetaTrader 5. It uses Fibonacci-based price levels combined with trend and structure analysis to define entry and exit points. The EA supports both long and short positions and includes built-in risk management parameters. Core Features: Uses Fibonacci retracement and extension logic to plot entry, SL and TP points. Configurable lot size and stop loss/take profit levels Choice of 1 or 2 entry points Supports fixed o
FREE
BKT Pro Tooco A multi-method support and resistance toolkit for MetaTrader 5 that detects swing levels in real time using four selectable detection algorithms, without repainting confirmed signals. BKT Pro Tooco is a support and resistance indicator for MetaTrader 5, built to serve traders who require reliable zone detection across multiple market structures. The indicator offers four independent detection methods, allowing traders to match the algorithm to their preferred trading style, whether
FREE
MACD Enhanced
Nikita Berdnikov
5 (3)
Introducing the MACD  Enhanced – an advanced MACD (Moving Average Convergence Divergence) indicator that provides traders with extended capabilities for trend and momentum analysis in financial markets. The indicator uses the difference between the fast and slow exponential moving averages to determine momentum, direction, and strength of the trend, creating clear visual signals for potential entry and exit points. Attention! To achieve the best results, it is recommended to adapt the indicator
FREE
Girassol Sunflower MT5 Indicator
Saullo De Oliveira Pacheco
3.86 (7)
This is the famous Sunflower indicator for Metatrader5. This indicator marks possible tops and bottoms on price charts. The indicator identifies tops and bottoms in the asset's price history, keep in mind that the current sunflower of the last candle repaints, as it is not possible to identify a top until the market reverses and it is also not possible to identify a bottom without the market stop falling and start rising. If you are looking for a professional programmer for Metatrader5, please
FREE
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
LT Donchian Channel
Thiago Duarte
4.86 (7)
Donchian Channel is an indicator created by Richard Donchian. It is formed by taking the highest high and the lowest low of the last specified period in candles. The area between high and low is the channel for the chosen period. Its configuration is simple. It is possible to have the average between the upper and lower lines, plus you have alerts when price hits one side. If you have any questions or find any bugs, please contact me. Enjoy!
FREE
Statistical Arbitrage Spread Generator for Cointegration [MT5] What is Pair Trading? Pair trading is a market-neutral strategy that looks to exploit the relative price movement between two correlated assets — instead of betting on the direction of the market. The idea? When two assets that usually move together diverge beyond a statistically significant threshold, one is likely mispriced. You sell the expensive one, buy the cheap one , and profit when they converge again. It’s a statistica
FREE
Indicator and Expert Adviser  EA Available in the comments section of this product. Download with Indicator must have indicator installed for EA to work. Mt5 indicator alerts for bollinger band and envelope extremes occurring at the same time. Buy signal alerts occur when A bullish candle has formed below both the lower bollinger band and the lower envelope  Bar must open and close below both these indicators. Sell signal occur when A bear bar is formed above the upper bollinger band and upper
FREE
VM Auto SLTP Basic
Van Minh Nguyen
5 (1)
VM Auto SLTP Basic - Intelligent Trade Management for Scalpers Enhance your scalping strategy to a higher level. VM Auto SLTP Basic automatically manages Stop Loss and Take Profit for orders that are opened manually or by other Expert Advisors. This tool does not open trades on its own, allowing you to maintain full control while enjoying precise risk management. Key Features: SL/TP based on ATR or fixed price Automatic SL move to Breakeven Enhanced Breakeven system with 2 modes: Points and R (r
FREE
Stamina HUD
Michele Todesco
STAMINA HUD – Advanced Market & Trend Dashboard (MT5) STAMINA HUD   is a professional   market information panel   designed for traders who want   clarity, speed, and control   directly on the chart. It provides a   clean heads-up display (HUD)   with essential market data and   multi-timeframe trend direction , without cluttering the chart or generating trading signals. What STAMINA HUD Shows   Current Price   Spread (in real pips)   Today High–Low range (pips)   Average D
FREE
Candle Countdown — Accurate Time to Close for MT5 Candle Countdown is a simple and precise tool that shows the remaining time until the current candle closes directly on the chart. When your entry depends on the candle close, even a few seconds matter. This indicator helps you see the exact time and make decisions without rushing or guessing. An indicator for precise control over candle closing time. The indicator displays: time remaining until candle close current server time spread Stop Level
FREE
High Low Open Close
Alexandre Borela
4.98 (44)
If you like this project, leave a 5 star review. This indicator draws the open, high, low and closing prices for the specified period and it can be adjusted for a specific timezone. These are important levels looked by many institutional and professional traders and can be useful for you to know the places where they might be more active. The available periods are: Previous Day. Previous Week. Previous Month. Previous Quarter. Previous year. Or: Current Day. Current Week. Current Month. Current
FREE
Account Monitor Pro — Your Ultimate Trade Statistics Hub Account Monitor Pro is a professional information dashboard designed for traders who combine Expert Advisors (EAs) and manual trading. The indicator separates statistics in real-time based on your Magic Number, allowing you to clearly see who is driving the profit: the algorithm or yourself. Key Features: Split Monitoring: Instant separation of "Robot" positions (by Magic Number) and "Manual" trades. Multi-language Support: 11 languages in
FREE
BlueBoat – Prime Cycle is a technical indicator for MetaTrader 5 that visualizes market cycles based on the Fimathe cycle model (Marcelo Ferreira) . It identifies and displays historic and live cycle structures such as CA, C1, C2, C3, etc., helping traders understand the rhythm and timing of price movement across multiple sessions. This tool is ideal for manual analysis or as a supporting signal in discretionary strategies. Key Features Historical Cycle Analysis – Backtest and visualize as many
Auto TradePanel Basic Demo
Viktor Weidenthal
5 (1)
This Tradepanel is an Utility for Traders Who want ot use Basic MoneyManagement for Calculation of Lotsize  I have created the basic edition only to give an Overview with Limited Functionality Full Features are available with  Auto TradePanel  Pro. (This is Only Because it can not be Tested in Strategy Tester ).  Complete Description is available at  "Auto TradePanel Pro".  in This Version Basic Functionality ( Calculation of Lotsize ) open /close Positions is working in the same way as in Pro
FREE
Price Magnet — Price Density and Attraction Levels Indicator Price Magnet is a professional analytical tool designed to identify key support and resistance levels based on statistical Price Density. The indicator analyzes a specified historical period and detects price levels where the market spent the most time. These zones act as “magnets,” attracting price action or forming a structural base for potential reversals. Unlike traditional Volume Profile tools, Price Magnet focuses on price-time d
Rainbow MT5
Jamal El Alama
4 (1)
Description : Rainbow MT5 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, then this is a signal to buy. When price crosses below MA and MA changes color to red, then this is a signal to sell. The Expert advisor ( Rainbow EA MT5 ) based on Rainbow MT5 indicator is now available here . MT4 version is available here .
FREE
Donchian Channel DC is the indicator of Donchian Channels, that plots maximum and minimum values of a specific period, besides mean value line. It´s possible to configure simple period for analysis and the indicator will plot all three values. You can trade with this indicator as trend or reversal, according to each strategy. Do not let to test others indicators as soon as others expert advisors.
Important Lines
Terence Gronowski
4.88 (24)
This indicator displays Pivot-Lines, preday high and low, preday close and the minimum and maximum of the previous hour. You just have to put this single indicator to the chart to have all these important lines, no need to setup many single indicators. Why certain lines are important Preday high and low : These are watched by traders who trade in a daily chart. Very often, if price climbs over or falls under a preday low/high there is an acceleration in buying/selling. It is a breakout out of a
FREE
This indicator is a zero-lag indicator and displays  strength of trend change . True Trend  Oscillator Pro works best in combination with True Trend Moving Average Pro that displays exact trend as is. Oscillator value is exact price change in given direction of the trend. True Trend Moving Average Pro: https://www.mql5.com/en/market/product/103586 If you set PERIOD input parameter to 1 this indicator becomes a sharpshooter for binary options. Developers can use True Trend Oscillator in Exper
FREE
Click Trading
Jawad Tauheed
5 (2)
One Click Trading – Auto TP SL Developer TraderLinkz Version 1.00 Category Utility What it does Adds missing TP and SL to your manual trades and pending orders Sets them once per ticket Lets you move TP and SL afterward Works on hedging and netting accounts Scans on every tick and reacts on trade events Why you want it You place faster entries You get consistent risk and exit targets You reduce fat finger errors You keep full manual control Quick start Attach the EA to any chart Keep TP and SL e
FREE
Position Selective Close MT5
Francisco Manuel Vicente Berardo
The Position Selective Close is a multi-symbol multi-timeframe script used to close simultaneously various positions.  General Description   The Position Selective Close   possesses   three operation modes (Intersection,   Union   and All) that control the way   as   four position features (symbol, magic number,   type   and profit) are used. The modes, available through the Selection Mode input parameter, relate to the features, available through the “Select by Feature” and “Feature” input pa
FREE
Buyers of this product also purchase
Trade Assistant MT5
Evgeniy Kravchenko
4.42 (208)
It helps to calculate the risk per trade, the easy installation of a new order, order management with partial closing functions, trailing stop of 7 types and other useful functions. Additional materials and instructions Installation instructions - Application instructions - Trial version of the application for a demo account Line function -   shows on the chart the Opening line, Stop Loss, Take Profit. With this function it is easy to set a new order and see its additional characteristics bef
Forex Trade Manager MT5
InvestSoft
4.98 (647)
Welcome to Trade Manager MT5 - the ultimate risk management tool designed to make trading more intuitive, precise, and efficient. This is not just an order placement tool; it's a comprehensive solution for seamless trade planning, position management, and enhanced control over risk. Whether you're a beginner taking your first steps, an advanced trader, or a scalper needing rapid executions, Trade Manager MT5 adapts to your needs, offering flexibility across all markets, from forex and indices t
TradePanel MT5
Alfiya Fazylova
4.87 (151)
Trade Panel is a multi-functional trading assistant. The app contains over 50 trading functions for manual trading and allows you to automate most trading tasks. Attention! Discounts are limited in time, every Tuesday the price will increase by $5 (up to $100). Before making a purchase, you can test the demo version on a demo account. Download the trial version of the application for a demonstration account: https://www.mql5.com/en/blogs/post/750865 . Full instructions here . Trade. Allows you t
FarmedHedge Pair Trading Dashboard
Tanapisit Tepawarapruek
5 (4)
Farmed Hedge Yield Farming | All Markets (Manual - Hybrid - Semi/Automated EA) MULTI-ASSET SUPPORT Trade any asset available on your broker - Forex: Major, Minor, Exotic pairs - Crypto: BTC, ETH, XRP, SOL, BNB - Stocks: Apple, Tesla, Amazon, Google, etc. - Commodities: Gold, Silver, Oil, Gas - Indices: US30, NAS100, SPX500, DAX40 - Any CFD your broker offers VERIFIED TRADING RESULTS - Farmed Hedge Yield Axi Copy:  https://www.mql5.com/en/signals/2356376 - Farmed Hedge Yield Exn Copy:   https:/
Beta Release The Telegram to MT5 Signal Trader is nearly at the official alpha release. Some features are still under development and you may encounter minor bugs. If you experience issues, please report them, your feedback helps improve the software for everyone. Telegram to MT5 Signal Trader is a powerful tool that automatically copies trading signals from Telegram channels or groups directly to your MetaTrader 5 account. It supports both public and private Telegram channels, and you can conn
HINN Lazy Trader
ALGOFLOW OÜ
5 (2)
Limited time offer: 20% off for a few days only!  - Annual subscription $360 instead of $450  - Lifetime plan $550 instead of $690 The core idea: using the user interface, you configure the parameters the chart must meet before entering a position (or positions), choose which entry models to use, and set the rules for when trading and planning should end. Lazy Trader  handles the rest: it  takes over all the routine chart watching and execution! full description  :: 3 key videos [1] ->  [2]   -
Footprint Chart Pro — Professional OrderFlow EA for MetaTrader 5 Version 6.34 | Professional tool for real traders | Institutional-Grade Visualization DEMO USERS - PLEASE SELECT EVERY TICK / REAL TICK WHEN TESTING AND YOU HAVE DOWNLOADED HISTORICAL DATA. IF YOU SEE A WAITING SCREEN AND IT IS NOT DOWNLOADING, IT MEANS YOU HAVE LOW HISTORICAL DATA. TRY 1 MIN AND 5 MIN FIRST ON 1 DAY DATA. ONE DAY DATA SHOULD BE THE NEWEST AND MOST CURRENT DATE. PLEASE WAIT UNTIL THE MARKET HAS ROLLED OVER PERIOD.
Copy Cat More Trade Copier MT5 is a local trade copier and a complete risk management and execution framework designed for today’s trading challenges. From prop firm challenges to personal portfolio management, it adapts to every situation with a blend of robust execution, capital protection, flexible configuration, and advanced trade handling. The copier works in both Master (sender) and Slave (receiver) modes, with real-time synchronization of market and pending orders, trade modifications, pa
The product will copy all telegram signal to MT5 ( 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 s
MT5 to Telegram Signal Provider turns your trading account into a signal provider. Every trade action, whether manual, by EA or from your phone, is instantly sent as a message to Telegram. You can fully customize the format or use a ready-made template for quick setup. [ Demo ] [ Manual ] [ MT4 Version ] [ Discord Version ]     New: [ Telegram To MT5 ] Setup A step by step user guide is available. Key Features Ability to customize order details sent to subscribers You can create a tiered subs
Helios Pulse
Jonathan Mboya Kinaro
Helios Pulse v1.03 — Real-Time Probability Dashboard for Manual Traders Helios Pulse transforms how you read the market. Instead of juggling multiple indicator windows and conflicting signals, you get one clear answer: a live probability percentage showing the market's directional bias right now, updated continuously with every tick. This is not another signal arrow panel. Helios Pulse is a probability engine that measures the degree of agreement across multiple technical dimensions and delivers
Trader Evolution
Siarhei Vashchylka
5 (7)
" Trader Evolution " - A utility designed for traders who use wave and technical analysis in their work. One tab of the utility is capable of money management and opening orders, and the other can help in making Elliott wave and technical analysis. Manual (Be sure to read before purchasing) | Version for MT4 Advantages 1. Trading in a few clicks. Immediate and pending orders are available in the panel 2. Money management. The program automatically selects the appropriate lot size 3. Simplifies
EA Auditor
Stephen J Martret
5 (1)
EA AUDITOR — EA and Signal Verification Tool for MetaTrader 5 EA Auditor is an independent analysis tool for traders evaluating Expert Advisors and trading signals on MetaTrader 5. It audits backtest reports, reviews posted developer signals, and cross-verifies the two against each other to help traders assess strategies before committing capital. The MQL5 market offers a wide range of Expert Advisors from many developers, with varying approaches, quality, and transparency. EA Auditor provides a
Ultimate Extractor
Clifton Creath
5 (9)
Ultimate Extractor - Professional Trading Analytics for MT5 *****this is the local HTML version of Ultimate Extractor. !!!!!it is not compatible with Cloud!!!! For the online version please reach out to me directly****** Ultimate Extractor transforms your MetaTrader 5 trading history into actionable insights with comprehensive analytics, interactive charts, and real-time performance tracking. What It Does Automatically analyzes your MT5 trading history across all Expert Advisors and generates
Trade Manager DashPlus
Henry Lyubomir Wallace
5 (13)
DashPlus is an advanced trade management tool designed to enhance your trading efficiency and effectiveness on the MetaTrader 5 platform. It offers a comprehensive suite of features, including risk calculation, order management, advanced grid systems, chart-based tools, and performance analytics. Key Features 1. Recovery Grid Implements an averaging and flexible grid system to manage trades during adverse market conditions. Allows for strategic entry and exit points to optimize trade recovery
Trade Manager DaneTrades
Levi Dane Benjamin
4.28 (29)
DaneTrades Trade Manager is a professional trade panel for MetaTrader 5, designed for fast, accurate execution with built‑in risk control. Place market or pending orders directly from the chart while the panel automatically calculates position size from your chosen risk, helping you stay consistent and avoid emotional decision‑making. The Trade Manager is built for manual traders who want structure: clear risk/reward planning, automation for repeatable management, and safeguards that help reduc
Ultimate Trailing Stop EA MT5
BLAKE STEVEN RODGER
4.13 (8)
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 (override
Custom Alerts MT5
Daniel Stein
5 (8)
Custom Alerts: Monitor Multiple Markets and Never Miss a Key Setup Overview Custom Alerts is a dynamic solution for traders who want a consolidated way to track potential setups across multiple instruments. By integrating data from our flagship tools—such as FX Power, FX Volume, FX Dynamic, FX Levels, and IX Power— Custom Alerts automatically notifies you of crucial market developments without juggling multiple charts or missing prime opportunities. With support for all asset classes your brok
ManHedger MT5
Peter Mueller
4.83 (6)
THIS EA IS A SEMI-AUTO EA, IT NEEDS USER INPUT. Manual & Test Version Please TEST this product before BUYING  and watch my video about it. The price of the ManHedger will increase to 250$ after 20 copies sold. Contact me for user support or bug reports or if you want the MT4 version! MT4 Version  I do not guarantee any profits or financial success using this EA. With this Expert Advisor, you can: Implement your own Zone Recovery strategy to capitalize on trending markets. Create Grid trading s
AlgoRadar
Stephen J Martret
5 (4)
ALGORADAR - REAL-TIME TRADE ANALYTICS The Most Powerful On-Chart Performance Analyzer for MetaTrader 5 ONE CHART. EVERY EA. EVERY ACCOUNT. MT4 & MT5 COMBINED. The ONLY analyzer that displays all your EAs across multiple accounts, brokers, and VPS -- including both MT4 AND MT5 -- on a single live MT5 chart. Your complete trading empire, visible at a glance.
AntiOverfit PRO MT5
Enrique Enguix
5 (3)
Before you buy an EA, check whether it really holds up or just got lucky in a backtest. Most robots are sold with a beautiful backtest. Rising equity curve. Good profit factor. Very few doubts. And yet, many of those EAs fall apart as soon as the market stops moving the way it did in that historical run. Why? Because a backtest only proves one thing: that the strategy worked on one specific price path. It does not prove it will hold up under different paths. It does not prove it is robust. And i
Telegram To MT5 Receiver
Levi Dane Benjamin
4.31 (16)
Copy trade signals from Telegram channels you already belong to (including private and restricted channels) directly into MetaTrader 5. Set your risk rules once, monitor execution, and manage positions with built-in protections designed to reduce mistakes and overtrading. Fast setup : configure your channels, select what to copy, and start within minutes using a clean on-chart interface. User Guide + Demo | MT4 Version | Discord Version Who this is for Traders who follow one or more signal provi
Custom Alerts AIO: All-in-One Market Scanner – No Setup Required Overview Custom Alerts AIO is the fastest and easiest way to monitor multiple markets for real-time trading signals—without any setup or extra licenses. It comes with all required Stein Investments indicators already embedded, making it the perfect plug-and-play solution for traders who value simplicity and performance. Just load it to any chart and start receiving alerts across Forex, Metals, Crypto, and Indices. Shares can be a
Resiko
Monita Melyana Sinurat
This tool functions to: 1. Manage Risk - Set SL and TP for all open orders - Close all open orders according to the set risk 2. Manage Orders - This tool also functions as an assistant for Martingale or Grid trading, according to the set order spacing. This tool is ideal for traders who prefer to use Grid or Martingale systems with strict risk management..........
YuClusters
Yury Kulikov
4.93 (43)
Attention: You can view the program operation in the free version  YuClusters DEMO .  YuClusters is a professional market analysis system. The trader has unique opportunities to analyze the flow of orders, trade volumes, price movements using various charts, profiles, indicators, and graphical objects. YuClusters operates on data based on Time&Sales or ticks information, depending on what is available in the quotes of a financial instrument. YuClusters allows you to build graphs by combining da
Indicator Automator EA: The Ultimate Indicator Automation Tool Tired of being chained to your desk, waiting for signals from your favorite indicator? Do you want to eliminate emotional trading and unlock the true potential of your manual strategy? Indicator Automator EA is a powerful and highly versatile Expert Advisor for MetaTrader 5 designed to automate ANY trading indicator that provides clear Buy and Sell signals through its indicator buffers. You don't need to be a programmer. If you have
EchoTrade Telegram to MT5 Copier
Perpetual Chinemerem Vincent
5 (1)
EchoTrade Telegram to MT5 Copier Seamless, Instant, and Reliable Signal Copying - Direct from Telegram to MetaTrader 5! 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 Compatibi
Introduction Our system is more than just a tool—it’s your personal guide in the dynamic trading landscape. Expertly developed and optimized using advanced strategies, this groundbreaking predictor gives traders a powerful edge. It’s not just about the features; it’s about a trading journey that stands out from the crowd. Get ready for an enhanced trading experience like never before! What It Does Next Candle Prediction: Imagine gaining insights into the market’s next move before it happens. Our
Crypto Charting
Rajesh Kumar Nait
5 (5)
Overview Crypto Charting for MT5 provides real-time OHLC data for various cryptocurrencies via WebSocket integration. It is designed for traders who require consistent and automated chart updates from multiple exchanges directly within the MetaTrader 5 platform. The product supports all standard MT5 timeframes and offers historical data synchronization features. Features Real-Time Charts via WebSocket Provides continuous, low-latency market data without relying on traditional API connections. A
Trend Cue Basket Manager
Mohammadreza Faghanimakrani
Trend Cue is a basket-management utility for MetaTrader 5 hedging accounts. You open the first trade. You choose the direction, the timing, and the lot size. Trend Cue then manages the basket that forms around that decision — setting take-profit levels based on real market volatility, optionally building a grid of additional entries, tracking your average price, and protecting your account with drawdown limits that act on the entire basket rather than on individual positions. It works on any ins
More from author
Enhanced Telegram Position Tracker MT5
Juergen Marcus Wolfgang Rosswinkel
Enhanced Telegram Position Tracker — Real-Time Trade Monitoring & Reporting for MT5 The most complete Telegram reporting solution for MetaTrader 5. Every trade, every update, every alert — delivered instantly to your Telegram channel, group, and forum topics. No missed closures, no duplicates, no spam.
Trading Reporter Dashboard MT5
Juergen Marcus Wolfgang Rosswinkel
Trading Reporter — Visual Performance Dashboard for MT5 A complete account performance dashboard rendered directly on your MT5 chart — no browser, no external tool, no subscription. Attach it once, resize it to fit your screen, and every key metric updates automatically on each new bar — configurable via InpRefreshBars. Free. No limitations. No trial period. Full source transparency.
FREE
Chart Order Trade Manager MT5
Juergen Marcus Wolfgang Rosswinkel
Enhanced Trade Manager Professional Order & Position Management Panel for MetaTrader 5 OVERVIEW Trade Manager is a professional order and position management panel for MetaTrader 5. It significantly simplifies manual order entry, automatically calculates lot size, Stop Loss and Take Profit based on the configured risk budget, and displays all relevant parameters clear
Telegram Trading Reporter MT5
Juergen Marcus Wolfgang Rosswinkel
Telegram Trading Reporter Automated Performance Reports & Chart Delivery for MetaTrader 5 OVERVIEW The Telegram Trading Reporter is a pure analysis and reporting Expert Advisor for MetaTrader 5. It does not open, close, or modify any positions. Instead, it analyzes your account's trading history, generates structured performance reports, and delivers them automatical
Position Closure Management MT5
Juergen Marcus Wolfgang Rosswinkel
NOHEDGE Automated Hedge Manager & Risk Controller for MetaTrader 5 OVERVIEW Running grid, martingale, or manual hedging strategies means you constantly carry open buy/sell pairs that need to be resolved at exactly the right moment — before the spread widens at rollover, before a news spike blows your account, or exactly at your daily profit target. Doing that manuall
Filter:
No reviews
Reply to review