IFVG Finder zone snd sign

  • Индикаторы
  • 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
  • Версия: 1.0


FREE for the First 100 Users

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

  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

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


Рекомендуем также
IceFX TickInfo - это уникальный индикатор для тиковых графиков для платформы MetaTrader 4. Индикатор графически отображает последние 100 тиков, а также дополнительно показывает текущий спред, цены bid/ask и значение времени на элегантной панели IceFX. Индикатор является эффективным инструментом для трейдеров, торгующих на таймфрейме M5 или даже M1. Параметры индикатора: Corner - угол привязки панели; CornerXOffset - отступ от угла по горизонтали; CornerYOffset - отступ от угла по вертикали; Cha
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 с Зонами Тейк-Профита для MT4 Индикатор ATR Bands для MT4 создан для помощи трейдерам в управлении рисками и анализе рыночной волатильности. Используя Средний Истинный Диапазон (ATR), он помогает определять ключевые уровни цены и устанавливать реалистичные стоп-лоссы и тейк-профиты. Основные функции: Полосы на основе ATR : Индикатор рассчитывает динамические верхние и нижние полосы с использованием ATR. Эти полосы адаптируются к волатильности цены, указывая потенциальные уровни поддерж
FREE
Уникальный индикатор IceFX VelocityMeter для платформы MetaTrader 4 измеряет скорость рынка форекс. Это не обычный индикатор объемов или других величин, т.к. IceFX VelocityMeter способен понять скорость скрытых в тиках движений рынка, а эта ценная информация не доступна в обычных свечах, поэтому не может быть получена простым индикатором. Этот индикатор контролирует приход тиков (частоту и величину изменения) в пределах указанного диапазона времени, анализирует эти данные, определяет, записывает
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
Индикатор анализирует шкалу объёмов и разделяет её на две компоненты - объёмы продавцов и объёмы покупателей, а также вычисляет дельту и кумулятивную дельту. Индикатор не мерцает и не перерисовывает, вычисления и отрисовку производит достаточно быстро, используя при этом данные с младших (относительно текущего) периодов. Режимы работы индикатора переключаются с помощью входной переменной Mode : Buy - отображает только объёмы покупателей. Sell - отображает только объёмы продавцов. 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)
Индикатор вычисляет профиль объёма и выставляет метки, соответствующие уровням VAL, VAH и POC, для каждой свечи индивидуально. Особенности работы индикатора Индикатор работает на периодах от M5 до MN, но для вычислений использует исторические данные меньших периодов: M1 - для периодов от M5 до H1, M5 - для периода H4, M30 - для периода D1, H4 - для периода W1, D1 - для периода MN. Цвет и положение меток VAL, VAH и POC на текущей свече считаются корректными только по времени близкому к закрытию
FREE
Эта панель является частью торговой системы SupDem-Pro и служит для поиска наилучших возможностей по любым доступным инструментам. Которые вы можете самостоятельно выбрать из Market Watch (открыв его CTRL+M). Использование этой торговой панели совместно с индикатором ShvedSupDem-Pro_Zone открывает возможность анализировать множество инструментов всего одним нажатием кнопки. Панель позволяет загружать любые инструменты из Market Watch от 6 основных валютных пар вплоть до всех инструментов (480).
SC MTF Rsi MT4
Krisztian Kenedi
5 (1)
Индикатор Индекса Относительной Силы (RSI) с поддержкой мульти-таймфрейма, настраиваемыми визуальными сигналами и конфигурируемой системой оповещений. Услуги фриланс-программирования, обновления и другие продукты TrueTL доступны в моём профиле MQL5 . Отзывы и оценки очень приветствуются! Что такое RSI? Индекс Относительной Силы (RSI) — это моментум-осциллятор, измеряющий скорость и величину изменений цены. Индикатор осциллирует между 0 и 100, сравнивая величину недавних прибылей с недавними у
FREE
После приобретения индикатора Tpx Dash Supply Demand вам необходимо загрузить этот индикатор, который будет связываться с индикатором Tpx Dash Supply Demand и передавать рыночные данные, предоставляя все ценовые сигналы спроса и предложения, ATR Stop, VAH и VAL, значения тренда с ADX, а также цены и местоположения точек подтверждения (POC) на рынке. Просто загрузите его, и Dash найдет индикатор для получения информации!
FREE
Show Pips
Roman Podpora
4.27 (59)
Данный информационный индикатор будет полезен тем, кто всегда хочет быть в курсе текущей ситуации на счете. Индикатор отображает такие данные, как прибыль в пунктах, процентах и валюте, а также спред по текущей паре и время до закрытия бара на текущем таймфрейме.  VERSION MT5 -  Больше полезных индикаторов Существует несколько вариантов расположения информационной строки на графике: Справа от цены (бегает за ценой); Как комментарий (в левом верхнем углу графика); В выбранном углу экрана. Так же
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
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)
Представляем вам индикатор, который не только улучшает визуальный аспект графика, но и придает ему живой, динамичный характер. Наш индикатор представляет собой комбинацию одного или нескольких индикаторов Moving Average (MA), которые постоянно меняют свой цвет, создавая интересный и красочный вид. Данный продукт является графическим решением поэтому сложно описывать что он делает текстом, это легче увидеть скачав его, к тому же продукт бесплатный. Данный индикатор подойдёт блогерам, которые хо
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
Данный индикатор создан для поиска предполагаемых разворотных точек цены символа. В его работе используется небольшой разворотный свечной паттерн в совокупности с фильтром экстремумов. Индикатор не перерисовывается! В случае отключения фильтра экстремумов, индикатор показывает все точки, в которых есть паттерн. В случае включения фильтра экстремумов, работает условие – если в истории на Previous bars 1 свечей назад, были более высокие свечки и они дальше чем свеча Previous bars 2 – то тогда тако
FREE
Профиль рынка Форекс (сокращенно FMP) Чем это не является: FMP не является классическим отображением TPO с буквенным кодом, не отображает общий расчет профиля данных диаграммы и не сегментирует диаграмму на периоды и не вычисляет их. Что оно делает : Что наиболее важно, индикатор FMP будет обрабатывать данные, которые находятся между левым краем спектра, определяемого пользователем, и правым краем спектра, определяемого пользователем. Пользователь может определить спектр, просто потянув мышь
FREE
Этот инструмент добавляет исходную шкалу времени с заданной или автоматически рассчитанной разницей во времени в нижней части диаграммы. С помощью этого удобного инструмента вы можете улучшить читаемость диаграммы и уменьшить умственное напряжение, отображая ее в формате времени, знакомом вам или вашей стране. Даже если вам не нужно вычислять разницу во времени, простая замена шкалы времени по умолчанию на Local_Time может улучшить читаемость диаграммы. Local_Time поддерживает различные форма
FREE
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
Есть очень простой и удивительно эффективный индикатор под названием Pi Cycle, который начинает давать первое предупреждение. На него стоит взглянуть, чтобы не пропустить гигантского слона в гостиной! ) ) Что такое Pi Cycle? Pi Cycle - очень простой индикатор, созданный аналитиком Филипом   Свифтом   .   Он учитывает две (DMA смещенные скользящие средние   ) : 350- дневная средняя x 2 111- дневная средняя Оба могут считаться долгосрочными индикаторами. Второй, очевидно, более чувствителен к т
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 – удобный инструмент для создания, проверки, построения (конструктор стратегий) и применения торговых стратегий и идей, тестирования и использования отдельных индикаторов и их групп. Constructor включает в себя открытие, закрытие, сопровождение сделок, модуль усреднения, модуль восстановления, а также различные варианты торговли с усреднением или без, с применением мартингейла или без. К продукту можно подключить до 10 различных внешних индикаторов, подробная инструкция приложена в p
FREE
Time Scale
Taras Slobodyanik
4.87 (15)
Индикатор рисует шкалу времени на чарте. Вы можете указать смещение времени, настроить размер и шрифт для отображения на графике. Также вы можете выбрать желаемый формат отображения даты и времени. При зажатой средней кнопке мышки, и движении курсора, будет появляться ползунок на шкале Параметры Hours (time shift) — сдвиг времени (часы); Minutes (time shift) — сдвиг времени (минуты); Show time on mouse — показывать время под указателем; Precise time scale    —  рассчитывать время между барами;
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
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 для MetaTrader 4 позволяет быстро, легко и эффективно строить и тестировать стратегии в реальном времени. Он включает в себя 15 самых популярных технических индикаторов , которые вы можете использовать различными способами. Выберите индикаторы и укажите, как их использовать - после этого на графике стрелками будут отображаться сигналы на покупку (зеленые) и продажу (красные) согласно выбранной вами стратегии. Выберите уровни тейк-профит и стоп-лосс, и индикатор покажет результаты в
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
С этим продуктом покупают
Gann Made Easy - это профессиональная, но при этом очень простая в применении Форекс система, основанная на лучших принципах торговли по методам господина У.Д. Ганна. Индикатор дает точные BUY/SELL сигналы, включающие в себя уровни Stop Loss и Take Profit. ПОЖАЛУЙСТА, СВЯЖИТЕСЬ СО МНОЙ ПОСЛЕ ПОКУПКИ, ЧТОБЫ ПОЛУЧИТЬ ТОРГОВЫЕ ИНСТРУКЦИИ И ОТЛИЧНЫЕ ДОПОЛНИТЕЛЬНЫЕ ИНДИКАТОРЫ БЕСПЛАТНО! Вероятно вы уже не раз слышали о торговли по методам Ганна. Как правило теория Ганна отпугивает от себя не только н
Neuro Poseidon - новый индикатор от Дарьи Резуевой. Он сочетает точные торговые сигналы с адаптивными уровнями TP/SL , в результате создавая максимально выгодные сделки! TO SWITCH TO   ENG   PLEASE CHOOSE IT IN THE UPPER-RIGHT CORNER OF THE WEBSITE Напишите мне после покупки и получите Neuro Poseidon Assistant в подарок для автоматизации вашей торговли! Что отличает его от других индикаторов? 1. Доказанная прибыльность на всех активах и таймфреймах 2. На графике присутствуют только подтвержденн
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
Trend Catcher ind
Ramil Minniakhmetov
5 (11)
Trend Catcher   анализирует движения рыночных цен, используя комбинацию собственных и индивидуально разработанных адаптивных индикаторов анализа тренда. Он определяет истинное направление рынка, отфильтровывая краткосрочные шумы и фокусируясь на силе импульса, расширении волатильности и поведении ценовой структуры. Он также использует комбинацию сглаживающих и фильтрующих тренд индикаторов, таких как скользящие средние, RSI и фильтры волатильности. Мониторинг реальных операций, а также другие
M1 Arrow
Oleg Rodin
4.81 (21)
Индикатор M1 Arrow основан на естественных принципах торговли на рынке, включая анализ волатильности и объема. Индикатор можно использовать с любым таймфреймом и валютной парой. Один простой в использовании параметр индикатора позволит вам адаптировать сигналы к любой валютной паре и таймфрейму, на котором вы хотите торговать. Помимо основного алгоритма, основанного на сигналах на покупку и продажу, индикатор также имеет множество встроенных дополнительных стратегий, которые вы можете выбрать в
Этот продукт был обновлен для рынка 2026 года и оптимизирован для последних сборок MT5. УВЕДОМЛЕНИЕ ОБ ИЗМЕНЕНИИ ЦЕНЫ: Smart Trend Trading System сейчас доступен за $99 . Цена увеличится до $199 после следующих 30 покупок . СПЕЦИАЛЬНОЕ ПРЕДЛОЖЕНИЕ: После покупки Smart Trend Trading System отправьте мне личное сообщение, чтобы получить Smart Universal EA БЕСПЛАТНО и превратить сигналы Smart Trend в автоматические сделки. Smart Trend Trading System — это полноценная торговая система без перерисов
Scalper Inside PRO Scalper Inside PRO — это индикатор внутридневного тренда и скальпинга, использующий эксклюзивные встроенные алгоритмы для оценки направления рынка и ключевых целевых уровней. Индикатор автоматически рассчитывает точки входа и выхода и несколько уровней фиксации прибыли, а также показывает подробную статистику эффективности, благодаря чему вы видите, как различные инструменты и стратегии вели себя на исторических данных. Это помогает выбирать инструменты, подходящие под текущие
PZ Day Trading
PZ TRADING SLU
3.67 (3)
Этот индикатор обнаруживает разворот цены зигзагообразно, используя только анализ ценового действия и канал Дончиана. Он был специально разработан для краткосрочной торговли, без перекраски или перекраски вообще. Это фантастический инструмент для проницательных трейдеров, стремящихся увеличить сроки своих операций. [ Руководство по установке | Руководство по обновлению | Устранение неполадок | FAQ | Все продукты ] Удивительно легко торговать Это обеспечивает ценность на каждом таймфрейме Реал
Этот продукт был обновлен для рынка 2026 года и оптимизирован для последних сборок MT5. УВЕДОМЛЕНИЕ ОБ ИЗМЕНЕНИИ ЦЕНЫ: Atomic Analyst сейчас доступен за $99 . Цена увеличится до $199 после следующих 30 покупок . СПЕЦИАЛЬНОЕ ПРЕДЛОЖЕНИЕ: После покупки Atomic Analyst отправьте мне личное сообщение, чтобы получить Smart Universal EA БЕСПЛАТНО и превратить сигналы Atomic Analyst в автоматические сделки. Atomic Analyst — это индикатор Price Action без перерисовки, без перерисовывания истории и без
Quant Direction
Georgios Kalomoiropoulos
Quant Direction — это инструмент трехмерного анализа рынка. Он обеспечивает полностью объективный, основанный на алгоритмах анализ рынка, одновременно вычисляя точные процентные отклонения по нескольким параметрам. Разработанный с использованием передовых инструментов моделирования на основе искусственного интеллекта и тщательно протестированный, алгоритм предназначен для интерпретации рынка с уникальной точностью. Он может анализировать любую валютную пару или финансовый инструмент на вашей пла
M1 SNIPER — это простая в использовании торговая система. Это стрелочный индикатор, разработанный для тайм фрейма M1. Индикатор можно использовать как отдельную систему для скальпинга на тайм фрейме M1, а также как часть вашей существующей торговой системы. Хотя эта торговая система была разработана специально для торговли на M1, ее можно использовать и с другими тайм фреймами. Первоначально я разработал этот метод для торговли XAUUSD и BTCUSD. Но я считаю этот метод полезным и для торговли на д
Currency Strength Wizard — очень мощный индикатор, предоставляющий вам комплексное решение для успешной торговли. Индикатор рассчитывает силу той или иной форекс-пары, используя данные всех валют на нескольких тайм фреймах. Эти данные представлены в виде простых в использовании индексов валют и линий силы валют, которые вы можете использовать, чтобы увидеть силу той или иной валюты. Все, что вам нужно, это прикрепить индикатор к графику, на котором вы хотите торговать, и индикатор покажет вам ре
Super Signal – Skyblade Edition Профессиональная система трендовых сигналов без перерисовки и без задержек с исключительным процентом выигрышей | Для MT4 / MT5 Лучше всего работает на младших таймфреймах, таких как 1 минута, 5 минут и 15 минут. Основные характеристики: Super Signal – Skyblade Edition — это интеллектуальная система сигналов, специально разработанная для трендовой торговли. Она использует многоуровневую фильтрацию, чтобы выявлять только сильные направленные движения, подкреплённ
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
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
А. Что такое A2SR?   * Это опережающий технический индикатор (без перерисовки, без запаздывания) . -- Учебники : -- на https://www.mql5.com/ru/blogs/post/734748/page4#comment_16532516   -- и https://www.mql5.com/ru/users/yohana/blog A2SR имеет особую технику определения уровней Поддержки (спроса) и Сопротивления (предложения). В отличие от обычного способа, который мы видели в сети, A2SR имеет оригинальную концепцию определения фактических уровней SR. Оригинальная техника не была взята из Интерн
TREND LINES PRO помогает понять, где рынок действительно меняет направление. Индикатор показывает реальные развороты тренда и места, где крупные участники входят повторно. Вы видите BOS-линии смены тренда и ключевые уровни старших таймфреймов — без сложных настроек и лишнего шума. Сигналы не перерисовываются и остаются на графике после закрытия бара. VERSION MT 5     -     Раскрывает свой максимальный потенциал в связке с индикатором  RFI LEVELS PRO Что показывает индикатор: Реальные смены   тр
Сложно найти и дефицит по частоте, дивергенции являются одним из самых надежных торговых сценариев. Этот индикатор автоматически находит и сканирует регулярные и скрытые расхождения, используя ваш любимый осциллятор. [ Руководство по установке | Руководство по обновлению | Устранение неполадок | FAQ | Все продукты ] Легко торговать Находит регулярные и скрытые расхождения Поддерживает много известных генераторов Реализует торговые сигналы на основе прорывов Отображает подходящие уровни стоп-
Индикатор точно показывает точки разворота и зоны возврата цены, где входят крупные игроки . Вы видите, где формируется новый тренд, и принимаете решения с максимальной точностью, держа контроль над каждой сделкой. VERSION MT5     -     Раскрывает свой максимальный потенциал в связке с индикатором  TREND LINES PRO Что показывает индикатор: Разворотные конструкции и разворотные уровни с активацией в начале нового тренда. Отображение уровней  TAKE PROFIT  и  STOP LOSS  с минимальным соотношением
KURAMA GOLD SIGNAL PRO (MT4) — 7-уровневый фильтр · Автоматический TP/SL · Оценка качества · Сохранение истории сигналов | Полная торговая система для XAUUSD Без перерисовки в реальном времени. В момент появления сигнала стрелка, вход, TP и SL фиксируются на месте и больше никогда не смещаются. Вы торгуете именно этот сигнал в реальном времени. А в версии 7.20 каждый фактически отправленный сигнал автоматически сохраняется и точно восстанавливается после перезапуска. БОНУС ДЛ
Legacy of Gann
Pavel Zamoshnikov
4.83 (12)
Индикатор очень точно определяет уровни возможного окончания тренда и фиксации профита. Метод определения уровней основан на идеях В.Д.Ганна (W.D.Gann), с использованием алгоритма, разработанного его последователем Кириллом Боровским. Чрезвычайно высокая достоверность достижения уровней (по словам К.Боровского  – 80-90%) Незаменим для любой торговой стратегии – каждому трейдеру необходимо определить точку выхода из рынка! Точно определяет цели на любых таймфремах и любых инструментах (форекс, ме
Advanced Supply Demand
Bernhard Schweigert
4.91 (302)
Специальное предложение – скидка 30% Этот индикатор является уникальным, качественным и доступным инструментом для торговли, включающим в себя наши собственные разработки и новую формулу. В обновленной версии появилась возможность отображать зоны двух таймфреймов. Это означает, что вам будут доступны зоны не только на старшем ТФ, а сразу с двух таймфреймов - таймфрейма графика и старшего: отображение вложенных зон. Обновление обязательно понравится всем трейдерам, торгующим по зонам спроса и пре
Artemis Gold M1 Scalper Artemis Gold M1 Scalper — это премиальный индикатор для MT4, созданный исключительно для трейдеров XAUUSD, которым нужен более чистый и структурированный подход к скальпингу золота на таймфрейме M1. Это не обычный стрелочный индикатор. Artemis объединяет динамические уровни поддержки и сопротивления, подтверждение тренда, фильтрацию импульса, торговые уровни на основе ATR, оценку качества сигнала, анализ состояния рынка, силу торговой сессии, защиту активной сделки и чист
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
PRO Renko System - это высокоточная система торговли на графиках RENKO. Система универсальна. Данная торговая система может применяться к различным торговым инструментам. Система эффективно нейтрализует так называемый рыночный шум, открывая доступ к точным разворотным сигналам. Индикатор прост в использовании и имеет лишь один параметр, отвечающий за генерацию сигналов. Вы легко можете адаптировать алгоритм к интересующему вас торговому инструменту и размеру ренко бара. Всем покупателям с удовол
Этот индикатор представляет собой индикатор автоматического волнового анализа, который идеально подходит для практической торговли! Случай... Примечание.   Я не привык использовать западные названия для классификации волн. Из-за влияния соглашения об именах Тан Лунь (Тан Чжун Шуо Дзен) я назвал основную волну   ручкой   , а вторичную полосу волн —   сегментом   Ат. в то же время сегмент имеет направление тренда. Именование   в основном является трендовым сегментом   (этот метод именования буде
Channel Trend Bands  MTF – 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 w
M & W Pattern Pro is an advanced scanner for M and W patters , it uses extra filters to ensure scanned patterns are profitable. The indicator can be used with all symbols and time frames. The indicator is a non repaint indicator with accurate statistics calculations. To use , simply scan the most profitable pair using the statistics dashboard accuracy , then enter trades on signal arrow and exit at the TP and SL levels. STATISTICS : Accuracy 1 : This is the percentage of the times price hits TP
Extreme Value Sniper is a detrended price indicator  Indicator finds the potential reversal levels by checking value ranges and price cycles. MT5 Version of the product :  https://www.mql5.com/en/market/product/114550 It shows the overbought and oversold levels using the average range. Overbought Levels are between 4 and 10 Oversold levels are bewtween -4 and -10 Those levels can be used as a reversal levels. Extreme Value Sniper look for some special divergence and convergence patterns to c
TrendMaestro
Stefano Frisetti
4 (4)
Attention: beware of SCAMS, TRENDMAESTRO is only ditributed throught MQL5.com market place. note: this indicator is for METATRADER4, if you want the version for METATRADER5 this is the link:  https://www.mql5.com/it/market/product/108106 TRENDMAESTRO ver 2.5 TRENDMAESTRO recognizes a new TREND from the start, he never makes mistakes. The certainty of identifying a new TREND is priceless. DESCRIPTION TRENDMAESTRO identifies a new TREND in the bud, this indicator examines the volatility, volumes a
Другие продукты этого автора
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
## 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
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
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
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
================================================================   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
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
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
======================================= 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.   BUY  signal : Bear FVG is broken upward   → price likely to rise   SELL si
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
Фильтр:
Нет отзывов
Ответ на отзыв