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
5 (3)
Introducing the MACD  Enhanced – an advanced MACD (Moving Average Convergence Divergence) indicator that provides traders with extended capabilities for trend and momentum analysis in financial markets. The indicator uses the difference between the fast and slow exponential moving averages to determine momentum, direction, and strength of the trend, creating clear visual signals for potential entry and exit points. Attention! To achieve the best results, it is recommended to adapt the indicator
FREE
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
Cet indicateur innovant de mesure de la force des devises de INFINITY est une aide indispensable pour les scalpers et les commerçants qui négocient à long terme. Le système d'analyse De la force/faiblesse des devises est connu depuis longtemps et utilisé sur le marché par les principaux traders du monde. Tout commerce d'arbitrage n'est pas complet sans cette analyse. Notre indicateur détermine facilement la force des devises sous-jacentes les unes par rapport aux autres. Il affiche des graphiqu
FREE
Donchian Breakout And Rsi
Mattia Impicciatore
5 (1)
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
Caicai L&S Yield Histogram Important Notice: This indicator is an integral tool of the automated EA Caicai Long and Short Pair Trading . This indicator visually displays the percentage deviation (Yield %) of a pair's current spread relative to its own historical mean. It is an excellent tool for quickly visualizing the gross financial potential of a market distortion in Long & Short operations. Main Features: Percentage Visualization: Understand the size of the distortion in palpable percentage
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
Zigzag Price Arrows
Aiman Saeed Salem Dahbag
The Zigzag Price Arrow indicator is an enhanced version of the classic Zigzag indicator, combining the traditional zigzag pattern with advanced visual features. It not only identifies major market turning points but also provides clear trading signals through: • Directional arrows: Displays colored arrows (green for buy, magenta for sell) indicating potential trend directions. • Price labels: Shows the exact price values at each pivot point directly on the chart. • Improved visual clarity: Make
FREE
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
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.67 (15)
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
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
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.5 (4)
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
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
VolumeBasedColorsBars
Henrique Magalhaes Lopes
VolumeBasedColorsBars — Free Powerful Volume Analysis for All Traders Unlock the hidden story behind every price bar! VolumeBasedColorsBars is a professional-grade, 100% FREE indicator that colorizes your chart candles based on real, adaptive volume analysis. Instantly spot surges in market activity, identify exhaustion, and catch the moves that matter. This indicator gives you:    • Dynamic color-coded bars for instant volume context    • Adaptive thresholds based on historical, session-awar
FREE
Fibonacci Trend Indicator
Vinoth Durairaj Durairaj
Fibonacci Trend Indicator for MT5 Unlock the power of Fibonacci analysis on your MetaTrader 5 charts! Our   Fibonacci Trend Indicator   automatically plots dynamic support and resistance levels so you can spot trends, reversals, and breakout opportunities at a glance. Features & Advantages Automatic Fibonacci Levels Instantly displays seven key Fibonacci retracement levels based on the highest and lowest prices from your chosen lookback period — no manual work required. Dynamic Trend Adaptatio
FREE
HighLow MT5
Azamat Mullayanov
4 (2)
The indicator plots two lines by High and Low prices. The lines comply with certain criteria. The blue line is for buy. The red one is for sell. The entry signal - the bar opens above\below the lines. The indicator works on all currency pairs and time frames It can be used either as a ready-made trading system or as an additional signal for a custom trading strategy. There are no input parameters. Like with any signal indicator, it is very difficult to use the product during flat movements. You
FREE
Show Pips for MT5
Roman Podpora
4.52 (27)
Questo indicatore informativo sarà utile per coloro che vogliono essere sempre informati sulla situazione attuale del conto. VERSION MT 4 -   More useful indicators L'indicatore mostra dati come profitto in punti, percentuale e valuta, nonché lo spread per la coppia corrente e il tempo fino alla chiusura della barra nell'intervallo di tempo corrente. Esistono diverse opzioni per posizionare la linea delle informazioni sulla carta: A destra del prezzo (corre dietro al prezzo); Come commento (nell
FREE
Tabajara V5
Flavio Javier Jarabeck
4.83 (36)
Metatrader 5 version of the famous Andre Machado's Tabajara indicator. If you don't know Andre Machado's Technical Analysis work you don't need this indicator... For those who need it and for those several friend traders who asked this porting from other platforms, here it is... FEATURES 8-period Moving Average 20-period Moving Average 50-period Moving Average 200-period Moving Average Colored candles according to the inflexion of the 20-period MA SETTINGS You can change the Period of all MA's
FREE
Stamina HUD
Michele Todesco
STAMINA HUD – Advanced Market & Trend Dashboard (MT5) STAMINA HUD   is a professional   market information panel   designed for traders who want   clarity, speed, and control   directly on the chart. It provides a   clean heads-up display (HUD)   with essential market data and   multi-timeframe trend direction , without cluttering the chart or generating trading signals. What STAMINA HUD Shows   Current Price   Spread (in real pips)   Today High–Low range (pips)   Average D
FREE
This is a buyer and seller aggression indicator that analyzes the shape of each candle and project this data in a histogram form. There are 4 histograms in one. On the front we have two: Upper - Buyer force. Lower - Seller force. At the background we also have two histogram, both with same color. They measure the combined strenght of buyers and sellers. This histograms can be turned off in Input Parameters. It is also possible to have the real or tick volume to help on this force measurement. IN
FREE
Gli utenti di questo prodotto hanno anche acquistato
SuperScalp Pro
Van Minh Nguyen
5 (9)
SuperScalp Pro – Sistema avanzato di indicatore per scalping con filtri multipli SuperScalp Pro è un sistema avanzato di indicatore per scalping che combina il classico Supertrend con molteplici filtri di conferma intelligenti. L’indicatore funziona in modo efficiente su tutti i timeframe da M1 a H4 ed è particolarmente adatto per XAUUSD, BTCUSD e le principali coppie Forex. Può essere utilizzato come sistema stand-alone o integrato in modo flessibile nelle strategie di trading esistenti. L’indi
Se acquisti questo indicatore, riceverai il mio Trade Manager Professionale + EA  GRATUITAMENTE. Innanzitutto è importante sottolineare che questo sistema di trading è un indicatore Non-Repainting, Non-Redrawing e Non-Lagging, il che lo rende ideale sia per il trading manuale che per quello automatico. Corso online, manuale e download di preset. Il "Sistema di Trading Smart Trend MT5" è una soluzione completa pensata sia per i trader principianti che per quelli esperti. Combina oltre 10 indicat
FX Trend MT5 NG
Daniel Stein
5 (4)
FX Trend NG: La Nuova Generazione di Intelligenza di Trend Multi-Mercato Panoramica FX Trend NG è uno strumento professionale di analisi del trend multi-timeframe e monitoraggio dei mercati. Ti consente di comprendere la struttura completa del mercato in pochi secondi. Invece di passare tra numerosi grafici, puoi identificare immediatamente quali strumenti sono in trend, dove il momentum sta diminuendo e dove esiste un forte allineamento tra i timeframe. Offerta di Lancio – Ottieni FX Trend NG
Market Flow Pro
Gabriele Sabatino
4 (1)
Market Flow Pro Market Flow Pro is an intelligent trading advisor for the MetaTrader 5 platform, designed for automatic trading on financial markets using algorithmic analysis and strict risk management. -Key features: - Fully automatic trading 24/5 - Adaptive trend and momentum entry algorithm -  Built-in risk management - Flexible lot settings (fixed/auto-calculation) - Support for major currency pairs and indices - Optimised for operation on various timeframes  How it works Market
Divergence Bomber
Ihor Otkydach
4.89 (83)
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
Entry In The Zone and SMC Multi Timeframe is a real-time market analysis tool developed based on Smart Money Concepts (SMC). It is designed to analyze market structure, price direction, reversal points, and key zones across multiple timeframes in a systematic way. The system displays Points of Interest (POI) and real-time No Repaint signals, with instant alerts when price reaches key zones or when signals occur within those zones. It functions as both an Indicator and a Signal System (2-in-1), c
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
Grabber System MT5
Ihor Otkydach
4.82 (22)
Ti presento un eccellente indicatore tecnico: Grabber, che funziona come una strategia di trading "tutto incluso", pronta all’uso. In un solo codice sono integrati strumenti potenti per l’analisi tecnica del mercato, segnali di trading (frecce), funzioni di allerta e notifiche push. Ogni acquirente di questo indicatore riceve anche gratuitamente: L’utility Grabber: per la gestione automatica degli ordini aperti Video tutorial passo dopo passo: per imparare a installare, configurare e utilizzare
Gold Entry Sniper
Tahir Mehmood
5 (5)
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
Atomic Analyst MT5
Issam Kassas
4.03 (30)
Innanzitutto, vale la pena sottolineare che questo indicatore di trading non è repaint, non è ridisegno e non presenta ritardi, il che lo rende ideale sia per il trading manuale che per quello automatico. Manuale utente: impostazioni, input e strategia. L'Analista Atomico è un indicatore di azione del prezzo PA che utilizza la forza e il momentum del prezzo per trovare un miglior vantaggio sul mercato. Dotato di filtri avanzati che aiutano a rimuovere rumori e segnali falsi, e aumentare il pote
Quantum TrendPulse
Bogdan Ion Puscasu
5 (22)
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
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
Power Candles MT5
Daniel Stein
5 (6)
Power Candles – Segnali di ingresso basati sulla forza per tutti i mercati Power Candles porta l’analisi di forza collaudata di Stein Investments direttamente sul grafico dei prezzi. Invece di reagire solo al prezzo, ogni candela viene colorata in base alla reale forza di mercato, consentendo di identificare immediatamente accumuli di momentum, accelerazioni della forza e transizioni di trend pulite. Un’unica logica per tutti i mercati Power Candles funziona automaticamente su tutti i simboli di
Game Changer è un indicatore di tendenza rivoluzionario, progettato per essere utilizzato su qualsiasi strumento finanziario, per trasformare il tuo MetaTrader in un potente analizzatore di trend. Funziona su qualsiasi intervallo temporale e aiuta a identificare i trend, segnala potenziali inversioni, funge da meccanismo di trailing stop e fornisce avvisi in tempo reale per risposte tempestive del mercato. Che tu sia un professionista esperto o un principiante in cerca di un vantaggio, questo st
Top indicator for MT5   providing accurate signals to enter a trade without repainting! It can be applied to any financial assets:   forex, cryptocurrencies, metals, stocks, indices .  Watch  the video  (6:22) with an example of processing only one signal that paid off the indicator! MT4 version is here It will provide pretty accurate trading signals and tell you when it's best to open a trade and close it. Most traders improve their trading results during the first trading week with the help of
Smart Stop Indicator – Precisione intelligente dello stop-loss direttamente sul grafico Panoramica Smart Stop Indicator è la soluzione ideale per i trader che desiderano posizionare il loro stop-loss in modo chiaro e metodico, senza dover indovinare o affidarsi all’intuizione. Questo strumento combina la logica classica del price action (massimi e minimi strutturali) con un moderno riconoscimento dei breakout per identificare il prossimo livello di stop realmente logico. In trend, in range o i
RFI levels PRO MT5
Roman Podpora
3.67 (3)
L'indicatore mostra accuratamente i punti di inversione e le zone di ritorno dei prezzi in cui il       Principali attori   . Vedi dove si formano le nuove tendenze e prendi decisioni con la massima precisione, mantenendo il controllo su ogni operazione. VERSION MT4     -    Rivela il suo massimo potenziale se combinato con l'indicatore   TREND LINES PRO Cosa mostra l'indicatore: Strutture di inversione e livelli di inversione con attivazione all'inizio di un nuovo trend. Visualizzazione dei li
Trend Screener Pro MT5
STE S.S.COMPANY
4.84 (101)
Indicatore di tendenza, soluzione unica rivoluzionaria per il trading di tendenze e il filtraggio con tutte le importanti funzionalità di tendenza integrate in un unico strumento! È un indicatore multi-timeframe e multi-valuta al 100% non ridipingibile che può essere utilizzato su tutti i simboli/strumenti: forex, materie prime, criptovalute, indici e azioni. Trend Screener è un indicatore di tendenza che segue un indicatore efficiente che fornisce segnali di tendenza a freccia con punti nel gra
Trend Lines PRO MT5
Roman Podpora
5 (1)
LINEE DI TENDENZA PRO  Aiuta a capire dove il mercato sta realmente cambiando direzione. L'indicatore mostra reali inversioni di tendenza e punti in cui i principali operatori rientrano. Vedi   Linee BOS   Cambiamenti di tendenza e livelli chiave su timeframe più ampi, senza impostazioni complesse o rumore inutile. I segnali non vengono ridisegnati e rimangono sul grafico dopo la chiusura della barra. VERSIONE MT4   -   Svela il suo massimo potenziale se abbinato all'indicatore   RFI LEVELS PRO
Order Block Pro MT5
N'da Lemissa Kouame
Order Block Pro (MQL5) – Versione 1.0 Autore: KOUAME N'DA LEMISSA Piattaforma: MetaTrader 5 Descrizione: Order Block Pro è un indicatore avanzato progettato per rilevare automaticamente Order Block rialzisti e ribassisti sul tuo grafico. Analizzando candele di consolidamento seguite da candele impulsive forti, l’indicatore evidenzia le aree chiave dove il prezzo è destinato a muoversi rapidamente. Ideale per trader che vogliono: Identificare punti di ingresso e uscita precisi. Rilevare zone din
FX Power MT5 NG
Daniel Stein
5 (31)
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
ARIPoint
Temirlan Kdyrkhan
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
Azimuth Pro
Ottaviano De Cicco
5 (4)
LAUNCH PROMO Azimuth Pro price is initially set at 299$ for the first 100 buyers. Final price will be 499$ . THE DIFFERENCE BETWEEN RETAIL AND INSTITUTIONAL ENTRIES ISN'T THE INDICATOR — IT'S THE LOCATION. Most traders enter at arbitrary price levels, chasing momentum or reacting to lagging signals. Institutions wait for price to reach structured levels where supply and demand actually shift. Azimuth Pro maps these levels automatically: swing-anchored VWAP, multi-timeframe structure lines, an
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
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
FX Dynamic MT5
Daniel Stein
5 (5)
FX Dynamic: Monitora volatilità e trend con un’analisi ATR personalizzabile Panoramica FX Dynamic è uno strumento potente che sfrutta i calcoli di Average True Range (ATR) per fornire ai trader informazioni impareggiabili sulla volatilità, sia giornaliera che intraday. Impostando soglie di volatilità chiare—ad esempio 80%, 100%, 130%—puoi individuare rapidamente opportunità di profitto o ricevere avvisi quando il mercato supera i range abituali. FX Dynamic si adatta al fuso orario del tuo brok
FX Levels MT5
Daniel Stein
5 (13)
FX Levels: Supporti e Resistenze di Precisione Eccezionale per Tutti i Mercati Panoramica Rapida Cercate un modo affidabile per individuare livelli di supporto e resistenza in ogni mercato—coppie di valute, indici, azioni o materie prime? FX Levels fonde il metodo tradizionale “Lighthouse” con un approccio dinamico all’avanguardia, offrendo una precisione quasi universale. Basato sulla nostra esperienza reale con i broker e su aggiornamenti automatici giornalieri più quelli in tempo reale, FX
Trend indicator AI mt5
Ramil Minniakhmetov
5 (15)
Trend Ai indicator è un ottimo strumento che migliorerà l'analisi di mercato di un trader combinando l'identificazione della tendenza con punti di ingresso utilizzabili e avvisi di inversione. Questo indicatore consente agli utenti di navigare nelle complessità del mercato forex con fiducia e precisione Oltre ai segnali primari, l'indicatore Ai di tendenza identifica i punti di ingresso secondari che si presentano durante i pullback o i ritracciamenti, consentendo ai trader di capitalizzare le
Market Structure Order Block Dashboard MT5 è un indicatore per MT5 focalizzato sulla struttura di mercato e sui concetti ICT / Smart Money: HH/HL/LH/LL , BOS , ChoCH , oltre a Order Blocks , Fair Value Gaps (FVG) , liquidità (EQH/EQL, sweeps), sessioni / Kill Zones e un Volume Profile integrato, con una dashboard compatta di confluence. Importante: è uno strumento di analisi . Non esegue operazioni (non è un EA). Bonus per gli acquirenti Dopo l’acquisto, puoi ricevere 2 indicatori bonus (a scel
Trend Hunter MT5
Andrey Tatarinov
5 (3)
Trend Hunter è un indicatore di tendenza per lavorare nei mercati Forex, criptovaluta e CFD. Una caratteristica speciale dell'indicatore è che segue con sicurezza la tendenza, senza cambiare il segnale quando il prezzo supera leggermente la linea di tendenza. L'indicatore non viene ridisegnato; un segnale per entrare nel mercato appare dopo la chiusura della barra. Quando ci si sposta lungo un trend, l'indicatore mostra ulteriori punti di ingresso nella direzione del trend. Sulla base di quest
Altri dall’autore
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
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
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
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
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