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

━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
MT5 to Telegram Signal Provider v2.51 | fi.con Investment Group | MQL5 Marketplace
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
Produits recommandés
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
Donchian Breakout And Rsi
Mattia Impicciatore
5 (1)
Description générale Cet indicateur est une version améliorée du Canal Donchian classique, enrichie de fonctionnalités pratiques pour le trading réel. En plus des trois lignes standard (supérieure, inférieure et ligne médiane), le système détecte les cassures et les affiche visuellement avec des flèches sur le graphique, en montrant uniquement la ligne opposée à la direction actuelle de la tendance pour une lecture plus claire. L’indicateur comprend : Signaux visuels : flèches colorées lors des
FREE
DF Fib Trader Pro DF Fib Trader Pro est un système de trading automatisé conçu pour MetaTrader 5. Il utilise les niveaux de prix basés sur Fibonacci, combinés à une analyse des tendances et des structures, pour définir les points d'entrée et de sortie. L'EA prend en charge les positions longues et courtes et intègre des paramètres de gestion des risques. Fonctionnalités principales : • Utilise la logique de retracement et d'extension de Fibonacci pour tracer les points d'entrée, SL et TP. • Ta
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
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 Risk management as a percentage of account balance Supp
FREE
Inverted_Chart_EA Utility Expert Advisor Inverted_Chart_EA creates and maintains a mirror-inverted chart of any symbol and timeframe. It automatically generates a custom instrument (e.g. US30_INV ) and keeps its price history updated in real time, with bars mirrored around a chosen pivot. This utility gives traders a new way to analyze the market from a different perspective by flipping the chart upside down. Why use an inverted chart? Highlight hidden patterns – price formations that look ordin
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
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
Show Pips for MT5
Roman Podpora
4.52 (27)
Cet indicateur d'information sera utile pour ceux qui veulent toujours être au courant de la situation actuelle du compte. VERSION MT 4 -   More useful indicators L'indicateur affiche des données telles que le profit en points, en pourcentage et en devise, ainsi que le spread pour la paire actuelle et le temps jusqu'à la fermeture de la barre sur la période actuelle. Il existe plusieurs options pour placer la ligne d'information sur le graphique : À droite du prix (passe derrière le prix) ; En c
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
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
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
Zigzag Price Arrows
Aiman Saeed Salem Dahbag
The Zigzag Price Arrow indicator is an enhanced version of the classic Zigzag indicator, combining the traditional zigzag pattern with advanced visual features. It not only identifies major market turning points but also provides clear trading signals through: • Directional arrows: Displays colored arrows (green for buy, magenta for sell) indicating potential trend directions. • Price labels: Shows the exact price values at each pivot point directly on the chart. • Improved visual clarity: Make
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
Universal Trend
Maryna Shulzhenko
The Universal Trend indicator was created to detect trends in price movement and allows you to quickly determine not only the direction of the trend, but also understand the levels of interaction between buyers and sellers. The indicator works on all timeframes and currency pairs. The indicator gives fairly accurate signals and it is customary to use it both in trending and flat markets. It is advisable to use the indicator in combination with other tools for more reliable signals and making a
Trading Utility for Forex Currency Pairs Only not for Gold  Functions Auto Lot Calculation based on Risk Auto stoploss  Auto TakeProfit Breakeven Auto Close Half % Close in percentage with respect to the PIPs Pending Orders BuyLimit Sell Limit with distances BuyStop Sell Stop    with distances Trading Informations Risk in percentage For Multiple trades Combine Takeprofit and Combine Stoplosses
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
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
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.
Bneu Prop Firm Manager
Marvinson Salavia Caballero
**Bneu Prop Firm Challenge Manager** is a trading utility for MetaTrader 5 designed to assist traders participating in proprietary trading firm evaluation challenges. This free version monitors account metrics, tracks challenge progress, and displays rule compliance status with pre-configured prop firm presets. **Free Version Features** **Prop Firm Presets** - Pre-configured rule sets for common proprietary trading firms - FTMO preset with corresponding rule parameters - MyForexFunds (MFF) pr
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
L'indicateur SMC Venom Model BPR est un outil professionnel pour les traders travaillant dans le concept Smart Money (SMC). Il identifie automatiquement deux modèles clés sur le graphique des prix: FVG   (Fair Value Gap) est une combinaison de trois bougies, dans laquelle il y a un écart entre la première et la troisième bougie. Forme une zone entre les niveaux où il n'y a pas de support de volume, ce qui conduit souvent à une correction des prix. BPR   (Balanced Price Range) est une combinaiso
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
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
Crypto to MT5
Rajesh Kumar Nait
Crypto.com à MT5 Flux de bougies en direct vers Metatrader 5 à partir du websocket Crypto.com C'est une donnée de taux en direct OHCLV (Open High Low Close Real Volume)  commerçants, si dans un graphique minute, les données OHLC ne sont pas correctes, elles peuvent donner une mauvaise analyse dans l'étude graphique technique, ce produit garantit qu'il fournit des données précises en temps réel qui peuvent aider à l'analyse manuelle vous pouvez vérifier mon autre produit crypto sur mon profi
Owl Smart Levels MT5
Sergey Ermolov
4.03 (32)
Version MT4   |  FAQ L' indicateur Owl Smart Levels est un système de trading complet au sein d'un seul indicateur qui comprend des outils d'analyse de marché populaires tels que les fractales avancées de Bill Williams , Valable ZigZag qui construit la structure d'onde correcte du marché et les niveaux de Fibonacci qui marquent les niveaux exacts d'entrée. sur le marché et les endroits où prendre des bénéfices. Description détaillée de la stratégie Mode d'emploi de l'indicateur Conseiller-Assis
Golden Mind EA
Leszek Aleksander Mroczek
FREE FOR LIMITED TIME Golden Mind EA – Adaptive Grid Trading for GOLD Description Golden Mind EA is a fully automated Expert Advisor for MetaTrader 5 that utilizes a dynamic BUY-only grid strategy, designed exclusively for GOLD (XAU/USD) trading. What sets this EA apart from traditional grid trading systems is its intelligent pair-based position closure logic. Instead of relying on fixed take-profit levels, Golden Mind EA calculates the profit difference between pairs of trades and closes them
FREE
Product Description PropFirm Risk Manager EA is a dedicated risk-control Expert Advisor designed for prop firm traders (FTMO, MyFunded, E8, and similar). This EA does NOT open trading strategies . Its only job is to protect your account by monitoring equity in real time and enforcing risk rules automatically. It helps you: Prevent daily and maximum drawdown violations Stop trading after reaching daily profit targets Control trading time windows Avoid accidental rule breaks due to emotions or ov
FREE
Les acheteurs de ce produit ont également acheté
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
TradePanel MT5
Alfiya Fazylova
4.86 (148)
Trade Panel est un assistant commercial multifonction. L'application contient plus de 50 fonctions de trading pour le trading manuel et permet d'automatiser la plupart des tâches commerciales. Version d'essai de l'application pour compte de démonstration Instructions pour l'application Commerce. Permet d'effectuer des opérations commerciales en un clic : Ouvrir des ordres en attente et des positions avec un calcul automatique du risque. Ouvrir plusieurs ordres et positions en un seul clic. Ouvri
VERIFIED TRADING RESULTS - Farmed Hedge Yield Axi Copy:  https://www.mql5.com/en/signals/2356376 - Farmed Hedge Yield Exn Copy:   https://www.mql5.com/en/signals/2356404 - Farmed Hedge Yield V Copy:  https://www.mql5.com/en/signals/2357156 Contact me via private message to receive the User Manual and Setup. * Thai Lauguage Support Available Farmed Hedge Yield Farming - Professional Pair Trading Dashboard (Manual - Hybrid - Semi/Automated EA) VERSION 3 - WILD HARVEST UPDATE Trading Approac
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
Custom Alerts AIO : Surveillez tous les marchés à la fois — sans aucune configuration Présentation Custom Alerts AIO est une solution de surveillance du marché prête à l’emploi, sans configuration nécessaire. Tous les indicateurs requis — FX Power, FX Volume, FX Dynamic, FX Levels, IX Power — sont directement intégrés. Aucun graphique n’est affiché, ce qui rend cet outil idéal pour la génération d’alertes en temps réel. Il prend en charge toutes les classes d’actifs proposées par votre courtie
Ultimate Extractor
Clifton Creath
5 (9)
Ultimate Extractor - Professional Trading Analytics for MT5 *****this is the local HTML version of Ultimate Extractor. Check out Ultimate Extractor Cloud on mql5 for the Cloud version****** 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 detailed HTML reports with inte
Telegram To MT5 Receiver
Levi Dane Benjamin
4.53 (15)
Copiez les signaux de n'importe quel canal dont vous êtes membre (y compris les canaux privés et restreints) directement sur votre MT5.  Cet outil a été conçu en pensant à l'utilisateur et offre de nombreuses fonctionnalités nécessaires pour gérer et surveiller les trades. Ce produit est présenté dans une interface graphique conviviale et attrayante. Personnalisez vos paramètres et commencez à utiliser le produit en quelques minutes ! Guide de l'utilisateur + Démo  | Version MT4 | Version Disc
Unlimited Trade Copier Pro MT5 is a tool to copy trade remotely to multiple MT4, MT5 and cTrader accounts at different computers/locations over internet. This is an ideal solution for you if you are a signal provider and want to copy your trades to other receivers globally on your own rules. One provider can copy trades to multiple receivers and one receiver can get trade from multiple providers as well. The provider can even set the subscription expiry for each receiver, so that receiver will n
ManHedger MT5
Peter Mueller
4.8 (5)
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
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
EasyInsight AIO MT5
Alain Verleyen
4.92 (12)
EASY Insight AIO – La solution tout-en-un pour un trading intelligent et sans effort Présentation Imaginez pouvoir analyser l’ensemble du marché — Forex, Or, Crypto, Indices et même Actions — en quelques secondes, sans aucune analyse manuelle de graphiques, sans installation complexe ni configuration d’indicateurs. EASY Insight AIO est votre outil d’exportation ultime, prêt à l’emploi, pour un trading alimenté par l’IA. Il fournit une vue d’ensemble du marché dans un fichier CSV propre — prêt
Trade Copier Pro MT5 is a tool to copy trade remotely to multiple MT4, MT5 and cTradfer accounts at different computers/locations over internet. This is an ideal solution for you if you are a signal provider and want to copy your trades to other receivers globally on your own rules. One provider can copy trades to multiple receivers and one receiver can get trade from multiple providers as well. The provider can even set the subscription expiry for each receiver, so that receiver will not be abl
Telegram Broadcast MT5
Volodymyr Hrybachov
3.67 (3)
The TELEGRAM BROADCAST utility helps you instantly publish your trade to the Telegram channel. If you have long wanted to create your own Telegram channel with FOREX signals, then this is what you need. TELEGRAM BROADCAST can send messages: Opening and closing deals; Placing and deleting pending orders; Modification of stop loss and take provision (last order); Stop loss and take prov triggered; Activation and deletion of a pending order: Sending trading reports; Sending a message for deposits
PineChart
Muhammad Minhas Qamar
Developed by MMQ —  PineChart: Run PineScript Inside MT5 With A Modern Charting Experience An MQL5 Expert Advisor that runs Pine Script indicators and strategies directly inside MetaTrader 5. PineChart includes a full Pine Script interpreter so you can use your existing Pine Script v5/v6 source code without manually rewriting anything in MQL5. Links [  Website  |  Documentation  |  Demo ] NOTE: Downloading demo through MQL5 will give you limited functionality. To experience PineChart fully, dow
HINN Lazy Trader
ALGOFLOW OÜ
5 (2)
Lazy Trader is your personal risk management assistant that independently finds the best market entries, manages positions, and helps you extract maximum profit from every trading idea! It monitors charts from M1 to W1 , finds optimal entry points based on your parameters, and manages trades without your involvement: - Got an idea on the daily chart? No need to wait for lower timeframes to form a signal — Lazy Trader will check everything and open all necessary positions while you live your lif
Active Lines
Yury Kulikov
5 (2)
Attention: Demo version for review and testing can be downloaded here . It does not allow trading and can only be run on one chart. Active Lines - a powerful professional tool for operations with lines on charts. Active Lines provides a wide range of actions for events when the price crosses lines. For example: notify, open/modify/close a position, place/remove pending orders. With Active Lines you can assign several tasks to one line, for each of which you can set individual trigger conditions
Footprint Chart Pro — Professional Order Flow 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
Mentfx Mmanage mt5
Anton Jere Calmes
4.25 (8)
The added video will showcase all functionality, effectiveness, and uses of the 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 calculates al
VOLUME BUBBLES ORDERFLOW FOOTPRINT PROFESSIONAL Expert Advisor for MetaTrader 5 Complete Feature Documentation Introduction: Volume Bubbles OrderFlow Footprint Professional is an advanced order flow visualization tool designed for the MetaTrader 5 platform. It provides institutional-grade market analysis through real-time volume bubbles visualization, volume profiling, and sophisticated order flow analysis. This Expert Advisor transforms raw market data into actionable trading intelligence, hel
The product will copy all  Discord  signal   to MT5   ( 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 MT5. 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
Partial Close Expert   est un outil qui combine de nombreuses fonctionnalités en un seul système automatisé. Cet EA peut aider les traders à gérer leurs positions plus efficacement en offrant de multiples options pour gérer les risques et maximiser les gains potentiels. Avec Partial Close Expert, les traders peuvent définir une       fermeture partielle       niveau pour verrouiller les bénéfices, un       stop suiveur       niveau pour protéger les profits et limiter les pertes, un       seuil
Spot vs Future Arbitrage EA  is a sophisticated, fully automated Expert Advisor engineered for MT5, delivering consistent profits through pure price arbitrage on Gold (XAUUSD). Spot vs Future Arbitrage EA  Requirement - Your Broker should provide SPOT and FUTURE for trading. This EA deploys a market-neutral hedge by simultaneously opening one long position in Gold spot and one short position in Gold futures. Risk is minimized via perfect offset—market swings affect both equally—while profits a
The product is used to trade base on any Alert signal in MT5 Easy to setup, simple format with custom keyword All option to management orders as trailing stop, breakeen, partial close, time filter, news filter ... Option to auto open grid orders How to setup and guide: Let read all details about setup and download indicator for auto get   Alert Signal   here Do not buy if you even can not install demo EA to your VPS ( some VPS block download EA from mql5 market) We always bring customers high q
Trade Copier MT5 – Copier les ordres de trading Trade Copier pour MT5 Prend en charge plusieurs terminaux Master et Slave Fonctionnement local sans DLL Mode de surveillance lent optionnel Parfait pour tous les traders nécessitant un copier de trading puissant et fiable MT5 vers MT5 Trade Copier (MetaTrader 5 vers MetaTrader 5 Copier) | Expert Advisor (EA) local rapide pour MetaTrader 5 Aperçu Le MT5 vers MT5 Copier (MetaTrader 5 vers MetaTrader 5 Copier) est un copier de trading de nouvelle gén
Time saving and fast execution Whether you’re traveling or sleeping, always know that Telegram To MT5 performs the trades for you. In other words, Our   Telegram MT5 Signal Trader  will analyze the trading signals you receive on your selected Telegram channels and execute them to your Telegram to MT5 account. Reduce The Risk Telegram To Mt5   defines the whole experience of copying signals from   Telegram signal copier to MT5 platforms. Users not only can follow all instructions from the signal
Crypto Charting
Rajesh Kumar Nait
5 (5)
Crypto Charting for MT5 – Intégration des graphiques cryptos dans MetaTrader 5 Présentation Crypto Charting for MT5 fournit des graphiques OHLC en temps réel via WebSocket. Il prend en charge plusieurs plateformes d’échange avec une synchronisation automatique dans MT5. Fonctionnalités Données en temps réel via WebSocket Mise à jour automatique des données historiques Synchronisation programmée après perte de connexion Compatibilité avec tous les intervalles de temps MT5 Données OHLCV complètes
Dynamic Fibonacci Grid
Tsvetan Tsvetanov
5 (1)
Présentation de la dernière version du Dynamic Fibonacci Grid Dashboard pour MT5. Désormais doté de nombreuses nouvelles fonctionnalités, ce tableau de bord transforme votre expérience de trading et vous permet de visualiser le marché et l’action des prix sous un angle totalement différent. Découvrez de nouvelles possibilités grâce à l’analyse simultanée de plusieurs périodes et de plusieurs symboles. Interface conviviale pour le trading manuel et la gestion des positions, avec une capacité éte
INTRODUCTION : This Panel is made to detect the spike presence and escape the time occuring a spike presence and open sell or buy trade transaction automatically after providing  a signal control to operate autonomously the trade. It is a best scalper and a good spike escaper.     There are another functionalities as  Martingale strategy and a deep indicator called DeepMovingAverage , it last is triggered automatically when the control is checked. These are made to help users   to notify and t
Bots Builder Pro MT5
Andrey Barinov
4.17 (6)
This is exactly what the name says. Visual strategy builder . One of a kind. Turn your trading strategies and ideas into Expert Advisors without writing single line of code. Generate mql source code files with a few clicks and get your fully functional Expert Advisors, which are ready for live execution, strategy tester and cloud optimization. There are very few options for those who have no programming skills and can not create their trading solutions in the MQL language. Now, with Bots Builde
Mt5 To InterativeBrokers Copier allows you to copy deals from MT5 account to Interactive Brokers. With this, you can run your EA strategy on a MT5 Demo/Real Account, then copy all the deals to Interactive Brokers account real time. Features: 1. Copy or Invert-Copy deals Realtime from MT5 to IB Account. 2. Synchronizing positions of both accounts periodicaly, in case any missing copying. 3. You can choose only Buy position or Sell position. Symbols Setup: General Format:  {MT Symbol} -> {IB S
Plus de l'auteur
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.
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 MT5 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 automat
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
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
Filtrer:
Aucun avis
Répondre à l'avis