Institutional Framework Trading System MT5

Range-Bound Edition · v1.33

Trade Instruments With the Same Structure Institutions Actually Use

Most retail Smart Money Concept tools do one thing: they plot order blocks and liquidity sweeps on your chart and leave you to decide whether to trust them. Institutional Framework Trading System MT5 doesn't stop there. Every signal it prints is price-action structure that has already been cross-checked against up to three additional layers of institutional-grade context — real options-market positioning, macro fundamentals, and market sentiment — synthesized into one clear signal instead of three indicators arguing with each other on your screen.

It's built for traders who already understand order blocks, liquidity sweeps, and supply/demand zones and want a system that verifies structure instead of just drawing it.

What sets it apart

  • A complete SMC structure engine — order blocks, liquidity sweeps, and supply/demand zones, built entirely from confirmed, closed-bar price action. Signals lock the moment a bar closes and are never repainted afterward.
  • Multi-layer confirmation, not just structure. Every structural signal is cross-checked against divergence, exhaustion, and absorption detectors before it ever reaches your chart — so you're seeing agreement between price structure and order-flow behavior, not just a pattern match.
  • Real options-market confluence. Pull directly from COMEX Gold futures options data — genuine open interest, Max Pain, and liquidity levels from the actual gold options market, not a synthetic stand-in — to see where size is actually sitting before price gets there.
  • Macro-aware by design. A built-in pipeline reads the Fed's balance sheet, CPI/PPI, and employment data so your signals stay aligned with the broader macro regime instead of ignoring it.
  • Sentiment-aware. CFTC Commitment of Traders positioning and market Fear & Greed feed a genuine contrarian filter — extreme sentiment readings are treated as a fade opportunity, not a green light.
  • Two purpose-built modes. A scoring-based Conservative Mode for trending conditions, and a Range-Bound Mode — this build's default, tuned through strategy testing — built for consolidating markets where structure and reversion matter more than momentum.
  • Works immediately, scales with you. Every advanced layer above is optional. Attach it with zero configuration and it runs on pure verified structure from the first bar. Add options data, macro feeds, or sentiment inputs whenever you're ready — nothing above the core engine is required to get signals.

1. Quick Start

  1. Copy the .mq5 file into your terminal's MQL5\Indicators folder (File → Open Data Folder from within MT5), then compile it in MetaEditor.
  2. Attach it to a gold chart (it will work on other symbols, but every default and comment in this file assumes XAU).
  3. Leave every input at its default. This ships in Range-Bound Mode — the mode this build was tuned for — with divergence detection active but its on-chart markers hidden (Section 2 explains why).
  4. Watch the Experts log after attaching. It will tell you plainly if any auto-fundamentals/sentiment fetch failed, and the on-chart info panel shows current mode, regime, and signal-scoring status at a glance.
  5. If you want options-market confluence, pick one path from Section 11 — otherwise skip it entirely; the indicator runs fine without it.

2. Signal Modes

mql5

enum ENUM_SIGNAL_MODE { MODE_CONSERVATIVE, MODE_RANGEBOUND };

  • Conservative Mode — a point-scoring system. Order block, sweep, divergence, exhaustion, absorption, cluster confluence, and options confluence each add to a score; a signal only fires once the score clears MinSignalScore (default 4). The regime filter (Section 12's fundamentals/sentiment read) actively blocks signals against the prevailing bias in this mode.
  • Range-Bound Mode (the default in this build) — requires one structural condition (an order block or a live demand/supply zone) and one confirmation (divergence, exhaustion, or absorption), and a minimum score via RangeBoundMinScore (default 2 — the value that reproduces the original always-on gate exactly; raise it only if you specifically want Cluster/Options confluence to start mattering more). The regime filter does not block direction in this mode — both directions stay active regardless of fundamentals/sentiment bias.

Important — read this before touching RequireDivergence , RequireOrderBlock , or RequireSweep : all three only apply in Conservative Mode. Running Range-Bound Mode (the default), these inputs do nothing at all — don't spend time tuning them. RequireDivergence ships set to false specifically so it stays consistent if you ever do switch back to Conservative Mode.

DrawDivergenceMarks also ships false by default in this build. This is purely cosmetic — it only hides the on-chart DIV_ markers. The underlying divergence detector ( EnableDivergence , still true ) keeps running and still counts toward hasConfirmation in Range-Bound Mode. Turn DrawDivergenceMarks back on if you want to see divergence visually flagged on the chart.

3. Core Structure Detection

Group: === SMC / Structure Detection ===

Input Default What it controls
SwingWing 3 Bars required on each side of a candle to confirm it as a swing high/low. Lower = more (noisier) swings; higher = fewer, more significant swings.
SwingLookback 100 How far back the swing-finder searches for the prior swing point when checking for divergence or sweep structure.
ATRPeriod 14 The ATR period used to scale nearly every distance-based threshold in the indicator (displacement, exhaustion, absorption, divergence-swing filters).
OBDisplacementMult 1.0 Minimum body-size-to-ATR ratio a candle must have to qualify as an order block's displacement candle.
OBMaxWickRatio 0.3 Maximum proportion of that displacement candle's range that can be wick (0–1) — filters out big-range-but-mostly-wick candles from counting as real displacement.
SDMoveMultiple 3.0 How many multiples of the "base" candle range the subsequent explosive move must reach to qualify as a supply/demand zone (Section 6).
EquilibriumBandPct 0.05 Width of the "equilibrium" band around the 50% level of a detected range.


4. Confirmation Detectors

Groups: === Exhaustion Detection === , === Absorption Detection === , === Delta Divergence === , === Delta (Native Tick) ===

Input Default What it controls
EnableExhaustion true Master toggle for the exhaustion detector.
ExhaustionWickMult 0.6 Minimum wick-to-range ratio for a candle to qualify as exhaustion.
ExhaustionBodyMult 0.3 Maximum body-to-range ratio allowed alongside that wick.
EnableAbsorption true Master toggle for the absorption detector.
AbsorptionVolFactor 1.5 Minimum volume-vs-average multiple for a candle to qualify as absorption.
AbsorptionRangeFactor 0.8 Maximum range-vs-ATR ratio allowed (absorption = high volume, small range).
AbsorptionRejectPct 0.2 Minimum wick-rejection proportion required.
EnableDivergence true Master toggle for the divergence detector — leave this on even with DrawDivergenceMarks off (Section 2).
DrawDivergenceMarks false (this build) Purely visual — shows/hides the DIV_ chart markers. Does not affect signal generation either way.
DivergenceMinSwingATR 1.0 Minimum swing-to-swing price difference (in ATR) required before two swings are even compared for divergence — filters out noise-level swings.
MaxTickBars 50 How many of the most recent bars can use real buy/sell tick-delta for divergence; anything older automatically falls back to raw tick-volume instead.

5. Cluster Confluence

Group: === Cluster Confluence (both modes) ===

Input Default What it controls
UseClusterScoring true Whether multiple simultaneous confirmations on one bar earn a scoring bonus.
MinClusterSignals 3 How many confirmations must agree simultaneously to trigger the bonus.
ClusterBonusScore 2 Size of that bonus, added to the signal's score.

This applies in both modes — in Range-Bound Mode it feeds into the RangeBoundMinScore gate described in Section 2.

6. Supply & Demand Zones

Group: === Supply & Demand Zones ===

Input Default What it controls
DrawSupplyDemandZones true Master toggle for the zone-drawing engine.
SDLookback 100 How far back the zone-finder searches for qualifying base+explosive-move patterns.
SDMaxBaseCandles 4 Maximum number of "base" (consolidation) candles allowed before the explosive move.
SDDisplacementMult 0.5 Minimum body-to-ATR ratio for the explosive move away from a zone (separate from, and looser than, OBDisplacementMult — zones and order blocks are detected independently).
SDMaxZonesShown 3 Caps how many zones are drawn on the chart at once.
SupplyZoneColor / DemandZoneColor Red / Blue Chart colors.

A live (unmitigated) demand or supply zone satisfies the "structural" half of Range-Bound Mode's gate (Section 2) exactly like an order block does.

7. Higher-Timeframe Filter

Group: === Higher-Timeframe Confirmation ===

Input Default What it controls
UseHTFFilter true Whether a higher-timeframe directional read is required to agree before a signal fires.
HTFTimeframe H4 Which higher timeframe to check.
HTFLookbackBars 20 How many closed H4 bars back the trend read looks.
HTFNeutralPct 0.05 How close to flat the HTF trend must be before it's treated as "neutral" (neither blocking longs nor shorts).

This filter always reads the last closed higher-timeframe bar (never the currently forming one), so it can't repaint.

8. Session Filter

Group: === Session Filter (approximate UTC windows, NOT DST-adjusted) ===

Input Default What it controls
AllowedSession SESSION_ALL Restrict signals to a specific session: SESSION_ALL , SESSION_LONDON , SESSION_NEWYORK , or SESSION_LONDON_NY .
UTCOffsetHours 0 Adjust if your broker's server time isn't UTC.

The actual windows checked internally: London = 08:00–16:00 UTC, New York = 13:00–21:00 UTC.

9. Signal Cooldown & Stale Zone Decay

Input Default Group What it controls
SignalCooldownBars 5 Signal Cooldown Minimum bars (or, if the price hasn't moved enough, minimum price distance) between two signals at the same zone, to stop the same level firing repeatedly.
MaxBarAgeForSignal 25 Stale Zone Decay How old an order block is allowed to be and still count as valid structure for a new signal. This one gates whether the arrow appears at all — different from the alert-timing setting in Section 13.

10. Risk Management Protocol

Group: === Fibonacci Extension Auto-Targets ===

Once a bullish or bearish order block is detected, the chart plots TP1 / TP2 / TP3 (Fibonacci extensions, defaults 1.618 / 2.618 / 4.236) and a BE reference line.

The rule, exactly as the chart states it: move your stop-loss to break-even 

Input Default
EnableFibTargets true
FibTP1 / FibTP2 / FibTP3 1.618 / 2.618 / 4.236
FibTP1Color / FibTP2Color / FibTP3Color Yellow / Orange / Red
TrailBEColor White

11. Options Confluence — Two Data Sources

You have two ways to feed real options-market data into the "Options Liquidity Confluence" scoring bonus. You only need one — the indicator runs fine with neither.

Option A — FlashAlpha Live API (convenient, but a proxy)

  1. Get a free API key at lab.flashalpha.com .
  2. Set UseLiveAPI = true and paste your key into FlashAlpha_API_Key .
  3. Set FlashAlpha_Expiration to the expiration date you want, format yyyy-MM-dd — required, the free tier can't query "all expirations" at once.
  4. Leave FlashAlpha_Symbol at its default ( NEM ) unless you have a specific reason to change it.

Know what you're getting: FlashAlpha's free tier doesn't offer real COMEX gold options — NEM (Newmont, a gold-mining equity) is used as a liquid, correlated proxy. The indicator never plots proxy-equity strike prices on your gold chart directly (it only uses the proxy's net-gamma/GEX reading) — but understand "Options Confluence" in Live API mode is a sentiment proxy from a related instrument, not literal gold options positioning.

Free tier limits: MaxDailyAPICalls = 5 per day (a hard, self-imposed cap independent of FlashAlpha's own quota), and RefreshIntervalHours = 4 minimum between calls.

Option B — Monthly CSV from Barchart.com (real gold options, manual refresh)

This is literal COMEX Gold (GC) futures options data — not a proxy.

  1. Go to Barchart's Gold futures options chain ( barchart.com/futures/quotes/GC*0/options ), select your contract month, and download the chain as CSV.
  2. Your file needs at least 13 comma-separated columns per row, with: column 1 = strike, column 9 = volume, column 10 = open interest, column 13 = option type (must start with "C" or "P" — a header row is fine, it's auto-skipped).
  3. Place the file in your terminal's own data folder: File → Open Data Folder → MQL5 → Files.
  4. Set CSV_File_Name to match the filename exactly (default gcv26-options-monthly.csv ).
  5. Set UseLiveAPI = false .

Weekly strikes (optional add-on): Weekly_Call_Strikes / Weekly_Put_Strikes , format strike,openInterest,volume;strike,openInterest,volume;... — e.g. 4350,251,45;4400,36,12 . Leave blank (default) if unused — handled safely, no errors. Weekly_Weight (default 1.0) controls how much weekly OI counts relative to monthly OI across every level the indicator draws (Max Pain, Support, Resistance, BSL, SSL).

Options Display Tuning

Input Default What it does
Min_OI_Threshold 100 Minimum open interest for a strike to count toward BSL/SSL
Min_Volume_Threshold 200 Minimum volume filter for options-based levels
Max_Pain_Buffer 5 Tolerance band (in strikes) around the computed Max Pain level
Max_Strikes_Processed 100 Caps how many strikes are loaded, nearest-to-price first
Max_Battle_Zones_Shown 5 Caps how many high-OI "battle zone" levels are drawn
Refresh_Hotkey R Press on the chart to force an immediate options refresh
Auto_Refresh_Seconds 60 How often the indicator re-checks whether a refresh is due (not the same as RefreshIntervalHours )
UseOptionsConfluence true Master toggle for the options confluence scoring bonus (both modes)
OptionsConfluenceATRMult 0.5 Proximity tolerance (in ATR) to a key options level for the bonus to apply
OptionsConfluenceBonus 1 Size of that bonus

12. Auto Fundamentals & Sentiment

Both scored 0–100:

  • Fundamental score: 0 = bearish for gold, 100 = bullish for gold.
  • Sentiment score: 0 = extreme fear, 100 = extreme greed.
  • Default/neutral is 50 on both.

These are hybrid scores, not fully automatic ones. Even with UseAutoFundamentals = true , several components have no free public feed and must always be entered by hand:

Manual input What it is Where to get it
ManualFedStance 0 = very hawkish … 100 = very dovish Your own read — no clean numeric feed exists
ManualCmeCutProb CME FedWatch next-meeting cut probability (0–100) cmegroup.com CME FedWatch Tool
ManualNFPActual / ManualNFPExpected Non-farm payrolls, actual vs. consensus (thousands) BLS has the actual; consensus isn't government data
ManualADPActual / ManualADPExpected ADP employment, actual vs. consensus (thousands) Same reasoning as NFP
ManualGeoScore Geopolitical tension, 0–100 Your own judgment call
BPR_USBanksLong / BPR_USBanksShort CFTC Bank Participation Report, COMEX Gold cftc.gov Bank Participation Reports (monthly)

Components pulled automatically when UseAutoFundamentals = true : Fed balance sheet (FRED), CPI/PPI/unemployment (BLS), your broker's oil symbol price. For sentiment, UseAutoSentiment = true pulls CFTC Commitment of Traders (Disaggregated, Managed Money) and JM Bullion's Fear & Greed gauge.

Simplest option: set UseAutoFundamentals = false and UseAutoSentiment = false , and enter a single overall FundamentalScore / SentimentScore (0–100) yourself — zero external dependencies.

Getting Your FRED API Key

  1. Register free at fred.stlouisfed.org/docs/api/api_key.html .
  2. Paste into FRED_API_Key . Only needed for the balance-sheet component.

Whitelisting the Required URLs

In MT5: Tools → Options → Expert Advisors tab → check "Allow WebRequest for listed URL:" → add each domain you actually use:

A blocked domain logs the exact URL to add (error 4014) — always check the Experts log first.

FundamentalsRefreshHours / SentimentRefreshHours (default 24 each) control refresh cadence — daily is plenty, since the underlying data itself only updates weekly or monthly.


Recommended products
Smart FVG Stats
- Md Rashidul Hasan
5 (1)
The  Smart FVG Statistics Indicator  is a powerful MetaTrader 5 tool designed to automatically identify, track, and analyze Fair Value Gaps (FVGs) on your charts. Love it? Hate it? Let me know in a review! Feature requests and ideas for new tools are highly appreciated. :) Try "The AUDCAD Trader": https://www.mql5.com/en/market/product/151841 Key Features Advanced  Fair Value Gap  Detection Automatic Identification : Automatically scans for both bullish and bearish FVGs across specified histo
FREE
Swiss VWAPsimple
Terence Gronowski
4.8 (5)
Swiss VWAPsimple Motivation Did not find free VWAP that works, the one that I found craseh. So I created a VWAP which calculates values only for the actual day. So computer resouces are not over stressed. What is VWAP, how is it used?  VWAP stands for Volume Weighed Average Price, it calculates the running sum of tick volume and the runnung sum of price times tickvolume. The division of these sums result in a weighed price (Sum P*V/Sum V). The calculation starts normally at midnight. The values
FREE
White Weis Volume Ticks
Ricardo Almeida Branco
5 (4)
White Weis Volume This indicator shows the sum of the volume in each wave, bulish or bearish, as idealized by David Weis , but it brings an important addition , which is the marking of the bar with the highest volume of the wave (White Bar)! In coding the indicator, it was sought to optimize the code to require minimal processing during use and not to overload mt5. The indicator can be used for pre-trading analysis and study, where the trader analyzes possible points of support and resistance
High Low Open Close
Alexandre Borela
4.98 (45)
If you like this project, leave a 5 star review. This indicator draws the open, high, low and closing prices for the specified period and it can be adjusted for a specific timezone. These are important levels looked by many institutional and professional traders and can be useful for you to know the places where they might be more active. The available periods are: Previous Day. Previous Week. Previous Month. Previous Quarter. Previous year. Or: Current Day. Current Week. Current Month. Current
FREE
VWAP Anchor Tool
Jackson Mukurani Wanguthi
Anchored VWAP is a lightweight, interactive volume-weighted average price indicator designed for traders who need precision without clutter. Unlike standard VWAP that resets every session, this tool lets you drop up to five custom anchors directly on any candle. Each anchor calculates VWAP from that exact point forward, complete with standard deviation bands to highlight where price may find support or resistance relative to volume. Key Features: • Up to 5 simultaneous anchors — compare multi
FREE
Basic Vwap
james mugendi
4 (1)
Simple Vwap with the daily, weekly and monthly VWAP is the abbreviation for   volume-weighted average price , which is a technical analysis tool that shows the ratio of an asset's price to its total trade volume. It provides traders and investors with a measure of the average price at which a stock is traded over a given period of time. How it's used Identify entry and exit points:   Traders can use VWAP to determine when to buy or sell an asset.   Understand price trends :  Traders can use V
FREE
VWAP + Volume Profile Combined Indicator FREE Launch Offer OVERVIEW Professional combination of VWAP (Volume Weighted Average Price)  and Volume Profile in a single MT5 indicator. This powerful tool  combines two of the most respected institutional trading tools  into one seamless display. KEY FEATURES 1. VWAP with 6 calculation modes 2. Volume Profile with Value Area analysis 3. Point of Control identification 4. Standard deviation bands 5. Dynamic color changing 6. Separate buy/sell vol
FREE
Weis Wave Double Side Alert
Eduardo Da Costa Custodio Santos
The Weis Wave Bouble Side Indicator for MT5 is part of the toolkit (Wyckoff Academy Wave Market) The Weis Wave Bouble side Indicator for MT5 was created based on the already established Weis Wave created by David Weis. The Weis Wave Double Side indicator reads the market in waves as R. Wyckoff did in 1900. It helps in the identification of effort x result, cause and effect, and Supply and demand Its differential is that it can be used below the zero axis and has a breakout alert showing Who is s
Donchian Breakout And Rsi
Mattia Impicciatore
4.5 (2)
General Description This indicator is an enhanced version of the classic Donchian Channel , upgraded with practical trading functions. In addition to the standard three lines (high, low, and middle), the system detects breakouts and displays them visually with arrows on the chart, showing only the line opposite to the current trend direction for a cleaner view. The indicator includes: Visual signals : colored arrows on breakout Automatic notifications : popup, push, and email RSI filter : to val
FREE
Indicator Description Range Filter Pro is a sophisticated trading tool for XAUUSD (Gold) that combines adaptive price filtering with volume analysis and real-time market monitoring. Designed for both novice and professional traders, this indicator helps identify trend direction, potential reversals, and significant market movements through its multi-layered approach. Key Components 1.Dynamic Range Filter 2.Volatility-Adjusted Bands 3.Volume-Enhanced Candles 4.Professional Trading Dashboard 5.M
FREE
How it works –   Base-departure detection — algorithmically finds consolidation bases (overlapping range with compressed volatility) followed by displacement departures. Patterns: Drop-Base-Rally, Rally-Base-Drop, Rally-Base-Rally, Drop-Base-Drop — detected structurally, not by candle names. –   Strength score (0–100) — from departure velocity, time-at-base, freshness (each revisit decays the score), higher-timeframe confluence and origin volume. –   Lifecycle — Fresh, Tested (decaying), Broken
FREE
MIDAS Super VWAP
Flavio Javier Jarabeck
4.27 (11)
Imagine VWAP, MVWAP and MIDAS in one place... Well, you found it! Now you can track the movement of Big Players in various ways, as they in general pursue the benchmarks related to this measuring, gauging if they had good execution or poor execution on their orders. Traders and analysts use the VWAP to eliminate the noise that occurs throughout the day, so they can measure what prices buyers and sellers are really trading. VWAP gives traders insight into how a stock trades for that day and deter
FREE
Macro-R Pro Signal — Advanced Trading Signal Indicator Macro-R Pro Signal is a professional trading indicator designed to deliver high-quality BUY and SELL signals with enhanced precision and reduced market noise. By combining Bollinger Bands, RSI, and adaptive volatility filtering , this indicator helps traders identify high-probability reversal points while avoiding unfavorable market conditions. How the Strategy Works This indicator is built on a mean reversion + momentum confirmation concep
FREE
LT Donchian Channel
Thiago Duarte
4.86 (7)
Donchian Channel is an indicator created by Richard Donchian. It is formed by taking the highest high and the lowest low of the last specified period in candles. The area between high and low is the channel for the chosen period. Its configuration is simple. It is possible to have the average between the upper and lower lines, plus you have alerts when price hits one side. If you have any questions or find any bugs, please contact me. Enjoy!
FREE
MSX Hybrid Heiken Scalper
Som Prakash Gehlot
5 (1)
MSX Hybrid Heiken Scalper Overview MSX Hybrid Heiken Scalper is a MetaTrader 5 indicator based on a modified Heiken Ashi methodology with closed-bar smoothing. The indicator is designed to display trend direction through color-coded candles while reducing sensitivity to short-term market fluctuations. All calculations are performed using completed candles, allowing historical values to remain fixed after bar close. Features • Modified Heiken Ashi calculation • Closed-bar processing • Color-code
FREE
Simple Weis Wave
Jean Jacques Huve Ribeiro
3.67 (3)
One of the best tools for analyzing volume, Weis Wave was idelized by David Weis, to facilitate the reading of directional flow. For the VSA method disciples it is an evolution of the practices created by Richard Wycoff, facilitating a predictive reading of the market, always seeking an accumulation and distribution of the negotiated contracts. Cumulative wave volume  Range of wave ( removed) Average Wave volume Ref "Tim Ord lectures" ( removed)
FREE
VWAP Diaria
Samuel De Souza Ferreira
Daily VWAP — Institutional Reference for Intraday Value The Daily VWAP is a professional indicator based on the Volume-Weighted Average Price (VWAP) , designed to reveal the true balance between price and volume throughout the trading session. Unlike traditional moving averages, the Daily VWAP incorporates the weight of traded volume in every price movement, providing a much more accurate reference to the behavior of institutional traders and large market participants. What the indicator deliver
FREE
Correlation Matrix Pro - Multi Currency Pairs Hedge Scanner Understand the relationships between currency pairs in real-time! A powerful analysis tool that helps you visualize statistical relationships between up to 6 currency pairs simultaneously. Perfect for portfolio management, risk diversification, and hedging strategies. KEY FEATURES - Real-time Pearson correlation using log returns - Monitor up to 6 currency pairs simultaneously - Automatic timeframe detection - Adjustable lookback
FREE
Follow The Line MT5
Oliver Gideon Amofa Appiah
4.6 (35)
This indicator obeys the popular maxim that: "THE TREND IS YOUR FRIEND" It paints a GREEN line for BUY and also paints a RED line for SELL. (you can change the colors). It gives alarms and alerts of all kinds. IT DOES NOT REPAINT and can be used for all currency pairs and timeframes. Yes, as easy and simple as that. Even a newbie can use it to make great and reliable trades. NB: For best results, get my other premium indicators for more powerful and reliable signals. Get them here: https://www.m
FREE
Key level wedge MT5
Presley Annais Tatenda Meck
The   Key level wedge MT5   indicator automatically draws rising wedge pattern and falling wedge pattern for you on the chart. This pattern is really good when used as a confirmation entry at key support & resistance, supply & demand and reversal zones. Advantages  The   Key level wedge MT5   block DOES NOT RE-PAINT, giving you confidence when a signal appears and also helps when looking back.  The   Key level wedge MT5   includes an on/off button on the chart to easily keep the charts clean
The indicator highlights the points that a professional trader sees in ordinary indicators. VisualVol visually displays different volatility indicators on a single scale and a common align. Highlights the excess of volume indicators in color. At the same time, Tick and Real Volume, Actual range, ATR, candle size and return (open-close difference) can be displayed. Thanks to VisualVol, you will see the market periods and the right time for different trading operations. This version is intended f
FREE
Important Lines
Terence Gronowski
4.88 (24)
This indicator displays Pivot-Lines, preday high and low, preday close and the minimum and maximum of the previous hour. You just have to put this single indicator to the chart to have all these important lines, no need to setup many single indicators. Why certain lines are important Preday high and low : These are watched by traders who trade in a daily chart. Very often, if price climbs over or falls under a preday low/high there is an acceleration in buying/selling. It is a breakout out of a
FREE
Renko bricks drawn as time-anchored boxes on your ordinary chart, so brick structure and real time stay visible together. A renko brick prints when price moves a set distance, ignoring how long that takes. That strips out the sideways noise a time chart is full of. The usual way to see them is a separate offline chart, which loses the clock. This draws the same bricks over your normal candles instead, so you keep the time axis, your other indicators, and your orders. How the bricks are built Onl
FREE
Levels of Pivots
Nikolay Mitrofanov
The utility draws reversal levels using the formulas for each of the selected number of candles: Pivot = (high + close + low) / 3 R1 = ( 2 * Pivot) - low S1 = ( 2 * Pivot) - high R2 = Pivot + (R1 -S1) R3 = high + ( 2 * (Pivot - low)) S2 = Pivot - (R1 - S1) S3 = low - ( 2 * (high - Pivot)) H = high L = low U = if the candle is bullish, then close. Otherwise - open D = if the candle is bullish, then open. Otherwise - close On any timeframe. After a new candle closes on the calculated timeframe
FREE
Sweep Liquidity
Nawal Kishor Yadav
5 (1)
Liquidity Sweep Pro v3.2 — Smart Money Liquidity Detection Professional indicator designed to detect institutional liquidity sweeps in real time. Identifies Buy-Side Liquidity (BSL) and Sell-Side Liquidity (SSL) sweeps with automatic Strong and Weak classification. Main Features: • Real-time detection of BSL and SSL sweeps • Strong vs Weak sweep classification based on wick ratio, body close, and volume • Built-in quality filters:    - Wick Ratio Filter (adjustable for Strong & Weak)    - Vo
FREE
Girassol Sunflower MT5 Indicator
Saullo De Oliveira Pacheco
3.86 (7)
This is the famous Sunflower indicator for Metatrader5. This indicator marks possible tops and bottoms on price charts. The indicator identifies tops and bottoms in the asset's price history, keep in mind that the current sunflower of the last candle repaints, as it is not possible to identify a top until the market reverses and it is also not possible to identify a bottom without the market stop falling and start rising. If you are looking for a professional programmer for Metatrader5, please
FREE
Pivot Point Fibo RSJ is an indicator that traces the support and resistance lines of the day using Fibonacci rates. This spectacular indicator creates up to 7 levels of support and resistance through Pivot Point using Fibonacci rates. It is fantastic how the prices respect each level of this support and resistance, where it is possible to perceive possible entry/exit points of an operation. Features Up to 7 levels of support and 7 levels of resistance Set the colors of the levels individually
FREE
Value Chart Candlesticks
Flavio Javier Jarabeck
4.57 (14)
The idea of a Value Chart indicator was presented in the very good book I read back in 2020 , " Dynamic Trading Indicators: Winning with Value Charts and Price Action Profile ", from the authors Mark Helweg and David Stendahl. The idea is simple and the result is pure genius: Present candlestick Price analysis in a detrended way! HOW TO READ THIS INDICATOR Look for Overbought and Oversold levels. Of course, you will need to test the settings a lot to find the "correct" one for your approach. It
FREE
Bollinger Bands B
Flavio Javier Jarabeck
4.5 (6)
John Bollinger created this indicator in 2010 as a way to read the original indicator (Bollinger Bands) in a more "technical" way, shown as an oscillator. The typical range of the Bollinger Bands %B is 0 - 0.5 - 1.0, where "0" represents the lower band, the "0.5" the middle band, and "1" the upper band. The line on the indicator represents the Closing prices. As simple as that. SETTINGS Bollinger Bands period of analysis Standard Deviation multiplier Shift Price type to be analyzed If you like
FREE
Intraday Vwap Orion
Joao Paulo Botelho Silva
Theory VWAP is a volume-weighted moving average, bringing greater relevance to prices. The VWAP base calculation follows the classic formula described in Investopedia ( https://www.investopedia.com/terms/v/vwap.asp ). VWAP = sum(typical price[i]*volume[i]) / sum(volume[i]) Functionalities Orion Intraday VWAP innovates by allowing the user to choose between the conventional Daily, Weekly and Monthly periods, also having the option of calculating the Intraday indicator, as used in other platform
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. Learn Smart Trend Trading System Everything you need to learn, install, and use the
Trend Sniper X
Sarvarbek Abduvoxobov
4.88 (32)
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
Welcome to ENTRY IN THE ZONE AND SMC MULTI TIMEFRAME Entry In The Zone and SMC Multi Timeframe is a real-time market analysis tool based on Smart Money Concepts (SMC), designed to analyze market structure, price direction, and key trading zones. It supports both Single-Timeframe Analysis and Multi-Timeframe Analysis, providing a clearer view of the overall market structure across multiple timeframes, with real-time BUY / SELL signals that do not repaint. It is designed to help filter trading opp
UNIX Scalper — Gold Scalping Indicator for MetaTrader 5 UNIX Scalper is a focused Gold scalping indicator designed primarily for XAUUSD on M1, M2, M3, M5, M10 and M15. It gives the trader a clear BUY, SELL or WAIT decision together with the complete trade plan: Entry, Stop Loss, TP1 and TP2 . The concept is simple: wait for the signal, follow the levels, move the Stop Loss to Break Even after TP1, and trade with discipline. Learn UNIX Scalper Everything you need to learn and use the product is
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
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
Atomic Analyst MT5
Issam Kassas
4.45 (55)
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. Click here to watch the complete Atomic Analyst Online Course:  https://www.mql5.com/en/blogs/post/775702
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
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
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
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
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
Crystal Heikin Ashi Signals
Muhammad Jawad Shabir
5 (4)
Crystal Heikin Ashi Signals - Professional Trend & Signal Detection Indicator Advanced Heikin Ashi Visualization with Intelligent Signal System for Manual & Automated Trading Final Price: $149 ---------> Price goes up $10 after every 10 sales . Limited slots available — act fast . Overview Crystal Heikin Ashi Signals is a professional-grade MetaTrader 5 indicator that combines pure Heikin Ashi candle visualization with an advanced momentum-shift detection system. Designed for both manual traders
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
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
M1 Quantum MT5
Hamed Dehgani
4.27 (11)
Live Trading Signals Using M1 Quantum : Signal  (Trade executed automatically by the Quantum Trade Assistant , included free with this product.) Latest News : Version 1.64 has been released, All trades now have a Stop Loss placed behind the relevant Support/Resistance zones. The Smart Close function has also been improved to increase the EA’s performance in this version. Since August 9, the live signal has been running on Version 1.64. Price Plan: Current Price: $169 (Early Adopter Offer) Next
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
ICT PO3 (Power of 3) AMD Protocol Framework Indicator True Time & Structure Integration   |  Non-Repainting | Real-Time  | Multi-Asset  | MT4 Version Available Full Setup Guide & Strategy Playbook: https://www.mql5.com/en/blogs/post/768683 MT4 Version: https://www.mql5.com/en/market/product/171742 Indicator Overview The ICT PO3 AMD Protocol Framework is a complete structural overlay for MetaTrader 5 that maps the True Daily Cycle directly onto your lower-timeframe execution chart. It project
Trend Forecaster
Alexey Minkov
5 (8)
Trend Forecaster is a MetaTrader 5 indicator that combines breakout signals, possible reversal area analysis, market range data and a visual statistics panel in one chart workspace. It shows Buy and Sell signals, tracks Average Range and Current Range, and can automatically adjust Sensitivity for the current symbol and timeframe. Manual Sensitivity control is also available. The indicator can be used on Forex pairs, metals, stocks, indices and cryptocurrencies. Different timeframes are supported
* 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
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 only ONE chart you can read Currency Strength for 28 Forex pairs! Imagine how your trading will improve because you are able to pinpoint the exact trigger point of a new trend or scalping opportunity? User manual:   click here That's the first one, the original! Don't buy a worthless wannabe clone
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
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 secret formula. With only ONE chart it gives Alerts for all 28 currency pairs. Imagine how your trading will improve because you are able to pinpoint the exact trigger point of a new trend or scalping opportunity! Built on new underlying algorithms it makes it even easier to identify and confirm potential trades.
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
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
Grab your copy while it’s still available at this price — it may increase at any time! The objective of the black horse indicator is to identify divergences between price action and the VWAP indicator. It employs filters to sift through potential false divergences and signals high-quality, accurate alerts. Bearish divergences are denoted by red dots above the candle, while bullish divergences are represented by green dots below the candle. The primary divergence filter revolves around ATR (Aver
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
More from author
Ironframe SMC Gold MT5: Order Blocks, Liquidity Range-Bound Edition · v1.31 Trade Gold With the Same Structure Institutions Actually Use Most retail Smart Money Concept tools do one thing: they plot order blocks and liquidity sweeps on your chart and leave you to decide whether to trust them. Ironframe SMC Gold MT5: Order Blocks, Liquidity doesn't stop there. Every signal it prints is price-action structure that has already been cross-checked against up to three additional layers of institutiona
Filter:
No reviews
Reply to review