IFVG Finder zone snd sign

  • Indicatori
  • Shin Kojima
    Shin Kojima
    MT4 indicator developer with 10+ years of live trading experience.
    Specializing in alert tools and scanners for ICT-based traders.
    Zero complaints. Reliable tools. Real support.
  • Versione: 1.0

================================================================================

  IFVG Signals Indicator  (ICTIFVGmq4_en.mq4)  ?  User Manual

================================================================================

Version : 1.00

Platform: MetaTrader 4

Signal  : IFVG Buy / IFVG Sell arrows on the main chart

Zone    : Horizontal rectangle drawn at the confirmed IFVG zone


--------------------------------------------------------------------------------

WHAT IS AN IFVG?

--------------------------------------------------------------------------------

FVG  (Fair Value Gap)  : A 3-bar price gap where Bar[t+2] and Bar[t] do NOT

                          overlap, leaving an unfilled "gap" (imbalance zone).


IFVG (Inverse FVG)     : A subsequent candle whose BODY fully breaks through

                          the FVG band in the OPPOSITE direction of the original

                          FVG.  This "inversion" flips the zone from support to

                          resistance (or vice versa) and generates a trade signal.


Detection logic

  Bull FVG band  → body breaks DOWNWARD  → SELL signal (arrow at prev bar)

  Bear FVG band  → body breaks UPWARD    → BUY  signal (arrow at prev bar)


Arrow placement : The signal arrow is drawn on the bar that COMPLETED the

                  breakout (prev = A+1), NOT on the current unfinished bar.


Zone display    : A shaded rectangle is drawn from the FVG origin bar to the

                  breakout bar when ShowZones = true.


--------------------------------------------------------------------------------

INPUT PARAMETERS

--------------------------------------------------------------------------------


[ Signals ]

  bAlert          (default: true )

    Show a pop-up alert when an IFVG forms on the LATEST completed bar (i=0).

    Alerts fire at most once per bar to avoid duplicates.


  bNotification   (default: false)

    Send a push notification to the MT4 mobile app in addition to the alert.

    Requires MT4 mobile app paired with your account.


  bEmailAlert     (default: false)

    Send an email alert when an IFVG signal fires.

    Subject and body both contain the signal text (e.g. "[XAUUSD,60] BUY IFVG").

    *** Requires MT4 email settings to be configured first ***

      Tools → Options → Email tab:

        SMTP Server  : your outgoing mail server (e.g. smtp.gmail.com:587)

        SMTP Login   : your email address

        SMTP Password: your password / app password

        From / To    : sender and recipient addresses

    After saving, click "Test" to verify delivery before enabling this flag.


[ FVG Detection ]

  IFVG_GapBars    (default: 15)

    How many bars back from the current bar to search for a matching FVG.

    Larger values catch older FVGs but may increase false signals.

    Recommended range: 8 ? 20.


  FVG_EpsPoints   (default: 0.0)

    Detection tolerance in Points (the broker's smallest price unit).

    0 = strict (High/Low must not overlap at all).

    Increase slightly (e.g. 1.0 ? 3.0) on brokers with large spreads or

    if valid FVGs are being missed due to minor wick overlaps.


  MinFVG_Pips     (default: 0.0)

    Minimum FVG width filter.  FVGs narrower than this are ignored.


    0   = AUTO  (ATR-based, instrument-aware)

             Gold / metals  (Digits <= 2) : threshold = ATR × 20 %

             Forex / others              : threshold = ATR × 10 %

    > 0 = MANUAL  ? value is treated as a PERCENTAGE of ATR.

             Example: MinFVG_Pips = 10  →  threshold = ATR × 10 %

             Example: MinFVG_Pips = 20  →  threshold = ATR × 20 %

    ※ This setting works identically on XAUUSD and any forex pair because

       it is always expressed relative to the instrument's own ATR, NOT in

       raw pip units.


[ MA Filter ]

  bUseMAFilter    (default: true )

    Enable a moving-average trend filter to reduce counter-trend signals.

      BUY  signal requires  : MA is falling  AND  close[prev] < MA

      SELL signal requires  : MA is rising   AND  close[prev] > MA

    Turn OFF to see all raw IFVG signals regardless of trend direction.


  MA_Period       (default: 21)

    Period of the moving average used for the trend filter.


  MA_Kind         (default: 1)

    Moving average type.

      0 = SMA  (Simple)

      1 = EMA  (Exponential)  ← default

      2 = SMMA (Smoothed)

      3 = LWMA (Linear Weighted)

      4 = Same as 3


[ Visual ]

  ShowZones       (default: true )

    Draw a filled rectangle on the chart spanning the FVG band from the

    origin bar to the breakout bar.  Only drawn when IFVG is confirmed.


  ZoneColorBuy    (default: dark teal  C'6,38,37' )

    Background color of confirmed BUY zone rectangles.


  ZoneColorSell   (default: dark purple C'62,0,62' )

    Background color of confirmed SELL zone rectangles.


  ATR_Period      (default: 14)

    ATR period used for two purposes:

      1. Arrow vertical offset   (ATR × ATR_Multiplier)

      2. MinFVG auto threshold   (ATR × 10 % or 20 %)


  ATR_Multiplier  (default: 0.20)

    Controls how far above/below the bar the signal arrow is placed.

    0.20  = arrow offset of 20 % of the ATR value.

    Increase if arrows overlap candle bodies; decrease for tighter placement.


[ Performance ]

  MaxBackBars     (default: 2000)

    Maximum number of bars to recalculate on each tick.

    0 = only the latest bar (fastest, no history drawing).

    Reduce if the indicator slows MT4 on long charts.


--------------------------------------------------------------------------------

RECOMMENDED SETTINGS BY INSTRUMENT

--------------------------------------------------------------------------------


  ┌─────────────────────────────────────────────────────────────────────────┐

  │  Generic (all forex pairs ? safe starting point)                        │

  ├─────────────────┬───────────────────────────────────────────────────────┤

  │ IFVG_GapBars    │ 8                                                      │

  │ MinFVG_Pips     │ 0  (auto: ATR × 10 %)                                  │

  │ bUseMAFilter    │ true                                                   │

  │ MA_Period       │ 21                                                     │

  │ MA_Kind         │ 1  (EMA)                                               │

  │ ATR_Period      │ 14                                                     │

  │ ATR_Multiplier  │ 0.20                                                   │

  └─────────────────┴───────────────────────────────────────────────────────┘


  ┌─────────────────────────────────────────────────────────────────────────┐

  │  XAUUSD (Gold) ? recommended settings                                   │

  ├─────────────────┬───────────────────────────────────────────────────────┤

  │ IFVG_GapBars    │ 15                                                     │

  │ MinFVG_Pips     │ 0  (auto: ATR × 20 %  ← activated automatically       │

  │                 │     because XAUUSD has Digits <= 2)                    │

  │ bUseMAFilter    │ true                                                   │

  │ MA_Period       │ 21                                                     │

  │ MA_Kind         │ 1  (EMA)                                               │

  │ ATR_Period      │ 14                                                     │

  │ ATR_Multiplier  │ 0.20                                                   │

  └─────────────────┴───────────────────────────────────────────────────────┘

  Note: With MinFVG_Pips = 0 the indicator detects Gold automatically via

  Digits and applies a 20 % ATR threshold.  No manual adjustment needed

  when switching between XAUUSD and other pairs.


--------------------------------------------------------------------------------

SIGNAL LOGIC SUMMARY

--------------------------------------------------------------------------------


  1. Indicator scans bars i = MaxBackBars … 0  (oldest to newest).


  2. For each bar i  (called "A"):

     a. prev = i + 1  (the candidate breakout bar)

     b. Search bars  [prev+1 … i+IFVG_GapBars]  for a valid FVG.

     c. Measure the FVG band width; skip if width < MinFVG threshold.

     d. Check that no bar between the FVG and prev already closed outside

        the band (ensures the band was "intact" until prev).

     e. Test whether prev bar's BODY fully broke through the band in the

        opposite direction  (body uses prev close as open proxy).

     f. Apply MA filter if bUseMAFilter = true.

     g. If all checks pass:

          Bull FVG + downward body break  →  SELL arrow at prev bar high

          Bear FVG + upward  body break  →  BUY  arrow at prev bar low

          Draw zone rectangle if ShowZones = true.

          Fire alert/notification if i == 0 and bAlert/bNotification.


--------------------------------------------------------------------------------

ALSO AVAILABLE: IFVG ALL-CURRENCY SCANNER

--------------------------------------------------------------------------------


  This indicator monitors a SINGLE chart for IFVG signals.

  If you want to scan ALL currency pairs simultaneously and get notified

  the moment any pair fires an IFVG ? check out the scanner version:


  ┌─────────────────────────────────────────────────────────────────────────┐

  │  ICT IFVG All-Currency Scanner  (ICTIFVGSearch)                         │

  ├─────────────────────────────────────────────────────────────────────────┤

  │  ? Scans 20+ currency pairs across multiple timeframes at once          │

  │  ? Displays a real-time hit list: pair name + timeframe + signal type   │

  │  ? Click any row to jump directly to that chart                         │

  │  ? Same IFVG detection engine as this indicator ? fully consistent      │

  │  ? Supports Gold (XAUUSD), indices, and all major / minor FX pairs      │

  │  ? Saves hours of manual chart-switching every session                  │

  ├─────────────────────────────────────────────────────────────────────────┤

  │  Available on MQL5 Market:  https://www.mql5.com/ja/market/product/181837&nbsp;             │

  └─────────────────────────────────────────────────────────────────────────┘


  "The world's only multi-pair IFVG scanner for MT4."


--------------------------------------------------------------------------------

NOTES & TIPS

--------------------------------------------------------------------------------


  ? The indicator redraws on every new bar (triggered by the bar open time

    check dtCheck).  Past arrows do NOT repaint once their bar is closed.


  ? Zone rectangles are deleted automatically when the indicator is removed

    from the chart (OnDeinit).


  ? If you see too many signals on a ranging market, try:

      ? Increasing MinFVG_Pips  (e.g. 15 ? 25)

      ? Increasing IFVG_GapBars  (look for only larger / more recent FVGs)

      ? Enabling bUseMAFilter if it is currently OFF


  ? If you miss signals you can visually identify, try:

      ? Setting FVG_EpsPoints to 1.0 ? 3.0

      ? Reducing MinFVG_Pips (or keeping it at 0 for auto)

      ? Increasing IFVG_GapBars


  ? On 5-digit (or 3-digit) brokers the pip size is normalised automatically

    by the internal PipSize() function.


  ? MinFVG_Pips auto mode switches the threshold:

        Gold (Digits ? 2)  →  ATR × 20 %   (wider gap required)

        Others             →  ATR × 10 %   (standard)



--------------------------------------------

- IFVG All-Currency Scanner

--------------------------------------------

  The most effective tool for catching ICT fake-out moves.

  https://www.gogojungle.co.jp/tools/indicators/81129

  Especially powerful for targeting AMD movement setups.




================================================================================

  End of Manual

================================================================================


Prodotti consigliati
IceFX TickInfo
Norbert Mereg
4 (1)
This is a unique tick chart indicator for MetaTrader 4 platform. The software is capable to graphically display the last 100 ticks and in addition to that it displays the current spread, bid / ask and time values ​​in an elegant IceFX style dashboard. The indicator is an efficient tool for traders using M5 or even M1 timeframe. Indicator parameters: Corner - corner of panel CornerXOffset - horizontal offset from the corner CornerYOffset - vertical offset from the corner ChartType - type of char
FREE
This indicator help to mark the high and low of the session Asian,London,Newyork , with custom hour setting This indicator is set to count from minute candle so it will move with the current market and stop at the designated hour and create a accurate line for the day. below is the customization that you can adjust : Input Descriptions EnableAsian Enables or disables the display of Asian session high and low levels. EnableLondon Enables or disables the display of London session high and
FREE
This indicator will mirror the assets in use in another metatrader, being able to choose the timeframe and a template. This is the Metatrader 4 Client, it needs the Metatrader 4 or 5 Server versions: Metatrader 4 Mirror Chart Server: https://www.mql5.com/en/market/product/88644 Metatrader 5 Mirror Chart Server:   https://www.mql5.com/en/market/product/88652 Details of how it works in the video.
FREE
ATR Bands with Take-Profit Zones for MT4 The ATR Bands indicator for MT4 is designed to assist traders in managing risk and navigating market volatility. By using the Average True Range (ATR), it helps identify key price levels and set realistic stop-loss and take-profit zones. Key Features: ATR-Based Bands : The indicator calculates dynamic upper and lower bands using ATR. These bands adjust based on price volatility, helping to indicate potential support and resistance levels. Customizable Par
FREE
IceFX VelocityMeter
Norbert Mereg
4.67 (3)
IceFX VelocityMeter is a very unique indicator on MetaTrader 4 platform which measures the speed of the forex market. It's not a normal volume or other measurement indicator because IceFX VelocityMeter is capable to understand market speed movements which are hidden in ticks and those valuable information cannot be read in an ordinary way from the candles. The software monitors the received ticks (frequency, magnitude of change) within a specified time range, analyzes these info and defines, dis
FREE
Dark & Light Themes for MT4. The Dark & Light Themes indicator helps you switch the MT4 chart display between dark and light color schemes. It also includes a watermark showing the current currency pair (symbol) and the active timeframe. This simple and clean interface makes it more comfortable for traders to analyze charts using any indicator. FXDragunov Indonesia.
FREE
Cumulative Delta MT4
Evgeny Shevtsov
4.86 (29)
The indicator analyzes the volume scale and splits it into two components - seller volumes and buyer volumes, and also calculates the delta and cumulative delta. The indicator does not flicker or redraw, its calculation and plotting are performed fairly quickly, while using the data from the smaller (relative to the current) periods. The indicator operation modes can be switched using the Mode input variable: Buy - display only the buyer volumes. Sell - display only the seller volumes. BuySell -
FREE
Enhanced Volume Profile: The Ultimate Order Flow & Liquidity Analysis Tool Overview Enhanced Volume Profile   is an indicator for MetaTrader 5 that displays the traded volume at specific price levels over a defined period. It separates the total volume into buy and sell components, presenting them as a side-by-side histogram on the chart. This allows users to observe the volume distribution and the proportion of buy and sell volumes at each price level. Graphics Rendering The indicator uses t
FREE
BoxInside MT4
Evgeny Shevtsov
4.83 (6)
This indicator calculates the volume profile and places labels that correspond to the VAH, VAL and POC levels, for each candle individually. Indicator operation features The indicator works on the timeframes from M5 to MN, but it uses the history data of smaller periods: M1 - for periods from M5 to H1, M5 - for the H4 period, M30 - for the D1 period, H4 - for the W1 period, D1 - for the MN period. The color and location of the VAL, VAH and POC labels on the current candle are considered to be c
FREE
SC MTF Rsi MT4
Krisztian Kenedi
5 (1)
Indicatore dell'Indice di Forza Relativa (RSI) con supporto multi-timeframe, segnali visivi personalizzabili e sistema di avvisi configurabile. Servizi di programmazione freelance, aggiornamenti e altri prodotti TrueTL sono disponibili sul mio profilo MQL5 . Feedback e recensioni sono molto apprezzati! Cos'è il RSI? Il Relative Strength Index (RSI) è un oscillatore di momentum che misura la velocità e l'entità delle variazioni di prezzo. L'indicatore oscilla tra 0 e 100, confrontando l'entità
FREE
After purchasing the Tpx Dash Supply Demand indicator, you must download this indicator which will link and feed market data to the Tpx Dash Supply Demand indicator and will provide all Supply Demand price signals, ATR Stop, VAH and VAL, trend values ​​with the ADX, and POC prices and locations in the market. Just download it and Dash will locate the indicator to retrieve the information!
FREE
Show Pips
Roman Podpora
4.27 (59)
Questo indicatore informativo sarà utile per coloro che vogliono essere sempre informati sulla situazione attuale del conto. L'indicatore mostra dati come profitto in punti, percentuale e valuta, nonché lo spread per la coppia corrente e il tempo fino alla chiusura della barra nell'intervallo di tempo corrente. VERSIONE MT5 -   Indicatori più utili Esistono diverse opzioni per posizionare la linea delle informazioni sulla carta: A destra del prezzo (corre dietro al prezzo); Come commento (nell'
FREE
Real-time spread tracking and monitoring software Displays spread values in form of histograms on current timeframe of chart Convenient for analyzing spread changes, as well as for comparing trading conditions of different brokers By placing on desired chart, the spread changes at different trading times are displayed Additionally Fully customizable Works on any instrument Works with any broker
FREE
Symbol Overlay
John Louis Fernando Diamante
5 (2)
This indicator plots another symbol on the current chart. A different timeframe can be used for the symbol, with an option to display in multiple timeframe mode (1 overlay candle per several chart candles). Basic indicators are provided. To adjust scaling of prices from different symbols, the overlay prices are scaled to the visible chart price space. Features symbol and timeframe input MTF display option to vertically invert chart, eg overlay USDJPY, invert to show JPYUSD data window values; o
FREE
SpectorMA
Sergii Krasnyi
5 (1)
Vi presentiamo un indicatore che non solo migliora l'aspetto visivo del grafico, ma gli conferisce anche un carattere vivace e dinamico. Il nostro indicatore è una combinazione di uno o più indicatori di media mobile (MA) che cambiano costantemente colore, creando un aspetto interessante e colorato. Questo prodotto è una soluzione grafica, quindi è difficile descrivere ciò che fa nel testo, è più facile vederlo scaricandolo, inoltre il prodotto è gratuito. Questo indicatore è adatto ai blogger
FREE
Market Profile 3
Hussien Abdeltwab Hussien Ryad
3 (2)
Market Profile 3 MetaTrader 4 indicator  — is a classic Market Profile implementation that can show the price density over time, outlining the most important price levels, value area, and control value of a given trading session. This indicator can be attached to timeframes between M1 and D1 and will show the Market Profile for daily, weekly, monthly, or even intraday sessions. Lower timeframes offer higher precision. Higher timeframes are recommended for better visibility. It is also possible t
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
Forex Market Profile and Vwap
Lorentzos Roussos
4.86 (7)
Profilo del mercato Forex (FMP in breve) Cosa non è: FMP non è il classico display TPO con codice alfabetico, non mostra il calcolo generale del profilo dati del grafico e non segmenta il grafico in periodi e non li calcola. Cosa fa : Soprattutto, l'indicatore FMP elaborerà i dati che risiedono tra il bordo sinistro dello spettro definito dall'utente e il bordo destro dello spettro definito dall'utente. L'utente può definire lo spettro semplicemente tirando ciascuna estremità dell'indicatore
FREE
Questo strumento aggiunge una scala temporale originale con una differenza di tempo specificata o calcolata automaticamente nella parte inferiore del grafico. Utilizzando questo utile strumento, puoi migliorare la leggibilità del grafico e ridurre lo stress mentale visualizzandolo in un formato orario familiare a te o al tuo paese. Anche se non è necessario calcolare le differenze di orario, la semplice sostituzione della scala temporale predefinita con Local_Time può migliorare la leggibilità
FREE
Better Period Separators MT4
Zhi Wen Software Development
Better Period Separators For MetaTrader 4 The built-in period separators feature doesn’t allow users to specify the time period, so you can use this indicator to create more customizable period separators. On intraday charts, you could place period separators at a specific time, you could also place extra period separators at a specific time on Monday to mark the start of a week. On higher timeframe charts, this indicator works the same as the built-in period separators, On the daily chart, peri
FREE
There is a very simple and surprisingly effective indicator called Pi Cycle, which starts to give the first warning. It is worth a look, so as not to miss the giant elephant in the living room!)) What is Pi Cycle? Pi Cycle is a very simple indicator created by analyst Philip Swift . It takes into account two (DMA biased moving averages ): 350-day average x 2 111-day average Both can be considered long-term indicators. The second one is obviously more sensitive to current market changes, since
FREE
This simple indicator paints with a darker color on the volume bar when the quantity traded is above the average of select number of periods of the volume itself, highlighting the moments when there was a large volume of deals above the average. It is also possible to use a configuration of four colors where the color tone shows a candle volume strength. The indicator defaults to the simple average of 20 periods, but it is possible to change to other types of averages and periods. If you like t
FREE
Constructor
Aleksey Semenov
Constructor is a convenient tool for creating, (building strategies) testing and applying trading strategies and ideas, as well as testing and using separate indicators and their groups. Constructor includes opening, closing, deal tracking, averaging and recovery modules, as well as various trading options with and without averaging and martingale. You are able to connect up to 10 different external indicators. Find the detailed instructions in the attached pdf file. Trading settings averaging
FREE
Time Scale
Taras Slobodyanik
4.87 (15)
The indicator draws the time scale on the chart. You can specify the time offset, adjust the size and font to display on the chart (it is displaying your local time on your chart instead of MT time). You can also select the desired format for displaying the date and time. While holding down the middle mouse button, and moving the cursor, a slider will appear on the scale. You may be interested in my other product , which contains a more advanced version of the Time Scale. You can also find my o
FREE
Here   our more valuable tools SMC Trend Trading   ,  Easy SMC Trading  ,  Institutional SMC Architect Volume Analysis Tools  ,  Volume flow Profile  ,  Market volume profile  , FVG with Volume  , Liquidity Heatmap Profile  ,  Volume Spread Analysis       MT5 VERSION   TRADE COPIER Select Role: On the account sending trades, choose Sender (Master Account) . On the account receiving trades, choose Copier (Receiver Account) . Lot Size Mode: Same Lot Size as Master: Ignores multipliers, copies ex
FREE
Zig Zag 123
Stephen Reynolds
Zig Zag 123 tells us when a reversal or continuation is more likely by looking at the shift in supply and demand. When this happens a signature pattern appears known as 123 (also known ABC) will often break out in direction of higher low or lower high. Stop loss and take profit levels have been added. There is a panel that shows the overall performance of your trades for if you was to use these stop loss and take profit levels.  We get alerted if a pattern 123 appears and also if the price re
FREE
AQ XFifteen
HIT HYPERTECH INNOVATIONS LTD
4 (7)
Χ15 indicator is a MetaTrader 4 tool that allows you to BUILD & BACKTEST ON REAL TIME your own strategies quickly, easily and efficiently. It contains 15 of the most popular technical analysis indicators that you can use, each one in a different way. Choose the indicators that you want to use, select how you will use them and you will see on the chart BUY (green) and SELL (red) arrows implementing your strategy. Choose Take Profit and Stop Loss and you will see the results of your strategy with
FREE
FullMarginRiskGuardMT4
Seti Gautama Adi Nugroho
it is hard to do full margin strategy in MT4, because you cannot close all orders easily. Unlock the power of full margin trading with confidence using   FullMargin RiskGuard , a cutting-edge Expert Advisor (EA) designed specifically for beginner traders on the MetaTrader 5 platform. Inspired by the renowned trading style of Papip Celebes, this EA empowers users to execute full trade strategies while safeguarding their capital with advanced risk management features. Key Features: MaxFloatingLos
FREE
Gli utenti di questo prodotto hanno anche acquistato
Neuro Poseidon MT4
Daria Rezueva
4.84 (43)
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
Gann Made Easy
Oleg Rodin
4.84 (167)
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
Prop Firm Sniper
Mohamed Hassan
5 (1)
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
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
Trend Catcher ind
Ramil Minniakhmetov
5 (10)
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
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
Indicatore Miraculous – Strumento Forex e Binario 100% Non-Repaint Basato sul Quadrato di Nove di Gann Questo video presenta l' Indicatore Miraculous , uno strumento di trading altamente accurato e potente, sviluppato specificamente per i trader di Forex e Opzioni Binarie . Ciò che rende unico questo indicatore è la sua base sul leggendario Quadrato di Nove di Gann e sulla Legge della Vibrazione di Gann , rendendolo uno degli strumenti di previsione più precisi disponibili nel trading moderno. L
System Trend Pro
Aleksandr Makarov
5 (2)
System Trend Pro - This is the best trend trading indicator!!! 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
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
Advanced Supply Demand
Bernhard Schweigert
4.91 (300)
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
M1 Sniper
Oleg Rodin
5 (24)
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
Owl smart levels
Sergey Ermolov
4.26 (38)
Quando si opera seguendo il trend, la difficoltà principale non è trovare un livello, ma capire dove un ingresso è realmente valido. Il prezzo spesso reagisce ai livelli, ma non riesce a proseguire il movimento — il che porta a ingressi falsi o opportunità perse. Owl Smart Levels non si limita a mostrare livelli , ma evidenzia zone basate sulla struttura di mercato e sui pullback. Questo consente di valutare i punti di ingresso in modo diverso ed evitare una parte dei segnali falsi. Cosa includ
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
ORB Seeker
Marcela Goncalves De Oliveira
Prezzo speciale di lancio! Solo 79 dollari! Il prezzo aumenterà dopo 10 vendite, prezzo finale $199. Dopo l'acquisto, contattami per ricevere un Expert Advisor (EA) bonus GRATUITO in grado di automatizzare completamente i segnali di breakout e di fornire file di configurazione ottimizzati. Individua con sicurezza le eruzioni cutanee durante le sessioni di allenamento! ORB Seeker è un indicatore ORB (Opening Range Breakout) professionale, pensato per i trader che desiderano precisione, semplici
Scientific trade
Aleksey Ivanov
5 (1)
An extremely convenient indicator that truly makes the process of making money on the exchange easy. It is based on the scientifically rigorous theory of the market developed by the author, the beginning of which is presented here .                The full algorithm of this indicator operation is presented in the article .               The indicator calculates the most probable price movement trajectory and displays it on the chart. Based on the predicted price movement trajectory
Cycle Sniper
Elmira Memish
4.39 (36)
Please contact us after your purchase and we will send you the complimentary indicators to complete the system Cycle Sniper is not a holy grail but when you use it in a system which is explained in the videos, you will feel the difference. If you are not willing to focus on the charts designed with Cycle Sniper and other free tools we provide, we recommend not buying this indicator. We recommend watching the videos about the indiactor and system before purchasing. Videos, settings  and descri
M1 Quantum
Hamed Dehgani
Nota dello sviluppatore:   Dopo l’acquisto, contattami per ricevere il più recente   file di configurazione consigliato (Set File) , consigli di trading e un invito al   gruppo VIP di supporto , dove potrai connetterti con altri utenti di M1 Quantum. Versione MT5 disponibile : Visita MT5 M1 Quantum è un sistema di trading professionale per M1 che fornisce segnali di trading rapidi e precisi con Stop Loss, Take Profit e gestione intelligente del capitale integrati. M1 Quantum include un sistema
Market Structure Patterns MT4
Samuel Manoel De Souza
5 (18)
Market Structure Patterns   è un indicatore basato sui   Smart Money Concepts   che mostra gli   elementi SMC/ICT   che possono portare le tue decisioni di trading a un livello superiore. Approfitta di   alert ,   notifiche push   e   email   per essere avvisato quando si forma un elemento sul grafico, il prezzo supera un livello e/o entra in una zona. Gli sviluppatori possono accedere ai valori degli elementi dell’indicatore utilizzando le   variabili globali , consentendo l’automazione delle d
Scalping Lines System  - è un sistema di trading scalping specificamente progettato per il trading dell'oro, l'asset XAUUSD, su timeframe M1-H1. Combina indicatori per l'analisi di trend, volatilità e ipercomprato/ipervenduto, riuniti in un unico oscillatore per l'identificazione di segnali a breve termine. I principali parametri interni per le linee di segnale sono preconfigurati. Alcuni parametri possono essere modificati manualmente: "Durata dell'onda di tendenza", che regola la durata di un
Attualmente 30% di sconto! La soluzione migliore per ogni principiante o trader esperto! Questo software per cruscotti funziona su 28 coppie di valute. Si basa su 2 dei nostri indicatori principali (Advanced Currency Strength 28 e Advanced Currency Impulse). Offre un'ottima panoramica dell'intero mercato Forex. Mostra i valori di forza delle valute avanzate, la velocità di movimento delle valute e i segnali per 28 coppie Forex in tutti i (9) timeframe. Immaginate come migliorerà il vostro tra
Friends, we present to your attention our new Forex Gump Laser indicator. Since there are no designers in our team, but mainly mathematicians, financiers, programmers and traders, we did not make any special changes in the indicator design. In appearance, it resembles the usual Forex Gump. On the other hand, Forex Gump has become not just the name of an indicator, it is a brand. And we try to preserve the corporate identity in all its varieties. The whole essence of the indicator in its operatio
Scalper Inside PRO
Alexey Minkov
4.68 (69)
Scalper Inside PRO Scalper Inside PRO is an intraday trend and scalping indicator that uses exclusive built-in algorithms to evaluate market direction and key target levels. The indicator automatically calculates entry and exit points and several profit target levels, and it shows detailed performance statistics, so you can see how different instruments and strategies behaved on historical data. This helps you select instruments that fit current market conditions. You can also connect your own a
Atomic Analyst
Issam Kassas
5 (8)
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
Easy Breakout
Mohamed Hassan
4.71 (14)
After your purchase, feel free to contact me for more details on how to receive a bonus indicator called VFI, which pairs perfectly with Easy Breakout for enhanced confluence!    Easy Breakout is a powerful price action trading system built on one of the most popular and widely trusted strategies among traders: the Breakout strategy ! This indicator delivers crystal-clear Buy and Sell signals based on breakouts from key support and resistance zones. Unlike typical breakout indicators, it levera
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 Discounted   Price   $50  !!     Secure your lifetime access   now   before it switches to   subscription-only ! 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 indicat
Day Trader Master è un sistema di trading completo per i day trader. Le systeme se compose de due indicatori. Un indicar est un signal fléché pour acheter et vendre. C'est l'indicateur de fleche que vous obtenez. Je vous fournirai le deuxième indicaur gratuitement. Le deuxième indicaur è un indicaur de tendance spécialement conçu pour être utilisé conjointement avec ces flèches. GLI INDICATORI NON SI RIPETONO E NON RITARDANO! Usare questo sistema è molto semplice. Devi solo seguire i segnali del
BTMM State Engine Pro is a MetaTrader 4 indicator for traders who use the Beat The Market Maker approach: Asian session context, kill zone timing, level progression, peak formation detection, and a multi-pair scanner from a single chart. It combines cycle state logic with a built-in scanner dashboard so you do not need the same tool on many charts at once. What it does Draws the Asian session range; session times can follow broker server offset or be set in inputs. Tracks level progression (L
Dynamic Forex28 Navigator
Bernhard Schweigert
4.43 (7)
Dynamic Forex28 Navigator - Lo strumento di trading Forex di nuova generazione. ATTUALMENTE SCONTATO DEL 49%. Dynamic Forex28 Navigator è l'evoluzione dei nostri indicatori popolari di lunga data, che combinano la potenza di tre in uno: Advanced Currency Strength28 Indicator (695 recensioni) + Advanced Currency IMPULSE con ALERT (520 recensioni) + CS28 Combo Signals (Bonus). Dettagli sull'indicatore https://www.mql5.com/en/blogs/post/758844 Cosa offre l'indicatore di forza di nuova generazione?
Channel Trend Bands – A Comprehensive Indicator for Market Analysis MetaTrader 5 Version Simple to Use, Effective in Application User-Friendly and Suitable for All Traders This indicator stands out due to its straightforward functionality. Whether you're a beginner exploring the market or an experienced trader refining your strategy, this tool offers valuable insights. Using a Triangular Moving Average (TMA) with additional ATR-based bands , it provides structured market data to support well-i
PRO Renko System
Oleg Rodin
5 (30)
PRO Renko System è un sistema di trading altamente accurato appositamente progettato per il trading di grafici RENKO. Questo è un sistema universale che può essere applicato a vari strumenti di trading. Il sistema neutralizza efficacemente il cosiddetto rumore di mercato che consente di accedere a segnali di inversione accurati. L'indicatore è molto facile da usare e ha un solo parametro responsabile della generazione del segnale. Puoi facilmente adattare lo strumento a qualsiasi strumento di
Altri dall’autore
Reverse_Elements - Formatted Description Reverse_Elements Reverse_Elements is a signal-based indicator designed to help identify potential market reversal points directly on the chart. Using a proprietary calculation method, the indicator displays buy and sell signals with arrows. It is built to support discretionary trading by making potential entry areas easier to recognize visually. This is not an Expert Advisor and does not place trades automatically. Main Features Buy and sell arrows displa
================================================================  DispTrade_en.mq4  User Manual ================================================================ OVERVIEW -------- Displays trade history and open positions visually on the MT4 chart using arrows and connecting lines. WHAT IT SHOWS ------------- - BUY Entry Arrow   : Entry point for BUY orders (blue) - SELL Entry Arrow  : Entry point for SELL orders (red) - Exit Arrow        : Close point for historical trades (goldenrod) - Dott
FREE
================================================================   TradeInfoS_en  -  Trade Statistics Indicator for MT4   Copyright (C) 2014 fx-mt4ea.com ================================================================ OVERVIEW -------- Displays trade history statistics and market info in a separate indicator window. Shows results for All-time, This Month, and This Week in three columns. DISPLAY LAYOUT -------------- [ S ]  T:xx/W:xx/L:xx/R:xx%/PL:xx    <- All-time stats [ M ]  T:xx/W:xx/L:xx
FREE
Stoch Cross 448 Scanner Scan 64 pairs x 7 timeframes for stochastic golden/dead crosses — all from a single chart.  |  User Manual ------------------------------------------------------------------------ 1. Overview ------------------------------------------------------------------------ Stoch Cross 448 Scanner is a MetaTrader 4 indicator that monitors stochastic cross signals across 64 currency pairs and 7 timeframes simultaneously, displaying all results in a single panel. Drop it onto any
FREE
RSI Border Search scans up to 64 symbols across 7 timeframes (448 combinations) in real time, detecting when RSI reaches overbought or oversold levels on confirmed bars. KEY FEATURES - Multi-Symbol Scanner: Monitor up to 64 symbols x 7 timeframes = 448 cells simultaneously. - RSI Boundary Detection: Detects when RSI crosses above or below your specified boundary level on confirmed (closed) bars. - No Repaint: Only confirmed bars are evaluated. The forming bar is never used, so signals
FREE
MagicalTouch for MT4 Draw a line. Wait for the alert. MagicalTouch monitors lines you draw on MT4 and fires an alert the instant price touches them. What it does Horizontal lines: Alerts when price hits the specified level. Vertical lines: Alerts when a candle reaches the specified time. Trendlines: Alerts on touch (a unique feature MT4 cannot do natively). Alert Types: Supports Popup, Sound, Email, and Mobile Push Notifications. Quick Start (3 Steps) Apply: Drag MagicalTouch onto any chart. Dr
MA Cross 448 Scanner Scan 64 pairs x 7 timeframes for MA crossovers — all from a single chart.  |  User Manual ------------------------------------------------------------------------ 1. Overview ------------------------------------------------------------------------ MA Cross 448 Scanner is a MetaTrader 4 indicator that monitors moving average crossovers across 64 currency pairs and 7 timeframes simultaneously, displaying all results in a single panel. Drop it onto any chart and it instantly
AutoLineSaver for 448 Save and restore your chart workspace automatically.  |  User Manual 1. Overview AutoLineSaver automatically saves every line you draw on the chart and restores them the next time you open it. No more redrawing your analysis from scratch. Drop AutoLineSaver onto your chart once, and your workspace is always preserved. What it saves: • Horizontal lines • Trendlines • Rays (extended trendlines) • Vertical lines • Rectangles • Fibonacci retracements How it works: • Lines
## 1. Overview  ?  ICT IFVG All-Currency Scanner Detects IFVG (Inverse Fair Value Gap) signals across all currency pairs simultaneously. An IFVG occurs when a candle body fully breaks through a prior Fair Value Gap in the OPPOSITE direction ? a key ICT concept indicating a potential institutional reversal.   BUY  signal : Bear FVG is broken upward   → price likely to rise   SELL signal : Bull FVG is broken downward → price likely to fall Scans up to 64 symbols × 7 timeframes = 448 combina
HigherTF Background Candle draws higher timeframe candlesticks directly on your chart background, giving you instant multi-timeframe context without switching charts. KEY FEATURES - Background HTF Candles: Renders Open/High/Low/Close of any higher timeframe as colored rectangles behind your price action. - Instant TF Switching: Press keys 1-9 to switch between M1, M5, M15, M30, H1, H4, D1, W1, MN1. Press 0 to hide. - Auto-Promotion: If the selected TF is equal to or lower than the cha
Reverse_Elements_AllSearch Reverse_Elements signals multi-symbol / multi-timeframe scanner for MetaTrader 4 ---------------------------------------------------------------------- Important Requirement ---------------------------------------------------------------------- Reverse_Elements_AllSearch requires the main Reverse_Elements indicator. Reverse_Elements_AllSearch is not a standalone signal-generation indicator. It is a scanner that reads signals from the main Reverse_Elements indicator an
Filtro:
Nessuna recensione
Rispondi alla recensione