Boom Crash Divergence Tool

An MT5 divergence scanner that automatically finds divergence / hidden divergence between price and a chosen oscillator, then draws the matching trendlines/channels in the indicator window and can alert you when the line is crossed.

Key features (simple)

  • Auto Divergence Detection

    • Bullish divergence: price makes a lower low while oscillator makes a higher low (possible reversal up).

    • Bearish divergence: price makes a higher high while oscillator makes a lower high (possible reversal down).

  • Hidden divergence (called “convergence” in settings)

    • Finds continuation-style setups (useful for trend trading).

  • Works with many oscillators

    • RSI (default), MACD, Stochastic, CCI, Momentum, ADX, ATR, AO/AC, OBV, etc.

  • Clear visuals

    • Draws trendlines and optional channels (parallel / regression / std-dev channel).

    • Shows buy/sell arrows on detected swing points.

  • Noise reduction

    • Uses T3 smoothing on the oscillator line to reduce false pivots on volatile markets (handy for Boom/Crash).

  • Alerts

    • Popup, push notification, email, sound, optional external program launch, plus optional advanced alerts (Telegram/Discord/etc via DLL).

  • Performance controls

    • Limits bars processed to keep the indicator fast.

How it works (logic overview)

  1. Calculates the selected oscillator (or selected price source).

  2. Applies T3 smoothing to produce a cleaner oscillator curve.

  3. Detects swing highs/lows using “left/right strength” (how many bars on each side must be lower/higher).

  4. Compares recent swings:

    • For regular divergence and hidden divergence

  5. Draws trendlines/channels for the detected setups and optionally triggers alerts when the line is crossed.

Note: swing points are confirmed only after the “right-side” bars are complete, which helps reduce noise.

Oscillator selector (Osc)

Use Osc to choose what the tool compares against price:

1 AC, 2 AD, 3 ADX, 4 ATR, 5 AO, 6 BearsPower, 7 BullsPower, 8 CCI, 9 DeMarker, 10 Force, 11 Momentum, 12 MFI, 13 MACD, 14 MAO, 15 OBV, 16 RVI, 17 StdDev, 18 Stochastic, 19 Volume, 20 Close, 21 Open, 22 High, 23 Low, 24 (H+L)/2, 25 (H+L+C)/3, 26 (H+L+2C)/4, 27 (O+C+H+L)/4, 28 (O+C)/2, 29 RSI, 30 RBCI, 31 FTLM, 32 STLM, 33 JRSX, 34 RSI, 35 Williams %R.

Inputs (parameters) — with plain-English descriptions

A) Core detection

  • Osc (int, default: 29) — Which oscillator/source to use for divergence (see list above).

  • TH (bool, default: true) — Enable high-side (bearish) divergence checks.

  • TL (bool, default: true) — Enable low-side (bullish) divergence checks.

  • trend (bool, default: true) — Draw basic oscillator trendlines (not only divergence).

  • convergen (bool, default: true) — Enable hidden divergence detection.

  • Complect (int, default: 1) — Visual set/slot used in object names & styling (helps separate drawings).

  • _qSteps (int, default: 1) — How many “recent setups” to draw/scan (max 3).

  • _BackSteph (int, default: 0) — Skip this many swing points back before starting (highs).

  • _BackStepl (int, default: 0) — Skip this many swing points back before starting (lows).

  • BackStep (int, default: 0) — One value to override both back-step settings above.

B) Swing-point (pivot) sensitivity

  • LevDPl (int, default: 5) — Left-side strength: bars to the left that must confirm a swing point.

  • LevDPr (int, default: 1) — Right-side strength: bars to the right that must confirm a swing point.

  • LeftStrong (bool, default: false) — If true , equal-values on the left are treated as “strong” (fewer duplicate pivots).

  • RightStrong (bool, default: true) — If true , equal-values on the right are treated as “strong”.

C) Indicator calculation settings

  • period (int, default: 8) — Main period used by many oscillators (and RSI used for alerts).

  • applied_price (int, default: 4) — Price type used by some indicators (commonly Close).

  • mode (int, default: 0) — Buffer/line index for multi-line indicators (example: MACD line vs signal).

  • ma_method (ENUM_MA_METHOD, default: MODE_SMA) — MA method used by some calculations (e.g., StdDev).

  • ma_shift (int, default: 0) — MA shift used by some calculations.

MACD-only

  • fast_ema_period (int, default: 12) — MACD fast EMA.

  • slow_ema_period (int, default: 26) — MACD slow EMA.

  • signal_period (int, default: 9) — MACD signal SMA/EMA period.

Stochastic-only

  • Kperiod (int, default: 13) — %K period.

  • Dperiod (int, default: 5) — %D period.

  • slowing (int, default: 3) — Slowing factor.

  • price_field (ENUM_STO_PRICE, default: 0) — Price field for Stochastic.

Smoothing

  • T3_Period (int, default: 1) — T3 smoothing length (higher = smoother).

  • b (double, default: 0.7) — T3 smoothing factor (controls smoothness/lag).

D) Drawing options (look & behavior)

  • TrendLine (bool, default: true) — Master switch for drawing the lines.

  • Trend_Down (bool, default: true) — Show downtrend/bearish-side drawings.

  • Trend_Up (bool, default: true) — Show uptrend/bullish-side drawings.

  • HandyColour (bool, default: true) — Auto-color lines based on setup/step.

  • Highline (color, default: Red) — Manual color for high-side lines (if auto-color off).

  • Lowline (color, default: DeepSkyBlue) — Manual color for low-side lines (if auto-color off).

  • ChannelLine (bool, default: true) — Draw a parallel “channel” style line.

  • Trend (int, default: 0) — Direction filter: 1 only up, -1 only down, 0 both.

  • Channel (bool, default: false) — Use a classic channel object style.

  • Regression (bool, default: false) — Use regression channel mode.

  • RayH (bool, default: true) — Extend high-side channel/line to the right.

  • RayL (bool, default: true) — Extend low-side channel/line to the right.

  • ChannelH (color, default: Red) — High-side channel color.

  • ChannelL (color, default: DeepSkyBlue) — Low-side channel color.

  • STDwidthH (double, default: 1.0) — StdDev channel width (high-side).

  • STDwidthL (double, default: 1.0) — StdDev channel width (low-side).

  • Back (int, default: -1) — Reserved/legacy parameter (not essential for normal use).

  • code_buy (int, default: 159) — Wingdings code for the “buy” arrow symbol.

  • code_sell (int, default: 159) — Wingdings code for the “sell” arrow symbol.

E) Performance

  • _showBars (int, default: 1000) — Bars to visually work with.

  • bars_limit (int, default: 1000) — Bars to calculate per tick (speed control).

F) Alerts

  • SIGNAL_BAR (int, default: 1) — Which bar is used to confirm/trigger alerts ( 1 = closed bar).

  • popup_alert (bool, default: false) — MT5 popup alert.

  • notification_alert (bool, default: false) — Push notification.

  • email_alert (bool, default: false) — Email alert.

  • play_sound (bool, default: false) — Play a sound.

  • sound_file (string, default: "") — Sound file name.

  • start_program (bool, default: false) — Launch an external program on alert.

  • program_path (string, default: "") — Path to the program executable.

  • advanced_alert (bool, default: false) — Advanced alert via DLL (Telegram/Discord/etc).

  • advanced_key (string, default: "") — Key for advanced alert service.

  • AlertsSection / Comment2 / Comment3 / Comment4 (string) — UI separators/info text (no trading logic impact).

Practical advantages for Boom/Crash traders

  • Saves time: no manual divergence drawing.

  • Cleaner signals on fast, spiky markets thanks to pivot confirmation + smoothing.

  • Flexible: switch oscillator types without changing the workflow.

  • No alert spam: it tracks last alerted line/time to avoid duplicates.

Prodotti consigliati
Follow The Line MT5
Oliver Gideon Amofa Appiah
4.6 (35)
This indicator obeys the popular maxim that: "THE TREND IS YOUR FRIEND" It paints a GREEN line for BUY and also paints a RED line for SELL. (you can change the colors). It gives alarms and alerts of all kinds. IT DOES NOT REPAINT and can be used for all currency pairs and timeframes. Yes, as easy and simple as that. Even a newbie can use it to make great and reliable trades. NB: For best results, get my other premium indicators for more powerful and reliable signals. Get them here: https://www.m
FREE
Free automatic Fibonacci is an indicator that automatically plots a Fibonacci retracement based on the number of bars you select on the BarsToScan setting in the indicator. The Fibonacci is automatically updated in real time as new highest and lowest values appears amongst the selected bars. You can select which level values to be displayed in the indicator settings. You can also select the color of the levels thus enabling the trader to be able to attach the indicator several times with differe
FREE
Mitimom
Danil Poletavkin
The indicator is based on Robert Miner's methodology described in his book "High probability trading strategies" and displays signals along with momentum of 2 timeframes. A Stochastic oscillator is used as a momentum indicator. The settings speak for themselves period_1 is the current timeframe, 'current' period_2 is indicated - the senior timeframe is 4 or 5 times larger than the current one. For example, if the current one is 5 minutes, then the older one will be 20 minutes The rest of the s
FREE
Are you tired of drawing trendlines every time you're analyzing charts? Or perhaps you would like more consistency in your technical analysis. Then this is for you. This indicator will draw trend lines automatically when dropped on a chart. How it works Works similar to standard deviation channel found on mt4 and mt5. It has 2 parameters: 1. Starting Bar 2. Number of bars for calculation The   starting bar   is the bar which drawing of the trend lines will begin, while the   number of bars for c
FREE
MACD Enhanced
Nikita Berdnikov
4 (4)
Introducing the MACD  Enhanced – an advanced MACD (Moving Average Convergence Divergence) indicator that provides traders with extended capabilities for trend and momentum analysis in financial markets. The indicator uses the difference between the fast and slow exponential moving averages to determine momentum, direction, and strength of the trend, creating clear visual signals for potential entry and exit points. Attention! To achieve the best results, it is recommended to adapt the indicator
FREE
The MACD indicator in MetaTrader 5 does not look like MACD as it was designed. That is because the MetaTrader 5 version of MACD displays the MACD line as a histogram when it is traditionally displayed as a line. Additionally, the MetaTrader 5 version computes the Signal line using an SMA, while according to MACD definition it is supposed to be an EMA. The MetaTrader 5 version also does not compute a true MACD Histogram (the difference between the MACD/Signal lines). This can be confusing for peo
FREE
Donchian Breakout And Rsi
Mattia Impicciatore
4.5 (2)
Descrizione generale Questo indicatore è una versione avanzata del classico Donchian Channel , arricchita con funzioni operative per il trading reale. Oltre alle tre linee tipiche (massimo, minimo e linea centrale), il sistema rileva i breakout e li segnala graficamente con frecce sul grafico, mostrando solo la linea opposta alla direzione del trend per semplificare la lettura. L’indicatore include: Segnali visivi : frecce colorate al breakout Notifiche automatiche : popup, push e email Filtro R
FREE
GDS Renko Pip ST - Fixed Brick Renko Chart Tool for MetaTrader 5 GDS Renko Pip ST is a Renko chart tool for MetaTrader 5 designed for traders who want to build and study fixed brick Renko movement using a practical pip or point-based setup. The purpose of this tool is simple: create a cleaner Renko structure so the trader can observe direction, brick runs, pullbacks, support and resistance behavior without normal candle noise. This is not a signal indicator and it does not predict the market. It
FREE
GDS Renko Pip ST Chart - Pip-Based Renko Chart Indicator for MetaTrader 5 GDS Renko Pip ST Chart is a pip-based Renko chart indicator for MetaTrader 5. It helps traders build and study cleaner Renko price movement using a practical fixed pip or point-based brick structure. This tool is designed as a Renko chart foundation for manual analysis. It does not predict the market, does not generate buy or sell signals and does not decide whether a trade should be opened. What Pip ST Chart Does Renko ch
FREE
LT Donchian Channel
Thiago Duarte
4.86 (7)
Donchian Channel is an indicator created by Richard Donchian. It is formed by taking the highest high and the lowest low of the last specified period in candles. The area between high and low is the channel for the chosen period. Its configuration is simple. It is possible to have the average between the upper and lower lines, plus you have alerts when price hits one side. If you have any questions or find any bugs, please contact me. Enjoy!
FREE
Important Lines
Terence Gronowski
4.88 (24)
This indicator displays Pivot-Lines, preday high and low, preday close and the minimum and maximum of the previous hour. You just have to put this single indicator to the chart to have all these important lines, no need to setup many single indicators. Why certain lines are important Preday high and low : These are watched by traders who trade in a daily chart. Very often, if price climbs over or falls under a preday low/high there is an acceleration in buying/selling. It is a breakout out of a
FREE
The indicator identifies when a divergence occurs between price and an indicator or oscillator. It identifies both regular and hidden divergences. Combined with your own rules and techniques, this indicator will allow you to create (or enhance) your own powerful system. For higher probability setups I can recommend you to use my Supply Demand indicator and trade only if the divergence occurs inside a zone. Supply zone for bearish div and demand zone for bullish div. The optimal scenario is if it
FREE
Cross MA histogram
Mariusz Piotr Rodacki
The Cossover MA Histogram indicator is a simple tool showing the trend based on crossover of moving averages. Simply specify two mobving averages and addicional parameters like MA method and Applied price. When fast MA is above slow MA the histogram is green, indicating an uptrend. When MA fast is below MA slow the histogram is red, indicating an downtrend.
FREE
MSX Hybrid Heiken Scalper
Som Prakash Gehlot
5 (1)
MSX Hybrid Heiken Scalper Overview MSX Hybrid Heiken Scalper is a MetaTrader 5 indicator based on a modified Heiken Ashi methodology with closed-bar smoothing. The indicator is designed to display trend direction through color-coded candles while reducing sensitivity to short-term market fluctuations. All calculations are performed using completed candles, allowing historical values to remain fixed after bar close. Features • Modified Heiken Ashi calculation • Closed-bar processing • Color-code
FREE
GDS Renko ATR - ATR-Based Renko Chart Indicator for MetaTrader 5 GDS Renko ATR is a free ATR-based Renko chart indicator for MetaTrader 5. It helps traders build and study Renko movement using a volatility-adaptive brick size based on Average True Range. The purpose of this tool is to provide a flexible Renko chart foundation for manual market analysis. It does not predict the market, does not generate buy or sell signals and does not decide whether a trade should be opened. Why ATR Renko Matter
FREE
Haven Key Levels PDH PDL
Maksim Tarutin
4.91 (11)
L'indicatore   "Haven Key Levels PDH PDL"   aiuta i trader a visualizzare i livelli chiave sul grafico. Marca automaticamente i seguenti livelli: DO (Daily Open)   — Livello di apertura giornaliera. NYM (New York Midnight)   — Livello di mezzanotte di New York. PDH (Previous Day High)   — Massimo del giorno precedente. PDL (Previous Day Low)   — Minimo del giorno precedente. WO (Weekly Open)   — Livello di apertura settimanale. MO (Monthly Open)   — Livello di apertura mensile. PWH (Previous We
FREE
Reversal Composite Candles
MetaQuotes Ltd.
3.69 (16)
The idea of the system is to indentify the reversal patterns using the calculation of the composite candle. The reversal patterns is similar to the "Hammer" and "Hanging Man" patterns in Japanese candlestick analysis. But it uses the composite candle instead the single candle and doesn't need the small body of the composite candle to confirm the reversal. Input parameters: Range - maximal number of bars, used in the calculation of the composite candle. Minimum - minimal size of the composite can
FREE
ENGLISH VERSION (FREE INDICATOR) Smart ZigZag Signal & Statistics Monitor – FREE Multi‑Timeframe Indicator Free automated trading signals based on ZigZag peak ratios, live trade tracking, win/loss statistics, and one‑click signal inversion – designed to work with the commercial Smart Logic Executor PRO EA. This indicator is completely FREE.   Use it standalone or as a signal source for the paid Expert Advisor   Smart Logic Executor PRO   (sold separately). Key Features   6 Adjustable Ran
FREE
Candle Countdown — Tempo preciso fino alla chiusura della candela per MT4 Candle Countdown è uno strumento semplice e preciso che mostra il tempo rimanente fino alla chiusura della candela corrente direttamente sul grafico. Quando l’ingresso dipende dalla chiusura della candela, anche pochi secondi possono fare la differenza. Questo indicatore ti permette di vedere il tempo esatto e prendere decisioni senza fretta o supposizioni. Un indicatore per il controllo preciso della chiusura della cande
FREE
Friend of the Trend: Your Trend Tracker Master the market with Friend of the Trend , the indicator that simplifies trend analysis and helps you identify the best moments to buy, sell, or wait. With an intuitive and visually striking design, Friend of the Trend analyzes price movements and delivers signals through a colorful histogram: Green Bars : Signal an uptrend, indicating buying opportunities. Red Bars : Alert to a downtrend, suggesting potential selling points. Orange Bars : Represent cons
FREE
Dual RSI
Paul Conrad Carlson
3.5 (2)
Indicator alerts for Dual Relative strength index rsi. Large rsi preset at 14 is below 30 small rsi preset at 4 is below 10 for buy bullish signals . Large rsi preset are 14 is above 70 small rsi preset at 4 is above 90 for sell bearish signals . Includes mobile and terminal alerts. draws lines when alerts. This indicator can help identify extremes and then the tops or bottoms of those extremes .
FREE
PROMETHEUS TECHNICAN VERSION Free | By THE SONS A gift from The Sons — no strings, no trial, no expiry. Every trader deserves access to professional-grade market intelligence. That belief is why Prometheus Technical Version exists, and why it costs nothing. Consider it our handshake to the trading community. What You're Getting This is not a simplified tool dressed up as a gift. Prometheus Technican Version is a fully built, institutional-quality technical analysis indicator running a dual-model
FREE
SMT DIVERGENCE - GOLD vs SILVER (XAUUSD / XAGUSD) All Timeframe MQL5 Market Product Description ==================================================================== PRODUCT NAME: SMT Divergence Gold vs Silver | Smart Money Scalping Tool SHORT DESCRIPTION (max 63 chars): Catch Gold reversals before they happen using SMT Divergence ---------------------------------------------------------------------- FULL DESCRIPTION ---------------------------------------------------------------------- W
FREE
Master SmoothedHMA Color
Som Prakash Gehlot
5 (5)
HMA Color – Master Smoothed Overview HMA Color – Master Smoothed is a MetaTrader 5 indicator based on a Hull Moving Average calculation with an additional smoothing layer. The indicator displays market direction using a color-changing HMA line and optional visual candle representation. The objective is to provide a simplified visual view of trend direction while reducing short-term fluctuations in the displayed curve. Features • Hull Moving Average calculation • Additional smoothing layer • Aut
FREE
Indicator and Expert Adviser  EA Available in the comments section of this product. Download with Indicator must have indicator installed for EA to work. Mt5 indicator alerts for bollinger band and envelope extremes occurring at the same time. Buy signal alerts occur when A bullish candle has formed below both the lower bollinger band and the lower envelope  Bar must open and close below both these indicators. Sell signal occur when A bear bar is formed above the upper bollinger band and upper
FREE
PZ Penta O MT5
PZ TRADING SLU
3.8 (5)
The Penta-O is a 6-point retracement harmonacci pattern which usually precedes big market movements. Penta-O patterns can expand and repaint quite a bit. To make things easier this indicator implements a twist: it waits for a donchian breakout in the right direction before signaling the trade. The end result is an otherwise repainting indicator with a very reliable trading signal. The donchian breakout period is entered as an input. [ Installation Guide | Update Guide | Troubleshooting | FAQ | A
FREE
Heiken Ashi Smoothwave
Alexandre Vincent Traber
Panoramica Heiken Ashi Smoothwave trasforma il tuo grafico in candele Heiken Ashi smussate direttamente nella finestra principale del grafico, sostituendo le candele standard per una visione di tendenza più chiara. Nessuna finestra separata, nessun disordine. Come funziona Calcola i valori OHLC Heiken Ashi dai dati di prezzo reali su ogni barra. Traccia candele Heiken Ashi colorate direttamente sul grafico principale. Nasconde automaticamente le candele native del grafico, lasciando visibili so
FREE
Multi-timeframe trend indicator, based on the ADX / ADXWilder indicator The indicator shows trend areas using ADX or ADXWilder indicator data from multiple timeframes. The impulse mode of the indicator allows you to catch the beginning of a trend, and several "Screens" with different timeframes allow you to filter out market noise. How the indicator works: if PDI is greater than NDI, then it`s bullish movement; if PDI is less than NDI, then it`s bearish movement; to determine any trend, it is
FREE
The Dual MACD & Stochastic Expert Advisor (EA)  is a fully automated trading system that utilizes two  MACD (Moving Average Convergence Divergence) indicators along with the  Stochastic Oscillator  to identify high-probability trading opportunities. By combining trend confirmation from MACD with momentum analysis from Stochastic, this EA provides precise entry and exit points for optimized trading performance. Key Features: • Dual MACD Strategy – Uses two MACD indicators with different setting
FREE
Indicator Description 4 Hull MA Color + Envelopes is a powerful trend-following indicator for MetaTrader 5 that combines four Hull Moving Averages (HMA) with Moving Average Envelopes to clearly identify market direction, trend strength, and potential reversal or pullback zones. This indicator is designed to reduce noise, react quickly to price movement, and provide a clean visual structure for professional trading.   Key Features   4 Hull Moving Averages (20, 50, 100, 200) Automatic color change
FREE
Gli utenti di questo prodotto hanno anche acquistato
Questo prodotto è stato aggiornato per il mercato 2026 e ottimizzato per le ultime build di MT5. AVVISO DI AGGIORNAMENTO PREZZO: Smart Trend Trading System è attualmente disponibile a $99 . Il prezzo aumenterà a $199 dopo i prossimi 30 acquisti . OFFERTA SPECIALE: Dopo aver acquistato Smart Trend Trading System, inviami un messaggio privato per ricevere Smart Universal EA GRATIS e trasformare i tuoi segnali Smart Trend in operazioni automatiche. Smart Trend Trading System è un sistema di tradin
Trend Sniper X
Sarvarbek Abduvoxobov
5 (8)
Trend Sniper X è un indicatore di trend following multi-timeframe per MetaTrader 5 che aiuta i trader a identificare la direzione del trend e i potenziali punti di inversione con chiarezza e precisione. Informazioni sul prezzo: Il prezzo attuale è promozionale ed è soggetto a modifiche con il rilascio di futuri aggiornamenti e nuove funzionalità. Canale Code2Profit Padroneggia il mercato con l'analisi multi-timeframe! Specifiche tecniche Piattaforma MetaTrader 5 Tipo di indicatore Indicatore di
Cominciamo con la verità. Nessun indicatore da solo ti renderà profittevole. Se qualcuno ti dice il contrario, ti sta vendendo un sogno. Qualsiasi indicatore che mostra frecce perfette di acquisto/vendita può essere reso impeccabile — basta ingrandire la giusta sezione della storia e catturare solo i trade vincenti. Noi non lo facciamo.  SMC Intraday Formula è uno strumento. Legge la struttura del mercato per te, identifica le zone a più alta probabilità e ti mostra esattamente come appare la t
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
Welcome to ENTRY IN THE ZONE AND SMC MULTI TIMEFRAME Entry In The Zone and SMC Multi Timeframe is a professional trading indicator built on Smart Money Concepts (SMC) , combining market structure analysis with a No Repaint BUY / SELL signal system in a single indicator. It helps traders understand market structure more clearly, identify key price zones, and focus on higher-quality trading opportunities. By combining Multi-Timeframe Analysis , Points of Interest (POIs) , and real-time signals, th
SuperScalp Pro
Van Minh Nguyen
4.6 (30)
SuperScalp Pro –  Sistema Professionale di Scalping con Confluenza Multilivello SuperScalp Pro è un sistema professionale di scalping con confluenza multilivello, progettato per aiutare i trader a individuare opportunità con una probabilità più elevata grazie a conferme di ingresso più chiare, livelli di Stop Loss e Take Profit basati sull'ATR e un filtro flessibile dei segnali per XAUUSD, BTCUSD e le principali coppie Forex. La documentazione completa è disponibile nel blog del prodotto:   [Use
Gold Entry Sniper
Tahir Mehmood
5 (17)
Gold Entry Sniper – Dashboard ATR Multi-Timeframe per Scalping e Swing Trading sull’Oro Gold Entry Sniper è un indicatore avanzato per MetaTrader 5 che offre segnali di acquisto/vendita precisi per XAUUSD e altri strumenti, basato sulla logica ATR Trailing Stop e l' analisi multi-timeframe . Caratteristiche e Vantaggi Analisi Multi-Timeframe – Visualizza trend su M1, M5, M15 in un'unica dashboard. Trailing Stop Basato su ATR – Stop dinamici che si adattano alla volatilità. Dashboard Professional
M1 Quantum MT5
Hamed Dehgani
4.6 (10)
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
Neuro Poseidon MT5
Daria Rezueva
4.73 (55)
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
Atomic Analyst MT5
Issam Kassas
4.38 (47)
Questo prodotto è stato aggiornato per il mercato 2026 e ottimizzato per le ultime build di MT5. AVVISO DI AGGIORNAMENTO PREZZO: Atomic Analyst è attualmente disponibile a $99 . Il prezzo aumenterà a $199 dopo i prossimi 30 acquisti . OFFERTA SPECIALE: Dopo aver acquistato Atomic Analyst, inviami un messaggio privato per ricevere Smart Universal EA GRATIS e trasformare i tuoi segnali Atomic Analyst in operazioni automatiche. Atomic Analyst è un indicatore di trading Price Action non-repainting
Gann Made Easy è un sistema di trading Forex professionale e facile da usare che si basa sui migliori principi del trading utilizzando la teoria di mr. WD Gann. L'indicatore fornisce segnali ACQUISTA e VENDI accurati, inclusi i livelli di Stop Loss e Take Profit. Puoi fare trading anche in movimento utilizzando le notifiche PUSH. CONTATTAMI DOPO L'ACQUISTO PER RICEVERE GRATUITAMENTE LE ISTRUZIONI DI TRADING E OTTIMI INDICATORI EXTRA! Probabilmente hai già sentito parlare molte volte dei metodi d
GoldenX Entry MT5
Kareem Abbas
5 (15)
GoldenX Entry è un indicatore per MT5 con un algoritmo adattivo Smart Entry Trend, un sistema di scoring dei segnali, un rilevatore del regime di mercato e un filtro di volatilità. Ogni segnale include un livello di ingresso calcolato, tre livelli di Take-Profit (TP1, TP2, TP3) e un livello di Stop-Loss. È costruito su più livelli analitici progettati per adattarsi a diverse condizioni di mercato, combinando un sistema analitico multilivello con un ottimizzatore integrato e un sistema di traccia
Divergence Bomber
Ihor Otkydach
4.9 (92)
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 configurare il Bomber Utility in tre modalità: “Rischio Minimo”, “Rischio Bilanciato” e “Strategia di Attesa” Una guida video passo-passo per installare, conf
Trend Catcher ind mt5
Ramil Minniakhmetov
5 (16)
INDICATORE TREND CATCHER L'indicatore Trend Catcher analizza i movimenti dei prezzi di mercato, utilizzando una combinazione di indicatori di analisi del trend proprietari dell'autore e personalizzati. Identifica la vera direzione del mercato filtrando il rumore a breve termine e concentrandosi sulla forza del momentum sottostante, sull'espansione della volatilità e sul comportamento della struttura dei prezzi. Utilizza inoltre una combinazione di indicatori personalizzati di smoothing e filtr
Zoryk Gold
Reda El Koutbane
5 (3)
ZORYK — Sistema avanzato di segnali XAUUSD per MetaTrader 5 Conosci sicuramente questa sensazione. Passi molto tempo ad analizzare l’oro. Aspetti il punto d’ingresso corretto. Finalmente apri l’operazione e il prezzo inizia immediatamente a muoversi contro di te. Chiudi troppo presto, sposti lo Stop Loss o esiti per alcuni secondi. Successivamente il mercato raggiunge esattamente l’obiettivo che avevi previsto inizialmente, ma senza di te nella posizione. Il problema non era sempre la direzione.
Crystal Heikin Ashi Signals
Muhammad Jawad Shabir
5 (2)
Crystal Heikin Ashi Signals - Professional Trend & Signal Detection Indicator Advanced Heikin Ashi Visualization with Intelligent Signal System for Manual & Automated Trading Final Price: $149 ---------> Price goes up $10 after every 10 sales . Limited slots available — act fast . Overview Crystal Heikin Ashi Signals is a professional-grade MetaTrader 5 indicator that combines pure Heikin Ashi candle visualization with an advanced momentum-shift detection system. Designed for both manual traders
Power Candles MT5
Daniel Stein
5 (9)
Power Candles V3 - Indicatore di forza ad ottimizzazione automatica Power Candles V3 trasforma la forza delle valute e degli strumenti in un piano di trading attuabile su ogni grafico a cui è collegato. Invece di limitarsi a colorare le candele, esegue un'auto-ottimizzazione in tempo reale in background e ti fornisce i migliori valori di Stop Loss, Take Profit e soglia di segnale per il simbolo che hai davanti. Basta un clic per adottarlo nel trading live: i raggi di ingresso, Stop Loss e Take P
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
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
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
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
Smc Pro ToolKit
Talal N Z Aljarusha
5 (3)
SMC Pro ToolKit  is a professional chart-based Smart Money Concepts indicator for MetaTrader 5. It helps traders read market structure, identify key liquidity areas, organize trade context, and plan setups directly from the chart. This is not a simple buy/sell arrow indicator. It is a complete visual trading toolkit that combines Smart Money Concepts, multi-timeframe analysis, session context, setup planning, risk assistance, and professional dashboard tools in one clean workspace. Watch setup
M1 Sniper MT5
Oleg Rodin
5 (4)
M1 SNIPER   è un sistema di indicatori di trading facile da usare. Si tratta di un indicatore a freccia progettato per l'intervallo temporale M1. L'indicatore può essere utilizzato come sistema autonomo per lo scalping sull'intervallo temporale M1 e come parte del tuo sistema di trading esistente. Sebbene questo sistema di trading sia stato progettato specificamente per il trading sull'intervallo temporale M1, può comunque essere utilizzato anche con altri intervalli temporali. Inizialmente ho p
FX Power MT5 NG
Daniel Stein
5 (33)
FX Power: Analizza la Forza delle Valute per Decisioni di Trading Più Intelligenti Panoramica FX Power è lo strumento essenziale per comprendere la reale forza delle principali valute e dell'oro in qualsiasi condizione di mercato. Identificando le valute forti da comprare e quelle deboli da vendere, FX Power semplifica le decisioni di trading e rivela opportunità ad alta probabilità. Che tu segua le tendenze o anticipi inversioni utilizzando valori estremi di Delta, questo strumento si adatta
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
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
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
DayTrader PRO
Davit Beridze
5 (2)
DayTrader PRO DayTrader PRO è un indicatore di trading avanzato che combina il filtro Laguerre di John Ehlers con un potente motore di auto-ottimizzazione. Invece di utilizzare parametri fissi, l'indicatore ricerca automaticamente le migliori impostazioni in base alle condizioni recenti del mercato, aiutandoti ad adattarti alla volatilità variabile senza costanti aggiustamenti manuali. L'indicatore genera segnali chiari di ACQUISTO (BUY) e VENDITA (SELL), insieme a livelli adattivi di Stop Loss
Questo prodotto è stato aggiornato per il mercato 2026 e ottimizzato per le ultime build di MT5. AVVISO DI AGGIORNAMENTO PREZZO: Smart Price Action Concepts è attualmente disponibile a $200 . Il prezzo aumenterà a $299 dopo i prossimi 30 acquisti . OFFERTA SPECIALE: Dopo l’acquisto, inviami un messaggio privato per ricevere un bonus gratuito + regalo . Prima di tutto, vale la pena sottolineare che questo strumento di trading è un indicatore non-repainting, non-redrawing e non-lagging, il che lo
Btmm state engine pro
Garry James Goodchild
5 (4)
BTMM State Engine Pro is a MetaTrader 5 indicator for traders who use the Beat The Market Maker approach: Asian session context, kill zone timing, level progression, peak formation detection, and a multi-pair scanner from a single chart. It combines cycle state logic with a built-in scanner dashboard so you do not need the same tool on many charts at once. What it does Draws the Asian session range; session times can follow broker server offset or be set in inputs. Tracks level progression (L
Altri dall’autore
SnR FVG Sweep Levels
Stephen Muriithi Muraguri
SNR + FVG + HTF Sweeps Levels Indicator Documentation — Version 71.10 Smart Money Concepts (SMC) / Inner Circle Trader (ICT) Methodology By Ultimate Trader Overview This indicator combines three institutional trading concepts into a single chart overlay for MetaTrader 5. It identifies where institutions sweep liquidity at key structural levels, detects the displacement (Fair Value Gap) that follows, and maps the support and resistance zones where these events occur. The result is a high-probabil
FREE
This EA finds Fair Value Liquidity (FVL) on the chart, tracks when they get mitigated , and then looks for an inversion signal (price “fails” through the zone). When that inversion happens, it places a trade in the opposite direction of the original Liquidity gap (an Inverse FVG approach). It also lets you control when it trades using market sessions , and it can auto-close positions at New York open (all positions or profitable-only). Key advantages Clear, rule-based entries (no guessing): trad
FREE
ZoneSniper UltimateEA
Stephen Muriithi Muraguri
ZoneSniper EA is a Supply & Demand zone trading robot built for MetaTrader 5. It identifies high-probability price zones formed by consolidation, waits for a confirmed impulse breakout away from those zones, then enters trades precisely when price returns to retest them. Zone Detection The EA scans for consolidation clusters — a defined number of candles trading within a tight range. When price breaks out of that cluster with a strong impulse candle, the consolidation area is marked as either a
FREE
TrendGate Ultimate EA
Stephen Muriithi Muraguri
The TrendGate TriMA Ultimate EA is a professional trend-following trading system designed for the MetaTrader 5 platform. This Expert Advisor utilizes a triple moving average crossover strategy combined with a multi-layered filtering system to capture high-probability market movements while minimizing false signals. Advantages and Core Features Precision Crossover Logic : The EA identifies trend shifts by monitoring the intersection of a Fast MA and a Slow MA , while a third Filter MA ensures tra
FREE
GapRush iFVG EA
Stephen Muriithi Muraguri
Gap Rush iFVG EA is an automated trading Expert Advisor built around Fair Value Gaps (FVGs) . It scans the chart for valid bullish/bearish gaps, draws them clearly as rectangles , and can place trades when price reacts to those gaps—optionally filtered by higher-timeframe trend bias , sessions , and days of the week . It also includes built-in risk checks and trade management (SL/TP + trailing + end-of-day flat). Key advantages Automatic FVG detection: Identifies bullish and bearish fair value g
Filtro:
Nessuna recensione
Rispondi alla recensione