Oscillator Regime Suite

This indicator applies the convergence/divergence construction — fast moving average minus slow, with a signal line — to a volume-derived series rather than to price. Three sources are selectable: Cumulative Volume Delta, Force Index, and On Balance Volume.

Adaptive volatility bands are drawn over the result, and every completed bar is classified into one of five regime states. That state is exposed as a numeric buffer, so an Expert Advisor can read it directly.

Why the source matters

A standard MACD measures price momentum, which is largely visible in the candles above it. These three sources measure something else: whether volume was accumulating or distributing while that price move happened.

The three are not interchangeable, and one of the screenshots shows all three on the same chart with identical settings so the differences are visible side by side.

  • Cumulative Volume Delta — cumulative signed volume, re-anchored at the start of each day, week or month. The anchor is what makes it a session measure rather than an all-time one.
  • Force Index — the bar's price change multiplied by its volume, then smoothed. A separate quantity from the other two.
  • On Balance Volume — cumulative signed volume running continuously from the start of history, with no reset.

CVD and OBV share a cumulative signed-volume basis and differ only by anchoring. Set the CVD anchor to continuous and the two produce the same series, which is a useful check that both code paths agree.

The five regime states

Each completed bar is classified by where the histogram sits relative to the bands, and whether it is still expanding:

  • Strong bullish — above the upper band and still expanding. Buffer value +2
  • Weak bullish — above the upper band but fading. Buffer value +1
  • Neutral — inside the bands. Buffer value 0
  • Weak bearish — below the lower band but easing. Buffer value −1
  • Strong bearish — below the lower band and still expanding. Buffer value −2

A band breach on its own does not say whether a move still has strength behind it. The direction of the histogram is what separates a move that is still building from one that has begun to fade, and that is the distinction the five states encode.

Tuning how selective the classification is

The bands are a standard deviation around a moving average, so they widen when activity rises and contract when it falls. Two inputs control how often the states change.

Bands period sets the window. Apply bands to signal line chooses whether they are measured over the signal or over the histogram itself. Two screenshots show the difference: at the defaults the states cycle through a move, while with the bands taken over the histogram at a longer period the histogram stays inside them most of the time and colours only on genuine breakouts.

Neither setting is the correct one. It depends on whether you want the classification to track every swing or to mark only the extremes.

Reading it from an Expert Advisor

The regime bias is buffer 6, not buffer 5. Buffer 1 holds the histogram's colour index and buffer 5 backs a hidden plot, so the data buffers are not numbered consecutively with the visible plots. This catches people out, which is why it is stated plainly here.

int h = iCustom(_Symbol, _Period, "OscillatorRegimeSuite"); double bias[]; ArraySetAsSeries(bias, true); CopyBuffer(h, 6, 0, 100, bias); // +2, +1, 0, -1 or -2

  • 0 — histogram
  • 1 — histogram colour index
  • 2 — signal line
  • 3 — upper band
  • 4 — lower band
  • 5 — plot placeholder
  • 6regime bias, the EA-facing output

Buffers 7 and 8 hold the fast and slow moving averages and are used internally. They are not part of the documented interface.

One screenshot shows the Data Window with these values labelled against a single bar, alongside the built-in MACD on the same chart for comparison.

Inputs

  • Source series — Cumulative Volume Delta, Force Index, or On Balance Volume
  • Applied volume — tick volume or real volume
  • CVD anchor — continuous, daily, weekly or monthly; applies to the CVD source only
  • Force Index smoothing — period and method, applied to the Force source only; 13 and simple by default
  • Fast and slow MA — period and method for each; 12 and 26, both exponential by default
  • Signal MA — period and method; 9 and simple by default
  • Enable bands and regime classification — off leaves a plain convergence/divergence oscillator with no states
  • Apply bands to signal line — on by default; off measures them over the histogram instead
  • Bands period and deviation multiplier — 20 and 1.618 by default

What the screenshots show

  • All three sources on one chart — Bitcoin weekly, identical settings, with the built-in MACD at the bottom as a control. The three volume series differ from each other and from price momentum.
  • The five states across a turn — EURGBP H4, where the progression from strong bearish through neutral to strong bullish and back is legible bar by bar.
  • The Data Window — every buffer labelled on a single bar, with the regime bias reading −2.00, next to the built-in MACD's two unlabelled values.
  • A sharp move on USDJPY hourly — the volume series turned negative while the price MACD was still positive. One window on one instrument; see the note below on what this does and does not show.
  • Gold on M15 with a daily anchor — CVD resetting each session, alongside a much slower OBV instance on the same chart.
  • Silver H4 at 50/200/20 and US30 daily at 34/89/13 — the periods are inputs, and the classification holds at settings well away from the defaults.
  • A selective configuration — GBPUSD hourly with the bands over the histogram at a longer period, where most bars stay neutral and only clear breakouts are coloured.
  • The anchor notice — a daily anchor requested on a daily chart, where it would reset every bar. The indicator says so in the Experts log and falls back to a continuous series.
  • The inputs dialog — every setting, with the indicator visible behind it.

Calculation behaviour

Closed-bar values are final. The forming bar updates until it closes and is recomputed on each tick rather than being frozen at first touch.

The cumulative sources are advanced one bar at a time from the previous bar's value, so reprocessing the forming bar cannot double-count its volume — a failure mode that makes a cumulative series drift upward without bound.

Nothing is drawn until the calculation has the history it requires. With the default periods that is 55 bars, and it rises if you lengthen the bands or use the Force source. Values are never computed from a partial window and then plotted as though they were complete.

An anchor that cannot work on the current timeframe — a daily reset on a daily chart, for instance, which would reset every bar — is reported in the Experts log and replaced with a continuous series. The pane's name changes to match, so the chart always states which series it is actually showing.

Notes

  • Draws in a separate window with nine buffers, seven of them documented above.
  • The bands are always taken over a simple moving average, whatever method is chosen for the signal line. This follows the usual convention for standard-deviation bands.
  • Real volume is only available where your broker supplies it. Tick volume is the default and works everywhere.
  • More than one instance can be attached to the same chart, with different sources or different periods.
  • No external dependencies. Every value is calculated inside the indicator. It does not call any other indicator, so there are no handles to fail, nothing to install alongside it, and no dependency on the state of your standard indicator folder.

What this is and is not

This is a tool for technical analysis and for filtering market conditions. It is not a trading system, it produces no buy or sell signals, it gives no investment advice, and it does not open or manage positions.

It is descriptive rather than predictive. Where a screenshot shows a volume series turning before price did, that is one window on one instrument, chosen because it was interesting. It is not evidence that the series leads price, and establishing such a claim would require testing across many instruments and market conditions. No claim is made about performance.

More tools from this developer

I build MT5 indicators and Expert Advisors with an emphasis on clean, documented, no-repaint code — closed-bar logic, validated buffers, and no dependencies on other indicators.

Two of the three sources here are also published on their own, free: Anchored Volume Delta with Adaptive Bands and Force Index with Adaptive Volatility Bands. Each plots one series with the bands but without the regime classification, and they are a good way to see whether the approach suits you before buying this.

If you only want the On Balance Volume source with the five-state classification, OBVCD Pro does exactly that as a single-source indicator.

See all published products →

Questions about the calculation, the buffers, or using this in your own EA? Send me a private message — I am happy to answer.

Built and maintained by Narayanan Mohanan, MT5/MQL5 developer.

Recommended products
CosmiCLab SMC FIBO CosmiCLab SMC FIBO is a professional trading indicator designed for traders who use Smart Money Concepts (SMC), market structure analysis and Fibonacci retracement levels. The indicator automatically detects market swings and builds Fibonacci levels based on the latest impulse movement. It also identifies market structure changes such as BOS (Break of Structure) and CHOCH (Change of Character), helping traders understand the current market direction. CosmiCLab SMC FIBO also pr
RBreaker
Zhong Long Wu
RBreaker Gold Indicators is a short-term intraday trading strategy for gold futures that combines trend following and intraday reversal approaches. It not only captures profits during trending markets but also enables timely profit-taking and counter-trend trading during market reversals. This strategy has been ranked among the top ten most profitable trading strategies by the American magazine   Futures Truth   for 15 consecutive years. It boasts a long lifecycle and remains widely used and st
Price Magnet — Price Density and Attraction Levels Indicator Price Magnet is a professional analytical tool designed to identify key support and resistance levels based on statistical Price Density. The indicator analyzes a specified historical period and detects price levels where the market spent the most time. These zones act as “magnets,” attracting price action or forming a structural base for potential reversals. Unlike traditional Volume Profile tools, Price Magnet focuses on price-time d
Overview Cardwell Range Analyze reads the market through an RSI range regime, inspired by Andrew Cardwell's RSI rules, combined with a trend filter. It adds higher timeframe confirmation and an ADX filter to avoid weak, sideways markets. When momentum and trend agree, the indicator prints a Buy or Sell signal and draws a complete trade plan on the chart: Entry, Stop Loss and three Take Profit targets, with shaded risk and reward zones. A compact dashboard summarizes the market state at a glance.
FREE
Trend Master V2
Oratile Pitsoane
What Is Trend Master Pro? Trend Master Pro   is a professional-grade trend trading indicator built for MetaTrader 5. It was designed with one goal in mind — to keep you on the right side of the market at all times by combining three powerful technical tools into a single, clean, easy-to-read display directly on your price chart. Instead of cluttering your screen with multiple separate indicators, Trend Master Pro fuses an   EMA Ribbon trend filter , a   ZigZag swing point engine , and a   breako
HAS RSI Signal — Professional Trend Indicator with SL/TP Calculation HAS RSI Signal is a powerful trading tool that combines time-tested classics with modern noise-filtering algorithms. The indicator analyzes the market through the prism of Heiken Ashi Smoothed candles and the RSI oscillator, providing clear entry signals at trend reversals or when exiting overbought/oversold zones. Key Advantages: Double Filtration: Using Heiken Ashi Smoothed eliminates market "noise," while RSI confirms the mo
Titan Action HUD Titan Action HUD, MetaTrader 5 terminali içinde piyasa izlemeyi optimize etmek için tasarlanmış kapsamlı çok zaman dilimli analitik bir gösterge panelidir. Birden fazla dönemden alınan gerçek zamanlı teknik verileri tek bir ekrana toplayarak, çeşitli grafikler arasında sürekli geçiş yapma ihtiyacını ortadan kaldırır. Panel, piyasa ortamlarını sürekli tarar, yapısal trendleri, hacim metriklerini ve aktif işlem oturumlarını birleşik bir görsel matriks içinde gösterir. 6.10 sürümün
Renko System
Marco Montemari
This indicator can be considered as a trading system. It offers a different view to see the currency pair: full timeless indicator, can be used for manual trading or for automatized trading with some expert advisor. When the price reaches a threshold a new block is created according to the set mode. The indicator beside the Renko bars, shows also 3 moving averages. Features renko mode median renko custom median renko 3 moving averages wicks datetime indicator for each block custom notification
[ MT4 Version ]  [ Kill Zones ]  [ SMT Divergences ] Order Blocks ICT Multi TF - FVG-Confirmed Order Blocks for MT5 Most ICT order block indicators for MT5 turn every opposite candle into an order block. The chart fills up and the label stops meaning anything. Order Blocks ICT Multi TF uses Fair Value Gap confirmation and monitors up to four timeframes from one chart. It is built for traders who want a defined reason for the block, not another coloured rectangle. GIVE THE BLOCK A REASON TO MATTE
Trade smarter, not harder: Empower your trading with Harmonacci Patterns This is arguably the most complete harmonic price formation auto-recognition indicator you can find for the MetaTrader Platform. It detects 19 different patterns, takes fibonacci projections as seriously as you do, displays the Potential Reversal Zone (PRZ) and finds suitable stop-loss and take-profit levels. [ Installation Guide | Update Guide | Troubleshooting | FAQ | All Products  ] It detects 19 different harmonic pric
TrendDetect
Pavel Gotkevitch
The Trend Detect indicator combines the features of both trend indicators and oscillators. This indicator is a convenient tool for detecting short-term market cycles and identifying overbought and oversold levels. A long position can be opened when the indicator starts leaving the oversold area and breaks the zero level from below. A short position can be opened when the indicator starts leaving the overbought area and breaks the zero level from above. An opposite signal of the indicator can b
Multi-Timeframe Money Flow Index (MTF MFI) with Smart Divergence and Dashboard Unlock the flow of institutional money across every timeframe. Are you tired of guessing the trend only to be trapped by a sudden reversal? The Multi-Timeframe Money Flow Index (MTF MFI) is a professional-grade trading tool designed to provide a bird's-eye view of market liquidity and momentum. By aggregating volume-weighted data from W1 down to M1, this indicator eliminates noise and highlights high-probability tra
RVE Echo Indicator MT5 — Rejection Velocity Echo RVE Echo Indicator is a custom MetaTrader 5 technical indicator designed to detect abnormal price rejection, sharp velocity changes, and possible reversal zones in the market. RVE stands for Rejection Velocity Echo . The indicator studies how strongly price moves compared to its recent rejection behavior, then highlights moments where the current price movement appears unusually aggressive. This can help traders identify possible exhaustion, rejec
The Trend Complete indicator is a signal indicator and has interesting properties. It should be taken into account that this indicator reflects extremes and should be used as an additional one, and another instrument should be used for the entry point. Searches for and displays pivot points on the price chart. Trend indicators are one of the main tools for analyzing trends in the Forex market. The indicator is able to transmit all types of signals to the user: messages, E-mail and Push! The go
CleanTrend by NeuralTick is a trend indicator that NEVER repaints the past. Tired of indicators that look beautiful on history but repaint signals in live trading? Three reasons why traders who are fed up with noise and deception choose CleanTrend: 100% NO REPAINTING. The line colour is fixed forever. Not a single bar will change retroactively — test it in the Strategy Tester. DUAL NOISE FILTER. A signal appears only when the price has moved beyond a set threshold (MinMove) and has held
Automated Trendlines MT5
Georgios Kalomoiropoulos
Trendlines  are the most essential tool of technical analysis in forex trading.  Unfortunately, most  traders don’t draw them correctly. Automated Trendlines indicator is a professional tool for serious traders that help you visualize the trending movement of the markets . AMAZING OFFER --> Activations from 5 to 20 for "MTF Supply Demand Zones" and "Automated Trendlines" There are two types of Trendlines Bullish Trendlines and Bearish Trendlines. In the uptrend, Forex trend line is drawn throu
BlueBoat – Prime Cycle is a technical indicator for MetaTrader 5 that visualizes market cycles based on the Fimathe cycle model (Marcelo Ferreira) . It identifies and displays historic and live cycle structures such as CA, C1, C2, C3, etc., helping traders understand the rhythm and timing of price movement across multiple sessions. This tool is ideal for manual analysis or as a supporting signal in discretionary strategies. Key Features Historical Cycle Analysis – Backtest and visualize as many
Wyckoff Strategy with signal is a MetaTrader 5 indicator that applies the Wyckoff Method to detect accumulation and distribution, marks the key Wyckoff events on the chart, and prints entries with stop loss and three take-profit targets. Features Automatic phase analysis: tracks the four Wyckoff phases (accumulation, markup, distribution, markdown) driven by institutional money. Trading-range mapping: draws the current range high (resistance) and low (support) and shades the active accumulation
Extreme Breakout Signal is a trading strategy based on price breaking key support and resistance levels. It helps identify potential trend changes and capture new upward or downward movements. Parameter Extreme Radius : A customizable parameter that can be set differently for each timeframe Key Principles Support & Resistance : Price often reacts at these levels; a breakout may indicate a new trend. Confirmation : Use volume or other indicators to confirm breakout validity. Signal Types Buy Sig
MercariaPattern1-2-3 відстежує рух ціни, знаходить трьоххвильові структури 1-2-3 та підсвічує момент, коли сценарій підтверджується пробоєм ключового рівня. MercariaPattern1-2-3 tracks price movement, detects three-leg 1-2-3 structures and highlights the moment when the scenario is confirmed by a key level breakout. Індикатор збирає локальні свінги в компактну фігуру 0–1–2–3 , чекає підтвердженого пробою та будує стрілку входу з готовими рівнями SL/TP. The indicator combines local swings into a
Market Overview MT5
Mehran Sepah Mansoor
Optimize your trading decisions with our market strength and sentiment indicator and no longer trade against the trend! Meticulously designed for serious traders who value accurate and timely information, our indicator provides a bird's-eye view of the 28 major pairs in a very simple way. This tool is able to rank the currency pairs based on terms of popularity, bullish or bearish trend strength and percentage of buyers and sellers /   MT4 version .  Features Real-Time Trend Strength: Get an a
AutoTrend Pro
Aram Hussein Mohammed
TL Method — Automatic Trendline Detection & Strength Indicator Tired of drawing trendlines manually? TL Method does it for you — automatically detecting, drawing, and scoring trendlines in real time. What it does: Scans up to 1000 bars to find valid support and resistance trendlines Scores each trendline by counting confirmed anchor touches Generates buy/sell signal arrows when price approaches strong trendlines Alerts you via popup, push notification, or sound — with smart cooldown to avoid spa
The  SuperTrend Advance Trading  is a widely-used technical indicator based on  SuperTrend Strategy + Price Action + EMA . How it works: -  Buy/Sell Signals  can be generated when the trend reverses, the conditions of Price action, TrendLine and EMA are met. - After the  Signal  appears, be patient and wait until the candle closes, at that time place the order as soon as possible. You may have time to review your entry, consider whether it is a good entry or not. - Carefully review the entry, up
ATrend
Zaha Feiz
4.83 (18)
ATREND: How It Works and How to Use It How It Works The " ATREND " indicator for the MT5 platform is designed to provide traders with robust buy and sell signals by utilizing a combination of technical analysis methodologies. This indicator primarily leverages the Average True Range (ATR) for volatility measurement, alongside trend detection algorithms to identify potential market movements. Leave a massage after purchase and receive a special bonus gift. Key Features: ⦁ Dynamic Trend Detect
STRICTLY FOR BOOM INDEX ONLY!!!!! Here I bring the Maximum Trend Arrows OT1.0 MT5 indicator. This indicator is made up of a combination of different trend indicators for entries and exits, for entries an orange arrow will paint on the chart below the current market and a red flag for closing of trades and it produces buy arrows only. When the orange arrow appears, it will appear along with it's sound to notify you. The 1H timeframe is recommended, don't use it anywhere else than on the 1H timefr
Oscillator trading signals - это динамический индикатор, определяющий состояние к продолжению тенденции роста или падению цены торгового инструмента и отсечению зон с нежелательной торговлей. Индикатор состоит из 2 линий осцилляторов. Медленная и быстрая сигнальная линия.  Шкала отображения перевернутая. Зоны вблизи 0 свидетельствуют о тенденции роста цены валютной пары. Зоны -100 свидетельствуют о падении цены валютной пары. На основном графике в виде стрелок отображается потенциально выгодные
The   Trendlines Oscillator   helps traders identify trends and momentum based on the normalized distances between the current price and the most recently detected bullish and bearish trend lines. The indicator features bullish and bearish momentum, a signal line with crossings, and multiple smoothing options. USAGE The   Trendlines Oscillator   works by systematically: Identifying pivot highs and lows. Connecting pivots to form bullish (support) and bearish (resistance) trendlines. Measuring
Features All Ichimoku Signals (Selectable) : Display all reliable signals generated by the Ichimoku indicator. You can choose which signals to view based on your preferences. Filter by Signal Strength : Sort signals by their strength—whether they are weak, neutral, or strong. Live Notifications : Receive real-time notifications for Ichimoku signals. Transparent Cloud : Visualize the Ichimoku cloud in a transparent manner. Available Signals Tenkensen-Kijunsen Cross Price-Kijunsen Cross Price-C
Multi-Mode Gann Angles Indicator (MT5) A live trading signal using this indicator is available here: https://www.mql5.com/ru/signals/2376159 The indicator draws a fan of trend lines after clicking on a selected candle. The visual structure is similar to classic Gann angles. The scale of the angles can be calculated either using a fixed value or based on the average price movement over a specified number of bars. The indicator works independently on each timeframe. Trend lines are visible only
Footprint is an indicator for order flow and volume analysis. It helps identify market structure at the cluster level, find key zones with increased activity, and work with filters directly on the chart without constantly opening the settings window. Footprint Indicator Features cluster-based Bid x Ask and Delta charts; on-chart control panel; sliders for filter adjustments; Absorption; Initiative; Stacked Imbalances; Big Trades; dPOC / Dynamic Point of Control; Delta; side market profile; cumul
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
Trend Sniper X
Sarvarbek Abduvoxobov
5 (8)
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
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
Neuro Poseidon MT5
Daria Rezueva
4.73 (55)
Neuro Poseidon is a new indicator by Daria Rezueva. It combines precise trading signals with adaptive TP/SL levels - creating best possible trades as a result! Message me and get  Neuro Poseidon Assistant  as a gift to automize your trading process! What makes it stand out? 1. Proven profitability on all assets and timeframes 2. Only confirmed BUY and SELL signals present on the chart 3. Adaptive TP & SL levels generated by the software for each trade 4. Easy to understand - suitable for al
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.) Version 1.4 is game changer, default setting adjusted for GBPUSD M1 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 y
Divergence Bomber
Ihor Otkydach
4.9 (92)
From time to time, I trade using this system myself. Check out my manual BOMBER trading on a live account— LIVE SIGNAL 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"
Atomic Analyst MT5
Issam Kassas
4.38 (47)
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
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
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
Azimuth Pro
Ottaviano De Cicco
5 (7)
Azimuth Pro V2: Synthetic Fractal Structure and Confirmed Entries for MT5 Overview Azimuth Pro is a multi-level swing structure indicator by Merkava Labs . Four nested swing layers, swing-anchored VWAP, ABC pattern detection, three-timeframe structural filtering, and closed-bar confirmed entries — one chart, one workflow from micro-swings to macro-cycles. This is not a blind signal product. It is a structure-first workflow for traders who care about location, context, and timing. ️ Summer Sale
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
ARIPoint
Temirlan Kdyrkhan
1 (1)
ARIPoint is a powerful trading companion designed to generate high-probability entry signals with dynamic TP/SL/DP levels based on volatility. Built-in performance tracking shows win/loss stats, PP1/PP2 hits, and success rates all updated live. Key Features: Buy/Sell signals with adaptive volatility bands Real-time TP/SL/DP levels based on ATR Built-in MA Filter with optional ATR/StdDev volatility Performance stats panel (Success, Profit/Loss, PP1/PP2) Alerts via popup, sound, push, or email Cu
TrendMaestro5
Stefano Frisetti
note: this indicator is for METATRADER4, if you want the version for METATRADER5 this is the link:  https://www.mql5.com/it/market/product/108106 TRENDMAESTRO ver 2.5 TRENDMAESTRO recognizes a new TREND from the start, he never makes mistakes. The certainty of identifying a new TREND is priceless. DESCRIPTION TRENDMAESTRO identifies a new TREND in the bud, this indicator examines the volatility, volumes and momentum to identify the moment in which there is an explosion of one or more of these da
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
RelicusRoad Pro MT5
Relicus LLC
4.96 (24)
RelicusRoad Pro: Quantitative Market Operating System 70% OFF LIFETIME ACCESS (LIMITED TIME) - JOIN 2,000+ TRADERS Why do most traders fail even with "perfect" indicators? Because they trade Single Concepts in a vacuum. A signal without context is a gamble. To win consistently, you need CONFLUENCE . RelicusRoad Pro is not a simple arrow indicator. It is a complete Quantitative Market Ecosystem . It maps the "Fair Value Road" price travels on, distinguishing between random noise and true structur
Axiom Matrix
Issam Kassas
5 (5)
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
KURAMA GOLD SIGNAL PRO (MT5) — 7-Layer Filter, Auto TP/SL, Quality Score & Signal History Save | Complete XAUUSD Trading System No repaint in real time. The moment a signal appears, the arrow, entry, TP and SL are locked on the spot and never move afterward. What you trade is this real-time signal. And in v7.20, every signal that is actually sent is auto-saved and restored exactly after restart. BUYER BONUS Buy the lifetime license and receive AI Zone Radar (
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
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
Precision Spike Detector
Francisco Mandomo Simbine
5 (1)
Precision Spike Detector V3 – Institutional-Grade AI Trading System Attention: The price increases by US$50 for every 10 purchases.  Final price: US$599 Precision Spike Detector V3   is a   state-of-the-art, institutional-grade market analysis system   for   MetaTrader 5 , designed to detect   high-probability market movements   in synthetic indices such as   Boom, Crash, GainX, and PainX . After purchase, please contact me through the MQL5 messaging system to receive the order management tool
Btmm state engine pro
Garry James Goodchild
5 (4)
BTMM State Engine Pro by G-Labs — Beat The Market Maker indicator for MetaTrader 5. Asian session range, London and New York kill zones, level progression (L1/L2/L3), peak formation detection (PFH/PFL), entry signals, and a multi-pair scanner from one chart. Stop scanning charts one pair at a time. The State Engine tracks the BTMM daily cycle automatically — Asian box, room boundaries, level blocks, peak formations, and filtered entries — while the scanner dashboard shows level, peak status, d
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
SkyHammer Signal Pro Professional No-Repaint Trend Signal Indicator with Locked Entry, SL and TP Levels SkyHammer Signal Pro is a structured trend and momentum signal indicator designed for traders who want clear, fixed, and verifiable trading signals. It works best on lower timeframes such as M1 and M5 . The indicator does not try to predict tops or bottoms. Instead, it waits for confirmed market structure, trend direction, momentum strength, volatility quality, and target space before generati
PZ Trend Trading MT5
PZ TRADING SLU
3.8 (5)
Capture every opportunity: your go-to indicator for profitable trend trading Trend Trading is an indicator designed to profit as much as possible from trends taking place in the market, by timing pullbacks and breakouts. It finds trading opportunities by analyzing what the price is doing during established trends. [ Installation Guide | Update Guide | Troubleshooting | FAQ | All Products ] Trade financial markets with confidence and efficiency Profit from established trends without getting whips
Bill Williams Advanced
Siarhei Vashchylka
5 (11)
Bill Williams Advanced is designed for automatic chart analysis using Bill Williams' "Profitunity" system. The indicator analyzes four timeframes at once. Manual (Be sure to read before purchasing) Advantages 1. Analyzes the chart using Bill Williams' "Profitunity" system. Signals are displayed in a table in the corner of the screen and on the price chart. 2. Finds all known AO and AC signals, as well as zone signals. Equipped with a trend filter based on the Alligator. 3. Finds "Divergence Bar
SR Liquidity   is a trading indicator designed to reveal the hidden zones where market liquidity concentrates and price reacts most strongly. These special liquidity areas act as powerful support and resistance levels, giving you a clear map of where the market is most likely to reverse. Instead of drawing ordinary Support/Resistance lines, SR Liquidity analyzes real price behavior to detect the zones where buying and selling pressure accumulate. These are actually the pools of liquidity that dr
This dashboard shows the latest available   harmonic patterns   for the selected symbols, so you will save time and be more efficient /   MT4 version . Free Indicator:   Basic Harmonic Pattern Comparison of "Basic Harmonic Pattern" vs. "Basic Harmonic Patterns Dashboard" Indicators Feature Basic Harmonic Pattern Basic Harmonic Patterns Dashboard Functionality Detects and displays harmonic patterns on a single chart Searches multiple symbols and timeframes for harmonic patterns, displays res
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
Gartley Hunter Multi
Siarhei Vashchylka
5 (12)
Gartley Hunter Multi - An indicator for searching for harmonic patterns simultaneously on dozens of trading instruments and on all possible timeframes. Manual (Be sure to read before purchasing) | Version for MT4 Advantages 1. Patterns: Gartley, Butterfly, Shark, Crab. Bat, Alternate Bat, Deep Crab, Cypher 2. Simultaneous search for patterns on dozens of trading instruments and on all possible timeframes 3. Search for patterns of all possible sizes. From the smallest to the largest 4. All fou
Gold Scalper Pro PSAR ADX Dashboard MT5 Professional Multi-Timeframe Trading Indicator with Advanced Signal Detection Overview The Parabolic SAR V3 + ADX is a sophisticated technical analysis indicator that combines the trend-following capabilities of the Parabolic Stop and Reverse (PSAR) with the momentum strength measurement of the Average Directional Index (ADX). This enhanced version features pair-specific optimization, a multi-language alert system, and a comprehensive multi-timeframe dashb
More from author
Anchored Volume Delta with Adaptive Bands
Narayanan Mohanan Mohanan Krishnan
This indicator plots Cumulative Volume Delta (CVD) — the running total of each bar's volume, signed by the direction the bar closed — inside adaptive standard-deviation bands. It answers a question price alone does not: is the move being carried by participation, or is it drifting? The cumulative total restarts at an anchor you choose — daily, weekly or monthly — so the reading is always relative to the current session, week or month rather than to the beginning of chart history. That single con
FREE
Force Index with Adaptive Volatility Bands
Narayanan Mohanan Mohanan Krishnan
This indicator plots the Force Index — each bar's price change multiplied by its volume — inside adaptive standard-deviation bands. Where price alone tells you that a market moved, the Force Index tells you how much effort went into moving it. A large price change on thin volume and a small change on heavy volume are very different events, even when the candles look similar. The Force Index separates them by combining both into a single reading, and the bands place that reading in the context of
FREE
Multi Timeframe Currency Strength Panel
Narayanan Mohanan Mohanan Krishnan
This panel shows where the eight major currencies stand right now, and how each of the 28 major pairs has been moving across nine timeframes at once. Both readings sit on one chart, updated on a timer. Ranking pairs on their own is misleading. When a single currency moves, every pair containing it moves with it, so the top of a pair ranking is often the same currency repeated seven times. This panel separates the driver from the duplicates by decomposing the whole matrix into individual currency
FREE
OBVCD Pro
Narayanan Mohanan Mohanan Krishnan
OBVCD Pro is a momentum oscillator that applies convergence/divergence analysis to On-Balance Volume (OBV) instead of price, combining adaptive volatility bands with a 5-state regime classifier that can be read visually on the chart or consumed directly by an Expert Advisor. Most classical oscillators analyse price alone. OBVCD Pro calculates convergence and divergence from cumulative volume flow, so it measures the participation behind a market move rather than only the movement itself. The res
Currency Strength Oscillator MT5
Narayanan Mohanan Mohanan Krishnan
This indicator plots the relative strength of the eight major currencies as a history, decomposed from the 28 major pairs. A panel tells you where things stand now. This shows how they got there — which currency has been strengthening, which has rolled over, and where the ranking changed hands. All eight series are exposed as documented indicator buffers, so an Expert Advisor can read currency strength directly. How the decomposition works Each of the eight currencies appears in seven of the twe
Filter:
No reviews
Reply to review