Alert and Repaint Check for Any Indicator

Point it at any indicator you already have, by file name, and it will alert you on that indicator's own buffers. It needs no source code: a compiled .ex5 you downloaded is enough. It can also read that indicator from a higher timeframe, and it re-reads closed bars to tell you whether the indicator repaints or merely lags.

This is free.

The problem it solves

Two of the longest running threads on the MQL5 forum are about putting alerts on indicators and about reading them from a higher timeframe. The answer has always been the same: get the source, edit it, recompile. That does not help when you only have an .ex5, and it does not scale when you use several indicators.

This does the job from outside. iCustom can load any indicator by name and read its buffers without its source, so one tool serves all of them.

EXPLORE mode answers the hard question first

The reason most traders never use iCustom is that it asks for a buffer number, and nothing tells you which number holds the arrow you can see on the chart. So the default mode answers that. It probes the buffers, counts what is in each one, and prints them beside the last bars. This is a real run on a live chart watching the standard RSI:

Buffers found: 3   (checked up to 16, on XAUUSDm PERIOD_H1)
  buffer  values  zeros  blank  what it looks like                     range of the values
       0      12      0      0  a line - a value on almost every bar   31.47608 .. 55.28984
       1      12      0      0  a line - a value on almost every bar   4.11585 .. 6.11288
       2      12      0      0  a line - a value on almost every bar   3.86003 .. 8.96028

  bar  time               buf0         buf1         buf2
    0  2026.09.04 20:00     45.61107     5.40493     6.44511
    1  2026.09.04 19:00     46.88624     5.82069     6.59381
    2  2026.09.04 18:00     43.33095     5.42967     7.10102

All three are lines there, which is what RSI is. On an arrow or signal indicator the table looks different, and that difference is the whole point:

  buffer  values  zeros  blank  what it looks like                     range of the values
       0       0      0      8  nothing here on these bars             -
      11       8      0      0  a line - a value on almost every bar   16.08798 .. 16.25192
      14       7      1      0  sparse - looks like a signal           4166.06000 .. 4166.06000

Buffer 14 is the one to watch there. It is empty on most bars and carries a price only where the indicator marked something, so "a value appears" is the trigger for it. Buffer 11 is an internal line and buffer 0 holds nothing on these bars at all.

Late values and repaints are counted apart

Every closed bar's value is kept and read again on each new bar. When a closed bar has changed there are two very different reasons why.

A late value. The bar was blank and now holds a value, because the indicator needed later bars before it could mark this one. Fractals work this way by design, and so do most swing and structure markers. It is not deceit, but the signal was never visible on the bar it points at.

A repaint. A value that was there has moved or vanished. Something you could have acted on is gone.

Both are reported with the bar time, the old value and the new one, and the chart comment keeps a running count of each. Nothing is inferred from the forming bar, because the forming bar changing is normal.

Tested rather than asserted. On XAUUSD H1, 299 bars, 1 to 20 August 2026, watching buffer 0 of each:

Watched indicatorLate valuesRepaints
Examples\Fractals, marks a bar two bars after it closes400
Examples\ZigZag, redraws its last leg by design083
Examples\RSI, settled once a bar closes00

So it says "late" about an indicator that lags, "repaint" about one that repaints, and nothing about one that does neither.

Triggers

A value appears on a bar, whether on the bar that just closed or on an earlier bar a lagging indicator has only now marked; a cross above or below a level; one buffer crossing another in either direction; or simply the value changing. Alerts go to a popup, a sound, a push notification or email, one per bar. Closed bars are judged by default; turn that off and the forming bar is judged on every tick, which alerts sooner and can reverse.

A higher timeframe

Set "Read it on this timeframe" and the watched indicator is loaded on that timeframe instead of the chart's. Bars, triggers and the repaint check all follow it. On the test data, RSI read from H4 on an H1 chart produced one alert per H4 bar, 77 of them, each stamped PERIOD_H4.

Two worked examples

Example 1. Tell me when RSI crosses above 70. You know this indicator, so EXPLORE is only a check.

InputValue
Indicator fileExamples\RSI
Its inputs14
Read it on this timeframeCurrent timeframe
ModeWATCH
Buffer to watch0
Triggerbuffer crosses above Level
Level70
Popup alerttrue

On the test data that produced four alerts, at 75.04, 76.31, 70.38 and 74.83. To get the same thing from the four hour chart while you sit on the one hour, set "Read it on this timeframe" to H4 and change nothing else.

Example 2. An arrow indicator you downloaded and have no source for. Here EXPLORE is doing the real work.

  1. Attach with Mode on EXPLORE and "Indicator file" set to that indicator's name. Leave "Its inputs" blank to use its own defaults.
  2. Open Toolbox, Experts tab, and find the buffer that is sparse: empty on most bars, a value where you can see an arrow on the chart. Say it is buffer 2.
  3. Attach it again with Mode on WATCH, Buffer to watch 2, Trigger "a value appears", and Push notification on.
  4. If EXPLORE printed the note about a buffer being mostly exact zeros, switch on "This indicator writes 0 where it means nothing" and read the table again before choosing.

What each input does

InputWhat it does
Indicator filePath under MQL5\Indicators, without the extension, for example Examples\RSI or MyFolder\MyArrows. It starts empty on purpose, because no indicator is certain to exist on every terminal, and nothing happens until you fill it in.
Its inputsThe watched indicator's own inputs, comma separated, in the order it declares them. Blank means use its defaults. Whole numbers are passed as int, numbers with a point as double, true and false as bool, anything else as text. The log prints back what it decided so you can check.
Read it on this timeframeLoad the watched indicator on this timeframe instead of the chart's. Current timeframe means the chart's own.
This indicator writes 0 where it means "nothing"Treat an exact 0 as empty. Needed for indicators like ZigZag. EXPLORE tells you when it is worth switching on.
ModeEXPLORE lists the buffers and alerts nothing. WATCH alerts on the buffer you chose.
How many buffers to probeEXPLORE stops here. Raise it if the note says it hit the limit.
How many recent bars to printHow many bars EXPLORE shows and counts.
Buffer to watchThe buffer number you read off the EXPLORE table.
Second bufferOnly used by the two buffer-cross triggers.
TriggerA value appears, a cross above or below Level, buffer A crossing buffer B either way, or the value simply changing.
LevelOnly used by the two level-cross triggers.
Judge closed bars onlyOn by default: one judgement when a bar closes, and it cannot reverse. Off means the forming bar is judged on every tick, which alerts sooner but can undo itself.
Popup, sound, push, emailHow you are told. Any combination. Push needs your MetaQuotes ID set in Tools, Options, Notifications.
Re-read closed bars and report changesTurns the late value and repaint reporting on.
How many closed bars to keep watchingHow far back the check looks. A change further back than this is not seen.
Ignore changes smaller than thisLeave at 0 to catch every change. Raise it if an indicator jitters in the last decimal.

What it does not do

It reads indicator buffers. An indicator that draws only with chart objects exposes no buffers, and there is nothing here for this tool to read. Nothing outside the indicator can change that.

"No repaint seen over 200 bars" is an observation about those bars, not a guarantee about every bar that will ever form. It is evidence, and better than the claim most indicators ship with, but it is not a proof. The check covers the number of closed bars you set; a change further back than that is not seen.

It cannot tell you what a buffer means. It will show you that buffer 3 holds 1.0 on fourteen bars; whether that is a buy signal is yours to decide.

An indicator that signals with a value of exactly 0.0 will not trigger "a value appears", because that is the reading of a bar the indicator has not written yet. Signal buffers carry a price or a flag, never 0.0, so in practice this costs nothing, but it is a rule and you should know it.

If the indicator you named cannot be loaded, because of a typo or a file that has not been compiled, this does not detach itself. It says so on the chart and in the Experts log and keeps trying every few seconds, so correcting the name is enough.

How to install and run it

  1. Attach it to a chart from the Navigator.
  2. In "Indicator file" type the path of the indicator you want to watch, relative to MQL5\Indicators and without the extension. Examples\RSI is the one to try first. If it takes inputs, list them comma separated in "Its inputs", for example 14.
  3. Leave Mode on EXPLORE and press OK.
  4. Press Ctrl+T for the Toolbox and open the Experts tab. The buffer table is there.
  5. Read the table, set "Buffer to watch", change Mode to WATCH, choose a trigger, and turn on the alerts you want. To read from a higher timeframe, set "Read it on this timeframe" as well.

Written and verified on MetaTrader 5 build 6140. It places no orders and changes nothing on your account.

Produits recommandés
SignalXpert
Steve Rosenstock
5 (4)
CLIQUEZ ICI POUR VOIR TOUS MES PRODUITS GRATUITS SignalXpert a été développé par moi pour offrir aux traders utilisant l’indicateur RangeXpert un outil d’analyse puissant. RangeXpert sert de base au système : il détecte des zones de marché précises et fournit les données que SignalXpert analyse en temps réel pour générer des signaux clairs et exploitables. Cela permet la surveillance simultanée de jusqu’à 25 actifs différents sur plusieurs unités de temps , tout en détectant les mouvements de
FREE
Inspector - Surveillance en Temps Réel des Performances et du Drawdown Matériaux supplémentaires et instructions Manuel complet   -   Version MT4   -   Version MT5 Sachez exactement comment vous tradez, en temps réel. Inspector est un moniteur de performances et de drawdown en temps réel pour MetaTrader, extrait de la suite Meta Extender. Il suit vos résultats sur chaque période de temps au fur et à mesure qu'ils se produisent. Ce qu'il propose :   Calcul et surveillance continus en temps réel
FREE
Exact Time — detailed time on the seconds chart. The utility shows the opening time of the selected candle. This is necessary when working with seconds charts. For example, it can be used on a seconds chart built using the Seconds Chart utility. Inputs Base corner — the chart corner to which an object Is attached. X distance — the horizontal distance from the chart corner. Y distance — the vertical distance from the chart corner. Text font — font name Font size — font size Color — text color
FREE
DS Volume Value Areas
Darkstone Capital LTD
DS Volume Value Areas V1.0 Volume Profile Value Area Indicator for MetaTrader 5 Overview DS Volume Value Areas V1.0 is a MetaTrader 5 indicator designed to display key volume profile levels directly on the trading chart. The indicator calculates and displays important volume-based reference levels including Value Area High (VAH), Value Area Low (VAL), and Point of Control (POC). By presenting volume distribution levels in a clear visual format, traders can analyse areas where price has previousl
FREE
Copy Trade PRO - Slave EA (FREE with Master EA) Receive Trades Automatically from Your Master Account Copy Trade PRO - Slave EA is a professional trade receiver designed for MetaTrader 5. It automatically mirrors trades from the Copy Trade PRO Master EA with fast execution, intelligent symbol matching, and flexible risk management.    Telegram Support Link :   @GoldBotXSupport Need help or have questions? Contact me on WhatsApp:      https://wa.me/447378910922 This Slave EA is complete
FREE
GOM Trade Manager
Wannapach Chinnaprapa
GOM Trade Manager helps you execute trades the way you want it. Works on all instruments Forex, Commodities, & Crypto. It helps you with lot calculations, spread addition and balance calculations so you can just focus on actual trading. For full automatic planned management, stackable triggers and spread widening protection >> check out GOM Trade Manager Pro . ------------------------------------------NOTABLE FEATURES------------------------------------------ You set everything based on bid
FREE
================================================================ MATRIX CONDITION MONITOR Live Trade Condition Panel for MetaTrader 5 Fully Automatic -- Works with ALL Matrix EAs ================================================================ NEVER MISS A TRADE SETUP AGAIN Matrix Condition Monitor is a free utility that attaches to any chart and automatically checks all 10 trade conditions in real time -- showing you exactly why a trade will or will not open, and alerting you the moment ever
FREE
Quick Scale Trading Panel FREE Quick Scale Trading Panel FREE is a manual trading utility for MetaTrader 5 designed to simplify order execution and position sizing directly from the chart. The panel allows traders to open and manage trades using predefined lot multipliers, reducing the need for manual calculations during fast market conditions. Users can define a base lot size and execute trades using multiplier buttons (1x, 2x, 4x, 8x). This helps maintain consistent position sizing and improv
FREE
BuntuFx Copier
Muhammad Syahrul
First 10 Copies is Free BuntuFx Copier Pro is a fast and reliable trade copier for synchronizing orders between Master and Slave accounts on MetaTrader 4 and MetaTrader 5. Main Features MT4 and MT5 cross-platform copying Market and pending order synchronization Automatic SL, TP, partial close, and order close copying Multiple lot modes: multiplier, fixed lot, risk percentage, and lot sequence Symbol mapping and suffix support Magic number, symbol, direction, and comment filters Reverse trading
FREE
Mirror Chart MT5
Andrej Hermann
5 (1)
The Mirror Chart MT5 is a overlay indicator specifically designed to project a second financial instrument directly onto the main chart window. This tool is invaluable for traders who rely on correlation analysis, as it visualizes the price movements of two different instruments in real time. Unlike traditional overlays, this indicator utilizes intelligent, dynamic centering and scaling logic. It continuously analyzes the visible price range in the current window for both symbols and calculates
FREE
The utility draws pivot levels based on a selection from day week month The previous candlestick of the selected timeframe is taken and the values for the levels are calculated using the following formulas: Pivot = (high + close + low) / 3 R1 = ( 2 * Pivot) - low S1 = ( 2 * Pivot) - high R2 = Pivot + (R1 -S1) R3 = high + ( 2 * (Pivot - low)) S2 = Pivot - (R1 - S1) S3 = low - ( 2 * (high - Pivot)); The style and thickness for all lines are adjusted. The colors for the R, Pivot and S lines ar
FREE
This tool allows you to export Ticks for any financial instrument available in MetaTrader 5. You can download multiple symbols into the same CSV file. You can also schedule the download frequency (every 5 minutes, 60 minutes, etc.). There is no need to open multiple charts to get the latest data—the tool downloads the data directly. The CSV file will be stored in the following folder: \MQL5\Files . How it works Select the symbols to download: Click an item to select or deselect it. Enter the CSV
FREE
TradeVision Pro
Ian Nganga Comba
TradeVisonPro Forex Analyzer Pro Tableau de bord d’analyse et de suivi des comptes de trading MT5 TradeVisonPro Forex Analyzer Pro est une solution d’analyse du trading et de suivi des comptes conçue pour les utilisateurs de MetaTrader 5. Le produit organise les données de trading MT5 dans un tableau de bord web structuré, permettant aux traders de consulter les informations du compte, de surveiller les positions ouvertes, d’analyser l’historique des transactions, de suivre les stratégies, de te
FREE
TradingCoPilot
Viktor Mitrofanov
Trading Co-Pilot for MetaTrader 5 Advanced Position Management for Manual Traders Trading Co-Pilot is a professional trade management assistant designed for traders who open positions manually and want precise, automated control over risk and profit handling. It does not open trades. It manages them intelligently. You focus on entries. The Co-Pilot protects and optimizes the exit. How It Works Once you open a manual position, Trading Co-Pilot automatically: • Applies Stop Loss • Sets Take Profit
FREE
World Time Display
Mohd Firuz Fahmi Bin Yusoff
The best and the only World Time Display for MT5 Features : - JAPAN, LONDON & NEW YORK Time Display - You can customize with different Font, Color And Text Size - You can customize Box Position and Box Color to meet your satisfaction - Only For Metatrader 5 - Customize GMT according to your Time Zone - Simple To Use. Just Attach to your MT5 - No hidden code or no errors
FREE
Easy Correlations Indicator The Easy Correlations Indicator is designed to help traders analyze the relationship between two correlated instruments. By monitoring the distance between their Relative Strength Index (RSI) values, the indicator highlights situations where one instrument has moved significantly further than the other. This creates potential trading opportunities: Sell the stronger instrument (overstretched RSI) Buy the weaker instrument (lagging RSI) Because the positions are opened
FREE
SmartRisk Trade Tool — One-Click Risk-Based Trade Panel SmartRisk Trade Tool is a manual trading panel for MetaTrader 5 built around position sizing and risk control rather than signal generation. It does not analyze the market or suggest trade direction — it exists so that every order sent from the chart already has a calculated lot size, stop loss, and take profit consistent with a risk value the trader chooses, removing the manual arithmetic that normally happens between deciding to trade and
FREE
SimpleTrade by Gioeste
Giovanni Scelzi
4 (3)
Discover the power of automated trading with **SimpleTradeGioeste**, an Expert Advisor (EA) designed to optimize your trading operations in the Forex market. This innovative EA combines advanced trading strategies with proven technical indicators, offering an unparalleled trading experience. video backtest :  https://youtu.be/OPqqIbu8d3k?si=xkMX6vwOdfmfsE-A ****Strengths**** - **Multi-Indicator Strategy**: SimpleTradeGioeste employs an integrated approach that combines four main technical ind
FREE
BB Strategy V5.01 Advanced Bollinger Bands Grid Expert Advisor BB Strategy V5.01 is a fully automated Expert Advisor for MetaTrader 5 that combines Bollinger Bands mean-reversion trading, percentage-based grid management, advanced entry filtering, and intelligent risk control. The EA is designed to identify temporary market overextensions and capture high-probability reversal opportunities while filtering out low-quality entries that often occur during strong trending conditions. Unlike traditio
FREE
Smart FVG Stats
- Md Rashidul Hasan
5 (1)
The  Smart FVG Statistics Indicator  is a powerful MetaTrader 5 tool designed to automatically identify, track, and analyze Fair Value Gaps (FVGs) on your charts. Love it? Hate it? Let me know in a review! Feature requests and ideas for new tools are highly appreciated. :) Try "The AUDCAD Trader": https://www.mql5.com/en/market/product/151841 Key Features Advanced  Fair Value Gap  Detection Automatic Identification : Automatically scans for both bullish and bearish FVGs across specified histo
FREE
MarketPro toolkit
Johannes Hermanus Cilliers
Start earning profits by copying All trades are sent by our successful Forex trader & are extremely profitable. You can earn profits by copying trades daily Trial Period included You'll also get access to extremely powerful trading education which is designed in a simple way for you to become a profitable trader, even if you have no trading experience. https://ec137gsj1wp5tp7dbjkdkxfr4x.hop.clickbank.net/?cbpage=vip
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
AutoLotEqualizer – Smart Position Balancing Tool AutoLotEqualizer is a precision trade management utility designed to keep your total BUY and SELL volumes balanced automatically. It detects differences between your open BUY and SELL positions and opens compensating trades — ensuring both sides stay equal in exposure. This helps grid, hedge, and basket systems maintain symmetry and control over total position risk — all while saving you time and manual effort. ️ Key Features Automatic Lot Ba
FREE
Professional Trading Dashboard Un panneau professionnel de surveillance de compte pour MetaTrader 5 qui regroupe les données de compte en temps réel, l'historique quotidien des transactions et les statistiques mensuelles dans un affichage unique directement sur le graphique. Professional Trading Dashboard est un indicateur utilitaire pour MetaTrader 5 conçu pour offrir aux traders une vision claire et structurée de leur compte à tout moment. Plutôt que de naviguer entre plusieurs fenêtres du ter
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
EA16 Taka Grid
Nhat Tien Duong
TAKA Grid EA (EA16): The Sideway King & Prop Firm Shield Are you tired of EAs that get destroyed by choppy, ranging markets? Meet TAKA Grid EA , the ultimate mean-reversion system designed specifically for the AUDNZD cross pair on the M15 timeframe. It doesn't rely on explosive breakouts; it dominates the sideways chop with mathematical precision.   ENTER YOUR KEY HERE:   [  EA16_99999D_TANINCODER_595559587987 ] -- MANDATORY: ALLOW WEBREQUEST TO ACTIVATE THE BOT To verify your License
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
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
TRADE PANEL MASTER — Know Your Risk Before You Click Open your chart. See your panel. Trade with confidence. Before you click Buy or Sell, Trade Panel Master shows you  exactly what you risk, what you gain, and your R:R ratio —  in real time. No mental math. No surprises. FEATURES - Lot sizing with real-time margin display - SL & TP in 3 modes: Points / Money / Price - Au
FREE
A professional tool for trading - the divergence indicator between the RSI and the price, which allows you to receive a signal about a trend reversal in a timely manner or catch price pullback movements (depending on the settings). The indicator settings allow you to adjust the strength of the divergence due to the angle of the RSI peaks and the percentage change in price, which makes it possible to fine-tune the signal strength. The indicator code is optimized and is tested very quickly as par
FREE
Les acheteurs de ce produit ont également acheté
Trade Assistant MT5
Evgeniy Kravchenko
4.41 (216)
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
Bienvenue sur Trade Manager EA, l’outil ultime de gestion des risques conçu pour rendre le trading plus intuitif, précis et efficace. Ce n’est pas seulement un outil d’exécution d’ordres ; c’est une solution complète pour la planification des trades, la gestion des positions et le contrôle des risques. Que vous soyez débutant, trader expérimenté ou scalpeur ayant besoin d’une exécution rapide, Trade Manager EA s’adapte à vos besoins, offrant une flexibilité sur tous les marchés, des devises et i
Farmed Hedge Yield Farming | All Markets (Manual - Hybrid - Semi/Automated EA) 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 * Before purchasing, please feel free to send me a message if you have any questions about the product or setup. - You can test the system using Strategy Tester: Visual Mode , a
Version Bêta Le Telegram to MT5 Signal Trader est presque prêt pour la sortie officielle en version alpha. Certaines fonctionnalités sont encore en développement et vous pourriez rencontrer de petits bugs. Si vous rencontrez des problèmes, merci de les signaler, vos retours aident à améliorer le logiciel pour tout le monde. Telegram to MT5 Signal Trader est un outil puissant qui copie automatiquement les signaux de trading depuis des chaînes ou groupes Telegram vers votre compte MetaTrader 5 .
TradePanel MT5
Alfiya Fazylova
4.88 (167)
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. Instructions d'utilisation + tutoriel vidéo : https://www.mql5.com/fr/blogs/post/762589 Version d'essai de l'application pour un compte démo : https://www.mql5.com/fr/blogs/post/762644 Comment installer l'application : https://www.mql5.com/fr/blogs/post/762645 Comment tester l'application en mode visuel :
Local Trade Copier EA MT5
Juvenille Emperor Limited
4.94 (148)
Découvrez une expérience exceptionnellement rapide de copie de trades avec le   Local Trade Copier EA MT5 . Avec sa configuration facile en 1 minute, ce copieur de trades vous permet de copier des trades entre plusieurs terminaux MetaTrader sur le même ordinateur Windows ou Windows VPS avec des vitesses de copie ultra-rapides de moins de 0.5 seconde. Que vous soyez un trader débutant ou professionnel, le   Local Trade Copier EA MT5   offre une large gamme d'options pour le personnaliser en fonc
================================================================================ POC BREAKOUT - V20.72. Full Professional Grade Toolkit ================================================================================ POC Breakout is a full MetaTrader 5 trading dashboard for discretionary traders who want breakout signals, Point of Control (POC) context, volume profiles, order flow, market structure, news, alerts, and advanced trade planning in one professional workspace. Attached directly to you
EA Overfitter
Stephen J Martret
That backtest looks great. But will it still be making money tomorrow, next week, next month? EA Overfitter re-runs your EA on 100 price histories it has never seen. One score tells you if the edge is real. A backtest tells you what an EA did on one price history — the one that happened to occur. What you cannot tell from it is how much of that result was the strategy and how much was the particular path. EA Overfitter answers that. It builds up to 100 synthetic price histories your EA has n
Telegram to MT5 Multi-Channel Copier   copie automatiquement les signaux de trading de vos canaux Telegram directement vers MetaTrader 5. Pas de bots, pas d'extensions de navigateur, pas de copie manuelle. Un signal arrive sur Telegram et l'EA ouvre le trade dans votre terminal en quelques secondes. Le produit comprend deux composants : une application Windows qui écoute vos canaux Telegram, et cet Expert Advisor qui exécute les signaux dans votre terminal MT5. Une version MT4 est également disp
Astro Trade MT5
Indra Maulana
5 (6)
25% discount on the release of the tool: only for the next 3 buyers Send a message to receive a demo version. AstroTrade Trading Assistant AstroTrade is a comprehensive multi-functional trading utility developed for the MetaTrader 5 platform. It integrates essential tools for trade execution, risk management, and technical monitoring into a single unified interface. The application is designed to assist traders in managing their daily operations through a visual and structured environment. Vi
HINN MagicEntry Extra
ALGOFLOW OÜ
4.74 (19)
HINN MAGIC ENTRY – the ultimate tool for entry and position management! SIMPLE. FASTEST. INTUITIVE. MAX AUTOMATED. Place orders by selecting a level directly on the chart! full description   ::  demo-version  :: 60-sec-video-description Key features: - Market, limit, and pending orders - Automatic lot size calculation - Automatic spread and commission accounting - Unlimited partitial take-profits  - Breakeven and trailing stop-loss and take-profit  functions - Invalidation leves - Intuitive, a
Premium Trade Manager - Le panneau de trading avec un coach intégré Premium Trade Manager intègre un coach de trading directement dans votre graphique, avec un moteur d'exécution complet en dessous. Configurez le trade comme vous le faites toujours, puis laissez Max, votre coach de trading IA, analyser ce setup exact par rapport à votre compte en direct et vous donner un verdict clair avant de vous engager : le stop est-il discipliné, le risque est-il raisonnable, une publication à fort impact e
Exp COPYLOT CLIENT for MT5
Vladislav Andruschenko
3.97 (35)
Copieur professionnel de trades pour MetaTrader 5 Un copieur de trades rapide, professionnel et fiable pour MetaTrader . COPYLOT permet de copier des trades Forex entre les terminaux MT4 et MT5 avec prise en charge des comptes Hedge et Netting . La version MT5 de COPYLOT prend en charge : - MT5 Hedge → MT5 Hedge - MT5 Hedge → MT5 Netting - MT5 Netting → MT5 Hedge - MT5 Netting → MT5 Netting - MT4 → MT5 Hedge - MT4 → MT5 Netting Version MT4 Description complète + DEMO + PDF Comment acheter Comme
Anchor Trade Manager
Kalinskie Gilliam
5 (8)
Anchor: The EA Manager Your EAs cannot see each other, but Anchor can. Anchor gives you one place to coordinate your EAs, manage risk, and decide when trading is allowed. It works alongside the trading bots you already use without any changes to them. The Problem One EA opens a trade. Then another starts trading. The next thing you know, you wake up to multiple grids built across your account. Each EA may be doing exactly what it was designed to do, but together they can place far more risk on y
Power Candles Strategy Scanner - Outil de recherche de configurations multi-symboles à optimisation automatique Le Power Candles Strategy Scanner utilise le même moteur d'auto-optimisation que celui qui alimente l'indicateur Power Candles, pour chaque symbole de votre Market Watch, en parallèle. Un panneau vous indique quels symboles sont statistiquement négociables à l'instant, quelle stratégie est la plus performante pour chacun, la paire Stop Loss / Take Profit optimale, et vous alerte dès qu
Telegram To MT5 Ultra
Mirel Daniel Gheonu
5 (5)
Telegram To MT5 — Copieur de signaux Transformez les appels de trading de vos canaux Telegram en véritables ordres MT5 — automatiquement, sur autant de comptes que vous le souhaitez, avec le risque et les règles entièrement sous votre contrôle. Telegram To MT5 relie les canaux VIP / de signaux que vous suivez déjà sur Telegram à votre terminal MetaTrader 5. Une application de bureau compagnon gratuite lit les messages (même des canaux qui bloquent les bots), et cet Expert Advisor les exécute sur
Grid Manual MT5
Alfiya Fazylova
4.73 (22)
Grid Manual est un panneau de trading permettant de travailler avec une grille d'ordres. L'utilitaire est universel, possède des paramètres flexibles et une interface intuitive. Il fonctionne avec une grille d'ordres non seulement dans le sens des pertes, mais aussi dans le sens de l'augmentation des profits. Le commerçant n'a pas besoin de créer et de maintenir une grille d'ordres, l'utilitaire le fera. Il suffit d'ouvrir une ordre et "Grid Manual" créera automatiquement une grille de ordres po
Signal Trading View to MT5 Pro
Mirel Daniel Gheonu
4.5 (2)
Signal TradingView to MT5 Pro Automator Exécution professionnelle instantanée entre TradingView et MetaTrader 5 Automatisez votre stratégie de trading avec le pont de communication le plus robuste entre les alertes TradingView et l'exécution réelle sur MT5. Conçu pour les traders qui exigent vitesse, flexibilité et une gestion des risques impeccable, cet Expert Advisor transforme tout message d'alerte en un ordre au marché ou à cours limité précis. POINTS FORTS ET AVANTAGES Moteur d'analyse univ
The News Filter MT5
Leolouiski Gan
4.78 (23)
Ce produit filtre tous les conseillers experts et les graphiques manuels pendant les heures de publication des actualités, de sorte que vous n'avez pas à vous soucier des pics de prix soudains qui pourraient détruire vos configurations de trading manuelles ou les transactions entrées par d'autres conseillers experts. Ce produit est également livré avec un système de gestion des ordres complet qui peut gérer vos positions ouvertes et vos ordres en attente avant la publication de toute actualité.
Trade Dashboard MT5
Fatemeh Ameri
4.95 (132)
Trade Dashboard simplifies how you open, manage, and control your trades, with built-in lot size calculation. It allows you to execute trades, manage risk, and control positions directly on the chart, with tools such as partial close, breakeven, and trailing stop. Designed to reduce manual work and help you stay focused on your trading decisions. A demo version is available for testing. Detailed explanations of features are provided within the MQL5 platform. Installation instructions are include
Strategy Ledger Pro
Abdullah Uygar Tuna
5 (1)
Strategy Ledger Pro est un panneau d'analyse de compte en lecture seule pour MetaTrader 5. Il sépare les résultats du compte par Expert Advisor, stratégie, symbole et numéro magique. Manuel  détaillé avec chaque fonction expliquée. MetaTrader affiche un seul solde pour l'ensemble du compte. Quand plusieurs Expert Advisors tradent ensemble, ce solde ne montre pas ce que chacun a apporté. Strategy Ledger Pro lit l'historique du compte, reconstruit les positions clôturées, les attribue à des stra
Trade Copier Ultimate
Janitha Sandaruwan Amaradasa Wickramasingha Arachchilage
5 (5)
Trade Copier Ultimate - Telegram to MT5 Signal Copier Trade Copier Ultimate automatically copies Telegram trading signals into MetaTrader 5. The EA can read signal messages, detect the symbol, order type, entry price, Stop Loss, Take Profit levels and selected update commands, then execute or manage the trade in MT5 using your lot and risk settings. It is more than a basic Telegram to MT5 copier. TCU also supports Bot API and user-account Bridge workflows, Discord signal routing, local MT5 to MT
FUTURES ORDERFLOW FOOTPRINT CHART Professional OrderFlow EA for MetaTrader 5 Version 1.01| Professional tool for real traders | Institutional-Grade Visualization STRATEGY TESTER USERS - PLEASE SELECT EVERY 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 ROL
Envoyez-moi un message après l’achat pour recevoir le kit complet du manuel + un essai de 3 jours de l’API OpenAI pour tester les fonctionnalités d’IA + un autre cadeau bonus Le prix actuel est un tarif promotionnel limité pour la mise à jour du relancement d’août — sécurisez votre édition maintenant avant l’augmentation du prix. Prochain prix : $340 C’est complètement différent de tous les panneaux de trading que vous avez pu essayer ou voir sur le marché. C’est l’un des panneaux de trading al
Trade copier MT5
Alfiya Fazylova
4.59 (54)
Trade Copier est un utilitaire professionnel conçu pour copier et synchroniser les commandesentre les comptes de trading. Les commandes sont copiées du compte/terminal du fournisseur vers le compte/terminal du destinataire, qui sont installés sur le même ordinateur ou vps. PROMOTION - Si vous avez déjà acquis le "Trade copier MT5", vous pouvez obtenir le "Trade copier MT4" gratuitement (pour la copie MT4 > MT5 et MT4 < MT5). Pour obtenir des informations plus détaillées sur les conditions, veuil
Ultimate Extractor
Clifton Creath
5 (8)
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 EA manager also now available when you use cloud pro and above for free!! Ultimate Extractor transforms your MetaTrader 5 trading history into actionable insights with comprehensive analytics, interactive charts, and real-time performance tracking. What It Does Automa
Risk Manager Pro MT5 is an account protection Expert Advisor for traders who want strict risk control inside MetaTrader 5. The utility monitors your account equity, daily and weekly results, drawdown, open positions, trade count, consecutive losses, and trading hours. When a configured limit is reached, it can automatically close positions, cancel pending orders, stop other EAs, send notifications, or close the terminal. Instead of relying on discipline during a stressful trading session, you de
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
Welcome to ENTRY IN THE ZONE WITH SMC MULTI TIMEFRAME Entry In The Zone and SMC Multi Timeframe is a real-time market analysis tool based on Smart Money Concepts (SMC), designed to analyze market structure, price direction, and key trading zones. It supports both Single-Timeframe Analysis and Multi-Timeframe Analysis, providing a clearer view of the overall market structure across multiple timeframes, with real-time BUY / SELL signals that do not repaint. It is designed to help filter trading op
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
Filtrer:
Aucun avis
Répondre à l'avis