SupandResFinderMaster

## What it does

SRLF is an MT4 on-chart indicator that identifies and draws probable support
and resistance zones as shaded boxes. It combines confirmed swing points,
directional tick-volume pressure, and a lightweight market-structure read to
estimate areas where support or resistance is more likely to form.

The indicator keeps the most recently qualified support and resistance zones
active, extends them forward, monitors their interaction with price, and
detects confirmed breaks and role reversals. Older boxes remain visible on the
chart as historical context, but once a newer qualifying zone of the same type
appears, the older one is no longer actively tracked.

When an active resistance zone is decisively broken, it can flip into support.
Likewise, a broken support zone can become resistance.

SRLF also checks whether a newly qualified zone agrees with the current market
structure. Zones backed by both the level-detection logic and the structure
tracker are marked as confluent.

## Important note about volume and "order blocks"

SRLF does **not** claim to detect institutional orders, real order flow, or
true exchange-volume-based order blocks.

Like many MT4 indicators that, for reasons not always technically justified,
use terms such as "Order Blocks" in their names or descriptions, SRLF normally
has no access to centralized real traded volume for the underlying spot FX
market. Standard MT4 Forex data provides broker-side **tick volume** — the
number of price updates observed during a candle — rather than a complete
record of actual buy and sell transactions across the market.

For that reason, SRLF does not pretend to know where large institutional
orders were actually placed.

Instead, it uses the measurable information that is available in MT4 —
confirmed price swings, directional tick-volume behaviour, ATR-based zone
dimensions, subsequent price interaction, and simplified market structure —
to estimate **probable areas where meaningful support/resistance or
order-block-like behaviour may exist**.

In other words, these are algorithmically inferred zones, not directly
observed institutional order locations.

## How it works

- **One shared pivot engine.** A single symmetric pivot-high / pivot-low
  detector, driven by `InpLookback`, finds confirmed swing points.

  `InpLookback` is used on both sides of the candidate pivot. With the default
  value of `20`, a pivot therefore requires 20 bars on the left and 20 bars on
  the right before it can be confirmed.

  Because the right-side bars must already exist, a pivot is only recognized
  `InpLookback` bars after the swing itself occurred.

  The same confirmed pivot stream feeds two separate layers:

  1. a **directional tick-volume delta proxy**, which decides whether a
     confirmed pivot has sufficient recent buying or selling pressure to
     qualify as a support/resistance zone, and

  2. a **structure tracker**, which follows confirmed swing highs and lows in
     the background and maintains a simplified bullish, bearish, or initially
     neutral market-structure state.

- **Directional tick-volume filter.** MT4 tick volume is signed according to
  candle direction: bullish candles contribute positive volume and bearish
  candles contribute negative volume.

  This creates a lightweight directional volume-pressure proxy. It is **not**
  true bid/ask volume delta and should not be interpreted as institutional
  order-flow data.

  `InpVolLen` controls the recent comparison window used by this filter.

  The volume condition is evaluated when the pivot becomes confirmed, not on
  the historical candle where the pivot originally formed.

- **Boxes, not lines.** Each accepted level is drawn as a price zone rather
  than a single exact-price line.

  `InpBoxWidth` controls the vertical zone thickness using **ATR(200)** as its
  volatility reference.

  A support zone extends downward from the confirmed pivot low, while a
  resistance zone extends upward from the confirmed pivot high.

  The visual fill intensity reflects the relative strength of the directional
  tick-volume reading used by the level engine.

- **Only the latest zones remain active.** SRLF actively maintains one current
  support zone and one current resistance zone.

  When a newer qualifying support or resistance is found, it becomes the
  active zone of that type. Older boxes remain on the chart for historical
  reference, but they are no longer extended or evaluated for new
  break/hold events.

- **Lightweight structure tracker.** The structure engine monitors confirmed
  swing highs and lows.

  A close above the tracked swing high establishes or continues bullish
  structure. A close below the tracked swing low establishes or continues
  bearish structure.

  A break continuing the existing structure is treated as a simplified
  **BOS — Break of Structure**, while a break reversing the previously tracked
  structure is treated as a simplified **CHoCH — Change of Character**.

  The structure state starts neutral until sufficient information becomes
  available.

  This is intentionally a lightweight structural interpretation and is not
  intended to reproduce every definition used in discretionary Smart Money
  Concepts methodology.

- **Confluence flag.** A newly confirmed support zone is considered confluent
  when the structure tracker is bullish at the time the pivot is confirmed.

  A newly confirmed resistance zone is considered confluent when the structure
  tracker is bearish at that time.

  Confluent zones receive stronger visual emphasis through a brighter fill,
  thicker border, and a star indicator in the box label.

  `InpShowConfluenceOnly` can hide non-confluent levels and display only zones
  where both the level filter and structure condition agree.

- **Strict break confirmation.** SRLF does not consider a zone broken merely
  because price temporarily enters it or because the candle closes slightly
  beyond one of its boundaries.

  A break is confirmed only when a completed candle clears the **entire**
  active zone:

  - resistance is considered broken when the candle's **low is above the
    upper boundary** of the resistance box;
  - support is considered broken when the candle's **high is below the lower
    boundary** of the support box.

  This deliberately requires stronger confirmation than a simple close beyond
  the zone.

- **Role reversal.** After a confirmed break, the active zone can switch role:

  - broken resistance → potential support,
  - broken support → potential resistance.

  The box changes its visual state accordingly, and subsequent interaction can
  be marked as a hold/retest or reversal of that temporary role.

- **Break labels and structure agreement.** If `InpShowLabels` is enabled,
  confirmed breaks can be labelled `"Break Sup"` or `"Break Res"`.

  When the direction of the break agrees with the currently tracked market
  structure, the label receives an additional structure-confirmation tag.

  This should be understood as **directional agreement with the current
  structure**, not as proof that the support/resistance break itself
  independently constitutes a new BOS event.

- **Optional hold/retest markers.** `InpShowMarkers` allows SRLF to mark
  subsequent interactions with broken or role-reversed zones using small
  chart markers.

- **Optional structure overlay.** `InpShowStructureContext` draws faint dotted
  BOS/CHoCH context lines and labels for detected structural breaks.

  This overlay is intended only as supporting visual context and is disabled
  by default to keep the chart clean.

- **Deliberately limited scope.** SRLF does not attempt to implement a complete
  Smart Money Concepts suite.

  There are no FVGs, equal highs/lows, QML patterns, liquidity maps,
  institutional order-flow feeds, or buy/sell signal arrows.

  Its purpose is narrower: identify probable support/resistance zones from
  confirmed swings and directional tick-volume behaviour, then add a simple
  market-structure layer to help distinguish ordinary zones from structurally
  aligned ones.

## What you can configure

| Group | Parameters |
| --- | --- |
| Core engine | `InpLookback` — shared pivot left/right window |
| Volume filter | `InpVolLen` — directional tick-volume comparison length |
| Zone size | `InpBoxWidth` — vertical zone thickness as an ATR(200) multiple |
| Colors | `InpSupBaseColor`, `InpResBaseColor` |
| Labels/markers | `InpShowLabels`, `InpShowMarkers` |
| Confluence | `InpShowConfluenceOnly` |
| Structure overlay | `InpShowStructureContext`, `InpStructBOSColor`, `InpStructCHoCHColor` |

## Default settings

- `InpLookback = 20`
  - 20 bars on the left and 20 bars on the right of a pivot
- `InpVolLen = 2`
  - directional tick-volume filter length
- `InpBoxWidth = 1.0`
  - zone thickness = 1.0 × ATR(200)
- Support color: **Lime**
- Resistance color: **Red**
- `InpShowLabels = true`
- `InpShowMarkers = true`
- `InpShowConfluenceOnly = false`
  - both ordinary qualified zones and structurally confluent zones are shown
- `InpShowStructureContext = false`
  - BOS/CHoCH context overlay hidden by default
- BOS line color: **DodgerBlue**
- CHoCH line color: **Orange**

## Interpretation

SRLF should be treated as a **probability and context tool**, not as a direct
view into institutional positioning.

A displayed zone means that the indicator has found a confirmed price swing
which also satisfies its directional tick-volume criteria. A confluent zone
adds agreement with the simplified structure engine.

Neither condition guarantees that real institutional orders are present there.

The purpose of the indicator is to narrow the chart down to areas where,
according to the available MT4 price, tick-volume and structure information,
support/resistance behaviour appears more probable and therefore may deserve
closer attention.
Recommended products
--- FREE VERSION - WORKS ONY ON EURUSD ------------------------------------------------------------------- This is a unique breakout strategy that is used for determination of the next short term trend/move. The full system is available on MQL5 under the name "Forecast System". Here is the link -->  https://www.mql5.com/en/market/product/104166?source=Site Backtest is not possible, because calculations are done based on the data of all timeframes/periods. Therefore I propose you use the technolo
FREE
Индикатор "Buy Sell zones x2" основан на принципе "остановка/разворот после сильного движения". Поэтому, как только обнаруживается сильное безоткатное движение, сразу после остановки - рисуется зона покупок/продаж. Зоны отрабатывают красиво. Или цена ретестит зону и улетает в космос, или пробивает зону насквозь и зона отрабатывается с другой стороны так же красиво.  Работает на всех таймфреймах. Лучше всего выглядит и отрабатывает на Н1.    Может использоваться как: индикатор зон, где лучше вс
FREE
Fibonacci retracement is really one of the most reliable technical analysis tools used by traders. The main problem with using these levels in trading is that you need to wait until the end of the impulse movement to calculate the retracement levels, making difficult to take a position for limited retracement (0.236 or 0.382). Fibo Dynamic solves this problem. Once the impulse movement is identified the retracement levels are automatically updated allowing very dynamic trading in trends with onl
FREE
Ppr PA
Yury Emeliyanov
4.75 (4)
"Ppr PA" is a unique technical indicator created to identify "PPR" patterns on the currency charts of the MT4 trading platform. These patterns can indicate possible reversals or continuation of the trend, providing traders with valuable signals to enter the market. Features: Automatic PPR Detection: The indicator automatically identifies and marks PPR patterns with arrows on the chart. Visual Signals: Green and red arrows indicate the optimal points for buying and selling, respectively. Arrow
FREE
YK Find Support And Resistance
Peechanat Chatsermsak
5 (1)
The " YK Find Support And Resistance " indicator is a technical analysis tool used to identify key support and resistance levels on a price chart. Its features and functions are as follows: 1. Displays support and resistance levels using arrow lines and colored bands, with resistance in red and support in green. 2. Can be adjusted to calculate and display results from a specified timeframe using the forced_tf variable. If set to 0, it will use the current timeframe of the chart. 3. Uses the
FREE
Auto Supply and Demand Oscillator is an indicator for MetaTrader 4 and MetaTrader 5 that detects supply and demand zones automatically and displays them as a single oscillator value at the bottom of the chart, instead of drawing rectangles directly on price. Concept Supply zones are price areas where strong selling created a sharp downward move away from a balance area. Demand zones are price areas where strong buying created a sharp upward move. Traditional implementations draw boxes on the
FREE
The free version of the Hi Low Last Day MT4 indicator . The Hi Low Levels Last Day MT4 indicator shows the high and low of the last trading day . The ability to change the color of the lines is available . Try the full version of the Hi Low Last Day MT4 indicator , in which additional indicator features are available : Displaying the minimum and maximum of the second last day Displaying the minimum and maximum of the previous week Sound alert when crossing max . and min . levels Selecting an arb
FREE
Power Trend Free
Yurij Kozhevnikov
5 (2)
Power Trend Free - the indicator shows the trend strength in the selected period. Input Parameters The indicator has three input parameters: Period - a positive number greater than one, it shows the number of candlesticks used for calculations. If you enter one or zero, there will be no error, but the indicator will not be drawn. Applied Price - the standard "Apply to:" set meaning data used for the indicator calculation: Close - Close prices; Open - Open prices; High - High prices; Low - Low p
FREE
Harmonic Patterns are utilized for predicting market turning points with precision. These patterns offer a high win rate and numerous trade opportunities within a single trading day. Our indicator identifies the most prominent Harmonic Patterns based on principles outlined in Harmonic Trading literature. **IMPORTANT NOTES:** - The indicator does not repaint, lag, or redraw. It accurately identifies patterns at the D point, ensuring reliability in pattern detection.    **HOW TO USE:** 1. Drag
FREE
Bar Size MT4
Mikhail Tcvetkov
5 (3)
The technical indicator, in real time, searches for candlesticks that exceed the size set in the settings and gives signals about them. As a rule, such abnormally large candles appear either at the beginning of strong impulses or at the end of a directional price movement. At the beginning of the pulse, the signal can serve as a basis for searching for an entry point, at the end of the movement, it is a sign of a climax and may indicate the near end of the trend. The reference size for filtering
FREE
Triple RSI
Pablo Leonardo Spata
1 (1)
LOOK AT THE FOLLOWING STRATEGY WITH THIS INDICATOR. Triple RSI is a tool that uses the classic Relative Strength Indicator, but in several timeframes to find market reversals.    1.  ️ Idea behind the indicator and its strategy: In Trading, be it Forex or any other asset, the ideal is to keep it simple, the simpler the better . The triple RSI strategy is one of the simple strategies that seek market returns. In our experience, where there is more money to always be won, is in the marke
FREE
Discover the power of precision and efficiency in your trading with the " Super Auto Fibonacci " MT4 indicator. This cutting-edge tool is meticulously designed to enhance your technical analysis, providing you with invaluable insights to make informed trading decisions. Key Features: Automated Fibonacci Analysis: Say goodbye to the hassle of manual Fibonacci retracement and extension drawing. "Super Auto Fibonacci" instantly identifies and plots Fibonacci levels on your MT4 chart, saving you tim
FREE
Welcome to our   Price Wave Pattern   MT4 --(ABCD Pattern)-- The ABCD pattern is a powerful and widely used trading pattern in the world of technical analysis. It is a harmonic price pattern that traders use to identify potential buy and sell opportunities in the market. With the ABCD pattern, traders can anticipate potential price movements and make informed decisions on when to enter and exit trades. Send me a  Message and Get A Free Gift : ABCD  Symbol Scanner Dashboard! EA Version : Price
FREE
Sentinel Arrow
Dmytro Kasianov
1 (1)
Sentinel Arrow Key Features: ⊗An exclusive algorithm for quickly and accurately identifying trends, reversals, and momentum changes. ⊗Designed for professional use, it features robust signal logic that eliminates delays or false updates. ⊗Suitable for various timeframes. ⊗Does not redraw, delete, or modify past signals. ⊗All BUY and SELL signals are generated on the candlestick itself and remain fixed. ⊗In real trading, there is no redrawing—signals appear instantly on the candlestick itself.
FREE
Candle Countdown — Accurate Time to Close for MT4 Candle Countdown is a simple and precise tool that shows the remaining time until the current candle closes directly on the chart. When your entry depends on the candle close, even a few seconds matter. This indicator helps you see the exact time and make decisions without rushing or guessing. An indicator for precise control over candle closing time. The indicator displays: time remaining until candle close current server time spread Stop Level
FREE
Free automatic Fibonacci is an indicator that automatically plots a Fibonacci retracement based on the number of bars you select on the BarsToScan setting in the indicator. The Fibonacci is automatically updated in real time as new highest and lowest values appears amongst the selected bars. You can select which level values to be displayed in the indicator settings. You can also select the color of the levels thus enabling the trader to be able to attach the indicator several times with differe
FREE
Wise Men Indicator demo
Bohdan Kasyanenko
3 (2)
The indicator displays signals according to the strategy of Bill Williams on the chart. Demo version of the indicator has the same features as the paid, except that it can work only on a demo account . Signal "First Wise Man" is formed when there is a divergent bar with angulation.  Bullish divergent bar - with lower minimum and closing price in the upper half. Bearish divergent bar - higher maximum and the closing price at the bottom half. Angulation is formed when all three lines of Alligator
FREE
PZ Three Drives
PZ TRADING SLU
5 (2)
This indicator finds Three Drives patterns. The Three Drives pattern is a 6-point reversal pattern characterised by a series of higher highs or lower lows that complete at a 127% or 161.8% Fibonacci extension. It signals that the market is exhausted and a reversal can happen. [ Installation Guide | Update Guide | Troubleshooting | FAQ | All Products  |  Get Help ] Customizable pattern sizes Customizable colors and sizes Customizable breakout periods Customizable 1-2-3 and 0-A-B ratios It impl
FREE
The Auto Fibonacci Indicator is a professional technical analysis tool that automatically draws Fibonacci retracement levels based on the most recent closed Daily (D1) or 4-Hour (H4) candle. These levels are widely used by traders to identify key support , resistance , and trend reversal zones . This version is designed for manual trading and supports a powerful trading strategy using Fibonacci levels combined with a 50-period EMA (Exponential Moving Average) , which you can easily add from MT4
FREE
FlatBreakout
Aleksei Vorontsov
FlatBreakout (Free Version) Flat Range Detector and Breakout Panel for MT4 — GBPUSD Only FlatBreakout is the free version of the professional FlatBreakoutPro indicator, specially designed for flat (range) detection and breakout signals on the GBPUSD pair only. Perfect for traders who want to experience the unique fractal logic of FlatBreakout and test breakout signals on a live market without limitations. Who Is This Product For? For traders who prefer to trade breakout of flat ranges (breakout,
FREE
Extremum Reverse Bar
Yurij Izyumov
2.8 (5)
This indicator has been created for finding the probable reversal points of the symbol price. A small candlestick reversal pattern is used it its operation in conjunction with a filter of extremums. The indicator is not redrawn! If the extremum filter is disabled, the indicator shows all points that have a pattern. If the extremum filter is enabled, the condition works – if the history Previous bars 1 candles back contains higher candles and they are farther than the Previous bars 2 candle, such
FREE
BE auto
Muhammad Ridzuan Mohd Radzali
5 (2)
Indicator automatically draw bullish and bearish engulfing without any rules. Bearish and Bullish engulf is well known area for supply and demand area marking. This indicator can be used in any strategy that required supply demand zone. Show Last Engulf : Enable this option to show unfresh engulfing  Candle to calculate : set 0 will load all history bar and can use up more memory Bearish Engulfing Colour : Pick any colour that suit Bearish Engulfing Colour  : Pick any colour that suit -Use this
FREE
BinaryFortune
Andrey Spiridonov
3.83 (6)
The BinaryFortune indicator has been developed and adapted specifically for trading short-term binary options. The algorithm of the indicator analyzes numerous factors before generating a signal. The indicator is installed in the conventional way. The indicator consists of an information window, which displays the name of the trading instrument, support and resistance levels, and the signal itself ( BUY , SELL or WAIT ). A signal is accompanied by a sound and a pop-up Alert. Advantages of the in
FREE
StrikePin
Mike Pascal Plavonil
1 (1)
The StrikePin indicator is a technical, analytical tool designed to identify trend reversals and find optimal market entries.  The StrikePin indicator is based on the pin bar pattern, which is the Price Action reversal pattern. An entry signal, in a trending market, can offer a very high-probability entry and a good risk to reward scenario. Be careful: the indicator is repainting since it is looking for highest high and lowest lows.  You should avoid to use it in experts but you can use it in
FREE
Toby Strategy Indicator
Ahmd Sbhy Mhmd Ahmd ʿYshh
The indicator rely on The Toby strategy >> The mother candle which is bigger in range than the previous six candles. A vertical line shows the last Toby Candle with the targets shown up and down. The strategy is about the closing price out of the range of the toby candle to reach the 3 targets..The most probable to be hit is target1 so ensure reserving your profits and managing your stop lose.
FREE
Our offer also includes a free panel — Indicator Panel — which allows you to show or hide indicators created by BOToBRACIA. High and Low Points is a practical technical analysis indicator that plots levels corresponding to the highs and lows from previous periods (day / week / month) — levels that, in the Smart Money Concepts (SMC) and ICT approach, are treated as liquidity zones, while in classical technical analysis they serve as potential support and resistance levels. Indicator settings: •
FREE
TreendLines
Sajjad Karimi
5 (1)
''Trendlines'' is an Indicator, that every Trader need and shows Trendline and  Support and resistance levels in all  Timeframe's. Also In 1-hour, 4-hour and daily time frames and Current timeframes, support, and resistance levels are specified and trend lines are drawn so that the trader can see all levels on a chart.   In   Properties   it is possible to turn off unnecessary Lines.  In ' Tendency indicator '' , as full package of Predictions that every Trader need, there  is also the Predict
FREE
Follow The Line
Oliver Gideon Amofa Appiah
3.94 (16)
FOLLOW THE LINE GET THE FULL VERSION HERE: https://www.mql5.com/en/market/product/36024 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.  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
FREE
Average True Range (ATR) indicator with multi-timeframe support, customizable visual signals, and configurable alert system. Freelance programming services, updates, and other TrueTL products are available on my MQL5 profile . Feedback and reviews are highly appreciated! What is ATR? The Average True Range (ATR), developed by J. Welles Wilder, is a technical indicator that measures market volatility. It calculates the average of the True Range over a specified period. The True Range is the gr
FREE
Virtual Targets
Hoang Van Dien
3.83 (6)
This indicator is very useful for day traders or short term traders. No need to calculate the number of pips manually, just look at the chart and you will see the Virtual Take Profit / Virtual Stop Loss target line and evaluate whether the entry point is feasible to reach the intended target or not. Enter the intended Take Profit / Stop Loss pips for your trade. The indicator will display Virtual Take Profit / Virtual Stop Loss lines for you to easily see if the target is feasible or not.
FREE
Buyers of this product also purchase
Gann Made Easy
Oleg Rodin
4.84 (171)
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
Neuro Poseidon MT4
Daria Rezueva
4.8 (45)
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 all
M1 Sniper
Oleg Rodin
5 (26)
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
Prop Firm Sniper
Mohamed Hassan
4.33 (6)
Prop Firm Sniper MT4  is a professional market structure indicator that automatically identifies high-probability BUY and SELL opportunities using BOS and CHoCH analysis. Recommended Timeframes: For backtesting, use the indicator on   M5 or M15   for Gold (XAUUSD), and   M15 or H1   for more volatile Forex pairs such as   GBPUSD, USDJPY, EURGBP , and similar markets. CONTACT ME AFTER PURCHASE TO CLAIM YOUR FREE BONUSES! Prop Firm Sniper  is a professional market structure indicator designed t
BTMM State Engine Pro by G-Labs — Beat The Market Maker indicator for MetaTrader 4. Asian session range, London and New York kill zones, level progression (L1/L2/L3), peak formation detection (PFH/PFL), entry signals, and a multi-pair scanner from one chart. Stop scanning charts one pair at a time. The State Engine tracks the BTMM daily cycle automatically — Asian box, room boundaries, level blocks, peak formations, and filtered entries — while the scanner dashboard shows level, peak status,
DayTrader PRO MT4
Davit Beridze
5 (1)
DayTrader PRO DayTrader PRO   is an advanced trading indicator that combines John Ehlers' Laguerre Filter with a powerful Auto-Optimization Engine. Instead of using fixed parameters, the indicator automatically searches for the best settings based on recent market conditions, helping you adapt to changing volatility without constant manual adjustments. The indicator generates clear   BUY   and   SELL   signals together with adaptive   Stop Loss   and   Take Profit   levels calculated from curre
KURAMA GOLD SIGNAL PRO (MT4) — 7-Layer Filter, Auto TP/SL, Quality Score & Signal History Save | Complete XAUUSD Trading System No repaint in real time. The moment a signal appears, the arrow, entry, TP and SL are locked on the spot and never move afterward. What you trade is this real-time signal. And in v7.20, every signal that is actually sent is auto-saved and restored exactly after restart. BUYER BONUS Buy the lifetime license and receive AI Zone Radar (
Scalper Inside PRO
Alexey Minkov
4.74 (68)
Scalper Inside PRO helps you read the intraday trend and plan your trade before you enter. It uses exclusive built-in algorithms to evaluate market direction and calculate key target levels the moment a signal appears, so you always see the potential entry, stop-loss and profit targets ahead of time. The indicator also shows detailed performance statistics on historical data, so you can see how different instruments and strategies behaved and choose what fits current market conditions. You can e
Supply and Demand Dashboard PRO
Bernhard Schweigert
4.81 (21)
Trading Special – 30% OFF This dashboard is a very powerful piece of software working on multiple symbols and up to 9 timeframes. It is based on our main indicator (Best reviews:   Advanced Supply Demand ). The dashboard gives a great overview. It shows: Filtered Supply and Demand values including zone strength rating, Pips distances to/and within zones, It highlights nested zones, It gives 4 kind of alerts for the chosen symbols in all (9) time-frames. It is highly configurable for your pers
SR Liquidity
Oleg Rodin
5 (1)
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 driv
Quantum Breakout Indicator PRO
Bogdan Ion Puscasu
4.96 (26)
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 box. I
Trend Catcher ind
Ramil Minniakhmetov
5 (11)
TREND CATCHER INDICATOR Trend Catcher Indicator analyzes market price movements, using a combination of the author’s proprietary and customized adaptive trend-analysis indicators.  It identifies the true market direction by filtering out short-term noise and focusing on underlying momentum strength, volatility expansion, and price structure behavior.  It also uses a combination of smoothing and trend-filtering customized indicators such as moving averages, RSI, and volatility filters.   Real ope
Super Signal – Skyblade Edition Professional No-Repaint / No-Lag Trend Signal System with Exceptional Win Rate | For MT4 / MT5 It works best on lower timeframes, such as 1-minute, 5-minute, and 15-minute charts. Core Features: Super Signal – Skyblade Edition is a smart signal system designed specifically for trend trading. It applies a multi-layered confirmation mechanism to detect only strong, directional moves supported by real momentum. This system does not attempt to predict tops or bottoms
Zoryk Gold mt4
Reda El Koutbane
discount ends in 24 h original price 69 $ ZORYK — Advanced XAUUSD Signal System for MetaTrader 4 You know the feeling. You spend time analyzing gold. You wait for the entry. You finally open the trade, and price immediately moves against you. You close too early, move the Stop Loss, or hesitate for a few seconds. Then the market reaches the exact destination you originally expected without you. The direction was not always the problem. The real problem was uncertainty. You did not know exa
Advanced Supply Demand
Bernhard Schweigert
4.91 (302)
Trading Special – 30% OFF 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 pot
Neo Wave PRO
Nikolay Raykov
5 (1)
Price & Time Market Structure Indicator A professional market structure tool that analyzes waves through both price and time — not price alone. Main Description NeoWave PRO is a professional market structure indicator for MetaTrader 4 designed for traders who want to move beyond traditional one-dimensional wave tools such as ZigZag, swing indicators, and basic high/low systems. Most wave indicators analyze only one thing: Price. But a real market wave is not only a price movement. A true wave de
AW Candle Patterns MT4
AW Trading Software Limited
The AW Candle Patterns indicator is a combination of an advanced trend indicator combined with a powerful candle pattern scanner. It is a useful tool for recognizing and highlighting the thirty most reliable candlestick patterns. In addition, it is a current trend analyzer based on colored bars with a   plug-in multi-timeframe trend panel that can be resized and positioned. A unique ability to adjust the display of patterns depending on the trend filtering. Advantages: Easily identifies candle p
All in One Trade
Alexey Minkov
4.5 (28)
All-in-One Trade Indicator (AOTI) – Since 2015. The All-in-One Trade Indicator (AOTI) determines daily targets for EURUSD, EURJPY, GBPUSD, USDCHF, EURGBP, EURCAD, EURAUD, AUDJPY, GBPAUD, GBPCAD, GBPCHF, GBPJPY, AUDUSD, and USDJPY. All other modules work with any trading instruments. The indicator includes various features, such as Double Channel trend direction, Price channel, MA Bands, Fibo levels, Climax Bar detection, and others. The AOTI indicator is based on several trading strategies, and
Currency Strength Wizard is a very powerful indicator that provides you with all-in-one solution for successful trading. The indicator calculates the power of this or that forex pair using the data of all currencies on multiple time frames. This data is represented in a form of easy to use currency index and currency power lines which you can use to see the power of this or that currency. All you need is attach the indicator to the chart you want to trade and the indicator will show you real str
ECM Elite Channel is a volatility-based indicator, developed with a specific time algorithm, which consists of finding possible corrections in the market. This indicator shows two outer lines, an inner line (retracement line) and an arrow sign, where the channel theory is to help identify overbought and oversold conditions in the market. The market price will generally fall between the boundaries of the channel. If prices touch or move outside the channel, it's a trading opportunity. The ind
This product was   updated   for the   2026 market   and   optimized   for the   latest MT5 builds . PRICE UPDATE NOTICE: Smart Trend Trading System   is currently available for $99. The price will   increase to $199   after the next   30 purchases. SPECIAL OFFER:  After purchasing Smart Trend Trading System, send me a private message to claim the Smart Universal EA for FREE and turn your Smart Trend signals into automated trades. Smart Trend Trading System is a complete non-repainting, non-re
FX Power MT4 NG
Daniel Stein
4.95 (21)
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
Scalper Vault
Oleg Rodin
5 (37)
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 AFT
BUY 1 and GET 1 FREE - Promotion! Buy Trend Reader Indicator with a huge –60% discount and GET 1 FREE EA by your choice! Promo Price: $117 (Regular Price: $297 — You Save $180! Don't Miss!) After purchase contact me to get your GIFT EA! You can also contact me to get the list of available GIFT EAs! Trend Reader Indicator is a revolutionary trading indicator designed to empower forex traders with the tools they need to make informed trading decisions. This cutting-edge indicator utilizes compl
Volatility Trend System - a trading system that gives signals for entries. The volatility system gives linear and point signals in the direction of the trend, as well as signals to exit it, without redrawing and delays. The trend indicator monitors the direction of the medium-term trend, shows the direction and its change. The signal indicator is based on changes in volatility and shows market entries. The indicator is equipped with several types of alerts. Can be applied to various trading ins
Volume Break Oscillator is an indicator that matches price movement with volume trends in the form of an oscillator. I wanted to integrate volume analysis into my strategies but I have always been disappointed by most volume indicators, such as OBV, Money Flow Index, A/D but also as Volume Weighted Macd and many others. I therefore wrote this indicator for myself, I am satisfied with how useful it is, and therefore I decided to publish it on the market. Main features: It highlights the phase
Atomic Analyst
Issam Kassas
5 (11)
This product was   updated   for   the 2026 market   and   optimized   for the   latest MT5 builds. PRICE UPDATE NOTICE: Atomic Analyst is currently available for $99. The price will increase to $199 after the next 30 purchases. SPECIAL OFFER:  After purchasing Atomic Analyst, send me a private message to claim the Smart Universal EA for FREE and turn your Atomic Analyst signals into automated trades. Atomic Analyst is a non-repainting, non-redrawing, and non-lagging price action trading indic
Color Trend FX
Alexey Minkov
4 (4)
Color Trend FX – Since 2017. The indicator shows on the chart the accurate market entry points, accurate exit points, maximum possible profit of a deal (for those who take profit according to their own system for exiting deals), points for trailing the open positions, as well as detailed statistics. Statistics allows to choose the most profitable trading instruments, and also to determine the potential profits. The indicator does not redraw its signals! The indicator is simple to set up and man
Linear Trend Predictor - A trend indicator that combines entry points and direction support lines. It works on the principle of breaking through the High/Low price channel. The indicator algorithm filters market noise, takes into account volatility and market dynamics. Indicator capabilities Using smoothing methods, it shows the market trend and entry points for opening BUY or SELL orders. Suitable for determining short-term and long-term market movements by analyzing charts on any timeframes.
This dashboard is an alert tool for use with the market structure reversal indicator. It's primary purpose is to alert you to reversal opportunities on specific time frames and also to the re-tests of the alerts (confirmation) as the indicator does. The dashboard is designed to sit on a chart on it's own and work in the background to send you alerts on your chosen pairs and timeframes. It was developed after many people requested a dash to monitor multiple pairs and time frames at once rather th
More from author
CandlestickFinderMaster
Jerzy Krzysztof Bednarski
## What it does BCPF is an MT4 on-chart indicator that scans price history for **18 active candlestick patterns** and labels detected formations directly on the chart. A compact checklist panel lets you enable or disable each bullish and bearish pattern independently. The 18 available patterns are: - **Bullish:** Hammer, Inverse Hammer, Bullish Engulfing, Morning Star,   3 White Soldiers, Dragonfly Doji, Bullish Marubozu, Bullish Harami,   Piercing Line. - **Bearish:** Hanging Man, Shooting
FREE
Filter:
No reviews
Reply to review