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.

Produtos recomendados
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)
Descrição geral Este indicador é uma versão aprimorada do Canal Donchian clássico, enriquecida com funções práticas para o trading real. Além das três linhas padrão (máxima, mínima e linha do meio), o sistema detecta breakouts e os mostra visualmente com setas no gráfico, exibindo apenas a linha oposta à direção da tendência atual para uma leitura mais limpa. O indicador inclui: Sinais visuais : setas coloridas nos breakouts Notificações automáticas : alerta pop-up, push e e-mail Filtro RSI : pa
FREE
LT Donchian Channel
Thiago Duarte
4.86 (7)
Donchian Channel (ou canal de Donchian) é um indicador criado por  Richard Donchian. Ele é  formado tomando a máxima mais alta e a mais baixa mais baixa do último período especificado em velas. A área entre alta e baixa é o canal para o período escolhido. Sua configuração é simples. É possível ter a média entre a linha superior e inferior além de alertas quando o preço atinge um dos lados. Se tiver alguma dúvida ou encontrar alguma falha, me contate. Faça bom uso!
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
ENGLISH DESCRIPTION (MQL5 Standard Optimized) Product Name: Obsidian Forest Automaton AI (MT5) [Subtitle: Forest Structure | Obsidian Blade TEMA | Shield Safety] Introduction Obsidian Forest Automaton AI is a structural trend-following construct designed to navigate the market with the cold precision of an automaton. It builds a "Forest Structure" using Ichimoku Cloud , cuts through noise with the Obsidian Blade (TEMA) , and validates density with Standard Deviation . This creates a system that
O indicador identifica quando ocorre uma divergência entre o preço e um indicador ou oscilador. Ele identifica divergências regulares e ocultas. Combinado com suas próprias regras e técnicas, este indicador permitirá que você crie (ou aprimore) seu próprio sistema poderoso. Recursos Pode detectar divergências para os seguintes osciladores / indicadores:       MACD, OsMA, Stochastics, RSI, CCI, RVI, Awesome, ADX, ATR, OBV, Índice composto, MFI e Momentum. Apenas um oscilador / indicador pode ser
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
O indicador   "Haven Key Levels PDH PDL"   ajuda os traders a visualizar os níveis-chave no gráfico. Ele marca automaticamente os seguintes níveis: DO (Daily Open)   — o nível de abertura diária. NYM (New York Midnight)   — o nível da meia-noite de Nova Iorque. PDH (Previous Day High)   — o máximo do dia anterior. PDL (Previous Day Low)   — o mínimo do dia anterior. WO (Weekly Open)   — o nível de abertura semanal. MO (Monthly Open)   — o nível de abertura mensal. PWH (Previous Week High)   — o
FREE
Reversal Composite Candles
MetaQuotes Ltd.
3.69 (16)
A ideia do sistema é a identificação de padrões de reversão utilizando o cálculo de candles compostos. Os padrões de reversão são semelhantes aos padrões "Martelo" e o " Homem Enforcado " da análise candlestick Japonesa, porém ele usa candles compostos em vez de uma única barra e não precisa do pequeno corpo numa composição para confirmar a reversão. Os parâmetros de entrada: Range - número máximo de barras, utilizada no cálculo de composição dos candles compostos . Minimum - tamanho mínimo dos
FREE
Candle Countdown — Tempo preciso até o fechamento da vela para MT5 Candle Countdown é um instrumento simples e preciso que mostra o tempo restante até o fechamento da vela atual diretamente no gráfico. Quando a entrada depende do fechamento da vela, até mesmo alguns segundos fazem diferença. Este indicador permite ver o tempo exato e tomar decisões sem pressa ou suposições. Um indicador para controle preciso do fechamento da vela. O indicador mostra: tempo restante até o fechamento da vela hora
FREE
Friend of the trend : Seu Rastreador de Tendências Domine o mercado com o Friend of the trend , o indicador que simplifica a análise de tendências e te ajuda a identificar os melhores momentos para comprar, vender ou esperar. Com um design intuitivo e visualmente impactante, o Trend Analisa os movimentos de preço e entregar sinais através de um histograma colorido: Barras Verdes : Sinalizam uma tendência de alta, indicando oportunidades de compra. Barras Vermelhas : Alertam para uma tendência de
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
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
O   Expert Advisor (EA) Dual MACD & Stochastic   é um sistema de negociação automatizado que utiliza   dois indicadores MACD (Média Móvel de Convergência/Divergência)   junto com o   Oscilador Estocástico   para identificar oportunidades de negociação com alta precisão. Combinando a confirmação de tendência do MACD e a análise de momentum do Estocástico, este EA oferece pontos de entrada e saída bem definidos. Principais recursos: •   Estratégia de MACD duplo   – Utiliza dois MACDs com configu
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.55 (29)
Este indicador de informação será útil para quem quer estar sempre atento à situação atual da conta. VERSION MT 4 -   More useful indicators O indicador exibe dados como lucro em pontos, porcentagem e moeda, bem como o spread do par atual e o tempo até o fechamento da barra no período atual. Existem várias opções para colocar a linha de informação no gráfico: À direita do preço (corre atrás do preço); Como comentário (no canto superior esquerdo do gráfico); No canto selecionado da tela. Também é
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
Os compradores deste produto também adquirem
Neuro Poseidon MT5
Daria Rezueva
4.95 (19)
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
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
SuperScalp Pro
Van Minh Nguyen
4.65 (26)
SuperScalp Pro – Sistema avançado de scalping com múltiplos filtros SuperScalp Pro é um indicador avançado de scalping que combina o clássico Supertrend com múltiplos filtros inteligentes de confirmação para ajudar a identificar oportunidades de trading. Funciona de forma eficiente em vários timeframes de M1 até H4, com desempenho otimizado para XAUUSD, BTCUSD e principais pares Forex. O indicador fornece sinais claros de Buy e Sell, juntamente com níveis calculados automaticamente de entrada, S
Divergence Bomber
Ihor Otkydach
4.9 (90)
Cada comprador deste indicador recebe adicionalmente, e de forma gratuita: A ferramenta exclusiva "Bomber Utility", que acompanha automaticamente cada operação, define os níveis de Stop Loss e Take Profit e fecha operações de acordo com as regras da estratégia; Arquivos de configuração (set files) para ajustar o indicador em diferentes ativos; Set files para configurar o Bomber Utility nos modos: "Risco Mínimo", "Risco Balanceado" e "Estratégia de Espera"; Um vídeo tutorial passo a passo que aju
Gold Entry Sniper
Tahir Mehmood
5 (12)
Gold Entry Sniper – Painel ATR Multi-Tempo Profissional para Scalping e Swing Trading em Ouro Gold Entry Sniper é um indicador avançado para MetaTrader 5 projetado para fornecer sinais de compra/venda precisos para XAUUSD e outros ativos, com base na lógica de Trailing Stop ATR e análise multi-tempo . Ideal tanto para scalpers quanto para swing traders. Principais Recursos e Vantagens Análise Multi-Tempo – Veja a tendência de M1, M5 e M15 em um único painel. Trailing Stop Baseado em ATR – Níveis
Entry In The Zone and SMC Multi Timeframe is a real-time 2-in-1 market analysis tool that combines market structure analysis and a No Repaint BUY / SELL signal system into a single indicator, built on Smart Money Concepts (SMC) — a widely adopted framework used by professional traders to understand market structure. This indicator helps you see the market more clearly, make decisions based on structure rather than guesswork, and focus on high-probability zones where price is more likely to react
Vamos ser honestos primeiro. Nenhum indicador sozinho vai te tornar lucrativo. Se alguém te disser o contrário, está te vendendo um sonho. Qualquer indicador que mostre setas perfeitas de compra/venda pode ser feito para parecer impecável — basta dar zoom na parte certa da história e tirar um print das operações vencedoras. Nós não fazemos isso.  SMC Intraday Formula é uma ferramenta. Ela lê a estrutura do mercado para você, identifica as zonas de maior probabilidade de preço e mostra exatament
Power Candles MT5
Daniel Stein
5 (8)
Power Candles V3 - Indicador de força com auto-otimização O Power Candles V3 transforma a força da moeda e do instrumento num plano de negociação prático em todos os gráficos aos quais está associado. Em vez de se limitar a colorir as velas, executa uma otimização automática em tempo real em segundo plano e apresenta-lhe os melhores valores de Stop Loss, Take Profit e limiar de sinal para o símbolo em questão. Basta um clique para o adotar na negociação em tempo real — as linhas de entrada, Stop
Este produto foi atualizado para o mercado de 2026 e otimizado para as versões mais recentes do MT5. AVISO DE ATUALIZAÇÃO DE PREÇO: Smart Trend Trading System está atualmente disponível por $99 . O preço aumentará para $199 após as próximas 30 compras . OFERTA ESPECIAL: Após comprar o Smart Trend Trading System, envie-me uma mensagem privada para receber o Smart Universal EA GRÁTIS e transformar seus sinais do Smart Trend em operações automatizadas. Smart Trend Trading System é um sistema de tr
SignalTech MT5 is an unique fully rule based trading system for EURUSD, USDCHF, USDJPY, AUDUSD, NZDUSD, EURJPY, AUDJPY, NZDJPY, CADJPY.  All the winning trades with chart setups are published on the comments page. 2026-05 4107 Pips (Until 05-29 NY Closed) 2026-04 2243 Pips 2026-03 2165 Pips 2026-02 2937 Pips 2026-01 2624 Pips 2025-12 1174 Pips It can generate signals with Buy/Sell Arrows and Pop-Up/Sound Alerts. Each signal has clear Entry and Stop Loss levels, which should be automatically flag
Apresentando       Quantum Breakout PRO   , o inovador Indicador MQL5 que está transformando a maneira como você negocia Breakout Zones! Desenvolvido por uma equipe de traders experientes com experiência comercial de mais de 13 anos,       Quantum Breakout PRO       foi projetado para impulsionar sua jornada comercial a novos patamares com sua estratégia de zona de fuga inovadora e dinâmica. O Quantum Breakout Indicator lhe dará setas de sinal em zonas de breakout com 5 zonas-alvo de lucro e su
GoldenX Entry MT5
Kareem Abbas
5 (9)
GoldenX Entry é um indicador para MT5 com um algoritmo adaptativo Smart Entry Trend, um sistema de pontuação de sinais, um detector de regime de mercado e um filtro de volatilidade. Cada sinal inclui um nível de entrada calculado, três níveis de Take-Profit (TP1, TP2, TP3) e um nível de Stop-Loss. Ele é construído sobre múltiplas camadas analíticas projetadas para se adaptar a diferentes condições de mercado, combinando um sistema analítico multicamadas com um otimizador integrado e um sistema d
Azimuth Pro
Ottaviano De Cicco
5 (7)
Azimuth Pro V2: Estrutura Fractal Sintética e Entradas Confirmadas para MT5 Visão geral Azimuth Pro é um indicador de estrutura swing multinível da Merkava Labs . Quatro camadas de swing aninhadas, VWAP ancorado em swings, detecção de padrões ABC, filtragem estrutural de três timeframes e entradas confirmadas em barra fechada — um gráfico, um fluxo de trabalho dos micro-swings aos macro-ciclos. Este não é um produto de sinais cegos. É um fluxo de trabalho baseado em estrutura para traders que v
FX Trend MT5 NG
Daniel Stein
5 (6)
FX Trend NG: A Nova Geração de Inteligência de Tendência Multi-Mercado Visão Geral FX Trend NG é uma ferramenta profissional de análise de tendências e monitoramento de mercado em múltiplos períodos de tempo. Permite compreender a estrutura completa do mercado em segundos. Em vez de alternar entre vários gráficos, você visualiza instantaneamente quais ativos estão em tendência, onde o momentum está enfraquecendo e onde existe alinhamento forte entre diferentes timeframes. Oferta de Lançamento
Quantum TrendPulse
Bogdan Ion Puscasu
5 (25)
Apresentando   Quantum TrendPulse   , a ferramenta de negociação definitiva que combina o poder do   SuperTrend   ,   RSI   e   Stochastic   em um indicador abrangente para maximizar seu potencial de negociação. Projetado para traders que buscam precisão e eficiência, este indicador ajuda você a identificar tendências de mercado, mudanças de momentum e pontos de entrada e saída ideais com confiança. Principais características: Integração SuperTrend:   siga facilmente a tendência predominante do
Trend Catcher ind mt5
Ramil Minniakhmetov
5 (4)
INDICADOR TREND CATCHER O Indicador Trend Catcher analisa os movimentos de preços do mercado, utilizando uma combinação de indicadores de análise de tendências adaptativos, proprietários e personalizados pelo autor. Identifica a verdadeira direção do mercado, filtrando o ruído de curto prazo e focando a força do momentum subjacente, a expansão da volatilidade e o comportamento da estrutura de preços. Utiliza também uma combinação de indicadores personalizados de suavização e filtragem de tendê
RelicusRoad Pro MT5
Relicus LLC
4.96 (24)
RelicusRoad Pro: Sistema Operacional Quantitativo de Mercado 70% DE DESCONTO ACESSO VITALÍCIO (TEMPO LIMITADO) - JUNTE-SE A 2.000+ TRADERS Por que a maioria dos traders falha mesmo com indicadores "perfeitos"? Porque eles operam Conceitos Únicos no vácuo. Um sinal sem contexto é uma aposta. Você precisa de CONFLUÊNCIA . RelicusRoad Pro não é um simples indicador de seta. É um Ecossistema Quantitativo de Mercado completo. Ele mapeia a "Estrada do Valor Justo", distinguindo ruído de rupturas estru
Gann Made Easy   é um sistema de negociação Forex profissional e fácil de usar, baseado nos melhores princípios de negociação usando a teoria do sr. W. D. Gann. O indicador fornece sinais precisos de COMPRA e VENDA, incluindo níveis de Stop Loss e Take Profit. Você pode negociar mesmo em movimento usando notificações PUSH. Entre em contato comigo após a compra para receber instruções de negociação e ótimos indicadores extras gratuitamente! Provavelmente você já ouviu muitas vezes sobre os método
Este produto foi atualizado para o mercado de 2026 e otimizado para as versões mais recentes do MT5. AVISO DE ATUALIZAÇÃO DE PREÇO: Smart Price Action Concepts está atualmente disponível por $200 . O preço aumentará para $299 após as próximas 30 compras . OFERTA ESPECIAL: Após comprar, envie-me uma mensagem privada para receber Bônus grátis + Presente . Antes de tudo, vale destacar que esta ferramenta de trading é um indicador sem repaint, sem redesenho e sem atraso, o que a torna ideal para tr
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
Meta Trend PRO MT5
Roman Podpora
5 (1)
META TREND PRO       — é uma ferramenta de acompanhamento de tendências que elimina as suposições nas negociações e mostra onde o mercado já tomou sua decisão. O indicador identifica pontos-chave onde tendências e estruturas mudam e destaca áreas onde o preço retorna para que os principais investidores assumam posições. Você não apenas vê o movimento, mas também entende a lógica por trás dele. Todos os sinais são registrados após o fechamento da vela, não são redesenhados e são salvos no gráfic
Atomic Analyst MT5
Issam Kassas
4.24 (34)
Este produto foi atualizado para o mercado de 2026 e otimizado para as versões mais recentes do MT5. AVISO DE ATUALIZAÇÃO DE PREÇO: Atomic Analyst está atualmente disponível por $99 . O preço aumentará para $199 após as próximas 30 compras . OFERTA ESPECIAL: Após comprar o Atomic Analyst, envie-me uma mensagem privada para receber o Smart Universal EA GRÁTIS e transformar seus sinais do Atomic Analyst em operações automatizadas. Atomic Analyst é um indicador de trading de Price Action sem repa
Versão Swing M30/H1/H4 disponível Quer pegar os grandes movimentos? Gold Signal Swing Pro (M30/H1/H4). Alvo: $20-$80+ por operação. https://www.mql5.com/en/market/product/177643 KURAMA GOLD SIGNAL PRO (MT5) — Sistema Completo de Trading XAUUSD com 7 Camadas de Filtros Sem repintura. Sem redesenho. Sem atraso. Cada sinal permanece fixo após confirmado. Bônus para compradores: Quem adquirir a licença de compra completa recebe o AI Zone Radar (valor $59
Reversion King Indicator
Eugen-alexandru Zibileanu
5 (4)
Um novo Rei chegou à cidade - Indicador + Gestão de Ordens (TP1 + TP2 + TP3) + Enviador opcional de sinais para Telegram INCLUÍDO (GRÁTIS) (SISTEMA COMPLETO DE TRADING e SINAIS) Nosso melhor EA para Ouro: Gold Slayer Este indicador inclui uma estratégia avançada, um sistema de trading com gestão de ordens personalizável e um sistema de reversão à média que combina extensões de envelopes, apoiado por múltiplos filtros inteligentes de confirmação, como o RSI, para capturar entradas de reversão de
FX Power MT5 NG
Daniel Stein
5 (32)
FX Power: Analise a Força das Moedas para Decisões de Negociação Mais Inteligentes Visão Geral FX Power é a sua ferramenta essencial para compreender a força real das principais moedas e do ouro em quaisquer condições de mercado. Identificando moedas fortes para comprar e fracas para vender, FX Power simplifica as decisões de negociação e revela oportunidades de alta probabilidade. Quer você prefira seguir tendências ou antecipar reversões usando valores extremos de Delta, esta ferramenta adap
Smart Structure Concepts MT5
Cristhian Alexander Gaibor Cuasquer
5 (1)
Este não é mais um indicador de estrutura que desenha zonas e te deixa adivinhando. Smart Structure Concepts lê o mercado por você — marcando estrutura Smart Money Concepts (SMC / ICT) em tempo real em XAUUSD (Ouro), Forex, Índices, Cripto e qualquer outro mercado . Esqueça entrar nos inputs para configurar cada zona: com seu painel interativo tipo dashboard no gráfico , você decide o que mostrar, ocultar ou ajustar com um único clique — sem abrir propriedades, sem reiniciar o indicador. Esta fe
Meridian Pro
Ottaviano De Cicco
5 (2)
Meridian Pro 2.00: Matriz profissional de tendência multi-timeframe para MT5 Meridian Pro 2.00 é uma matriz de tendência adaptativa profissional para MetaTrader 5. Combina o motor original de tendência Meridian, um ribbon limpo no gráfico, setas de sinal em barra fechada, um dashboard de 8 timeframes, Fuel momentum, consenso ponderado, processamento HTF sintético e linhas de contexto de timeframe superior diretamente no gráfico. O objetivo é simples: ler tendência atual, estrutura multi-timefram
FX Levels MT5
Daniel Stein
5 (14)
FX Levels: Suporte e Resistência com Precisão Excepcional para Todos os Mercados Visão Geral Rápida Procurando um meio confiável de identificar níveis de suporte e resistência em qualquer mercado—incluindo pares de moedas, índices, ações ou commodities? FX Levels combina o método “Lighthouse” tradicional com uma abordagem dinâmica de vanguarda, fornecendo uma precisão quase universal. Baseado em nossa experiência real com corretores e em atualizações automáticas diárias mais as de tempo real,
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
Market Structure Order Block Dashboard MT5 é um indicador MT5 projetado para traders que querem ler a estrutura de mercado e as principais zonas de reação do preço diretamente no gráfico. Combina BOS, ChoCH, Order Blocks, Fair Value Gaps (FVG), Liquidez, Kill Zones, Volume Profile e um painel compacto para análise rápida. Este indicador é voltado para traders que usam estrutura de mercado, conceitos ICT e Smart Money como quadro de decisão. Pode ajudar a identificar continuações de tendência, po
Mais do autor
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
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
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
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:
Sem comentários
Responder ao comentário