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.
Prodotti consigliati
--- 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. Ar
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
I pattern armonici sono ideali per prevedere i punti di inversione del mercato. Offrono un'elevata percentuale di successo e numerose opportunità di trading in un singolo giorno. Il nostro indicatore identifica i pattern armonici più popolari basandosi sui principi della letteratura sul trading armonico. NOTE IMPORTANTI: L'indicatore non ridisegna, non è in ritardo (rileva un pattern nel punto D) e non ridisegna (il pattern è valido o annullato). COME UTILIZZARE: Trascina e rilascia l'indicatore
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
Benvenuti nel nostro   modello di ondata di prezzo   MT4 --(modello ABCD)--     Il modello ABCD è un modello di trading potente e ampiamente utilizzato nel mondo dell'analisi tecnica. È un modello di prezzo armonico che i trader utilizzano per identificare potenziali opportunità di acquisto e vendita sul mercato. Con il modello ABCD, i trader possono anticipare potenziali movimenti di prezzo e prendere decisioni informate su quando entrare e uscire dalle negoziazioni. Versione EA:   Price Wave
FREE
Sentinel Arrow
Dmytro Kasianov
1 (1)
Sentinel Arrow Caratteristiche principali: ⊗Un algoritmo esclusivo per identificare rapidamente e accuratamente trend, inversioni e variazioni di momentum. ⊗Progettato per uso professionale, è dotato di una solida logica di segnale che elimina ritardi o falsi aggiornamenti. ⊗Adatto a diversi intervalli temporali. ⊗Non ridisegna, elimina o modifica i segnali passati. ⊗Tutti i segnali di ACQUISTO e VENDITA vengono generati sulla candela stessa e rimangono fissi. ⊗Nel trading reale, non c'è alcun
FREE
Candle Countdown — Tempo preciso fino alla chiusura della candela per MT4 Candle Countdown è uno strumento semplice e preciso che mostra il tempo rimanente fino alla chiusura della candela corrente direttamente sul grafico. Quando l’ingresso dipende dalla chiusura della candela, anche pochi secondi possono fare la differenza. Questo indicatore ti permette di vedere il tempo esatto e prendere decisioni senza fretta o supposizioni. Un indicatore per il controllo preciso della chiusura della cande
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
Indicatore Average True Range (ATR) con supporto multi-timeframe, segnali visivi personalizzabili e sistema di alert configurabile. Servizi di programmazione freelance, aggiornamenti e altri prodotti TrueTL sono disponibili sul mio profilo MQL5 . Feedback e recensioni sono molto apprezzati! Cos'è l'ATR? L'Average True Range (ATR), sviluppato da J. Welles Wilder, è un indicatore tecnico che misura la volatilità del mercato. Calcola la media del True Range su un periodo specificato. Il True Ran
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
Gli utenti di questo prodotto hanno anche acquistato
Gann Made Easy
Oleg Rodin
4.84 (171)
Gann Made Easy è un sistema di trading Forex professionale e facile da usare che si basa sui migliori principi del trading utilizzando la teoria di mr. WD Gann. L'indicatore fornisce segnali ACQUISTA e VENDI accurati, inclusi i livelli di Stop Loss e Take Profit. Puoi fare trading anche in movimento utilizzando le notifiche PUSH. CONTATTAMI DOPO L'ACQUISTO PER RICEVERE GRATUITAMENTE LE ISTRUZIONI DI TRADING E OTTIMI INDICATORI EXTRA! Probabilmente hai già sentito parlare molte volte dei metodi d
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 è un sistema di indicatori di trading facile da usare. Si tratta di un indicatore a freccia progettato per l'intervallo temporale M1. L'indicatore può essere utilizzato come sistema autonomo per lo scalping sull'intervallo temporale M1 e come parte del tuo sistema di trading esistente. Sebbene questo sistema di trading sia stato progettato specificamente per il trading sull'intervallo temporale M1, può comunque essere utilizzato anche con altri intervalli temporali. Inizialmente ho pro
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 è un indicatore di trading avanzato che combina il filtro Laguerre di John Ehlers con un potente motore di auto-ottimizzazione. Invece di utilizzare parametri fissi, l'indicatore ricerca automaticamente le migliori impostazioni in base alle condizioni recenti del mercato, aiutandoti ad adattarti alla volatilità variabile senza costanti aggiustamenti manuali. L'indicatore genera segnali chiari di ACQUISTO (BUY) e VENDITA (SELL), insieme a livelli adattivi di Stop Loss
KURAMA GOLD SIGNAL PRO (MT4) — Filtro a 7 livelli · TP/SL automatico · Punteggio di qualità · Salvataggio dello storico dei segnali | Sistema di trading completo per XAUUSD Nessun ridisegno (repaint) in tempo reale. Nell'istante in cui appare un segnale, freccia, ingresso, TP e SL vengono bloccati sul posto e non si spostano mai più. Ciò che fai tradare è proprio questo segnale in tempo reale. E nella v7.20, ogni segnale realmente inviato viene salvato automaticamente e ripristinato con esattez
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)
Attualmente 30% di sconto! Questo cruscotto è un software molto potente che lavora su più simboli e fino a 9 timeframe. Si basa sul nostro indicatore principale (migliori recensioni: Advanced Supply Demand ).   Il cruscotto offre un'ottima panoramica. Mostra:    Valori filtrati di domanda e offerta, compresa la valutazione della forza delle zone, distanze dei pip da/all'interno delle zone, Evidenzia le zone annidate, Fornisce 4 tipi di allarmi per i simboli scelti in tutti i (9) time-frames.
SR Liquidity
Oleg Rodin
5 (1)
SR Liquidity è un indicatore di trading progettato per individuare le zone nascoste in cui si concentra la liquidità di mercato e dove il prezzo reagisce con maggiore intensità. Queste aree di liquidità agiscono come potenti livelli di supporto e resistenza, offrendo una mappa chiara dei punti in cui è più probabile che il mercato inverta la propria direzione. Invece di tracciare le classiche linee di supporto e resistenza, SR Liquidity analizza l'effettivo comportamento dei prezzi per individua
Quantum Breakout Indicator PRO
Bogdan Ion Puscasu
4.96 (26)
Presentazione       Quantum Breakout PRO   , l'innovativo indicatore MQL5 che sta trasformando il modo in cui scambi le zone di breakout! Sviluppato da un team di trader esperti con un'esperienza di trading di oltre 13 anni,   Quantum Breakout PRO   è progettato per spingere il tuo viaggio di trading a nuovi livelli con la sua strategia innovativa e dinamica della zona di breakout. Quantum Breakout Indicator ti fornirà frecce di segnalazione sulle zone di breakout con 5 zone target di profitt
Trend Catcher ind
Ramil Minniakhmetov
5 (11)
INDICATORE TREND CATCHER L'indicatore Trend Catcher analizza i movimenti dei prezzi di mercato, utilizzando una combinazione di indicatori di analisi del trend proprietari dell'autore e personalizzati. Identifica la vera direzione del mercato filtrando il rumore a breve termine e concentrandosi sulla forza del momentum sottostante, sull'espansione della volatilità e sul comportamento della struttura dei prezzi. Utilizza inoltre una combinazione di indicatori personalizzati di smoothing e filtr
Super Signal – Skyblade Edition Sistema professionale di segnali di tendenza senza repaint / senza ritardo con tasso di vincita eccezionale | Per MT4 / MT5 Funziona meglio su timeframe più bassi, come 1 minuto, 5 minuti e 15 minuti. Caratteristiche principali: Super Signal – Skyblade Edition è un sistema intelligente di segnali progettato specificamente per il trading di tendenza. Utilizza una logica di filtraggio multilivello per identificare esclusivamente i movimenti direzionali forti, supp
Zoryk Gold mt4
Reda El Koutbane
ZORYK — Sistema avanzato di segnali e pianificazione per XAUUSD su MetaTrader 4 Conosci sicuramente questa situazione. Analizzi l’oro, aspetti l’ingresso e finalmente apri la posizione. Il prezzo si muove immediatamente contro di te. Chiudi troppo presto, sposti lo Stop Loss oppure esiti per alcuni secondi. Poco dopo, il mercato raggiunge esattamente la direzione e l’obiettivo che avevi previsto, ma senza di te. Il problema non era sempre la direzione. Il vero problema era l’incertezza. No
Advanced Supply Demand
Bernhard Schweigert
4.91 (302)
Speciale Trading- SCONTO DEL 30% La soluzione migliore per qualsiasi trader principiante o esperto! Questo indicatore è uno strumento di trading unico, di alta qualità e conveniente, perché abbiamo incorporato una serie di funzionalità proprietarie e una nuova formula. Con questo aggiornamento, potrai visualizzare doppie zone di timeframe. Non solo potrai visualizzare un TF più alto, ma anche entrambi, il TF del grafico e il TF più alto: MOSTRA ZONE ANNIDATE. Tutti i trader che operano con Of
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
L'indicatore AW Candle Patterns è una combinazione di un indicatore di tendenza avanzato combinato con un potente scanner di modelli di candele. È uno strumento utile per riconoscere ed evidenziare i trenta modelli di candele più affidabili. Inoltre, è un analizzatore di trend attuale basato su barre colorate con a       pannello di trend multi-timeframe plug-in che può essere ridimensionato e posizionato. Una capacità unica di regolare la visualizzazione dei modelli in base al filtraggio delle
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 è un indicatore molto potente che ti fornisce una soluzione all-in-one per un trading di successo. L'indicatore calcola la potenza di questa o quella coppia forex utilizzando i dati di tutte le valute su più intervalli di tempo. Questi dati sono rappresentati in una forma di indice di valuta facile da usare e linee elettriche di valuta che puoi utilizzare per vedere il potere di questa o quella valuta. Tutto ciò di cui hai bisogno è collegare l'indicatore al grafico che
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
Questo prodotto è stato aggiornato per il mercato 2026 e ottimizzato per le ultime build di MT5. AVVISO DI AGGIORNAMENTO PREZZO: Smart Trend Trading System è attualmente disponibile a $99 . Il prezzo aumenterà a $199 dopo i prossimi 30 acquisti . OFFERTA SPECIALE: Dopo aver acquistato Smart Trend Trading System, inviami un messaggio privato per ricevere Smart Universal EA GRATIS e trasformare i tuoi segnali Smart Trend in operazioni automatiche. Smart Trend Trading System è un sistema di tradin
FX Power MT4 NG
Daniel Stein
4.95 (21)
FX Power: Analizza la Forza delle Valute per Decisioni di Trading Più Intelligenti Panoramica FX Power è lo strumento essenziale per comprendere la reale forza delle principali valute e dell'oro in qualsiasi condizione di mercato. Identificando le valute forti da comprare e quelle deboli da vendere, FX Power semplifica le decisioni di trading e rivela opportunità ad alta probabilità. Che tu segua le tendenze o anticipi inversioni utilizzando valori estremi di Delta, questo strumento si adatta
Scalper Vault
Oleg Rodin
5 (37)
Scalper Vault è un sistema di scalping professionale che ti fornisce tutto il necessario per scalping di successo. Questo indicatore è un sistema di trading completo che può essere utilizzato dai trader di forex e opzioni binarie. L'intervallo di tempo consigliato è M5. Il sistema fornisce segnali di freccia accurati nella direzione della tendenza. Ti fornisce anche i segnali più alti e più bassi e i livelli di mercato di Gann. Gli indicatori forniscono tutti i tipi di avvisi, comprese le notifi
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 - un sistema di trading che fornisce segnali per le voci. Il sistema di volatilità fornisce segnali lineari e puntuali nella direzione del trend, nonché segnali per uscirne, senza ridisegnare e ritardi. L'indicatore di tendenza monitora la direzione della tendenza a medio termine, mostra la direzione e il suo cambiamento. L'indicatore di segnale si basa sui cambiamenti della volatilità e mostra gli ingressi nel mercato. L'indicatore è dotato di diversi tipi di avvisi. Pu
Volume Break Oscillator è un indicatore che abbina il movimento dei prezzi con le tendenze del volume sotto forma di oscillatore. Volevo integrare l'analisi del volume nelle mie strategie, ma sono sempre stato deluso dalla maggior parte degli indicatori di volume, come OBV, Money Flow Index, A/D ma anche come Volume Weighted Macd e molti altri. Ho quindi scritto questo indicatore per me stesso, sono soddisfatto di quanto sia utile e quindi ho deciso di pubblicarlo sul mercato. Caratteristiche
Atomic Analyst
Issam Kassas
5 (11)
Questo prodotto è stato aggiornato per il mercato 2026 e ottimizzato per le ultime build di MT5. AVVISO DI AGGIORNAMENTO PREZZO: Atomic Analyst è attualmente disponibile a $99 . Il prezzo aumenterà a $199 dopo i prossimi 30 acquisti . OFFERTA SPECIALE: Dopo aver acquistato Atomic Analyst, inviami un messaggio privato per ricevere Smart Universal EA GRATIS e trasformare i tuoi segnali Atomic Analyst in operazioni automatiche. Atomic Analyst è un indicatore di trading Price Action non-repainting
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 : indicatore di tendenza che combina punti di ingresso e linee di supporto direzionale. Funziona secondo il principio di rottura del canale dei prezzi alto/basso. L'algoritmo dell'indicatore filtra il rumore di mercato, tiene conto della volatilità e delle dinamiche di mercato. Capacità dell'indicatore Utilizzando metodi di smoothing, mostra l'andamento del mercato e i punti di ingresso per l'apertura di ordini di ACQUISTO o VENDITA. Adatto per determinare i movimenti d
Questa dashboard è uno strumento di avviso da utilizzare con l'indicatore di inversione della struttura del mercato. Il suo scopo principale è avvisarti di opportunità di inversione su intervalli di tempo specifici e anche di ripetere i test degli avvisi (conferma) come fa l'indicatore. Il dashboard è progettato per essere posizionato su un grafico da solo e funzionare in background per inviarti avvisi sulle coppie e sui tempi scelti. È stato sviluppato dopo che molte persone hanno richiesto un
Altri dall’autore
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
Filtro:
Nessuna recensione
Rispondi alla recensione