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.
    MQL4 / MQL5 Development Services
    • Custom Indicator Modifications
  • Versione: 1.1
  • Aggiornato: 21 luglio 2026


FREE for the First 100 Users

  IFVG Signals Indicator  (ICTIFVGmq4_en.mq4)  Platform: MetaTrader 4

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

Zone    : Horizontal rectangle drawn at the confirmed IFVG zone

IFVG Sing  Guide is Here 


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

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
Market Ticker Free
John Louis Fernando Diamante
5 (1)
A scrolling Market Ticker that displays price changes from all symbols in the Market Watch list. Provides an easy snapshot of symbol prices, and keeps scrolling automatically while you trade and analyse the chart. Options include: - MTF, eg choose to show price changes of the daily chart, or the hourly - use the live candle or the recently completed - font and background coloring
FREE
Fibomathe for MT4
Almaquio Ferreira De Souza Junior
Fibomathe Indicator: Support and Resistance Tool for MT4 The Fibomathe Indicator is a technical analysis tool designed for MetaTrader 4 (MT4) that assists traders in identifying support and resistance levels, take-profit zones, and additional price projection areas. It is suitable for traders who use structured approaches to analyze price action and manage trades. Key Features Support and Resistance Levels: Allows users to define and adjust support and resistance levels directly on the chart. L
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
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
PDHL – simply displays the highs and lows of previous days directly on your chart, providing a quick and visual reference of past key levels. The indicator is lightweight and easily customizable , allowing you to adjust the number of days displayed, the colors, as well as the style and thickness of the lines to suit your preferences. It is designed to be simple and practical, but may not work on all instruments or platforms . Only teste Tested only with CFDs
FREE
The Sextet
Naim El Hajj
4 (3)
Overview The Sextet is an MT4 trend-alignment indicator based on a sequence of six moving-average levels. Each level is calculated from the previous one, creating a layered view of trend structure. The indicator marks conditions where the moving-average levels align in order, which can help traders observe trend direction and trend organization more clearly. Key Features Displays six moving-average levels. Uses a layered moving-average sequence. Helps visualize trend alignment and directional st
FREE
Il Matrix Arrow Indicator Multi Timeframe Panel MT4 è un componente aggiuntivo gratuito e una grande risorsa per il tuo Matrix Arrow Indicator MT4 . Mostra l'attuale segnale Matrix Arrow Indicator MT4 per 5 timeframe personalizzati dall'utente e per 16 simboli/strumenti modificabili in totale. L'utente ha la possibilità di abilitare/disabilitare uno qualsiasi dei 10 indicatori standard di cui è composto il Matrix Arrow Indicator MT4 . Anche tutti i 10 attributi degli indicatori standard sono re
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
AP Day-Week-Month High-Low MT4 Lightweight overlay that draws the prior Day, Week, and Month highs/lows on any chart. Great for session planning, confluence, and alerting when price comes back to important swing levels. What it does Plots 6 lines: Day High/Low, Week High/Low, Month High/Low (from the previous completed sessions). Touch/near alerts when price reaches a selected line (with a user-set tolerance). Works on any symbol and timeframe. Zero external libraries. How to use Drop it o
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
IceFX SpreadMonitor
Norbert Mereg
4.91 (11)
IceFX SpreadMonitor is a special spread logging indicator which displays the current, minimum/maximum and average spread values. These values are set to be visible even after a reboot. Also, SpreadMonitor could save all the desired spread values to .csv files for later analysis of the results. Indicator parameters: SpreadLowLevel - low level of spread (show value in green color) SpreadHighLevel - high level of spread (show value in red color) BGColor - background of panel SpreadNormalColor - co
FREE
This indicator is one of the useful tools for traders who trade on currency pairs and based on the strength of each currency they can make a correct decision or confirmation in the positions.  It has been calculated for all the minor currency pairs supported by the broker and displays the values of the major currencies. These currencies are displayed horizontally or vertically according to the trader's config when executing the indicator. One of the trading strategies that can be used is to cho
FREE
Auto Fibonacci displays the 38.2, 61.8, and 78.6 Fib levels directly on the chart, helping traders who use these key retracement zones consistently for trade planning or confluence. Drawing Fibonacci levels manually over and over again can take time, especially when done with wick-to-wick precision. Auto Fibonacci removes that friction by detecting the latest trend leg and placing the main Fibonacci levels automatically. Key Benefits Shows only the major Fibonacci levels to keep the chart clean
FREE
UPD1 D Levels
Vitaliy Kuznetsov
5 (3)
L'indicatore dei livelli si basa sui dati del giorno precedente. La formula matematica determina i livelli di entrata e di uscita.  Raccomandazioni di trading. I livelli vengono negoziati all'inizio della sessione europea, quando appare la volatilità. In caso di volatilità insufficiente, utilizzare metà del take profit per uscire. Se il prezzo si è invertito a metà del take profit, allora sull'inversione cercate un target anche al livello di metà del take profit. Se il prezzo rimbalza dal live
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
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
A very simple and intuitive indicator that shows the deviations from the moving average in percent. The default is a 50-day moving average. Just throw on the chart and the indicator build in a separate window under the graph. This can be very convenient if your strategy implies a certain deviation in percentage of the moving average. It is not very convenient to calculate it manually. The method of averaging, the period of the moving average and at what prices to build all this is selected in t
FREE
First 20 Downloads FREE ## 1. Overview $2014 MA Perfect Order All-Currency Scanner Detects "Perfect Order" moving average alignment across all currency pairs simultaneously. A Perfect Order occurs when 3-5 moving averages of increasing periods are stacked in a single, uninterrupted order $2014 proof that price is trending cleanly with no conflicting timeframes.   BUY  signal : Shorter-period MAs are all above longer-period MAs (fast-to-slow stack) -> strong uptrend   SELL signal : Shorte
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
PZ Penta O MT4
PZ TRADING SLU
2.33 (3)
The Penta-O is a 6-point retracement harmonacci pattern which usually precedes big market movements. Penta-O patterns can expand and repaint quite a bit. To make things easier this indicator implements a twist: it waits for a donchian breakout in the right direction before signaling the trade. The end result is an otherwise repainting indicator with a very reliable trading signal. The donchian breakout period is entered as an input. [ Installation Guide | Update Guide | Troubleshooting | FAQ | A
FREE
GRATIS — il canale di breakout Donchian e il trailing stop basato su ATR che gestisce l'operazione dopo la rottura, disegnati sullo stesso grafico. 100% gratuito, senza limitazioni. Se si guadagna un posto sui tuoi grafici, una breve recensione è ciò che ci aiuta di più — bastano 30 secondi ed è così che altri trader scoprono questo strumento. La maggior parte degli indicatori di breakout mostra l'ingresso e si ferma lì. La parte difficile del trend following è ciò che viene dopo: dove va lo s
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
Livelli di Gamma Exposure (GEX) dal mercato delle opzioni in tempo reale sul grafico SP500. Aggiornamento ogni 30 minuti. Full description: GammaOrderBook Free — EA tutto-in-uno che scarica e visualizza i dati GEX direttamente sul grafico. Nessun indicatore separato necessario. Cosa viene visualizzato • GEX Bars — Livelli gamma Call/Put come barre orizzontali, divisi per fonte ETF/Index (colori diversi) • Zero Gamma Line — Livello critico dove cambia la direzione di copertura dei dealer • Pa
FREE
Panel Display
Mohamad Zulhairi Baba
4.8 (5)
Panel Display is a free utilities indicator, to display basic account information, in a beautiful way. This indicator is a plug and play, where the is no input required except for display corners. User can quickly engage how much profit/loss for current day / week! This Week's Performance - This week closed order for all pairs. Today's Performance - Today's closed order for all pairs. Current Floating Profit / Loss - Current Floating Profit/Loss (all pairs) in the account
FREE
Pin Bars
Yury Emeliyanov
4.83 (6)
Scopo principale: "Pin Bars" è progettato per rilevare automaticamente le barre dei pin sui grafici dei mercati finanziari. Una barra pin è una candela con un corpo caratteristico e una lunga coda, che può segnalare un'inversione di tendenza o una correzione. Come funziona: L'indicatore analizza ogni candela sul grafico, determinando la dimensione del corpo, della coda e del naso della candela. Quando viene rilevata una barra pin corrispondente a parametri predefiniti, l'indicatore la segna su
FREE
IceFX TradeInfo
Norbert Mereg
4.77 (44)
IceFX’s TradeInfo is an utility indicator which displays the most important information of the current account and position. Displayed information: Information about the current account (Balance, Equity, Free Margin). Current spread, current drawdown (DD), planned profit, expected losses, etc. Number of open position(s), volume (LOT), profit. Today’s and yesterday’s range. Remaining time to the next candle. Last day profit information (with integrated IceFX ProfitInfo indicator). Risk-based LOT
FREE
IntradaySignals   Intraday Signals is a visual and effective semi-automatic trading system, that: generates possible entry points to open BUY and SELL trades; displays recommended  Take Profit and Stop Loss; displays current profit on open trade; displays  current spread. The profitability of the indicator is shown in the screenshot on the example of the GBPUSD pair Does not redraw and works on opening bar. Time frames - M1-H1. Recommended TimeFrame-M5-M15. Signals are produced based on the used
FREE
Multi TF MA Levels
Luke Anthony Caras
Multi-TF MA Levels plots a single moving average across multiple timeframes directly on your chart, giving you instant context at every level of the market. No switching charts. No mental maths. Just clean, flat lines showing exactly where the MA sits on M15, M30, H1, H4 and D1 — all updated on confirmed bar close so there is no repainting. Features Plots the local timeframe MA plus up to 5 higher timeframe MAs simultaneously HTF lines only update on confirmed bar close — no repainting Higher ti
FREE
Ind4 InfoPad Information Panel
Vladislav Andruschenko
4.78 (9)
INFOPad è un pannello informativo che crea informazioni sulla coppia di valute selezionata nel terminale MetaTrader 4. Ci sono 5 funzioni di questo indicatore: Mostra le informazioni principali e principali sul simbolo selezionato: Ask BID, Spread, Stop Level, Swap, Tick value, Commissioni; Mostra gli obiettivi futuri del target SL e del target TP (il numero di punti dello stop loss e del take profit stabiliti, l'importo in dollari); Mostra il profitto ricevuto per i periodi: Oggi, Settimana, M
FREE
Not trading time
Mikhail Nazarenko
4 (2)
There are time periods in the market, when trading is highly likely to be unprofitable. This indicator warns you about such non-trading situations and helps you preserve your money and time. Parameters Remind about non-trading periods: Expiration week - remind about the expiration week Consumer index day - remind a day before the release of Consumer index day NON FARM - remind a day before the release of NON FARM Christmas - remind a day before Christmas New Year Days 25.12 - 15.01 - remind abo
FREE
Gli utenti di questo prodotto hanno anche acquistato
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
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
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
M1 Sniper
Oleg Rodin
5 (27)
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
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
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,
Zoryk Gold mt4
Reda El Koutbane
5 (1)
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
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?
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.
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
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
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
R. Cos'è l'A2SR ?   * È un indicatore tecnico leader (nessuna riverniciatura, nessun ritardo). -- Guida : -- su https://www.mql5.com/en/blogs/post/734748/page4#comment_16532516 -- e https://www.mql5.com/en/users/yohana/blog .. MT5 version:  https://www.mql5.com/en/market/product/140111 A2SR ha una tecnica speciale per determinare i livelli di supporto (domanda) e resistenza (offerta). A differenza del modo ordinario che abbiamo visto in rete, A2SR ha un concetto originale nel determinare i li
ORB Seeker
Marcela Goncalves De Oliveira
Prezzo scontato per un periodo limitato! Solo 99 dollari! Dopo l'acquisto, contattami per ricevere in omaggio l'EA ORB Seeker e i file di configurazione personalizzati e 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, semplicità, flessibilità e una struttura grafica chiara. Traccia automaticamente il range di prezzo pre-mercato o pe
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
Built-in multi-symbol scanner — traffic-light grid for up to 30 pairs across four timeframes. No separate scanner file required. BUY, SELL, WAIT cells with confluence score and recent structure event. Full alignment with AI Trade Idea — current chart cell reads live engine data so scanner, dashboard, and AI panel always show the same verdict, score, and reason. Per-cell explain popup — four-section breakdown of what is happening, how the score was built, what to look for, and what to watch out
Presenting one-of-a-kind Gann Indicator for XAUUSD IQ Gold Gann Levels is a non-repainting, precision tool designed exclusively for XAUUSD intraday trading. It uses W.D. Gann’s square root method to plot real-time support and resistance levels, helping traders spot high-probability entries with confidence and clarity. William Delbert Gann (W.D. Gann) was an exceptional market analyst whose trading technique was based on a complex blend of mathematics, geometry, astrology, and ancient calculation
Currency Strength Exotics
Bernhard Schweigert
4.88 (33)
ATTUALMENTE SCONTATO DEL 20%! La soluzione migliore per qualsiasi principiante o trader esperto! Questo indicatore è specializzato nel mostrare la forza della valuta per qualsiasi simbolo come coppie esotiche, materie prime, indici o futures. È il primo nel suo genere, qualsiasi simbolo può essere aggiunto alla nona riga per mostrare la vera forza della valuta di Oro, Argento, Petrolio, DAX, US30, MXN, TRY, CNH ecc. Si tratta di uno strumento di trading unico, di alta qualità e conveniente pe
Scalper Inside PRO
Alexey Minkov
4.74 (68)
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
Level Breakout Indicator è un prodotto di analisi tecnica che funziona dai limiti superiore e inferiore, che può determinare la direzione del trend. Funziona sulla candela 0 senza ridisegnare o ritardi. Nel suo lavoro utilizza un sistema di diversi indicatori, i cui parametri sono già stati configurati e combinati in un unico parametro: " Scale ", che esegue la gradazione dei periodi. L'indicatore è facile da usare, non richiede alcun calcolo, utilizzando un unico parametro è necessario selezion
Scalper Vault
Oleg Rodin
5 (38)
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
Color Trend FX
Alexey Minkov
4.5 (4)
Color Trend FX shows the current trend direction and marks entry points, trailing levels and possible exit points right on the chart. The indicator is built for traders who want to see where to open, get hints on when to close, and check how it performed on history. It can work as a standalone tool, as part of your own system, or as a base for your Expert Advisors. The indicator plots signals as colored dots that follow the trend and also act as trailing levels for open positions. When the move
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
GOLD Impulse with Alert
Bernhard Schweigert
4.67 (12)
Questo indicatore è una super combinazione dei nostri 2 prodotti Advanced Currency IMPULSE with ALERT  +   Currency Strength Exotics . Funziona per tutti i time frame e mostra graficamente l'impulso di forza o debolezza per le 8 valute principali più un simbolo! Questo indicatore è specializzato nel mostrare l'accelerazione della forza delle valute per qualsiasi simbolo come oro, coppie esotiche, materie prime, indici o futures. Primo nel suo genere, qualsiasi simbolo può essere aggiunto all
Adopt market correlation and indicator resonance Here are some trading recommendations based on the current market conditions: (1) Note: It doesn't mean you have a perfect deal, but rather helps you avoid bad trades (2) Why traditional indicators are prone to distortion. For example, the 10-day moving average is calculated by calculating the average price of the top 10 candlesticks. Result: I prove I want to rise, and the signal is easily distorted. This indicator adopts a self-proof + corrob
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
Indicatore Crypto_Forex "ReTest Histogram" per MT4, senza ridisegno. - L'indicatore ReTest_Histogram può essere utilizzato per la ricerca di segnali di ingresso nella direzione del trend principale dopo il nuovo test di un forte livello S/R. - L'istogramma ReTest può essere di 2 colori: rosso per trend ribassista e verde per trend rialzista. - Quando si vedono colonne consecutive dell'istogramma stabili dello stesso colore, significa che si sta verificando un nuovo trend. - Il segnale ReTest è
Mechanism Trend
Vitalii Zakharuk
The Mechanism Trend indicator is a hybrid indicator that shows the moments for entering the market with arrows. This indicator was created on the basis of the original indicators for searching for extreme points, the indicator is well suited for determining a reversal or a large sharp jerk to one side. When the trend changes, the Mechanism Trend indicator uses color signaling: green - when changing from a downtrend to an uptrend, and red - vice versa, to a downtrend. You can use the indicator
Trend Lines PRO
Roman Podpora
5 (1)
LINEE DI TENDENZA PRO       Aiuta a capire dove il mercato sta realmente cambiando direzione. L'indicatore mostra reali inversioni di tendenza e punti in cui i principali attori rientrano. Vedi  Linee BOS   Cambiamenti di tendenza e livelli chiave su timeframe più ampi, senza impostazioni complesse o rumore inutile. I segnali non vengono ridisegnati e rimangono sul grafico dopo la chiusura della barra. VERSIONE MT 5     -      Svela il suo massimo potenziale se abbinato all'indicatore   RFI LEVE
Altri dall’autore
================================================================  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
## 1. Overview PDSearch is a scanner that instantly shows you, across every symbol and every timeframe, whether price is currently trading at a premium or a discount $2014 on a single chart. Working out an ICT Premium/Discount bias normally means manually finding the swing high and low and drawing a Fibonacci retracement yourself. PDSearch automates this across every symbol and timeframe, so you can see the discount (buy-side) or premium (sell-side) bias at a glance, color-coded. DSearch  448
FREE
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
FREE for the First 50 Users ================================================================   ShowKillZones v1.0   - Corrected NY AM end time from 11 to 10, and NY PM end time from 17 to 16 (adjusted to Kill Zone hours) [cite: 321, 326]   - Changed NY AM/PM labels to Kill Zone [cite: 321, 326] v1.0  -  User Manual [cite: 321] ================================================================ [Overview] This indicator displays ICT Kill Zones (session hours) on the chart as background zones an
FREE
First 20 Downloads FREE ## 1. Overview $2014 MA Perfect Order All-Currency Scanner Detects "Perfect Order" moving average alignment across all currency pairs simultaneously. A Perfect Order occurs when 3-5 moving averages of increasing periods are stacked in a single, uninterrupted order $2014 proof that price is trending cleanly with no conflicting timeframes.   BUY  signal : Shorter-period MAs are all above longer-period MAs (fast-to-slow stack) -> strong uptrend   SELL signal : Shorte
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
## 1. Overview Scan up to 64 symbols $FFFD~ 7 timeframes = 448 combinations simultaneously. --- ## 2. All-Currency Monitoring Series Tools that monitor all currency pairs at once become an incredibly powerful weapon once mastered ? a trading tool for life. The key is to match the right tool to your trading strategy. Here are the hottest tools available right now: - IFVG All-Currency Scanner   The most effective tool for catching ICT fake-out moves.   https://www.gogojungle.co.jp/tools/
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
First 50 Downloads Free      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 retra
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
50% OFF for the First 50 Users 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. IFVG 448 Scanner Guide is Here    BUY  signal : Bear FVG is broken upward   → price likely to rise   SELL signal : Bull FVG is broken downward → price likely to
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