Market Structure Patterns

4.47

Market Structure Patterns is an indicator based on smart money concepts that displays SMC/ICT elements that can take your trading decisions to the next level. Take advantage of the alerts, push notifications and email messages to keep informed from when an element is formed on the chart, the price crosses a level and/or enters in a box/zone. Developers can access the values of the elements of the indicator using the global variables what allows the automation of trading decisions based on SMC/ICT strategies.

Thinking on high level of customization, the indicator allows to customaze the color and transparency of the element, display the labels using bubble style, display the sessions/trading windows in the bottom of the chart or over the price chart, has an exclusive algorithm to avoid labels/text overlappingpaints the candlesticks depending on the trend and/or internal and swing trend alignment. This feature can be enabled in the parameter "Color Candles". By default the trend is show as green for bullish trend and red for bearish trend. Among with the trend the candlesticks can be filled or not giving the hability to recognize bullish and bearish candlesticks.

Elements and/or Abreviations:

The elements present in the indicator are listed down with their abreviations when applied:

  • Premium, Equilibrium and Discount zones
  • Strong/Weak High/Low
  • Automatic Fibonacci
  • OTE - Optimal Trade Entry
  • HH, HL, LH, LL- Higher highs, higher lows, lower highs and lower lows
  • EQH, EQL - Equal highs and Equal lows
  • BSL, SSL - Buy Stops Liquidity and Sell Stops Liquidity
  • EQH-BSL, EQL-SSL - Buy Stops Liquidity on Equal Highs and Sell Stops Liquidity on Equal Lows
  • BoS, iBoS - Break of structures and Internal Break of Structure
  • CHoCH, iCHoCH - Change of character and Internal Change of Character
  • OB, iOB - Order Blocks and  Internal Order Blocks
  • BB, iBB - Breaker Blocks and Internal Breaker Blocks
  • Liquidity voids
  • FVG - Fair Value Gap
  • InvFVG - Inverse  Fair Value Gap
  • ImpFVG - Implied Fair Value Gap
  • OG - New Day Opening Gap
  • HoD, LoD, OoD - High of the day, Low of the day and Open of the day
  • PDH, PDL, PDO, PDC - Prior day high, low, open and close
  • PWH, PWL , PWO, PWC - Prior week high , low, open and close
  • PMH, PML , PMO, PMC - Prior month high , low, open and close
  • Sessions, Kill Zones and Silver Bullet  Trading Window

Available alerts:

  • Alert on BoS Created (bullish / bearish)
  • Alert on CHoCH Created (bullish / bearish)
  • Alert on iBoS Created (bullish / bearish)
  • Alert on iCHoCH Created (bullish / bearish)
  • Alert on EQH Created
  • Alert on EQL Created
  • Alert on HH-HL-LH-LL Created
  • Alert on BSL Taken
  • Alert on SSL TakenAlert on iOB Break (bullish / bearish)
  • Alert on iOB Touch (bullish / bearish)
  • Alert on iBB Touch (bullish / bearish)
  • Alert on OB Break (bullish / bearish)
  • Alert on OB Touch (bullish / bearish)
  • Alert on BB Touch (bullish / bearish)
  • Alert on FVG Created (bullish / bearish)
  • Alert once per bar on FVG Touch (bullish / bearish, 0=disabled)
  • Alert on Inverse FVG Created (bullish / bearish)
  • Alert once per bar on Inverse FVG Touch (bullish / bearish, 0=disabled)
  • Alert on Implied FVG Created (bullish / bearish)
  • Alert once per bar on Implied FVG Touch (bullish / bearish, 0=disabled)
  • Alert on BPR Created (bullish / bearish)
  • Alert once per bar on BPR Touch (bullish / bearish, 0=disabled)
  • Alert on OG Created (bullish / bearish)
  • Alert on Liquidity Void Created (bullish / bearish)
  • Alert once per bar on Premium Touch (0=disabled)
  • Alert once per bar on Discount Touch (0=disabled)
  • Alert once per bar on Equilibrium Touch (0=disabled)
  • Alert on Fibonacci Touch
  • Levels for Fibonacci Alert
  • MTF Alert Conditions
  • MTF Alert on FVG Created (bullish / bearish)
  • MTF Alert once per bar on FVG Touch (bullish / bearish, 0=disabled)
  • MTF Alert on Inverse FVG Created (bullish / bearish)
  • MTF Alert once per bar on Inverse FVG Touch (bullish / bearish, 0=disabled)
  • MTF Alert on Implied FVG Created (bullish / bearish)
  • MTF Alert once per bar on Implied FVG Touch (bullish / bearish, 0=disabled)
  • MTF Alert on BPR Created (bullish / bearish)
  • MTF Alert once per bar on BPR Touch (bullish / bearish, 0=disabled)

Global Variables:

The access to order blocks and structure breaks values through global variables can be made using the names conventions as follow:

// The timeframe to get the data
string timeframe = StringSubstr(EnumToString(_Period), StringLen("PERIOD_"));
string prefix = "SMP-"+_Symbol+"("+timeframe+")", for example "SMP-EURUSD(H4)";

// For bullish order blocks (for bearish just replace 'Bullish' by 'Bearish')
// Add "Bullish-IOB" for internal nullish order blocks or "Bullish-OB" for swing bullish order blocks;
// Add "-Total to get the amount of order blocks on the charts;"
int bullish_iob_total = GlobalVariableGet(prefix+"Bullish-IOB-Total")

// use for loop to get all the values
for(int i=0;i<bullish_iob_total;i++)
{
        // Add "[index]-Top" and/or "[index]-Bot" to get the order blocks values.
        double iob_top = GlobalVariableGet(prefix+"Bullish-IOB["+(string)i+"]-Top");
        double iob_top = GlobalVariableGet(prefix+"Bullish-IOB["+(string)i+"]-Bot");
}

// For structure breaks:
// Add the pattern name as displayed on the chart. For example, +iCHoCH can be accessed by "SMP-EURUSD(H4)-+iCHoCH"

// For Premium/Equilibrium/Discount:
// Add the pattern name followed by the desired level. For example, Premium-Top and Premium-Bot can be accessed respectively by "SMP-EURUSD(H4)-Premium-Top" and "SMP-EURUSD(H4)-Premium-Bot"


The access to the indicator data by buffers indexes was introduced in the version 3.24. The data available is mapped as follow:

Buffer index Data stored in the buffer
0 Internal Top Price
1 Internal Bottom Price
2 Internal Bull Bos
3 Internal Bear Bos
4 Internal Bull Choch
5 Internal Bear Choch
6 Internal Bull Order Block Top
7 Internal Bull Order Block Bottom
8 Internal Bear Order Block Top
9 Internal Bear Order Block Bottom
10 Internal Bull Breaker Block Top
11 Internal Bull Breaker Block Bottom
12 Internal Bear Breaker Block Top
13 Internal Bear Breaker Block Bottom
14 Swing Top Price
15 Swing Bottom Price
16 Swing Bull Bos
17 Swing Bear Bos
18 Swing Bull Choch
19 Swing Bear Choch
20 Swing Bull Order Block Top
21 Swing Bull Order Block Bottom
22 Swing Bear Order Block Top
23 Swing Bear Order Block Bottom
24 Swing Bull Breaker Block Top
25 Swing Bull Breaker Block Bottom
26 Swing Bear Breaker Block Top
27 Swing Bear Breaker Block Bottom
28 BSL Taken
29 SSL Taken
30 EQH Price1
31 EQH Price2
32 EQL Price1
33 EQL Price2
34 Premium Top
35 Premium Bottom
36 Equilibrium Top
37 Equilibrium Bottom
38 Discount Top
39 Discount Bottom
40 Strong High
41 Weak High
42 Strong Low
43 Weak Low
44 Bull FVG Top
45 Bull FVG Bottom
46 Bear FVG Top
47 Bear FVG Bottom
48 Bull Inverse FVG Top
49 Bull Inverse FVG Bottom
50 Bear Inverse FVG Top
51 Bear Inverse FVG Bottom
52 Bull Implied FVG Top
53 Bull Implied FVG Bottom
54 Bear Implied FVG Top
55 Bear Implied FVG Bottom
56 Bull Liquidity Void Top
57 Bull Liquidity Void Bottom
58 Bear Liquidity Void Top
59 Bear Liquidity Void Bottom

Reviews 24
Vitor Faria
39
Vitor Faria 2025.10.27 20:37 
 

The best indicator

Aruncharan Ganapathy Sivakumar
219
Aruncharan Ganapathy Sivakumar 2024.08.18 00:56 
 

As Greg Nicolas said confirmation arrow gives confidence if added... Thank you author for your dedication

Greg Nicolas
159
Greg Nicolas 2024.05.25 00:28 
 

The Indicator is a top notch but It really took me time to understand it.however, disabling those sessions and OTE which gives direction somehow late and adding a confirmation arrow really makes the difference for me. Kudos to Samuel for a great Job and five star. I have both MT4 & MT5 on fire with Synthetic

Recommended products
Order Book, known also as Market Book, market depth, Level 2, - is a dynamically updated table with current volumes of orders to buy and to sell specific financial instument at price levels near Bid and Ask. MetaTrader 5 provides the means for receiving market book from your broker, but in real time only, without access to its history. The indicator OrderBook Cumulative Indicator accumulates market book data online and visualizes them on the chart. In addition, the indicator can show the market
The indicator builds current quotes, which can be compared with historical ones and on this basis make a price movement forecast. The indicator has a text field for quick navigation to the desired date. Options: Symbol - selection of the symbol that the indicator will display; SymbolPeriod - selection of the period from which the indicator will take data; IndicatorColor - indicator color; Inverse - true reverses quotes, false - original view; Next are the settings of the text field, in w
VR Grid Mt5
Vladimir Pastushak
3.25 (8)
The VR Grid indicator is designed to create a graphical grid with user-defined settings. Unlike the standard grid , VR Grid is used to build circular levels . Depending on the user's choice, the step between the round levels can be arbitrary. In addition, unlike other indicators and utilities, VR Grid maintains the position of the grid even when the time period changes or the terminal is rebooted. You can find settings, set files, demo versions, instructions, problem solving, at [blog] You can
FREE
Price Magnet — Price Density and Attraction Levels Indicator Price Magnet is a professional analytical tool designed to identify key support and resistance levels based on statistical Price Density. The indicator analyzes a specified historical period and detects price levels where the market spent the most time. These zones act as “magnets,” attracting price action or forming a structural base for potential reversals. Unlike traditional Volume Profile tools, Price Magnet focuses on price-time d
Overview Candle Timer Countdown Pro displays a smooth, accurate countdown to the close of the current candle, accompanied by a circular progress arc that gives you an instant visual sense of time remaining. Unlike other timers that freeze between ticks or drift out of sync, this indicator uses server time interpolation to deliver a stutter-free countdown on every timeframe from M1 to MN. Whether you trade scalping setups on the 1-minute chart or swing positions on H4, knowing exactly when the cu
CCI Fixed Dual
Edoardo Centorame
What is CCI “FIXED DUAL” CCI “FIXED DUAL” is a professional Trend Direction Filter , designed to precisely identify: the dominant market direction the structural quality of the price movement the consistency between the main trend and acceleration phases It is not a direct entry indicator. It is not a classic oscillator. It is a contextual analysis tool , built to help traders decide when to trade and when NOT to trade , drastically reducing market noise and interpretation errors. Philo
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
Statistical Arbitrage Spread Generator for Cointegration [MT5] What is Pair Trading? Pair trading is a market-neutral strategy that looks to exploit the relative price movement between two correlated assets — instead of betting on the direction of the market. The idea? When two assets that usually move together diverge beyond a statistically significant threshold, one is likely mispriced. You sell the expensive one, buy the cheap one , and profit when they converge again. It’s a statistica
FREE
Visual Dolphin Indicator
AL MOOSAWI ABDULLAH JAFFER BAQER
Visual Dolphin Indicator Unlock the rhythm of the market with the Visual Dolphin Indicator, your ultimate tool for identifying and capitalizing on market trends with clarity and confidence. Designed for both novice and experienced traders, this indicator eliminates the noise and guesswork, providing crystal-clear buy and sell signals directly on your chart. The Logic Behind the Waves The core of the Visual Dolphin Indicator is a sophisticated yet intuitive dual-wave system based on moving avera
Italo Trend Indicator MT5
Italo Santana Gomes
4.9 (10)
BUY INDICATOR AND GET EA FOR FREE AS A BONUS + SOME OTHER GIFTS! ITALO TREND INDICATOR  is the best trend indicator on the market, the Indicator works on all time-frames and assets, indicator built after 7 years of experience on forex and many other markets. You know many trend indicators around the internet are not complete, does not help, and it's difficult to trade, but the Italo Trend Indicator is different , the Italo Trend Indicator shows the signal to buy or sell, to confirm the signal t
Size Bars
Viktor Loginov
Size Bars – индикатор отображает на графике максимальный, минимальный, текущий и средний размер баров (свечей) за выбранный период. Отображаемые параметры индикатора Size Bars: 1)       Текущий размер бара в писах (по максимум/минимум, тело бара). 2)       Максимальный, минимальный и средний размер свечей BUY . 3)       Максимальный, минимальный, средний размер свечей SELL . 4)       Количество свечей BUY и количество свечей SELL . 5)       Среднее количество свечей подряд BUY и SELL . 6)     
WT String2Signal
Ricardo Almeida Branco
Easily convert your candlestick patterns into signals! Eval - Command interpreter - Command line interface - String converter - Customizable sign   I bring one more indicator that was requested by a real trader. Thanks for the suggestion mate! The String2Signal indicator will allow you to write your candlestick patterns and get the signals on the screen, integrating with EAs or using it to assist in manual operations. You type a text with your setup and the indicator converts it into the MQL5
LT Rainbow Trend
Thiago Duarte
5 (1)
Do you, like me, like to trade with the trend? Then this indicator will help you! Rainbow Trend is a trend indicator, which uses several Moving Averages on the chart. It measures different trend strenght zones for different periods: very long term, long term, mid term, short term and very short term. Each zone has its color, and it is possible to have sound alert when the prices leaves a zone and enters another. Its configuration is very simple. If you find any bug or have any suggestions, conta
All-in-One Chart Patterns Professional Level: The Ultimate 36-Pattern Trading System All-in-One Chart Patterns Professional Level is a comprehensive 36-pattern indicator well known by retail traders, but significantly enhanced with superior accuracy through integrated news impact analysis and proper market profile positioning. This professional-grade trading tool transforms traditional pattern recognition by combining advanced algorithmic detection with real-time market intelligence.  CORE FEATU
FREE
VWAP Volume And Price is the indicator for Volume Weighted Average Price, designed according to regular calculation. The average price is calculated using typical price - (high + low + close) / 3 - and weighted by volume for each candle. So, the indicator can be used to trend trades, balanced with volume. Try other products and expert advisors too. Any doubt, PM.
Donchian Channel DC is the indicator of Donchian Channels, that plots maximum and minimum values of a specific period, besides mean value line. It´s possible to configure simple period for analysis and the indicator will plot all three values. You can trade with this indicator as trend or reversal, according to each strategy. Do not let to test others indicators as soon as others expert advisors.
Features All Ichimoku Signals (Selectable) : Display all reliable signals generated by the Ichimoku indicator. You can choose which signals to view based on your preferences. Filter by Signal Strength : Sort signals by their strength—whether they are weak, neutral, or strong. Live Notifications : Receive real-time notifications for Ichimoku signals. Transparent Cloud : Visualize the Ichimoku cloud in a transparent manner. Available Signals Tenkensen-Kijunsen Cross Price-Kijunsen Cross Price-C
Mirror Chart MT5
Andrej Hermann
5 (1)
The Mirror Chart MT5 is a overlay indicator specifically designed to project a second financial instrument directly onto the main chart window. This tool is invaluable for traders who rely on correlation analysis, as it visualizes the price movements of two different instruments in real time. Unlike traditional overlays, this indicator utilizes intelligent, dynamic centering and scaling logic. It continuously analyzes the visible price range in the current window for both symbols and calculates
FREE
https://www.mql5.com/en/users/gedeegi/seller    The GEN indicator is a multifunctional technical analysis tool for the MetaTrader 5 (MT5) platform. It is designed to automatically identify and display key Support and Resistance (S&R) levels and detect False Breakout signals, providing clear and visual trading cues directly on your chart. Its primary goal is to help traders identify potential price reversal points and avoid market traps when the price fails to decisively break through key levels
FREE
Bookmap pro
Ahmed Mohammed Bakr Bakr
FREE Bookmap Volume Heatmap Indicator Overview The   Bookmap Volume Heatmap   is a custom MetaTrader 5 (MQL5) indicator that creates a visual heatmap of trading volume distribution across price levels, similar to professional trading platforms like Bookmap. It provides traders with a clear visualization of where significant trading activity has occurred within a specified price range. Key Features 1.   Volume Distribution Visualization Creates color-coded rectangles on the chart representing vol
FREE
TheRealPrice v3.0 | Ultimate Spread & Ask Visualizer TheRealPrice is a high-precision utility for MetaTrader 5 designed to expose the hidden cost of every trade: The Spread . While standard charts only display the Bid price, professional traders know that buy orders and short-exits happen at the Ask price. TheRealPrice bridges this gap by drawing a dynamic, real-time horizontal line that tracks the exact Ask level, providing a clear visual representation of the current market spread. Why do you
Trend Lines Scalper
Magdalena Estefania Colonna
TREND LINES Scalper Professional Indicator OVERVIEW Trend Lines Scalper is a highly accurate, advanced indicator designed specifically for professional traders looking to maximize their scalping opportunities by automatically detecting trend lines and high-probability signals. This powerful algorithm combines classic technical analysis with modern technology, automatically identifying price patterns and generating accurate, real-time signals for successful scalping trades. MAIN FEATURES
BoxInside MT5
Evgeny Shevtsov
5 (4)
This indicator calculates the volume profile and places labels that correspond to the VAH, VAL and POC levels, for each candle individually. Indicator operation features The indicator works on the timeframes from M3 to MN, but it uses the history data of smaller periods: M1 - for periods from M3 to H1, M5 - for periods from H2 to H12, M30 - for the D1 period, H4 - for the W1 period, D1 - for the MN period. The color and location of the VAL, VAH and POC labels on the current candle are considere
FREE
JAC Trend Color Candle
Eduardo Da Costa Custodio Santos
The indicator "JAC Trend Color Candle" for Meta Trader 5, was created to visually facilitate the trend for the trader. It is based on three parameters, which identifies the uptrend, downtrend and non-trending market. The colors are trader-configurable, and the average trader-configurable as well. trend parameters cannot be configured as they are the indicator's differential.
Aggression Volume Profile
Edson Cavalca Junior
4.55 (11)
This indicator plots the volume profile by Price on the chart There are 5 ways to view it: By Total Volume Traded (Premium Version); Volume Ticks(Forex) Separated by Buyers and Sellers (Premium Version); Buyers Only (Premium Version); Sellers Only (Premium Version); Business balance (Buyers - Sellers) (Premium Version); . It is possible to select how many days the profiles will be calculated.( Premium Version) On the current day it recalculates the histogram data for each new candlestick.
FREE
https://www.mql5.com/en/users/gedeegi/seller   GEN (Trend Fib Zones) GEN (Trend Fib Zones) is a professional technical analysis indicator that automatically detects trend structure shifts using swing highs/lows and dynamically plots key Fibonacci retracement and extension zones. Key Features: Automatic Trend Structure Detection Identifies market structure changes using CHoCH (Change of Character) and BOS (Break of Structure) logic. Highlights trend direction based on real swing high/low pivo
FREE
Take Your Trading Experience To the   Next Level ! and get the Magic Bollinger Bands Diamond Indicator MagicBB Diamond Indicator   is MT5 Indicator which can suggest signals for you while on MT5. The indicator is created with Non Lag Bollinger Bands strategy for the best entries. This is a system to target 10 to 20 pips per trade. The indicator will give alerts on the pair where signal was originated including timeframe. If signal sent, you then enter your trade and set the recommended pips targ
Trade Sentiment or trade assistant is a MT5 Indicatior. That show buy or sell signal of different indicator to assist to take trades. That will help you to take right trades or to get confirmation for your trade. You don't need to have this indicators. Including indicators like  RSI , STOCH , CCI. And the signals are Based on different Timeframes like 5M , 15H , 1H and 4H.
FREE
GEN RSI hunter
Gede Egi Narditya
INDICATOR: GEN RSI Hunter Developer: gedeegi General Description GEN RSI Hunter is a technical indicator based on the Relative Strength Index (RSI) that automatically detects potential BUY and SELL signals based on overbought/oversold conditions and price reversal patterns. This indicator is perfect for traders who want to capture short-term swing opportunities using price action confirmation and price patterns like Double Top and Double Bottom. Signals are confirmed by breakout candles and val
FREE
Description Volume Magic is an indicator that shows the value of the relative volume in conjunction with the direction of the current trend. The ratio of the current volume relative to the average volume for a certain period is displayed in the lower window as an oscillator. The direction of the current trend is displayed as two-color trend lines. How to use? First, use two-color trend lines to determine the direction of the current trend. Then look for areas of low volume and open positions
Buyers of this product also purchase
SuperScalp Pro
Van Minh Nguyen
5 (10)
SuperScalp Pro – Advanced Multi-Filter Scalping Indicator System SuperScalp Pro is an advanced scalping indicator system that combines the classic Supertrend with multiple intelligent confirmation filters. The indicator performs efficiently across all timeframes from M1 to H4 and is especially suitable for XAUUSD, BTCUSD and major Forex pairs. It can be used as a standalone system or flexibly integrated into existing trading strategies. The indicator integrates more than 11 filters, including fa
Divergence Bomber
Ihor Otkydach
4.89 (83)
Each buyer of this indicator also receives the following for free: The custom utility "Bomber Utility", which automatically manages every trade, sets Stop Loss and Take Profit levels, and closes trades according to the rules of this strategy Set files for configuring the indicator for various assets Set files for configuring Bomber Utility in the following modes: "Minimum Risk", "Balanced Risk", and "Wait-and-See Strategy" A step-by-step video manual to help you quickly install, configure, and s
Entry In The Zone and SMC Multi Timeframe is a real-time market analysis tool developed based on Smart Money Concepts (SMC). It is designed to analyze market structure, price direction, reversal points, and key zones across multiple timeframes in a systematic way. The system displays Points of Interest (POI) and real-time No Repaint signals, with instant alerts when price reaches key zones or when signals occur within those zones. It functions as both an Indicator and a Signal System (2-in-1), c
New Update of   Smart Trend Trading System MT5 For  2026 Market: If You Buy this Indicator you will Get my Professional Trade Manager + EA  for FREE . First of all Its worth emphasizing here that this Trading System is Non-Repainting   , Non Redrawing and Non Lagging Indicator Which makes it ideal from both manual and robot trading .  [Online course] , [manual] and [download presets] . The Smart Trend Trading System MT5 is a comprehensive trading solution tailored for new and experienced traders
FX Trend MT5 NG
Daniel Stein
5 (4)
FX Trend NG: The Next Generation Multi-Market Trend Intelligence Overview FX Trend NG is a professional multi-timeframe trend and market monitoring tool designed to give you a complete structural overview of the market in seconds. Instead of switching between dozens of charts, you instantly see which symbols are trending, where momentum is fading, and where strong alignment exists across timeframes. Launch Offer – Get FX Trend NG for $30 (6 Months) or $80 Lifetime . Already part of the Stein I
Grabber System MT5
Ihor Otkydach
4.82 (22)
Let me introduce you to an excellent technical indicator – Grabber, which works as a ready-to-use "All-Inclusive" trading strategy. Within a single code, it integrates powerful tools for technical market analysis, trading signals (arrows), alert functions, and push notifications. Every buyer of this indicator also receives the following for free: Grabber Utility for automatic management of open orders Step-by-step video guide: how to install, configure, and trade with the indicator Custom set fi
Power Candles MT5
Daniel Stein
5 (6)
Power Candles – Strength-Based Entry Signals for Any Market Power Candles brings Stein Investments’ proven strength analysis directly onto your price chart. Instead of reacting to price alone, each candle is colored based on real market strength, allowing you to instantly identify momentum build-ups, strength acceleration, and clean trend transitions. One Logic for All Markets Power Candles works automatically on all trading symbols . The indicator detects whether the current symbol is a Forex p
Trend Screener Pro MT5
STE S.S.COMPANY
4.84 (101)
Trend Screener Indicator --Professional Trend Trading & Market Scanning System for MetaTrader Unlock the true power of trend trading with Trend Screener Indicator — a complete multi-currency, multi-timeframe trend analysis solution powered by Fuzzy Logic,Trend Pulse Technology  and advanced market structure algorithms.   Trend Screener transforms your MetaTrader platform into a professional-grade Trend Analyzer and Market Scanner, helping you identify high-probability trend opportunities, early
AriX
Temirlan Kdyrkhan
1 (4)
AriX Indicator for MT5 A powerful trend-following and signal-evaluation tool AriX is a custom MT5 indicator that combines Moving Averages and ATR-based risk/reward logic to generate clear buy/sell signals. It visualizes dynamic SL/TP levels, evaluates past trade outcomes, and displays win/loss statistics in a clean on-chart panel. Key features include: Buy/Sell signals based on MA crossovers ATR-based SL/TP1/TP2/TP3 levels with visual lines and labels Signal outcome tracking with real-time stat
Quantum TrendPulse
Bogdan Ion Puscasu
5 (22)
Introducing Quantum TrendPulse , the ultimate trading tool that combines the power of SuperTrend , RSI , and Stochastic into one comprehensive indicator to maximize your trading potential. Designed for traders who seek precision and efficiency, this indicator helps you identify market trends, momentum shifts, and optimal entry and exit points with confidence. Key Features: SuperTrend Integration: Easily follow the prevailing market trend and ride the wave of profitability. RSI Precision: Detect
Smart Stop Indicator – Intelligent Stop-Loss Precision Directly on Your Chart Overview The Smart Stop Indicator is the tailored solution for traders who want to place their stop loss clearly and methodically instead of guessing or relying on gut feeling. This tool combines classic price-action logic (higher highs, lower lows) with modern breakout recognition to identify where the next logical stop level truly is. Whether in trending markets, ranges, or fast breakout phases, the indicator displ
Atomic Analyst MT5
Issam Kassas
4.03 (30)
New Update of   Atomic Analyst MT5 For  2026 Market: If You Buy this Indicator you will Get my Professional   Trade Manager + EA  for   FREE . First of all Its worth emphasizing here that this Trading Indicator is   Non-Repainting   , Non Redrawing and Non Lagging Indicator   Indicator, Which makes it ideal from both manual and robot trading.  User manual: settings, inputs and strategy . The Atomic Analyst  is a PA Price Action Indicator that uses Strength and Momentum of the price to find a bet
Introducing   Quantum Breakout PRO , the groundbreaking MQL5 Indicator that's transforming the way you trade Breakout Zones! Developed by a team of experienced traders with trading experience of over 13 years,   Quantum Breakout PRO   is designed to propel your trading journey to new heights with its innovative and dynamic breakout zone strategy. Quantum Breakout Indicator will give you signal arrows on breakout zones with 5 profit target zones and stop loss suggestion based on the breakout b
Game Changer Indicator mt5
Vasiliy Strukov
4.8 (20)
Game Changer is a revolutionary trend indicator designed to be used on any financial instrument to transform your metatrader in a powerful trend analyzer.   It works on any time frame and assists in trend identification, signals potential reversals, serves as a trailing stop mechanism, and provides real-time alerts for prompt market responses.  Whether you’re a seasoned, professional or a beginner seeking an edge, this tool empowers you to trade with confidence, discipline and a clear understand
RFI levels PRO MT5
Roman Podpora
3.67 (3)
The indicator accurately shows the reversal points and price return zones where the   Major players . You see where new trends are forming and make decisions with maximum precision, maintaining control over every trade. VERSION MT4     -    Reveals its maximum potential when combined with the   TREND LINES PRO   indicator What the indicator shows: Reversal structures and reversal levels with activation at the beginning of a new trend. Display of   TAKE PROFIT   and   STOP LOSS   levels with min
Azimuth Pro
Ottaviano De Cicco
5 (4)
LAUNCH PROMO Azimuth Pro price is initially set at 299$ for the first 100 buyers. Final price will be 499$ . THE DIFFERENCE BETWEEN RETAIL AND INSTITUTIONAL ENTRIES ISN'T THE INDICATOR — IT'S THE LOCATION. Most traders enter at arbitrary price levels, chasing momentum or reacting to lagging signals. Institutions wait for price to reach structured levels where supply and demand actually shift. Azimuth Pro maps these levels automatically: swing-anchored VWAP, multi-timeframe structure lines, an
FX Power MT5 NG
Daniel Stein
5 (31)
FX Power: Analyze Currency Strength for Smarter Trading Decisions Overview FX Power is your go-to tool for understanding the real strength of currencies and Gold in any market condition. By identifying strong currencies to buy and weak ones to sell, FX Power simplifies trading decisions and uncovers high-probability opportunities. Whether you’re looking to follow trends or anticipate reversals using extreme delta values, this tool adapts seamlessly to your trading style. Don’t just trade—trade
RelicusRoad Pro: Quantitative Market Operating System 70% OFF LIFETIME ACCESS (LIMITED TIME) - JOIN 2,000+ TRADERS Why do most traders fail even with "perfect" indicators? Because they trade Single Concepts in a vacuum. A signal without context is a gamble. To win consistently, you need CONFLUENCE . RelicusRoad Pro is not a simple arrow indicator. It is a complete Quantitative Market Ecosystem . It maps the "Fair Value Road" price travels on, distinguishing between random noise and true structur
Order Block Pro MT5
N'da Lemissa Kouame
Order Block Pro (MQL5) – Version 1.0 Author: KOUAME N'DA LEMISSA Platform: MetaTrader 5 Description: Order Block Pro is an advanced indicator designed to automatically detect bullish and bearish Order Blocks on your chart. By analyzing consolidation candles followed by strong impulsive candles, this tool highlights key areas where price movements are likely to accelerate. This indicator is perfect for traders who want to: Identify precise entry and exit points. Detect dynamic support and resist
Crystal Heikin Ashi Signals
Muhammad Jawad Shabir
5 (1)
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
ARIPoint
Temirlan Kdyrkhan
ARIPoint is a powerful trading companion designed to generate high-probability entry signals with dynamic TP/SL/DP levels based on volatility. Built-in performance tracking shows win/loss stats, PP1/PP2 hits, and success rates all updated live. Key Features: Buy/Sell signals with adaptive volatility bands Real-time TP/SL/DP levels based on ATR Built-in MA Filter with optional ATR/StdDev volatility Performance stats panel (Success, Profit/Loss, PP1/PP2) Alerts via popup, sound, push, or email Cu
Top indicator for MT5   providing accurate signals to enter a trade without repainting! It can be applied to any financial assets:   forex, cryptocurrencies, metals, stocks, indices .  Watch  the video  (6:22) with an example of processing only one signal that paid off the indicator! MT4 version is here It will provide pretty accurate trading signals and tell you when it's best to open a trade and close it. Most traders improve their trading results during the first trading week with the help of
Gold Sniper Scalper Pro
Ich Khiem Nguyen
3.78 (9)
Gold Sniper Scalper Pro is a MetaTrader 5 indicator built specifically for detecting false breakout patterns on XAUUSD. It identifies the 4-bar trap structure where price breaks a range boundary, draws in breakout traders, then reverses back inside — confirming the move was a false breakout. The indicator scores each setup across 17 quality factors, evaluates it through a 4-layer confluence pipeline, verifies it against a 7-timeframe trend consensus engine, and checks it against a gold volatili
Pips Stalker mt5
Abdulkarim Karazon
5 (1)
The Pips Stalker is a long short arrow type indicator, the indicator helps traders of all levels to take better decisions trading the market,the indicator never repaints and uses RSI as main signal logic, once an arrow is given it will never repaint or back paint and arrows are not delayed. MT4 VERSION <---- FEATURES OF THE PIPS STALKER ARROW : STATS PANEL a unique info dashboard that shows overall win rate % and useful stats such as max win and lost trades in a row, as well as other usefull inf
Support And Resistance Screener Breakthrough unique Solution With All Important levels analyzer and Markets Structures Feature Built Inside One Tool ! Our indicator has been developed by traders for traders and with one Indicator you will find all Imporant market levels with one click. LIMITED TIME OFFER : Support and Resistance Screener Indicator is available for only 50 $ and lifetime. ( Original price 125$ ) (offer extended) The available tools ( Features ) in our Indicator are :  1. HH-LL S
Trend Lines PRO MT5
Roman Podpora
5 (1)
TREND LINES PRO  -   helps understand where the market is truly changing direction. The indicator shows real trend reversals and points where major players re-enter. You see   BOS lines   Trend changes and key levels on higher timeframes — without complex settings or unnecessary noise. Signals don't repaint and remain on the chart after the bar closes. MT4 VERSION   - Reveals its maximum potential when combined with the   RFI LEVELS PRO   indicator What the indicator shows: Real shifts   trend
PZ Swing Trading MT5
PZ TRADING SLU
5 (5)
Protect against whipsaws: revolutionize your swing trading approach Swing Trading is the first indicator designed to detect swings in the direction of the trend and possible reversal swings. It uses the baseline swing trading approach, widely described in trading literature. The indicator studies several price and time vectors to track the aggregate trend direction and detects situations in which the market is oversold or overbought and ready to correct. [ Installation Guide | Update Guide | Tro
Trend Forecaster
Alexey Minkov
5 (7)
The Trend Forecaster indicator utilizes a unique proprietary algorithm to determine entry points for a breakout trading strategy. The indicator identifies price clusters, analyzes price movement near levels, and provides a signal when the price breaks through a level. The Trend Forecaster indicator is suitable for all financial assets, including currencies (Forex), metals, stocks, indices, and cryptocurrencies. You can also adjust the indicator to work on any time frames, although it is recommen
Easy Buy Sell is a market indicator for opening and closing positions. It becomes easy to track market entries with alerts. It indicates trend reversal points when a price reaches extreme values ​​and the most favorable time to enter the market. it is as effective as a Fibonacci to find a level but it uses different tools such as an algorithm based on ATR indicators and Stochastic Oscillator. You can modify these two parameters as you wish to adapt the settings to the desired period. It cannot
Algo Pumping
Ihor Otkydach
4.76 (21)
PUMPING STATION – Your Personal All-inclusive strategy Introducing PUMPING STATION — a revolutionary Forex indicator that will transform your trading into an exciting and effective activity! This indicator is not just an assistant but a full-fledged trading system with powerful algorithms that will help you start trading more stable! When you purchase this product, you also get FOR FREE: Exclusive Set Files: For automatic setup and maximum performance. Step-by-step video manual: Learn how to tr
More from author
Timeless Charts
Samuel Manoel De Souza
5 (3)
Timeless Charts is an advanced charting solution designed for professional traders seeking for custom charts / custom timeframes , including seconds charts / seconds timeframe, renko charts / renko bars, cluster charts / footprint charts and advanced tools present in most of the popular platforms. Unlike traditional offline charts or simplistic custom indicators, this solution constructs fully custom bars with true timestamp accuracy , down to miliseconds, allowing for a powerful and precise tr
Market Structure Patterns MT4
Samuel Manoel De Souza
5 (17)
Available for   MT4   and   MT5 . Join the Market Structure Patterns channel to download materials available for study and/or additional informations. Related posts: Market Structure Patterns - Introduction Beyond Fancy Order Blocks: Using True Volumetric Analysis with Market Structure Patterns & Timeless Charts Market Structure Patterns   is an indicator based on   smart money concepts   that displays   SMC/ICT   elements that can take your trading decisions to the next level. Take advantage
Visual Book on Chart
Samuel Manoel De Souza
4.44 (9)
Visual Book on Chart is an indicator designed specially for stocks and futures market. To check if you can use the tool with your Broker open the MT5 Depth Of Market on your terminal and check if there are price and volume data available.  Learn more about the MT5 Depth Of Market in the oficial page. The indicator shows the depth of market data on the chart window and use gradient  based on the market data to colorize the histogram bars. The indicator is formed by two components: The panel, whic
FREE
Tabajara Rules II The Best for MT5
Samuel Manoel De Souza
4.9 (10)
Tabajara Rules for MT5 , based on Professor André Machado’s Tabajara Setup, indicates the market direction using moving averages when there are candles aligned with the direction of the moving average. The indicator contains the color rule applied to the candles and the moving average. It allows changing the parameters: period and smoothing method of the moving average. It also allows changing the colors of the candles (borders and filling) and of the moving average. Professor André Machado’s
FREE
Phibo MA SAR
Samuel Manoel De Souza
5 (4)
Baseado no indicador MIMA SAR, que é uma combinação dos indicadores MIMA Consolidação e MIMA Tendência, da metodologia Phicube. O indicador é composto pelos 8 fractais, 17,34.72.144.305,610.1292,2554. Sendo a tendência indicada pelas linhas finas e a consolidação pelas linhas mais espessas. Para usar o indicador de maneira adequada deve-se partir do princípio de que tudo na natureza segue o caminho que oferece menor resistência. Isso significa que para uma reversão da tendência ocorrer nesse mod
FREE
Filter:
Vitor Faria
39
Vitor Faria 2025.10.27 20:37 
 

The best indicator

Aruncharan Ganapathy Sivakumar
219
Aruncharan Ganapathy Sivakumar 2024.08.18 00:56 
 

As Greg Nicolas said confirmation arrow gives confidence if added... Thank you author for your dedication

Greg Nicolas
159
Greg Nicolas 2024.05.25 00:28 
 

The Indicator is a top notch but It really took me time to understand it.however, disabling those sessions and OTE which gives direction somehow late and adding a confirmation arrow really makes the difference for me. Kudos to Samuel for a great Job and five star. I have both MT4 & MT5 on fire with Synthetic

pfidelus
162
pfidelus 2024.04.23 13:07 
 

I have tested over 100 different indicators for MT5 and MT4, and I must say that this one is in the top 5 of my favorite indicators. I am able to see everything very clearly, including all key levels, which is amazing for my strategy. I highly recommend this indicator; it has everything you need to make consistent profits. I don't usually write reviews for indicators, but I had to for this one because I found it very useful and helpful.

Agbakeleke Idowu
734
Agbakeleke Idowu 2024.04.21 23:47 
 

Very Useless Indicator Very Stupid creator... Very Lazy creator... People have advised him to add confirmation arrows for buy and Sell with TP and SL. Yet He kept saying all manners of rubbish. Clients are always first and then you last... Most worst indicator on Mql5

Alia Kaliner
28
Alia Kaliner 2024.03.20 10:34 
 

Please send me the documentation.

bijae
109
bijae 2023.12.16 11:09 
 

This 3.0 update just made this indicator 10x more powerful and undervalued at the same time! Sam is simply the best! Keep it up!

piola
39
piola 2023.11.23 01:41 
 

This indicator is amazing

elifranck gouvea
62
elifranck gouvea 2023.10.10 03:46 
 

Ainda nÃo consegui fazer uma boa análise pelo indicador, que tal fazer um video explicativo do mesmo?

YouLan
41
YouLan 2023.09.02 06:06 
 

User didn't leave any comment to the rating

Saep Mulyana
191
Saep Mulyana 2023.07.28 09:51 
 

good

afreitas
19
afreitas 2023.07.17 02:13 
 

User didn't leave any comment to the rating

999107
110
999107 2023.07.01 09:11 
 

Very Excellent Indicator Much Appreciated for your good work. Thank You Would please send me the Documentation, Just Bought this indicator.

Truta Petru Lucian
393
Truta Petru Lucian 2023.06.28 22:02 
 

Excellent indicator

BINARY VADER
31
BINARY VADER 2023.06.27 15:14 
 

Doesn't Work on New Update of MT5 ;Please Help

munis
20
munis 2023.06.11 12:38 
 

Hello, The indicator was fantastic but My Mt5 was updated and the indicator doesn't work again. Is there any manual that can guide how to rectify this before given my rating.

It's back working perfectly with awesome new features. I give 5 star

Alejandro Estan Fraga Salinas
445
Alejandro Estan Fraga Salinas 2023.05.17 07:11 
 

Very good indicator. Everything you need for a successful manual trading. Adding a trading assistant will complete the pack Thanks Wellington !

Aravind Kolanupaka
10044
Aravind Kolanupaka 2023.05.11 21:26 
 

Good work. I love this indicator.

Collins M
63
Collins M 2023.05.04 23:12 
 

I can confidently say this is THE BEST indicator out there. Great work author

drzocker
162
drzocker 2023.05.03 20:27 
 

Gute Arbeit !! Nice and Good Work !! Hope of Updates

12
Reply to review