Trend Following EN

Complete description Trend Following

A mechanical trend following indicator, inspired by the style of John W. Henry (one of the pioneers of managed futures / CTA trading), built for MetaTrader 5. It combines a Donchian channel for identifying trend direction with an ATR-based trailing stop, filtered through ADX and higher-timeframe confirmation, all displayed through a complete, configurable visual dashboard.

Features:

  • Donchian + ATR Trailing Stop trend system — trend direction is determined by breakouts of the Donchian channel (highest high / lowest low over N bars), while an ATR-based trailing stop protects the position and follows the price as the trend progresses.
  • ADX signal quality filter — signals are validated only when trend strength (ADX) crosses a configurable minimum threshold, filtering out signals from sideways/directionless markets.
  • Higher Timeframe confirmation — a signal is considered valid only if the trend on a larger timeframe (determined automatically, e.g. M15→H1, H1→H4, H4→D1, etc.) confirms the same direction, using two exponential moving averages (fast/slow).
  • Automatically calculated Stop Loss & Take Profit — SL comes from the existing ATR trailing stop, while TP is projected using an independent ATR multiplier, in the direction of the current trend.
  • Automatic Risk:Reward with configurable minimum threshold — the panel shows in real time the R:R ratio resulting from the calculations (TP distance / SL distance) compared against the minimum acceptable ratio set by the user, colored green/orange depending on compliance.
  • On-chart dashboard with automatic scaling — a single input (font size) proportionally resizes the entire panel (title, signal, text, spacing), plus automatic scaling based on screen DPI — equally readable on a laptop, a 4K monitor, or a high-DPI screen.
  • Real semi-transparent background (alpha blending) — the panel is drawn on an ARGB canvas, not simulated with a flat color, so the chart remains visible underneath the panel.
  • Multi-channel alerts — pop-up Alert(), sound, and push notification to your phone on every new signal (BUY/SELL), without repeating alerts for the same bar/signal.
  • Live performance statistics — average calculation time (microseconds) displayed in the panel, useful for checking resource impact.
  • Optimized for performance — incremental updates of the auxiliary series (ATR/ADX) and throttling of panel text (only redraws what has changed), for minimal CPU usage even on charts with long history.
  • Full parameter validation on startup — the indicator refuses to run with invalid settings and explains the error in the log (Experts log).

2. Explanation of each input

=== Trend Following System ===

  • InpDonchianPeriod (default 20) — the number of bars used for the Donchian channel. When the closing price breaks the highest high / lowest low of the last N bars, the trend changes.
  • InpATRPeriod (default 14) — the ATR period used to calculate the trailing stop distance.
  • InpATRMult (default 3.0) — how many times ATR the stop is placed away from price. A higher value = a wider stop (fewer premature exits, but more risk per trade).

=== Signal Quality Filter ===

  • InpADXPeriod (default 14) — the ADX period, used to measure the strength of the current trend.
  • InpADXThreshold (default 20.0) — the minimum ADX level below which signals are ignored (market considered to lack a clear trend).
  • InpUseHigherTF (default true) — enables/disables higher-timeframe confirmation.
  • InpHTF_FastMA (default 50) — the fast moving average period, calculated on the higher timeframe.
  • InpHTF_SlowMA (default 200) — the slow moving average period, on the higher timeframe. If the fast one is above the slow one → up trend confirmed, otherwise → down trend confirmed.

=== Stop Loss / Take Profit ===

  • InpTPMult (default 6.0) — the ATR multiplier for the Take Profit distance from price (projected in the direction of the trend). With SL at 3×ATR and TP at 6×ATR, the theoretical R:R is 1:2.
  • InpMinRR (default 2.0) — the minimum Risk:Reward ratio you want to consider acceptable. It's compared in the panel against the actual R:R, calculated from the real SL/TP distances.

=== Visuals & Alerts ===

  • InpShowDashboard (default true) — shows/hides the panel on the chart.
  • InpCorner (default CORNER_LEFT_UPPER) — the chart corner the panel is anchored to.
  • InpPanelX / InpPanelY (default 12 / 20) — the panel's distance from the edges of the chosen corner (pixels, before scaling).
  • InpEnableAlert (default true) — enables the Alert() pop-up on a new signal.
  • InpEnableSound (default true) — plays a sound on a new signal.
  • InpEnablePush (default false) — sends a push notification to your phone (requires MetaQuotes ID configured in the terminal).
  • InpShowPerfStats (default true) — displays the average calculation time and current font size in the panel (useful for debugging/performance).

=== Text Size & Dashboard Scaling ===

  • InpFontSize (default 9, between 6-24) — the panel's text size; the entire panel geometry (width, height, spacing) scales automatically and proportionally with this input, plus screen DPI.

3. Trading methods with this indicator

a) Classic trend following (breakout + trailing)
Enter when the BUY/SELL arrow appears (Donchian breakout confirmed by ADX and the higher timeframe), place your SL at the trailing stop level shown in the panel, and let the position run — manually moving the SL as the ATR Trailing Stop line advances. Exit when the line changes color (opposite signal) or price dictates otherwise.

b) Entry with R:R confirmation (more conservative)
Wait for the BUY/SELL signal, but only open the position if the R:R row in the panel is green (actual R:R ≥ InpMinRR). If it's orange, skip the signal or adjust InpTPMult/InpATRMult until the ratio becomes favorable. Useful for automatically filtering out signals with a poor risk/reward profile.

c) Fixed SL/TP at entry (set-and-forget)
At the moment of the signal, note the Stop Loss and Take Profit values from the panel and place the order with both levels fixed (not trailing). Simple, suitable for those who don't want to actively monitor the position.

d) Additional filtering with trend strength (ADX)
Only take signals where the "Trend strength (ADX)" row shows STRONG, ignoring WEAK/MODERATE, to catch only the highest-momentum moves — reduces the number of trades, but (potentially) increases the success rate per trade.

e) Strict multi-timeframe confirmation
Enable InpUseHigherTF and only trade when the "Higher-TF confirmation" row shows YES — filters out signals going against the larger trend, reducing false positives on short ranges.

f) Scalping/pyramiding on trend continuation
On smaller timeframes, add additional positions each time the trend remains active and ADX is rising, using the new trailing stop level as a common SL for all positions — a more advanced technique, with higher risk.

4. Disclaimer / Notes

  • This indicator is a technical analysis tool, not a guarantee of profit. The signals generated (Donchian + ATR + ADX + HTF confirmation) reflect a mechanical trend-following methodology, but past performance (backtested or live) does not guarantee future results.
  • Financial markets involve real risk of capital loss. No combination of parameters eliminates risk; use your own risk management (position sizing, capital at risk per trade) regardless of the InpMinRR/InpTPMult values.
  • The SL/TP shown in the panel are calculated, not automatically placed — this file is an indicator, not an Expert Advisor; it does not open, modify, or close orders. The user must place trades and SL/TP levels manually (or through a separate EA).
  • Demo account testing and backtesting in the Strategy Tester are recommended before live use, on the desired symbol/timeframe, to validate the default settings in your market context.
  • Higher-timeframe confirmation requires sufficient historical data on that TF; on symbols/brokers with limited history, some signals may be temporarily unavailable (WARNING in the log).
  • Push alerts require correctly configuring the MetaQuotes ID in the terminal; sounds require the alert2.wav file to be available in the terminal (included by default in MT5).

Produits recommandés
Classic SNR MetaTrader 5 Expert Advisor | Multi-Symbol Support & Resistance Trading with Trend-Based Logic Overview Classic SNR Breakout EA is a professional trading robot that identifies structural Support & Resistance levels using daily swing points and executes trades based on H1 price action relative to these levels. The EA applies   dual logic : in an uptrend, it sells on H1 rejection below an SNR level; in a downtrend, it buys on H1 rejection above an SNR level. Breakout confirmations are
Gold EA: Proven Power for 1-Minute Gold Trading Transform your trading with our Gold EA, meticulously crafted for 1-minute charts and delivering over 2000% growth in 5 years from just $100-$1000 . No Martingale, No AI Gimmicks : Pure, time-tested strategies with robust money management, stop loss, and take profit for reliable performance across multiple charts. Flexible Trading Modes : Choose Fixed Balance for safe profits, Mark IV for bold growth, or %Balance for high rewards—combine Mark IV an
MACD Sniper Pro
Noppawat Tumjai
MACD Sniper Pro is an advanced automated trading system designed for traders seeking high-precision entries and robust risk management. By combining the classic momentum of MACD Crossover with a strict ADX Volatility Filter and Dynamic ATR Management , this EA completely eliminates emotional trading and filters out dangerous flat/sideways markets. Unlike standard MACD indicators that suffer during consolidation, MACD Sniper Pro verifies trend strength before entering and protects your capital us
FREE
Market Maestro: Your Ideal Partner for Automated Forex Trading If you're looking for a reliable assistant for trading in the currency market, Market Maestro is exactly what you need. This modern Forex bot is built using the latest technologies and algorithms, allowing it to effectively analyze market data and make informed trading decisions in real-time. Key Features of Market Maestro 1. Multicurrency Capability for Broad Opportunities Market Maestro can work with a wide range of currency pairs,
Eldorado Scalper
Dmitriq Evgenoeviz Ko
Eldorado Scalper: Премиум-алгоритм для торговли XAUUSD Eldorado Scalper — это многомерная алгоритмическая система, созданная для избирательной торговли золотом (XAUUSD) на таймфрейме M5. В основе подхода лежит анализ рыночной матрицы, объединяющей ценовую динамику, импульс, волатильность, ликвидность и сессионную структуру. Система не реагирует на хаотичные движения, а фильтрует рыночный шум. Ее цель — не максимальное число сделок, а точечное распознавание структурированных возможностей с высок
Phantom Edge SMC
Nattapon Chuekamhod
Phantom Edge SMC — The Ultimate Smart Money Indicator for MT5 Tired of manually drawing structures while trading SMC or ICT concepts? Let Phantom Edge SMC do the heavy lifting for you. Key Features Internal & Swing Structure: Automatically detects BOS and CHoCH across two structural levels. Order Blocks (OB): Identifies Internal and Swing OBs with automated mitigation tracking. Equal Highs / Lows: Highlights EQH / EQL to pinpoint Liquidity pools. Fair Value Gaps (FVG): Displays FVGs with
RSI Cortex Ai
Michael Prescott Burney
RSI Cortex AI for MT5 RSI Cortex AI is a MetaTrader 5 indicator designed to help traders analyze momentum using a multi-factor ranking model instead of relying only on a fixed RSI threshold approach. It combines momentum features, directional ranking, confidence scoring, and adaptive filtering into a clean TradingView-style workspace for chart-based analysis. What the indicator does RSI Cortex AI evaluates momentum using a broader feature set than a standard RSI line. It is designed to help trad
US500 Scalper
Sergey Batudayev
Le S&P 500 Scalper Advisor est un outil innovant conçu pour les traders souhaitant trader avec succès l'indice S&P 500. Cet indice est l'un des indicateurs les plus utilisés et les plus prestigieux du marché boursier américain, regroupant les 500 plus grandes entreprises des États-Unis. Particularités : Solutions de trading automatisées :       Le conseiller s'appuie sur des algorithmes avancés et des analyses techniques pour adapter automatiquement la stratégie aux conditions changeantes du mar
The Bitcoin Reaper
Profalgo Limited
3.71 (34)
PROMOTION DE LANCEMENT : Seul un nombre très limité d'exemplaires sera disponible au prix actuel ! Prix ​​final : 999$ NOUVEAU (à partir de 349$) --> OBTENEZ 1 EA GRATUITEMENT (pour 2 numéros de compte commercial). Offre combinée ultime     ->     cliquez ici REJOIGNEZ LE GROUPE PUBLIC :   Cliquez ici   LIVE SIGNAL LIVE SIGNAL V2.0 UPDATE 2.0 INFO Bienvenue sur BITCOIN REAPER !   Après l'énorme succès du Gold Reaper, j'ai décidé qu'il était temps d'appliquer les mêmes principes gagnants au mar
ONNYX INDICATOR version 1.14 Indicateur d'offre et de demande pour MetaTrader 5 avec signaux confirmés sans repaint. Il détecte les pivots confirmés, adapte la largeur des zones avec l'ATR, affiche leur qualité en pourcentage et trace des flèches BUY/SELL sur bougies clôturées. FONCTIONS PRINCIPALES - Zones d'offre et de demande avec score en pourcentage dans la zone. - Grandes flèches BUY/SELL après clôture de la bougie. - Filtre de tendance EMA et confirmation optionnelle de rejet. - Panneau d
Magic EA MT5
Kyra Nickaline Watson-gordon
Magic EA is an Expert Advisor based on Scalping, Elliot Waves and with filters such as RSI, Stochastic and 3 other strategies managed and decided with the robot smartly. Large number of inputs and settings are tested and optimized and embedded in the program thus inputs are limited and very simple. Using EA doesn't need any professional information or Forex Trading Knowledge. EA can trade on all symbols and all time frames, using special and unique strategies developed by the author. The EA w
Cyclone Intraday
Mikhail Mitin
5 (1)
How the EA works (simple explanation) Trades on M5 timeframe Uses H1 timeframe to analyze global market context Analyzes 2 or 3 timeframes simultaneously On each timeframe: Checks price position relative to one or two Moving Averages Evaluates MA angle and distance between price and MA Entry logic is based on trend + volatility conditions , not on random signals The full algorithm is illustrated in the screenshots. Recommended usage Symbol: EURUSD Timeframe: M5 Trading style: Intraday
À propos de l'indicateur Ce indicateur est basé sur des simulations de Monte Carlo des prix de clôture d'un instrument financier. Par définition, Monte Carlo est une technique statistique utilisée pour modéliser la probabilité de différents résultats dans un processus impliquant des nombres aléatoires basés sur des résultats observés précédemment. Comment cela fonctionne-t-il ? Ce indicateur génère plusieurs scénarios de prix pour un actif en modélisant les variations de prix aléatoires au fil
AurumPulse Pro Gold
Mohamad Syamir Bin Senin
AurumPulse Pro – Smart Intraday Gold Trading EA AurumPulse Pro is a professional XAUUSD intraday trading robot designed for real-tick market conditions, combining momentum logic, dynamic trade management, and session-based execution to capture high-probability gold movements on lower timeframes. About AurumPulse Pro AurumPulse Pro is a fully automated Expert Advisor for MetaTrader 5 , specifically optimized for Gold (XAUUSD) trading under real tick conditions . This EA is designed for traders
| Fully-automated Smart Money Concept (ICT) inspired trading solution with multi-strategy capabilities | Built by a grid trader >> for grid traders.  This is MT5 version, click  here  for  Blue CARA MT4  (settings and logics are same in both versions)     Real monitoring signal  -->  Cara Gold Intro Blue CARA EA   ('CARA') - short for  C omprehensive  A lgorithmic   R esponsive   A dvisor is a next-gen  multi-currency    multi-timeframe  EA base on the widely known (and perhaps the most popul
RBreaker
Zhong Long Wu
RBreaker Gold Indicators est une stratégie de trading intraday à court terme pour les contrats à terme sur l'or, qui combine deux approches : le suivi de tendance et le retournement intraday. Elle permet non seulement de capturer les profits dans les marchés en tendance, mais aussi de prendre des bénéfices en temps opportun lors des retournements de marché et d'ouvrir une position en sens inverse. Cette stratégie a été classée pendant 15 années consécutives parmi les dix stratégies de trading l
Institutional FX Cross Rate Heatmap Stop trading one pair blindly. Start reading the full currency market with structure, speed, and clarity. The Institutional FX Cross Rate Heatmap with Currency Strength Ranking is a professional MetaTrader 5 dashboard indicator designed to help forex traders instantly identify which currencies are gaining strength, which currencies are weakening, and which cross pairs deserve attention. Instead of jumping from chart to chart, this indicator gives you a comple
Tma Poc Gold
Ignacio Agustin Mene Franco
POC + TMA SCALPER GOLD - Expert Advisor Professional DESCRIPTION: Automated trading system designed specifically for XAU/USD, combining Point of Control (POC) with Triangular Moving Average (TMA) to identify high-volume and trending zones. It uses advanced risk management with dynamic trailing stops and an intelligent grid system. TECHNICA
Introduction to the Manual Backtesting Indicator on MQL5 The MetaTrader platform provides an excellent backtesting tool for evaluating Expert Advisors (EAs). However, when it comes to manually backtesting a strategy to assess its effectiveness, this tool has some limitations: You cannot manually draw zones or trend lines while in backtesting mode. You cannot switch timeframes to check time alignment. For example, if my strategy requires additional confirmation from a higher timeframe (HTF), this
Your Trend Friend
Luigi Nunes Labigalini
5 (1)
The trend is your friend! Look at the color of the indicator and trade on that direction. It does not  repaint. After each candle is closed, that's the color of the trend. You can focus on shorter faster trends or major trends, just test what's most suitable for the symbol and timeframe you trade. Simply change the "Length" parameter and the indicator will automatically adapt. You can also change the color, thickness and style of the lines. Download and give it a try! There are big movements w
HTB Throne Gold Scalper EA est un système de trading automatique conçu pour XAUUSD (or), fonctionnant sur le timeframe M5. Ce système exécute des opérations de scalping intraday en se basant sur des règles prédéfinies et des paramètres de gestion des risques. Cet EA analyse la structure du marché et les conditions de volatilité pour sélectionner les opportunités de trading. Chaque opération est gérée individuellement. Il n’utilise ni stratégie de grille ni technique Martingale. Gestion des risqu
Viking Alpha DAX Ivar Edition
Valdeci Carlos Dos Passos Albuquerque
Viking Alpha DAX — Germany 40 Expert Advisor for MetaTrader 5 LAUNCH PROMO Only 10 copies at launch price. Price increases with each sale. Launch price: $297 Next price: $497 Final price: $997 Live Performance: FX Blue — Vikingtradingbots What Makes Viking Alpha DAX Different Most DAX robots fail for one simple reason: they treat the Germany 40 like a forex pair. It isn't. The DAX has a heartbeat — a specific rhythm tied to the Frankfurt Stock Exchange opening, the European session structure, an
Gold speedster
Simon Aderinola Akinteye
Gold Speedster EA — Precision. Speed. Profitability. THE EA MYFXBOOK LINK NOW WORKING Up almost 3% in just few days. MyFxbook link :                https://www.myfxbook . com/members/CannyFX/gold-speedster/12075079 Kindly remember to clear the space just before com/ above when pasting the link in your browser. Unleash the power of intelligent automated trading with Gold Speedster , a next-generation Expert Advisor engineered exclusively for XAUUSD (Gold) . Built for traders who demand performa
Le niveau Premium est un indicateur unique avec une précision de plus de 80 % des prédictions correctes ! Cet indicateur a été testé par les meilleurs Trading Specialists depuis plus de deux mois ! L'indicateur de l'auteur que vous ne trouverez nulle part ailleurs ! À partir des captures d'écran, vous pouvez constater par vous-même la précision de cet outil ! 1 est idéal pour le trading d'options binaires avec un délai d'expiration de 1 bougie. 2 fonctionne sur toutes les paires de devises
Divergent Stochastic Filter II Catch Reversals Early, Filter Noise, Trade with Confidence The Edge: Why This Stochastic is Different  Every trader knows the Stochastic oscillator. But knowing when to trust its signals, that's the real challenge. The Divergent Stochastic Filter II transforms this classic indicator into a precision reversal detection system by adding critical elements: divergence intelligence, signal filtering and exhaustion detection.  While standard Stochastic oscillators fire s
Noize Absorption Index - is the manual trading system that measures the difference of pressure between bears forces and bulls forces. Green line - is a noize free index that showing curent situation. Zero value of index shows totally choppy/flat market.Values above zero level shows how powerfull bullish wave is and values below zero measures bearish forces.Up arrow appears on bearish market when it's ready to reverse, dn arrow appears on weak bullish market, as a result of reverse expectation.
HMA Scalper Pro EA
Vladimir Shumikhin
5 (2)
HMA Scalper Pro EA — Conseiller Expert Automatique pour MetaTrader 5 basé sur l'indicateur Hull Moving Average (HMA) APERÇU HMA Scalper Pro EA est un robot de trading professionnel (Expert Advisor) pour MetaTrader 5 qui négocie dans la direction du Hull Moving Average (HMA). L'indicateur HMA détermine la direction actuelle de la tendance, et le EA ouvre des transactions dans cette direction, complétées par la gestion du capital Smart Risk, le trading en grid adaptatif, le trailing stop, le bre
Aegis DAX Scalper EA is a MetaTrader 5 Expert Advisor designed for short-term trading on GER40/DAX40. The system combines a M5 trend filter with M1 pullback entries, RSI confirmation, candle structure analysis, spread filtering, volatility filtering and automated trade management. The EA does not use grid, martingale or recovery basket logic. Each trade is opened with a real stop loss and managed through break-even and trailing stop rules. Version 1.01 includes improved compatibility with di
Transformez votre Trading de l'Or ! Libérez une croissance exponentielle et durable avec le "Gold Martingale Robot EA" (MT5) Êtes-vous fatigué de regarder constamment les graphiques ? Stressé à chaque fois que des nouvelles économiques à fort impact sont publiées ? Ou peut-être avez-vous fait des bénéfices pour ensuite les voir disparaître à cause de positions maintenues pendant le week-end ? Arrêtez les essais et erreurs ! Voici le Gold Martingale Robot EA — le système de trading MT5 automat
CyberTradeTHxAI Gold Sniper MT5 Professional Gold Trading Signal Indicator for MetaTrader 5 CyberTradeTHxAI Gold Sniper MT5 is a professional-grade Gold (XAUUSD) trading indicator developed to identify high-probability Buy and Sell opportunities using trend analysis, pullback confirmation, and intelligent market structure detection. Designed for both beginner and advanced traders, the indicator automatically calculates optimal Entry Zones, Stop Loss, and multiple Take Profit levels while provid
Les acheteurs de ce produit ont également acheté
Neuro Poseidon MT5
Daria Rezueva
4.85 (54)
Neuro Poseidon is a new indicator by Daria Rezueva. It combines precise trading signals with adaptive TP/SL levels - creating best possible trades as a result! Message me and get  Neuro Poseidon Assistant  as a gift to automize your trading process! What makes it stand out? 1. Proven profitability on all assets and timeframes 2. Only confirmed BUY and SELL signals present on the chart 3. Adaptive TP & SL levels generated by the software for each trade 4. Easy to understand - suitable for al
La légende est de retour : Entry Points Pro 10. La relance de l'indicateur légendaire qui s'est maintenu 3 ans dans le Top-3 du MQL5 Market. Des centaines d'avis enthousiastes (589 sur les deux versions), des milliers de traders l'utilisent chaque jour, 31 000+ téléchargements de la démo   MT4+MT5 . J'ai lu chacun de vos avis publiés en cinq ans — et au lieu de promettre, j'ai intégré les réponses directement dans la version 10. Par un auteur présent sur les marchés depuis 1999, qui tient à l'ho
ARICoins
Temirlan Kdyrkhan
ARICoin is a powerful trading companion designed to generate high-probability entry signals with dynamic TP/SL/DP levels based on volatility. Built-in performance tracking shows win/loss stats, PP1/PP2 hits, and success rates all updated live. Key Features: Buy/Sell signals with adaptive volatility bands Real-time TP/SL/DP levels based on ATR Built-in MA Filter with optional ATR/StdDev volatility Performance stats panel (Success, Profit/Loss, PP1/PP2) Alerts via popup, sound, push, or email Cust
M1 Quantum MT5
Hamed Dehgani
4.27 (11)
Signaux de Trading en Direct avec M1 Quantum : Signal   (L’opération est exécutée automatiquement par le Quantum Trade Assistant , inclus gratuitement avec ce produit.) Plan de prix : Prix actuel : $169 (Offre de lancement) Prochain prix prévu : $189 Prix de vente prévu : $299 Note du développeur : Après votre achat, veuillez me contacter pour recevoir le dernier fichier de configuration recommandé (Set File) , des conseils d'utilisation, ainsi qu'une invitation au groupe d'assistance VIP , où
Divergence Bomber
Ihor Otkydach
4.9 (92)
De temps en temps, je trade moi-même selon ce système. Découvrez mon trading manuel « BOMBER » sur un compte réel : LIVE SIGNAL Chaque acheteur de cet indicateur reçoit également gratuitement : L’outil exclusif « Bomber Utility », qui accompagne automatiquement chaque opération de trading, fixe les niveaux de Stop Loss et de Take Profit, et clôture les positions selon les règles de la stratégie Des fichiers de configuration (set files) pour adapter l’indicateur à différents actifs Des set files
Quantum TrendPulse
Bogdan Ion Puscasu
5 (25)
Présentation de   Quantum TrendPulse   , l'outil de trading ultime qui combine la puissance de   SuperTrend   ,   RSI   et   Stochastic   dans un seul indicateur complet pour maximiser votre potentiel de trading. Conçu pour les traders qui recherchent précision et efficacité, cet indicateur vous aide à identifier les tendances du marché, les changements de dynamique et les points d'entrée et de sortie optimaux en toute confiance. Caractéristiques principales : Intégration SuperTrend :   suivez f
ARIPoint
Temirlan Kdyrkhan
1 (1)
ARIPoint is a powerful trading companion designed to generate high-probability entry signals with dynamic TP/SL/DP levels based on volatility. Built-in performance tracking shows win/loss stats, PP1/PP2 hits, and success rates all updated live. Key Features: Buy/Sell signals with adaptive volatility bands Real-time TP/SL/DP levels based on ATR Built-in MA Filter with optional ATR/StdDev volatility Performance stats panel (Success, Profit/Loss, PP1/PP2) Alerts via popup, sound, push, or email Cu
TrendMaestro5
Stefano Frisetti
note: this indicator is for METATRADER4, if you want the version for METATRADER5 this is the link:  https://www.mql5.com/it/market/product/108106 TRENDMAESTRO ver 2.5 TRENDMAESTRO recognizes a new TREND from the start, he never makes mistakes. The certainty of identifying a new TREND is priceless. DESCRIPTION TRENDMAESTRO identifies a new TREND in the bud, this indicator examines the volatility, volumes and momentum to identify the moment in which there is an explosion of one or more of these da
RelicusRoad Pro MT5
Relicus LLC
4.96 (24)
RelicusRoad Pro : Système d'Exploitation Quantitatif du Marché 70% DE RÉDUCTION ACCÈS À VIE (DURÉE LIMITÉE) - REJOIGNEZ 2 000+ TRADERS Pourquoi la plupart des traders échouent-ils même avec des indicateurs "parfaits" ? Parce qu'ils tradent des concepts isolés dans le vide. Un signal sans contexte est un pari. Pour gagner, il faut de la CONFLUENCE . RelicusRoad Pro est un Écosystème Quantitatif complet . Il cartographie la "Fair Value Road", distinguant le bruit des cassures structurelles. Arrête
Azimuth Pro
Ottaviano De Cicco
5 (7)
Azimuth Pro V2: Synthetic Fractal Structure and Confirmed Entries for MT5 Overview Azimuth Pro is a multi-level swing structure indicator by Merkava Labs . Four nested swing layers, swing-anchored VWAP, ABC pattern detection, three-timeframe structural filtering, and closed-bar confirmed entries — one chart, one workflow from micro-swings to macro-cycles. This is not a blind signal product. It is a structure-first workflow for traders who care about location, context, and timing. ️ Summer Sale
KURAMA GOLD SIGNAL PRO (MT5) — Filtre à 7 couches · TP/SL automatique · Score de qualité · Sauvegarde de l'historique des signaux | Système de trading complet pour le XAUUSD Pas de repeint en temps réel. À l'instant où un signal apparaît, la flèche, l'entrée, le TP et le SL sont verrouillés sur place et ne bougent plus jamais ensuite. Ce que vous tradez, c'est ce signal en temps réel. Et dans la v7.20, chaque signal réellement envoyé est sauvegardé automatiquement et restauré à l'identique aprè
Btmm state engine pro
Garry James Goodchild
5 (4)
BTMM State Engine Pro by G-Labs — Beat The Market Maker indicator for MetaTrader 5. Asian session range, London and New York kill zones, level progression (L1/L2/L3), peak formation detection (PFH/PFL), entry signals, and a multi-pair scanner from one chart. Stop scanning charts one pair at a time. The State Engine tracks the BTMM daily cycle automatically — Asian box, room boundaries, level blocks, peak formations, and filtered entries — while the scanner dashboard shows level, peak status, d
L'indicateur UZFX {SSS} Scalping Smart Signals v4.0 MT5 est un indicateur de trading haute performance sans « repaint », conçu pour les scalpers, les day traders et les swing traders qui recherchent des signaux précis et en temps réel sur des marchés très volatils. Développé par (UZFX-LABS), cet indicateur combine l'analyse de l'action des prix, la confirmation de tendance et un filtrage intelligent pour générer des signaux d'achat et de vente à forte probabilité, des signaux d'alerte et des opp
Precision Spike Detector
Francisco Mandomo Simbine
5 (2)
Precision Spike Detector V3 – Institutional-Grade AI Trading System Attention: The price increases by US$50 for every 10 purchases.  Final price: US$599 Precision Spike Detector V3   is a   state-of-the-art, institutional-grade market analysis system   for   MetaTrader 5 , designed to detect   high-probability market movements   in synthetic indices such as   Boom, Crash, GainX, and PainX . After purchase, please contact me through the MQL5 messaging system to receive the order management tool
SkyHammer Signal Pro Indicateur professionnel de signaux de tendance sans repaint, avec niveaux Entry, SL et TP verrouillés SkyHammer Signal Pro est un indicateur de tendance et de momentum structuré, conçu pour les traders qui recherchent des signaux clairs, fixes et vérifiables. Il fonctionne le mieux sur les timeframes courts, comme M1 et M5 . L’indicateur ne cherche pas à prédire les sommets ou les creux du marché. Il attend plutôt une structure de marché confirmée, une direction de tendance
Trend Forecaster
Alexey Minkov
5 (8)
Trend Forecaster is a MetaTrader 5 indicator that combines breakout signals, possible reversal area analysis, market range data and a visual statistics panel in one chart workspace. It shows Buy and Sell signals, tracks Average Range and Current Range, and can automatically adjust Sensitivity for the current symbol and timeframe. Manual Sensitivity control is also available. The indicator can be used on Forex pairs, metals, stocks, indices and cryptocurrencies. Different timeframes are supported
Zain Gold ScalpingV5
Ahmed Gamal Abdel Nasser Mohamed
# Indicateur Zen Gold Scalping V5 - Indicateur de trading Forex et Or multi-unités de temps **Zen Gold Scalping V5** est un outil d'analyse technique complet et professionnel, spécialement conçu pour la plateforme MetaTrader 5 (MT5). Cet indicateur est adapté aux besoins des traders particuliers et professionnels, offrant une combinaison exceptionnelle de rapidité, d'adaptabilité multi-unités de temps et d'une précision analytique supérieure. Que vous recherchiez des mouvements de prix à forte
The Oracle Pro
Ottaviano De Cicco
5 (1)
The Oracle Pro: Synthetic Multi-Timeframe Bias Engine for MT5 ️ Summer Launch Offer — Get The Oracle Pro for USD 199 (early buyers). Price rises with traction; final price USD 399. The Oracle Pro is a premium multi-timeframe bias engine for MetaTrader 5, built for demanding and professional traders. It answers one question with discipline: what is the directional bias on each timeframe right now, how strong is it, and how much do the timeframes agree? Everything is computed on closed bars only
Advanced Supply Demand MT5
Bernhard Schweigert
4.53 (15)
La meilleure solution pour tout commerçant débutant ou expert ! Cet indicateur est un outil de trading unique, de haute qualité et abordable car nous avons intégré un certain nombre de fonctionnalités propriétaires et une nouvelle formule. Avec cette mise à jour, vous pourrez afficher des zones à double horaire. Vous pourrez non seulement afficher un TF plus élevé, mais afficher les deux, le graphique TF, PLUS le TF supérieur : AFFICHAGE DES ZONES NICHÉES. Tous les traders Supply Demand vont ado
A2SR pour MT5 Indicateur : Offre et demande réelles automatisées (S/R). + Instruments de trading. Product description in English here. --   Guidance   : -- at   https://www.mql5.com/en/blogs/post/734748/page4#comment_16532516 -- and  https://www.mql5.com/en/users/yohana/blog Puissant, fiable et rapide pour des décisions de trading plus éclairées. + Objets compatibles avec les EA. Avantages clés : Niveaux SR réels avancés (sans retard, sans réaffichage) Après des années de fiabilité éprouvée
Bill Williams Advanced
Siarhei Vashchylka
5 (11)
Bill Williams Advanced is designed for automatic chart analysis using Bill Williams' "Profitunity" system. The indicator analyzes four timeframes at once. Manual (Be sure to read before purchasing) Advantages 1. Analyzes the chart using Bill Williams' "Profitunity" system. Signals are displayed in a table in the corner of the screen and on the price chart. 2. Finds all known AO and AC signals, as well as zone signals. Equipped with a trend filter based on the Alligator. 3. Finds "Divergence Bar
Ziva LSE Pro
Hassan Abdullah Hassan Al Balushi
ZIVA LSE Pro: Trade the Flow, Not the Noise ZIVA LSE Pro was developed around a simple belief: professional traders do not need more random signals; they need better context. This workflow reflects the ZIVA approach to filtering market noise and focusing on the liquidity and structural mechanics that influence price behavior. Most indicators treat the market like a static picture. ZIVA LSE Pro is built to read it as a dynamic environment where liquidity, structure, volatility, and execution con
ICT PO3 (Power of 3) AMD Protocol Framework Indicator True Time & Structure Integration   |  Non-Repainting | Real-Time  | Multi-Asset  | MT4 Version Available Full Setup Guide & Strategy Playbook: https://www.mql5.com/en/blogs/post/768683 MT4 Version: https://www.mql5.com/en/market/product/171742 Indicator Overview The ICT PO3 AMD Protocol Framework is a complete structural overlay for MetaTrader 5 that maps the True Daily Cycle directly onto your lower-timeframe execution chart. It projects
Présentation       Quantum Breakout PRO   , l'indicateur révolutionnaire MQL5 qui transforme la façon dont vous négociez les zones d'évasion ! Développé par une équipe de traders expérimentés avec une expérience commerciale de plus de 13 ans,       Évasion quantique PRO       est conçu pour propulser votre parcours commercial vers de nouveaux sommets grâce à sa stratégie de zone de discussion innovante et dynamique. Quantum Breakout Indicator vous donnera des flèches de signalisation sur les z
Connix MT5
Garry James Goodchild
5 (1)
Connix SMC by G-Labs — Smart Money Concepts and ICT multi-pair scanner for MetaTrader 5. Order blocks, fair value gaps, break of structure, change of character, VWAP, premium and discount range, and multi-timeframe dashboard from one chart. Connix scans multiple symbols across configurable timeframes and shows market structure status in an interactive table while drawing the same structures on the active chart. It is an analytical toolkit — you control every setting; it does not place trades a
Obrigado por adquirir o Green Spike Detector V2. Caso precise de ajuda com a instalação, ativação, atualizações ou suporte técnico, entre em contato comigo pelo WhatsApp: +258 86 756 5485. Detector de picos Verde V2 Sistema de Detecção de Picos - Versão 2 Indicador que não repinta, otimizado para mercados de alta volatilidade, como Boom, Crash e Índices de Volatilidade. Detecta movimentos de momentum fortes (picos) com baixa latência. O que mudou na versão 2: O algoritmo é 47% mais preciso que
Gem SIGNAL
Shengzu Zhong
5 (1)
GEM Signal Pro GEM Signal Pro est un indicateur de suivi de tendance pour MetaTrader 5, conçu pour les traders qui souhaitent des signaux plus clairs, des configurations de trade plus structurées et une gestion du risque plus pratique directement sur le graphique. Au lieu d’afficher simplement une flèche, GEM Signal Pro aide à présenter l’idée complète du trade de manière plus claire et plus lisible. Lorsque les conditions sont confirmées, l’indicateur peut afficher le prix d’entrée, le stop los
PrimeScalping
Temirlan Kdyrkhan
PrimeScalping is a powerful trading companion designed to generate high-probability entry signals with dynamic TP/SL/DP levels based on volatility. Built-in performance tracking shows win/loss stats, PP1/PP2 hits, and success rates — all updated live. Key Features: Buy/Sell signals with adaptive volatility bands Real-time TP/SL/DP levels based on ATR Built-in MA Filter with optional ATR/StdDev volatility Performance stats panel (Success, Profit/Loss, PP1/PP2) Alerts via popup, sound, push, or e
AriX
Temirlan Kdyrkhan
1 (4)
AriX Indicator for MT5 A powerful trend-following and signal-evaluation tool AriX is a custom MT5 indicator that combines Moving Averages and ATR-based risk/reward logic to generate clear buy/sell signals. It visualizes dynamic SL/TP levels, evaluates past trade outcomes, and displays win/loss statistics in a clean on-chart panel. Key features include: Buy/Sell signals based on MA crossovers ATR-based SL/TP1/TP2/TP3 levels with visual lines and labels Signal outcome tracking with real-time stat
QUASAR SYNC 3TF: The Ultimate Pro HUD Dashboard A next-generation MTF indicator combining perfect visibility with high-precision trend analysis. [ 5 Core Features ] 100% Non-Repaint: Arrows and signals never repaint, disappear, or shift after the candle closes. 3TF Sync System: Instantly analyzes the current and two higher timeframes. The panel and candles highlight brightly when all 3 trends perfectly align. 10 Premium Themes: Click the "THEME" button to instantly switch between 10 beautiful U
Plus de l'auteur
Atlas Enterprise — Institutional Matrix Dashboard Atlas Terminal System is a professional, high-performance institutional dashboard designed to bring the analytical power of a Bloomberg Terminal directly to your MetaTrader 5 chart. Instead of cluttering your screen with multiple indicators, Atlas processes market data through 4 specialized mathematical engines simultaneously, presenting a clean, unified decision matrix in real-time.   Whether you are a day trader or a swing trader, Atlas elimin
ZigZag Maturity — Multi-Timeframe Swing Maturity & Reversal Probability Dashboard Overview ZigZag Maturity is a multi-timeframe indicator for MetaTrader 5 that answers a single question, one that matters for any technical trader: “ How ‘ mature ’ (close to exhaustion) is the current swing, on every timeframe I follow? ” Instead of a classic ZigZag that just draws lines on the chart, this indicator builds its own ZigZag on every activated timeframe, compares it statistically against its own hist
Integrated Bloomberg Dashboard — Your Market Decision Cockpit Why It Matters Every trader eventually runs into the same problem: too many charts, too many windows, too much fragmented information . You open 9 timeframes, apply 10 indicators to each, and try to keep track of what each one says, on each interval, in real time. It's exhausting, it's slow, and worst of all — it's easy to lose sight of exactly the combination of signals that mattered. Integrated Bloomberg Dashboard solves exactly tha
STRBTV Pro MTF — Detailed Description STRBTV stands for "Sell The Rally, Buy The Valley" — an MT5 indicator (v2.10, by Marian Beceanu) built around multi-timeframe MACD convergence/divergence , with a "sniper entry" logic based on Support/Resistance and a built-in risk-management dashboard. General Concept The indicator works on two levels: Higher timeframe (HTF) — looks for convergence between price and MACD on the swing highs/lows of that timeframe. A confirmed HTF convergence is treated as t
Forex Uncovered PRO v4.60 Professional Support & Resistance Breakout Indicator for MetaTrader 5 Overview Forex Uncovered PRO v4.60 is a professional Support & Resistance Breakout indicator built for MetaTrader 5. Unlike traditional trend indicators, Forex Uncovered focuses on Price Action by automatically identifying significant swing highs and swing lows, building dynamic support and resistance zones, and detecting confirmed breakout opportunities. To reduce false signals, the indicator combine
Filtrer:
Aucun avis
Répondre à l'avis