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
GDS Renko Entry Helper - Free Renko Price Interaction Indicator for MetaTrader 5 GDS Renko Entry Helper is a free Renko price interaction indicator for MetaTrader 5. It helps traders highlight important areas where price reacts, slows down, returns to a zone or changes behavior around support and resistance. The tool is designed for manual Renko analysis. It does not generate buy or sell signals and does not tell the trader when to enter the market. Its purpose is to help focus attention on area
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
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. Renko EDGE EA Golden Delta | A
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
KMB Smart Pattern Analyzer PRO
Karwan Msto Mohammed Mohammed
Product Overview KMB Smart Pattern Analyzer PRO is an advanced technical analysis indicator designed to detect and rank high-probability market patterns inside a user-defined chart range. The indicator combines multiple analysis engines in one professional tool: Candlestick pattern analysis Classic chart pattern recognition Harmonic structure detection Smart market structure / SMC-style analysis Instead of showing random signals across the full chart, the indicator allows the user to focus on a
FREE
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
Structure King AI Signal Structure King AI Signal is a professional MetaTrader 5 trading indicator designed to help traders analyze market structure, trend direction, multi-timeframe confirmation and trade management from one clean dashboard. Key Features • Market Structure & Trend Analysis • BUY / SELL Signals • Multi-Timeframe (HTF) Confirmation • Entry Price Levels • Dynamic Stop Loss (SL) • TP1 / TP2 / TP3 Levels • ATR Volatility Analysis • ADX Trend Strength Filter • Adaptive Market Filter
Meta Trend PRO MT5
Roman Podpora
5 (1)
META TREND PRO       — is a trend-following tool that takes the guesswork out of trading and shows where the market has already made its decision. The indicator identifies key points where trends, trends, and structures change, and highlights areas where the price returns for major players to take positions. You don't just see the movement—you understand the logic behind it. All signals are recorded after the candle closes, are not redrawn, and are saved on the chart, allowing you to confidently
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
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
MARSI — Momentum & Market Phase Indicator for MetaTrader 5 Designed for volatile intraday markets. MARSI is a professional momentum and market-phase indicator designed to help traders identify directional momentum, market conditions and potential trading opportunities without relying on a single traditional indicator reading. It is particularly suitable for fast and volatile instruments such as XAUUSD and NASDAQ , where market conditions can change rapidly. WHY MARSI? Traditional oscillators c
Utraspikedetector
Odete Argelio Simbine
UltraSpikeDETECTOR for MQL5 is a professional market indicator designed to detect sudden price spikes and market trends efficiently. It provides real-time alerts, clear visual signals, and full integration with the MQL5 platform. Fully customizable and adaptable to various trading strategies, it helps traders monitor market movements more effectively. This tool is intended to support informed decision-making and improve trading analysis. No profit guarantees are provided, ensuring compliance wit
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
Buyers of this product also purchase
SMART TREND TRADING SYSTEM — SPECIAL OFFER Your trading system. Your automation EA. Your training and support. Get Smart Trend Trading System for MT5 for $99 and receive Smart Universal Expert Advisor FREE to automate its signals. STTS brings trend direction, entry and exit signals, reversal zones, and important price levels together on your chart. Follow the system manually, or connect the included EA for automated execution using your chosen settings. The current $99 price applies to the next
Trend Sniper X
Sarvarbek Abduvoxobov
4.88 (34)
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. for MT4: https://www.mql5.com/en/market/product/193245 Price Information: The current price is promotional and is subject to change as upcoming updates and new features are released. Bonus Offer: To get the FREE Auto-Trade Assistant EA for this indicator, please message the author after purchasing. Code2Profit Channe
Neuro Poseidon MT5
Daria Rezueva
4.79 (53)
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
Unix Scalper
Issam Kassas
5 (2)
UNIX SCALPER — SPECIAL OFFER Find the setup. See the plan. Choose how to trade it. Get UNIX Scalper for MT5 for $99 and receive Smart Universal Expert Advisor FREE to automate its signals. UNIX Scalper brings market analysis, BUY/SELL/WAIT decisions and Entry, Stop Loss, TP1 and TP2 levels into one organized panel. Follow the trade plan manually or connect the included EA for automated execution using your chosen settings. The current $99 price applies to the next 30 purchases. After that, the p
M1 Sniper MT5
Oleg Rodin
5 (7)
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
Entry Points Pro 10 — the legend of the MQL5 Market. Three years in the Market's Top-3. 595 reviews across two versions. Over 31,000 demo downloads. Thousands of traders open their charts with it every morning. Built and traded by an author who has been in the market since 1999. Version 10 is the biggest rebuild in the indicator's history: I read every review from five years — and built the answers into the code. WHAT IT DOES It shows the entry point in advance — strictly without repainting. Th
Atomic Analyst MT5
Issam Kassas
4.44 (57)
ATOMIC ANALYST — SPECIAL OFFER Your market analysis. Your automation EA. Your training and support. Get Atomic Analyst for MT5 for $99 and receive Smart Universal Expert Advisor FREE to automate its signals. Atomic Analyst brings price action, trend direction, entry and exit signals, Stop Loss and multiple Take Profit levels together on your chart. Trade manually using its analysis, or connect the included EA for automated execution using your chosen settings. The current $99 price applies to t
The UZFX {SSS} Scalping Smart Signals v5.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-guessing
Scalper Vault   is a professional scalping system which provides you with everything you need for successful scalping. This indicator is a complete trading system which can be used by forex and binary options traders. The recommended time frame is M5. The system provides you with accurate arrow signals in the direction of the trend. It also provides you with top and bottom signals and Gann market levels. The indicator provides all types of alerts including PUSH notifications. PLEASE CONTACT ME A
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 is a
Divergence Bomber
Ihor Otkydach
4.89 (94)
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
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
Gem SIGNAL
Shengzu Zhong
5 (1)
GEM Signal Pro GEM Signal Pro is a trend-following indicator for MetaTrader 5, designed for traders who want clearer signals, more structured trade setups, and practical risk management directly on the chart. Instead of showing only a simple arrow, GEM Signal Pro helps present the full trade idea in a cleaner and more readable way. When conditions are confirmed, the indicator can display the entry price, stop loss, and take profit targets on the chart, helping traders review the setup more effic
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
Currency Strength Anchor - session-adaptive relative strength, anchored to the daily, weekly and monthly open. Non-repainting. Most strength meters compare instruments over a fixed lookback period. The result changes meaning as the trading day moves from one session to the next: a ranking built on Asian-session data says little once London and New York are trading. Currency Strength Anchor takes a different reference. It measures every instrument against three fixed anchor points - the Daily Ope
Precision trading: leverage wolfe waves for accurate signals Wolfe Waves are naturally occurring trading patterns present in all financial markets and represent a fight towards an equilibrium price. These patterns can develop over short and long-term time frames and are one of the most reliable predictive reversal patterns in existence, normally preceding strong and long price movements. [ Installation Guide | Update Guide | Troubleshooting | FAQ | All Products ] Clear trading signals Amazingly
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
Precision Spike Detector
Francisco Mandomo Simbine
5 (2)
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, send me a private message to receive the optimized configuration files,  the installation
Golden Spike Premium
Kwaku Bondzie Ghartey
5 (1)
Golden Spike Premium Golden Spike Premium is a MetaTrader 5 technical indicator for studying synthetic index charts on the M1 timeframe. It is designed for Boom/Crash indices on Deriv and Gain/Pain indices on Weltrade, depending on the instruments available through the user's broker. Main features Uses Parabolic SAR, RSI, and Bollinger Bands analysis. Three risk modes: Low, Medium, and High. Configurable trade direction: Buy, Sell, or Both. Audio and push notification alerts. Dashboard with sele
* Due to the  authenticity of data for all major currencies , — use of  live charts  is  recommended . Get UEX Reader - Expert Advisor for free: https://www.mql5.com/en/market/product/166805 What is UEX Pure USD Euro Index : Discover the real pulse of the forex market with Pure USD & Euro Index — an innovative indicator that truly reveals the hidden strength and weakness between the world’s two most powerful currencies . Instead of relying on a single pair like EURUSD, this tool measures the
A2SR for MT5 Automated Actual Support & Resistance + Trading Instruments. --   Guidance   : -- at   https://www.mql5.com/en/blogs/post/734748/page4#comment_16532516 -- and  https://www.mql5.com/en/users/yohana/blog .. MT4 version  https://www.mql5.com/en/market/product/5225    Powerful, Genuine, and Time-Saving For Smarter Trading Decision     +  EA-Compatible Objects . Key Advantages Leading Actual SR Levels (Not Lagging, Not Repainting) After years of proven reliability on MT4 since 201
Superhero
Ihor Otkydach
5 (3)
The SUPERHERO indicator is a multi-currency trading system designed on an "all-inclusive" basis. The indicator independently analyzes the market and provides signals on when to open and close trades. It uses Stop Loss and Take Profit orders. The R:R ratio is 1:1. This system can send push notifications to your smartphone, so you can place trades "on the go" without needing to be tied to a PC. It's perfect for proprietary trading firms. A BONUS FOR EVERY CUSTOMER: Every buyer of this indicator wi
Advanced Supply Demand MT5
Bernhard Schweigert
4.53 (15)
Best Solution for any Newbie or Expert Trader! This indicator is a unique, high quality and affordable trading tool because we have incorporated a number of proprietary features and a new formula. With this update, you will be able to show double timeframe zones. You will not only be able to show a higher TF but to show both, the chart TF, PLUS the higher TF: SHOWING NESTED ZONES. All Supply Demand traders will love it. :) Important Information Revealed Maximize the potential of Advanced Supply
DayTrader PRO
Davit Beridze
5 (4)
DayTrader PRO (Buy DayTrader PRO and get Another Paid Self Optimizing indicator for FREE as BONUS!) 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
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
TPSproTREND PrO MT5
Roman Podpora
4.55 (20)
TPSproTrend PRO   - This is a trend indicator that automatically analyzes the market and provides information about the trend and its changes, as well as displays entry points for trades   without redrawing!     New version   Trend Lines PRO   — improved entry point detection algorithm, additional signal filtering and updated visualization. INSTRUCTIONS RUS      -    NSTRUCTIONS   ENG      -    MT4 VERSION Key Benefits Signals without redrawing.   All signals are fixed. If the arrow appears -
ORB Seeker MT5
Marcela Goncalves De Oliveira
Limited Discounted Price!  Only $ 149 ! After purchase contact me to get the bonus ORB Seeker EA and personal optimized set files. Catch clean session breakouts with confidence! ORB Seeker MT5 is a professional Opening Range Breakout (ORB) indicator built for traders who want accuracy, simplicity, flexibility, and clear chart structure. It automatically plots the pre-market or custom session range on any instrument, then gives clear breakout signals with entry, stop loss, take profit, and opti
Elliot Wave Pattern Hunter
Shingidzano Lesetedi
5 (1)
Elliott Wave Hunter - SMC Edition Elliott Wave Hunter identifies Elliott Wave 2 and Wave 5 setups and combines them with Smart Money Concepts to filter entries to high-probability zones only. Wave 2 signals mark continuation entries in the direction of the dominant Wave 1 impulse. The indicator waits for the retracement to confirm, locates an Order Block, Fair Value Gap or Liquidity Sweep zone within the impulse, then triggers only when price returns to retest that zone with a qualifying revers
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
Fibowave
Ivan Stefanov
FIBOWAVE Automatic Elliott wave count on seven timeframes at once, from the monthly chart down to M5, with the Fibonacci retracement of the running correction, the Fibonacci target of waves 3, 5 and C, the price level where the count fails, and an alert when a wave 3 or 5 starts. Counting Elliott waves by hand is slow, and two analysts rarely arrive at the same count. FIBOWAVE counts by fixed rules, the same way every time, and writes the waves, their sub-waves and their sub-sub-waves on your
More from author
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
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
Trend Survival States
Narayanan Mohanan Mohanan Krishnan
Trend Survival States for MetaTrader 5 — a free market regime indicator measuring bull and bear pressure with adaptive volatility bands and a five-state trend classification Bull and bear pressure, an adaptive-band spread, and a five-state market classification, free for MT5. It measures the buying and selling pressure behind the current move and classifies that into a market state: strong bull, weak bull, neutral, weak bear, strong bear. This is a complete regime indicator, not a time-limited t
FREE
Multi Timeframe Currency Strength Panel
Narayanan Mohanan Mohanan Krishnan
MTF Currency Strength Panel for MetaTrader 5 A multi timeframe currency strength meter covering all 28 major forex pairs on one chart. This currency strength 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 — M1 to MN1. 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
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
MTF Currency Strength Panel MT4
Narayanan Mohanan Mohanan Krishnan
MTF Currency Strength Panel for MetaTrader 4 A multi timeframe currency strength meter covering all 28 major forex pairs on one chart. This currency strength 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 — M1 to MN1. 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
FREE
Indicator Test Report
Narayanan Mohanan Mohanan Krishnan
Indicator Test Report for MetaTrader 5 — a repaint checker and indicator tester that shows how any indicator actually behaves You cannot see inside a compiled indicator. The Indicator Test Report loads any indicator — bought, written, or built into MetaTrader — and answers the question a description cannot: does it repaint, how much history does it need, and what does it really publish? It reports behaviour. It does not grade. Load any indicator into the Strategy Tester and get a plain-language
FREE
Indicator Test Report MT4
Narayanan Mohanan Mohanan Krishnan
Indicator Test Report for MetaTrader 4 — an MT4 repaint checker and indicator tester that shows how any indicator actually behaves You cannot see inside a compiled indicator. The Indicator Test Report loads any indicator — bought, written, or built into MetaTrader — and answers the question a description cannot: does it repaint, how much history does it need, and what does it really publish? It reports behaviour. It does not grade. Load any indicator into the Strategy Tester and get a plain-lang
FREE
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
OBVCD Pro MT4
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 MT4
Narayanan Mohanan Mohanan Krishnan
Currency Strength Oscillator for MetaTrader 4 A relative currency strength indicator that plots the history of the eight majors. This currency strength oscillator plots the relative strength of the eight major currencies as a history, decomposed from the 28 major pairs. While a standard currency strength meter tells you where things stand right 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
Oscillator Regime Suite MT4
Narayanan Mohanan Mohanan Krishnan
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
Structure Flow and Trailing Stop MT4
Narayanan Mohanan Mohanan Krishnan
Structure Flow and Trailing Stop MT4 — an adaptive flow line with five trailing stop methods, market structure and liquidity bands for MetaTrader 4 Five trailing stop methods, one adaptive flow line, and a condition panel that reports how many measurements agree. This indicator draws two lines on the price chart: an adaptive flow line that follows the market's direction, and a trailing stop that moves only in that direction and never back. A small panel reports the state behind them. The trailin
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
Structure Flow and Trailing Stop
Narayanan Mohanan Mohanan Krishnan
This indicator draws two lines on the price chart: an adaptive flow line that follows the market's direction, and a trailing stop that moves only in that direction and never back. A small panel reports the state behind them. The trailing stop can be calculated five different ways. These are not variations on one idea — each anchors to something different, and on the same chart they frequently disagree. The flow line An adaptive average. It smooths heavily when price is rotating and lightly when
Trend Survival Rate
Narayanan Mohanan Mohanan Krishnan
Trend Survival Rate for MetaTrader 5 — a market regime indicator that measures how often the current trend state has survived to the next bar, and scores its own forecast Trend survival rate, market state classification and a live Brier forecast score, in one MT5 indicator window. It measures the buying and selling pressure behind the current move, classifies that into a market state, and reports how often that state has survived to the next bar — then grades its own forecast against what actual
Filter:
No reviews
Reply to review