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).

Prodotti consigliati
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
L'S&P 500 Scalper Advisor è uno strumento innovativo progettato per i trader che desiderano operare con successo sull'indice S&P 500. L'indice è uno degli indicatori più utilizzati e prestigiosi del mercato azionario americano, che comprende le 500 maggiori società degli Stati Uniti. Peculiarità: Soluzioni di trading automatizzate:       Il consulente si basa su algoritmi avanzati e analisi tecniche per adattare automaticamente la strategia alle mutevoli condizioni di mercato. Approccio versati
The Bitcoin Reaper
Profalgo Limited
3.71 (34)
PROMOZIONE DI LANCIO: Saranno disponibili solo un numero molto limitato di copie al prezzo attuale! Prezzo finale: 999$ NOVITÀ (da 349$) --> RICEVI 1 EA GRATIS (per 2 numeri di account commerciali). Offerta Combo Definitiva     ->     clicca qui UNISCITI AL GRUPPO PUBBLICO:   Clicca qui   LIVE SIGNAL LIVE SIGNAL V2.0 UPDATE 2.0 INFO Benvenuti al BITCOIN REAPER!   Dopo l'enorme successo del Gold Reaper, ho deciso che era giunto il momento di applicare gli stessi principi vincenti al mercato Bit
ONNYX INDICATOR versione 1.14 Indicatore di domanda e offerta per MetaTrader 5 con segnali confermati senza repaint. Rileva swing confermati, adatta l'ampiezza delle zone tramite ATR, mostra la qualità in percentuale e disegna frecce BUY/SELL su candele chiuse. FUNZIONI PRINCIPALI - Zone di domanda e offerta con punteggio percentuale all'interno della zona. - Frecce BUY/SELL ingrandite dopo la chiusura della candela. - Filtro trend EMA e conferma opzionale del rifiuto. - Pannello con trend, live
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
Informazioni sull'indicatore Questo indicatore si basa sulle simulazioni Monte Carlo sui prezzi di chiusura di uno strumento finanziario. Per definizione, Monte Carlo è una tecnica statistica utilizzata per modellare la probabilità di diversi risultati in un processo che coinvolge numeri casuali basati su risultati osservati in precedenza. Come funziona? Questo indicatore genera diversi scenari di prezzo per un titolo modellando i cambiamenti di prezzo casuali nel tempo sulla base dei dati stor
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 is a short-term intraday trading strategy for gold futures that combines trend following and intraday reversal approaches. It not only captures profits during trending markets but also enables timely profit-taking and counter-trend trading during market reversals. This strategy has been ranked among the top ten most profitable trading strategies by the American magazine   Futures Truth   for 15 consecutive years. It boasts a long lifecycle and remains widely used and st
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 è un sistema di trading automatico progettato per XAUUSD (oro), che opera sul timeframe M5. Questo sistema esegue operazioni di scalping intraday basate su regole predefinite e parametri di gestione del rischio. Questo EA analizza la struttura del mercato e le condizioni di volatilità per selezionare le opportunità di trading. Ogni operazione è gestita individualmente. Non utilizza strategie a griglia né tecniche Martingale. Gestione del rischio Limite giornaliero di p
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
Il livello Premium è un indicatore unico con una precisione superiore all'80% delle previsioni corrette! Questo indicatore è stato testato dai migliori Specialisti di Trading per più di due mesi! L'indicatore dell'autore che non troverai da nessun'altra parte! Dagli screenshot puoi vedere di persona la precisione di questo strumento! 1 è ottimo per il trading di opzioni binarie con un tempo di scadenza di 1 candela. 2 funziona su tutte le coppie di valute, azioni, materie prime, criptovalu
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 — Consulente Esperto Automatico per MetaTrader 5 basato sull'indicatore Hull Moving Average (HMA) PANORAMICA HMA Scalper Pro EA è un robot di trading professionale (Expert Advisor) per MetaTrader 5 che opera nella direzione della Hull Moving Average (HMA). L'indicatore HMA determina la direzione corrente del trend, e il EA apre operazioni in quella direzione, integrate da Smart Risk capital management, trading a griglia adattiva, trailing stop, break even e filtri temporali.
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
Trasforma il tuo Trading sull'Oro! Scatena una crescita esponenziale e sostenibile con il "Gold Martingale Robot EA" (MT5) Sei stanco di guardare costantemente i grafici? Stressato ogni volta che vengono rilasciate notizie economiche ad alto impatto? O forse hai realizzato dei profitti solo per vederli svanire a causa del mantenimento di posizioni durante il fine settimana? Fermati con i tentativi ed errori! Ti presentiamo il Gold Martingale Robot EA — il sistema di trading MT5 automatizzato
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
Gli utenti di questo prodotto hanno anche acquistato
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 leggenda ritorna: Entry Points Pro 10. Il rilancio del leggendario indicatore che per 3 anni è rimasto nella Top-3 del MQL5 Market. Centinaia di recensioni entusiaste (589 su due versioni), migliaia di trader lo usano ogni giorno per operare, 31.000+ download della demo   MT4+MT5 . Ho letto ogni vostra recensione degli ultimi cinque anni — e invece di promesse ho inserito nella versione 10 le risposte. Dall'autore che opera sui mercati dal 1999 e tiene all'onestà, alla propria reputazione e a
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)
Segnali di Trading Live con M1 Quantum: Segnale   (Operazione eseguita automaticamente dal Quantum Trade Assistant , incluso gratuitamente con questo prodotto.) Piano prezzi: Prezzo attuale: $169 (Offerta per i primi utenti) Prossimo prezzo previsto: $189 Prezzo al dettaglio previsto: $299 Nota dello sviluppatore: Dopo l’acquisto, contattami per ricevere il file di configurazione più recente (Set File) , consigli operativi e l’invito al gruppo VIP di supporto , dove potrai interagire con altri
Divergence Bomber
Ihor Otkydach
4.9 (92)
Di tanto in tanto faccio trading con questo sistema personalmente. Dai un'occhiata al mio trading manuale con BOMBER su un conto reale - LIVE SIGNAL Ogni acquirente dell’indicatore riceverà inoltre gratuitamente: L’utilità esclusiva “Bomber Utility”, che gestisce automaticamente ogni operazione, imposta i livelli di Stop Loss e Take Profit e chiude le posizioni secondo le regole della strategia I file di configurazione (set file) per adattare l’indicatore a diversi asset I set file per configur
Quantum TrendPulse
Bogdan Ion Puscasu
5 (25)
Ecco   Quantum TrendPulse   , lo strumento di trading definitivo che combina la potenza di   SuperTrend   ,   RSI   e   Stocastico   in un unico indicatore completo per massimizzare il tuo potenziale di trading. Progettato per i trader che cercano precisione ed efficienza, questo indicatore ti aiuta a identificare con sicurezza le tendenze di mercato, i cambiamenti di momentum e i punti di entrata e uscita ottimali. Caratteristiche principali: Integrazione SuperTrend:   segui facilmente l'andame
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
Attenzione alle truffe, questo indicatore e' distribuito esclusivamente su MQL5.com nota: questo indicatore e' per METATRADER5, se vuoi la versione per  METATRADER4 questo e' il link:   https://www.mql5.com/it/market/product/108106 TRENDMAESTRO ver 2.5 TRENDMAESTRO   riconosce un nuovo TREND sul nascere, non sbaglia mai. La sicurezza di identificare un nuovo TREND non ha prezzo. DESCRIZIONE TRENDMAESTRO identifica un nuovo TREND sul nascere, questo indicatore prende in esame la volatilita' i
RelicusRoad Pro MT5
Relicus LLC
4.96 (24)
RelicusRoad Pro: Sistema Operativo Quantitativo di Mercato 70% DI SCONTO ACCESSO A VITA (TEMPO LIMITATO) - UNISCITI A 2.000+ TRADER Perché la maggior parte dei trader fallisce anche con indicatori "perfetti"? Perché operano su Singoli Concetti isolati. Un segnale senza contesto è una scommessa. Per vincere serve CONFLUENZA . RelicusRoad Pro non è un semplice indicatore. È un Ecosistema Quantitativo completo . Mappa la "Fair Value Road", distinguendo tra rumore e rotture strutturali. Smetti di in
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) — Filtro a 7 livelli · TP/SL automatico · Punteggio di qualità · Salvataggio dello storico dei segnali | Sistema di trading completo per XAUUSD Nessun ridisegno (repaint) in tempo reale. Nell'istante in cui appare un segnale, freccia, ingresso, TP e SL vengono bloccati sul posto e non si spostano mai più. Ciò che fai tradare è proprio questo segnale in tempo reale. E nella v7.20, ogni segnale realmente inviato viene salvato automaticamente e ripristinato con esattez
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'indicatore UZFX {SSS} Scalping Smart Signals v4.0 MT5 è un indicatore di trading ad alte prestazioni che non subisce ripaint, progettato per scalper, day trader e swing trader che necessitano di segnali accurati e in tempo reale in mercati in rapida evoluzione. Sviluppato da (UZFX-LABS), questo indicatore combina l’analisi dell’azione dei prezzi, la conferma del trend e il filtraggio intelligente per generare segnali di acquisto e vendita ad alta probabilità, segnali di allerta e opportunità d
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 Indicatore professionale di segnali trend no-repaint con livelli Entry, SL e TP bloccati SkyHammer Signal Pro è un indicatore strutturato di trend e momentum, progettato per trader che desiderano segnali chiari, fissi e verificabili. Funziona al meglio su timeframe bassi, come M1 e M5 . L’indicatore non cerca di prevedere massimi o minimi del mercato. Attende invece una struttura di mercato confermata, una chiara direzione del trend, forza del momentum, volatilità sana e spa
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
# Indicatore Zen Gold Scalping V5 - Indicatore di trading Forex e Oro multi-timeframe **Zen Gold Scalping V5** è uno strumento di analisi tecnica completo e professionale, progettato specificamente per la piattaforma MetaTrader 5 (MT5). Questo indicatore è pensato per soddisfare le esigenze sia dei trader retail che di quelli professionali, offrendo una combinazione eccezionale di velocità, adattabilità multi-timeframe e precisione analitica superiore. Che tu stia cercando movimenti di prezzo
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 migliore soluzione per qualsiasi principiante o trader esperto! Questo indicatore è uno strumento di trading unico, di alta qualità e conveniente perché abbiamo incorporato una serie di funzionalità proprietarie e una nuova formula. Con questo aggiornamento, sarai in grado di mostrare fusi orari doppi. Non solo potrai mostrare una TF più alta, ma anche entrambe, la TF del grafico, PIÙ la TF più alta: SHOWING NESTED ZONES. Tutti i trader di domanda di offerta lo adoreranno. :) Informazioni imp
A2SR per MT5 Indicatore: Domanda e Offerta Effettive Automatizzate (S/R). + Strumenti di 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 Potente, Autentico e Risparmio di Tempo per Decisioni di Trading più Intelligenti + Oggetti compatibili con EA. Vantaggi Principali Livelli di SR Effettivi Anticipanti (Non Lagging, Non Repainting) Dopo anni di comprov
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
Presentazione       Quantum Breakout PRO   , l'innovativo indicatore MQL5 che sta trasformando il modo in cui scambi le zone di breakout! Sviluppato da un team di trader esperti con un'esperienza di trading di oltre 13 anni,       Quantum Breakout PRO       è progettato per spingere il tuo viaggio di trading a nuovi livelli con la sua strategia innovativa e dinamica della zona di breakout. Quantum Breakout Indicator ti fornirà frecce di segnalazione sulle zone di breakout con 5 zone target di
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 è un indicatore trend-following per MetaTrader 5, progettato per i trader che desiderano segnali più chiari, configurazioni operative più strutturate e una gestione del rischio più pratica direttamente sul grafico. Invece di mostrare solo una semplice freccia, GEM Signal Pro aiuta a presentare l’intera idea di trading in modo più chiaro e leggibile. Quando le condizioni sono confermate, l’indicatore può mostrare sul grafico il prezzo di ingresso, lo stop loss e gli
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
Altri dall’autore
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
Filtro:
Nessuna recensione
Rispondi alla recensione