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
SWING HIGHS LOWS DETECTOR Swing Detection with Divergence Analysis -------------------------------------------------- Identify swings. Spot divergences. Trade with confluence. -------------------------------------------------- WHAT THIS INDICATOR DOES This indicator automatically detects structural swing highs and lows using configurable depth and deviation filtering. It then analyzes RSI and MACD to detect regular and hidden divergences between consecutive swings of the same type. Diver
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
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
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
Adjustable Fractal MT4
Dmitry Timin
4.77 (26)
Adjustable Fractal MT4 is a modification of Bill Williams' Fractals indicator. The fractal consists of a two sets of arrows - up (upper fractals) and down (lower fractals). Each fractal satisfies the following conditions: Upper fractal - maximum (high) of a signal bar exceeds or is equal to maximums of all bars from the range to the left and to the right; Lower fractal - minimum (low) of a signal bar is less or equal to minimums of all bars from the range to the left and to the right. Unlike a s
FREE
Buyers of this product also purchase
Trend SniperX MT4
Sarvarbek Abduvoxobov
5 (3)
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 MT5: https://www.mql5.com/en/market/product/181101 Price Information: The current price is promotional and is subject to change as upcoming updates and new features are released. Code2Profit Channel Master the Market with Multi-Timeframe Analysis! How to Maximize Your Win Rate with Trend Sniper X: Key Rules & Sess
SR Liquidity
Oleg Rodin
5 (2)
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
M1 Sniper
Oleg Rodin
4.97 (30)
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 short-term trading, it still can be helpful for all traders. This trading system can be used with any forex pair and time frame, though lower time frames are recommended from M1 up to M
Miraculous Indicator Binary & Forex v3 StrategySafe Miraculous Indicator Binary & Forex v3 StrategySafe is a professional trading indicator designed for traders who want clear signals, powerful confirmation tools, and a structured way to analyze both Binary and Forex markets. This version brings a stronger trading experience with advanced dashboards, GANN Law analysis, Square of 9 levels, angle confirmation, and a clean StrategySafe approach that helps traders filter stronger setups instead of e
Gann Made Easy
Oleg Rodin
4.84 (172)
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
Scalper Inside PRO
Alexey Minkov
4.74 (69)
Scalper Inside PRO helps you read the intraday trend and plan a trade before you enter the market. It is built around three exclusive strategies for a sharper read of the market. The moment a signal appears, the indicator evaluates market direction and calculates the key levels, so you see the potential entry, the expected stop-loss and several profit-taking levels in advance. Detailed performance statistics show how different instruments and strategies performed in history and help you pick ass
Tokyo Indicator provides a clear visual overview of trend direction, potential trading signals, and market conditions. Its colour-coded, stepped trend line distinguishes bullish phases in blue from bearish phases in magenta. Matching directional arrows highlight potential buying and selling opportunities when the displayed trend changes. An integrated dashboard brings together the current signal, market bias, momentum, volatility, and signal quality in one convenient view. This allows traders t
DayTrader PRO MT4
Davit Beridze
4.6 (10)
DayTrader PRO (Buy DayTrader PRO and Get another Paid Self Optimizing indicator for Free as Bonus) MT5:  https://www.mql5.com/en/market/product/186222 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 in
Zoryk Gold mt4
Reda El Koutbane
5 (2)
discount ends soon 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 exactl
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
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
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
For MetaTrader5 you can download it from the link https://www.mql5.com/en/market/product/187668 True Signal FX is a multi-timeframe trading indicator for MetaTrader 4 designed to provide a complete trading setup directly on the chart. Instead of displaying a single directional signal, the indicator combines market analysis, signal confirmation and trade level calculation in one workspace. When a setup is detected, the trader can see the direction, Entry, Stop Loss and Take Profit levels toget
PZ Support Resistance
PZ TRADING SLU
3.33 (3)
Unlock key market insights with automated support and resistance lines Tired of plotting support and resistance lines? This is a multi-timeframe indicator that detects and plots supports and resistance lines in the chart with the same precision as a human eye would. As price levels are tested over time and its importance increases, the lines become thicker and darker, making price leves easy to glance and evaluate. [ Installation Guide | Update Guide | Troubleshooting | FAQ | All Products ] Boos
Dynamic Forex28 Navigator
Bernhard Schweigert
4.43 (7)
Specials Discount now. The Next Generation Forex Trading Tool. Dynamic Forex28 Navigator is the evolution of our long-time, popular indicators, combining the power of three into one: Advanced Currency Strength28 Indicator (695 reviews) + Advanced Currency IMPULSE with ALERT (520 reviews) + CS28 Combo Signals (recent Bonus) Details about the indicator  https://www.mql5.com/en/blogs/post/758844 What Does The Next-Generation Strength Indicator Offer? Everything you loved about the originals, now
Neuro Poseidon MT4
Daria Rezueva
4.74 (46)
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
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
Trading Special – 30% OFF Best Solution for any Newbie or Expert Trader! This dashboard software is working on 28 currency pairs plus one. It is based on 2 of our main indicators (Advanced Currency Strength 28 and Advanced Currency Impulse). It gives a great overview of the entire Forex market plus Gold or 1 indices. It shows Advanced Currency Strength values, currency speed of movement and signals for 28 Forex pairs in all (9) timeframes. Imagine how your trading will improve when you can watch
System Trend Pro
Aleksandr Makarov
5 (3)
The indicator no repaint!!!  The indicator has   MTF   mode, which adds confidence to trading on the trend (   no repaint   ). How to trade? Everything is very simple, we wait for the first signal (big arrow), then wait for the second signal (small arrow) and enter the market in the direction of the arrow. (See screens 1 and 2.) Exit on the opposite signal or take 20-30 pips, close half of it, and keep the rest until the opposite signal. By the way, it is on Scalping that most traders make m
CRT Candle Range Theory HTF MT4 - Ultimate CRT Indicator: Advanced ICT Concepts and Malaysian SnR Trading System Master the Market Maker's Footprints with the Most Advanced Candle Range Theory Indicator. Unlock the true power of Smart Money Concepts (SMC) and trade precisely like the institutions with the Ultimate CRT Indicator. Built exclusively for serious traders, this indicator automates the highly effective Candle Range Theory (CRT), a core pillar of ICT Concepts (Inner Circle Trader), and
Pro Trend Scanner
Nikolay Georgiev
5 (1)
Update: Push to mobile notification is now added as optinal in the settings. Most traders fail to generate profit because of the lack of so-called filters and scanners. If you want to win at trading you need a solid system and also a filtering tool for some or all of your entry criteria. It is impossible to follow 24 currency pairs, all the indices, stocks and commodities without a filtering tool. Imagine you can get an email any time CCI crosses bellow 100 and 0 when the price is bellow MA5 an
Top Bottom Tracker is an indicator based on sophisticated algorithms that analyse the market trend and can detect the highs and lows of the trend / MT5 version . The price will progressively increase until it reaches 500$. Next price --> $99 Features No repainting This indicator does not change its values when new data arrives Trading pairs All forex pairs Timeframe     All timeframes Parameters ==== Indicator configuration ==== Configuration parameter // 40 (The higher the value, the
TrendLine PRO MT4
Evgenii Aksenov
4.83 (168)
The Trend Line PRO indicator is an independent trading strategy. It shows the trend change, the entry point to the transaction, as well as automatically calculates three levels of Take Profit and Stop Loss protection. Trend Line PRO is perfect for all Meta Trader symbols: currencies, metals, cryptocurrencies, stocks and indices. The indicator is used in trading on real accounts, which confirms the reliability of the strategy. Robots using   Trend Line PRO   and real Signals can be found here:   
PZ Trend Trading
PZ TRADING SLU
4.8 (5)
Capture every opportunity: your go-to indicator for profitable trend trading Trend Trading is an indicator designed to profit as much as possible from trends taking place in the market, by timing pullbacks and breakouts. It finds trading opportunities by analyzing what the price is doing during established trends. [ Installation Guide | Update Guide | Troubleshooting | FAQ | All Products ] Trade financial markets with confidence and efficiency Profit from established trends without getting whips
Price Breakout pattern Scanner is the automatic scanner for traders and investors. It can detect following patterns automatically from your chart. Head and Shoulder - Common tradable pattern. Reverse Head and Shoulder - This pattern is the reverse formation of the Head and Shoulder. Double Top - When the price hits resistance level twice and decline toward the support level, the trader can anticipate sudden bearish breakout through the support level. Double Bottom - The double bottom pattern is
MQL5 Blogs = https://www.mql5.com/en/blogs/post/775739 MT4 Version = https://www.mql5.com/en/market/product/195514 MT5 Version = https://www.mql5.com/en/market/product/ 195515 FIBONACCI ARCS [tambangEA] is an advanced market-structure indicator designed to visualize the relationship between price, time, swing geometry, and volume concentration directly on the chart. Unlike a conventional Fibonacci retracement that displays static horizontal levels, Fibonacci Arcs project curved Fibonacci zone
Crypto_Forex Indicator "Hanging Man and Inverted Hammer Pro" for MT4, No repaint, No delay. - Indicator "Hanging Man and Inverted Hammer Pro" is very powerful indicator for Price Action trading. - Indicator detects bullish Inverted_Hammer and bearish Hanging_Man patterns on chart: - Bullish Inverted_Hammer - Blue arrow signal on chart (see pictures). - Bearish Hanging_Man - Red arrow signal on chart (see pictures). - With PC and Mobile alerts. - Indicator "Hanging Man and Inverted Hammer Pro" i
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
Currency Strength Exotics
Bernhard Schweigert
4.88 (33)
CURRENTLY 20% OFF ! Best Solution for any Newbie or Expert Trader! This Indicator is specialized to show currency strength for any symbols like Exotic Pairs Commodities, Indexes or Futures. Is first of its kind, any symbol can be added to the 9th line to show true currency strength of Gold, Silver, Oil, DAX, US30, MXN, TRY, CNH etc. This is a unique, high quality and affordable trading tool because we have incorporated a number of proprietary features and a new formula. Imagine how your trading
Mean Reversion Supply Demand Indicator Mean Reversion Supply Demand is the indicator to detect the important supply demand zone in your chart. The concept of supply demand trading relies on the quantity mismatching between buying and selling volumes in the financial market. Typically, supply demand zone serves to predict the turning point. The wave pattern, for any supply demand zone to work as an successful trade, looks like the price must touch the base zone, move away and then return to zone
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