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.

Recommended products
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)
General Description This indicator is an enhanced version of the classic Donchian Channel , upgraded with practical trading functions. In addition to the standard three lines (high, low, and middle), the system detects breakouts and displays them visually with arrows on the chart, showing only the line opposite to the current trend direction for a cleaner view. The indicator includes: Visual signals : colored arrows on breakout Automatic notifications : popup, push, and email RSI filter : to val
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.9 (10)
The   "Haven Key Levels PDH PDL"   indicator helps traders visualize key levels on the chart. It automatically marks the following levels: DO (Daily Open)   — the daily open level. NYM (New York Midnight)   — the New York midnight level. PDH (Previous Day High)   — the previous day's high. PDL (Previous Day Low)   — the previous day's low. WO (Weekly Open)   — the weekly open level. MO (Monthly Open)   — the monthly open level. PWH (Previous Week High)   — the previous week's high. PWL (Previou
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 — Accurate Time to Close for MT5 Candle Countdown is a simple and precise tool that shows the remaining time until the current candle closes directly on the chart. When your entry depends on the candle close, even a few seconds matter. This indicator helps you see the exact time and make decisions without rushing or guessing. An indicator for precise control over candle closing time. The indicator displays: time remaining until candle close current server time spread Stop Level
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
Overview Heiken Ashi Smoothwave transforms your chart into smoothed Heiken Ashi candles directly on the main chart window, replacing standard candles for a cleaner trend view. No separate window, no clutter. How it works Calculates Heiken Ashi OHLC values from real price data each bar. Plots colored Heiken Ashi candles directly over the main chart. Automatically hides the native chart candles so only the Heiken Ashi candles are visible. Restores standard candles automatically when the indicator
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
Buyers of this product also purchase
This product was updated for the 2026 market and optimized for the latest MT5 builds . PRICE UPDATE NOTICE: Smart Trend Trading System is currently available for $99. The price will increase to $199 after the next 30 purchases. SPECIAL OFFER:  After purchasing Smart Trend Trading System, send me a private message to claim the Smart Universal EA for FREE and turn your Smart Trend signals into automated trades. Smart Trend Trading System is a complete non-repainting, non-redrawing, and non-laggi
SuperScalp Pro
Van Minh Nguyen
4.69 (29)
SuperScalp Pro –  Professional Multi-Layer Confluence Scalping System SuperScalp Pro is a professional multi-layer confluence scalping system designed to help traders identify higher-probability opportunities with clearer entry confirmation, ATR-based Stop Loss and Take Profit levels, and flexible signal filtering across XAUUSD, BTCUSD, and major Forex pairs. Full documentation available in the product blog:   [User Guide] Auto trading available via SuperScalp Pro Auto Trader EA:   [Auto Trader
Trend Sniper X
Sarvarbek Abduvoxobov
5 (7)
Trend Sniper X is a multi-timeframe trend-following indicator for MetaTrader 5 that helps traders identify trend direction and potential reversal points with clarity and precision. Price Information: The current price is promotional and is subject to change as upcoming updates and new features are released. Code2Profit Channel Master the Market with Multi-Timeframe Analysis! Technical Specifications Platform MetaTrader 5 Indicator Type Multi-Timeframe Trend Indicator Operating Timeframe Any char
Launch Discount Ending Soon — Secure the Lowest Price Today. After purchase, contact via   MQL5 inbox   to receive your buyer kit and bonus. Let's be honest first. No indicator will make you profitable on its own. If someone tells you otherwise, they're selling you a dream. Every indicator that shows perfect buy/sell arrows can be made to look flawless — just zoom into the right window of history and screenshot the winners. We won't do that. SMC Intraday Formula is a tool. It reads the market s
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
M1 Quantum MT5
Hamed Dehgani
4.6 (10)
Live Trading Signals Using M1 Quantum : Signal  (Trade executed automatically by the Quantum Trade Assistant , included free with this product.) Price Plan: Current Price: $169 (Early Adopter Offer) Next Planned Price: $189 Planned Retail Price: $299 Developer Note:  After your purchase, please contact me to receive the latest  recommended settings (set file) , trading tips, and an invitation to our  VIP Support Group , where you can connect with other M1 Quantum users. FAQ - SETFILES - INSTALL
Neuro Poseidon MT5
Daria Rezueva
4.8 (54)
Neuro Poseidon is a new indicator by Daria Rezueva. It combines precise trading signals with adaptive TP/SL levels - creating best possible trades as a result! Message me and get  Neuro Poseidon Assistant  as a gift to automize your trading process! What makes it stand out? 1. Proven profitability on all assets and timeframes 2. Only confirmed BUY and SELL signals present on the chart 3. Adaptive TP & SL levels generated by the software for each trade 4. Easy to understand - suitable for al
Gold Entry Sniper
Tahir Mehmood
5 (16)
Gold Entry Sniper – Professional Multi-Timeframe ATR Dashboard for Gold Scalping & Swing Trading Gold Entry Sniper is a cutting-edge MetaTrader 5 indicator designed to give traders precise buy/sell signals for XAUUSD and other symbols, powered by ATR Trailing Stop logic and a multi-timeframe analysis dashboard . Built for both scalpers and swing traders, it combines real-time market direction , dynamic stop levels , and professional visual dashboards to help you identify high-probability gold en
The legend is back! Entry Points Pro 10. A relaunch of the legendary indicator that held a Top-3 spot on the MQL5 Market for 3 years. Hundreds of rave reviews (589 across two versions), thousands of traders use it every day, 31,000+ demo downloads  across   MT4   +   MT5 . I have read every one of your reviews from the past five years — and instead of promises, I built the answers into version 10. From an author who has been in the market since 1999 and values honesty, his reputation and his cli
The  UZFX {SSS} Scalping Smart Signals v4.0 MT5  is a Non Repaint high-performance trading indicator designed for Scalpers, Day Traders, and Swing Traders  who demand accurate, real-time signals in fast-moving markets. Developed by  (UZFX-LABS) , this indicator combines price action analysis, trend confirmation, and smart filtering to generate high-probability  buy and sell signals, Warning Signals, and Trend Continuation Opportunities across all currency pairs and timeframes.  Stop second-guess
Divergence Bomber
Ihor Otkydach
4.9 (92)
Each buyer of this indicator also receives the following for free: The custom utility "Bomber Utility", which automatically manages every trade, sets Stop Loss and Take Profit levels, and closes trades according to the rules of this strategy Set files for configuring the indicator for various assets Set files for configuring Bomber Utility in the following modes: "Minimum Risk", "Balanced Risk", and "Wait-and-See Strategy" A step-by-step video manual to help you quickly install, configure, and s
Gann Made Easy   is a professional and easy to use Forex trading system which is based on the best principles of trading using the theory of W.D. Gann. The indicator provides accurate BUY and SELL signals including Stop Loss and Take Profit levels. You can trade even on the go using PUSH notifications. PLEASE CONTACT ME AFTER PURCHASE TO GET TRADING  INSTRUCTIONS   AND GREAT EXTRA INDICATORS   FOR FREE! Probably you already   heard   about the Gann trading methods before. Usually the Gann theory
Atomic Analyst MT5
Issam Kassas
4.36 (45)
This product was updated for the 2026 market and optimized for the latest MT5 builds. PRICE UPDATE NOTICE: Atomic Analyst is currently available for $99. The price will increase to $199 after the next 30 purchases . SPECIAL OFFER:  After purchasing Atomic Analyst, send me a private message to claim the Smart Universal EA for FREE and turn your Atomic Analyst signals into automated trades. Atomic Analyst is a non-repainting, non-redrawing, and non-lagging price action trading indicator designed
GoldenX Entry MT5
Kareem Abbas
5 (14)
Price will increase by $20 every 10 buyers to maintain premium value. After purchase, contact via   MQL5 inbox   to receive your buyer kit and bonus. You have probably tested dozens of indicators before. But we are not here to be “just another signals indicator.” Behind GoldenX Entry is intensive research & development focused on building sophisticated algorithms designed to adapt to the real behavior of every instrument — not generic signals recycled everywhere else. From advanced Auto Optim
Trend Catcher ind mt5
Ramil Minniakhmetov
5 (16)
TREND CATCHER INDICATOR Trend Catcher Indicator analyzes market price movements, using a combination of the author’s proprietary and customized adaptive trend-analysis indicators.  It identifies the true market direction by filtering out short-term noise and focusing on underlying momentum strength, volatility expansion, and price structure behavior.  It also uses a combination of smoothing and trend-filtering customized indicators such as moving averages, RSI, and volatility filters.   Real ope
Zoryk Gold
Reda El Koutbane
5 (3)
ZORYK — Advanced XAUUSD Signal System for MetaTrader 5 You know the feeling. You spend time analyzing gold. You wait for the entry. You finally open the trade, and price immediately moves against you. You close too early, move the Stop Loss or hesitate for a few seconds. Then the market reaches the exact destination you originally expected without you. The direction was not always the problem. The real problem was uncertainty. You did not know exactly where the entry should be. You did not know
Power Candles MT5
Daniel Stein
5 (9)
Power Candles V3 - Self-Optimizing Strength Indicator Power Candles V3 turns currency and instrument strength into an actionable trade plan on every chart it is attached to. Instead of just coloring candles, it runs a live auto-optimization in the background and hands you the best Stop Loss, Take Profit and signal threshold for the symbol in front of you. One click adopts it for live trading - entry, Stop Loss and Take Profit rays appear on the chart at the exact prices, and alerts fire with dir
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
Quantum TrendPulse
Bogdan Ion Puscasu
5 (25)
Introducing Quantum TrendPulse , the ultimate trading tool that combines the power of SuperTrend , RSI , and Stochastic into one comprehensive indicator to maximize your trading potential. Designed for traders who seek precision and efficiency, this indicator helps you identify market trends, momentum shifts, and optimal entry and exit points with confidence. Key Features: SuperTrend Integration: Easily follow the prevailing market trend and ride the wave of profitability. RSI Precision: Detect
M1 Sniper MT5
Oleg Rodin
5 (4)
M1 SNIPER   is an easy to use trading indicator system. It is an arrow indicator which is designed for M1 time frame. The indicator can be used as a standalone system for scalping on M1 time frame and it can be used as a part of your existing trading system. Though this trading system was designed specifically for trading on M1, it still can be used with other time frames too. Originally I designed this method for trading XAUUSD and BTCUSD. But I find this method helpful in trading other markets
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
This product was   updated   for the   2026 market   and   optimized   for the   latest MT5 builds . PRICE UPDATEe NOTICE: Smart Price Action Concepts   is currently available for $200. The price will   increase to $299   after the next   30 purchases. SPECIAL OFFER:  After purchasing , send me a private message to claim FREE Bonus + Gift. First of all Its worth emphasizing here that this Trading Tool is Non Repainting , Non Redrawing and Non Lagging Indicator , Which makes it ideal for profe
Introducing   Quantum Breakout PRO , the groundbreaking MQL5 Indicator that's transforming the way you trade Breakout Zones! Developed by a team of experienced traders with trading experience of over 13 years,   Quantum Breakout PRO   is designed to propel your trading journey to new heights with its innovative and dynamic breakout zone strategy. Quantum Breakout Indicator will give you signal arrows on breakout zones with 5 profit target zones and stop loss suggestion based on the breakout b
FX Power MT5 NG
Daniel Stein
5 (33)
FX Power: Analyze Currency Strength for Smarter Trading Decisions Overview FX Power is your go-to tool for understanding the real strength of currencies and Gold in any market condition. By identifying strong currencies to buy and weak ones to sell, FX Power simplifies trading decisions and uncovers high-probability opportunities. Whether you’re looking to follow trends or anticipate reversals using extreme delta values, this tool adapts seamlessly to your trading style. Don’t just trade—trade
Axiom Matrix
Issam Kassas
5 (4)
AXIOM MATRIX MT5 LAUNCH PRICE: $99 Axiom Matrix is available at the launch price of $99. The price will increase to $199 after the first 30 purchases. After your purchase, send me a direct message to receive your instructions and claim your exclusive gift bonus. Axiom Matrix is a professional multi-symbol, multi-timeframe market scanner and decision dashboard for MetaTrader 5. It scans your Market Watch, analyzes multiple timeframes, reads multiple evidence engines, compares the strongest opport
DayTrader PRO
Davit Beridze
5 (1)
DayTrader PRO DayTrader PRO is an advanced trading indicator that combines John Ehlers' Laguerre Filter with a powerful Auto-Optimization Engine. Instead of using fixed parameters, the indicator automatically searches for the best settings based on recent market conditions, helping you adapt to changing volatility without constant manual adjustments. The indicator generates clear BUY and SELL signals together with adaptive Stop Loss and Take Profit levels calculated from current market volatili
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
Currency Strength Wizard   is a very powerful indicator that provides you with all-in-one solution for successful trading. The indicator calculates the power of this or that forex pair using the data of all currencies on multiple time frames. This data is represented in a form of easy to use currency index and currency power lines which you can use to see the power of this or that currency. All you need is attach the indicator to the chart you want to trade and the indicator will show you real s
Reversion King Indicator
Eugen-alexandru Zibileanu
5 (5)
A new King in town - Indicator + Order management indications(tp1+tp2+tp3) + Optional Telegram Signal sender   INCLUDED (FREE) ( FULL TRADING  and SIGNAL SYSTEM ) Our best EA for Gold: Gold Slayer  This indicator includes an advanced Strategy, a trading system with customisable order management and a mean reversion system that combines envelope extensions, backed by multiple intelligent confirmation filters like RSI to catch high probability reversal entries with BUY and SELL signals . The indi
Product News:   Strategy Assistant has been upgraded to the new Version 1.8 with faster performance, a redesigned professional interface, and improved user experience. Developer Note:   Strategy Assistant is under continuous development with regular upgrades and improvements, you can request special pattern you love it. Pricing Note: The current price remains at $50 for the first 100 users , after which the price will increase to $100 . Strategy Assistant Introduction 16 Powerful Trading Strate
More from author
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
Filter:
No reviews
Reply to review