ScalpEA v2 preview

5

Hi, I would like to show you limited version of my EA which I am selling here in full version.
But this system might have less features but is still working well, again, try it on demo first!
Difference between full and preview is almost only in machine learning part. If you have any question visit my channel.

How does it work?:

  1. EA waits until there are 3 candles (H1) after each other and between (candle 1 top wick) and (candle 3 bottom wick) is gap
  2. After that EA places pending order below candle 3 bottom wick and waits if market returns to the gap.
  3. Thats all it does.

Some additonal info about full version and configs here
Channel where to discuss and share your ideas

Graph at the screensots is from backtest with default settings on XAUUSD.
Backtest it and test it on demo first, this version does not have all the protection that full version does. Simply test it first, no profit is guaranteed!
FYI, I am using full version on VT Markets, Vantage and Purple trading.
Also make sure to enable Algoritmic trading in your Metatrader settings or it will not weork! (Tools - Options - Expert advisors)

You can find full ScalpEA v2 here: https://www.mql5.com/en/market/product/167553

AI generated description:

ScalpEA V2 Preview — FVG Scalping Expert Advisor

AI generated description:

FVG Scalping Expert Advisor for MetaTrader 5

Version 2.650 | © Martin Vrlik 2026

━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━


OVERVIEW

────────

ScalpEA v2 is an automated Expert Advisor for MetaTrader 5 that detects and trades Fair Value Gap (FVG) zones. A Fair Value Gap is a price inefficiency that forms when three consecutive candles leave an uncovered gap between the high of the first candle and the low of the third candle (bullish FVG), or vice versa (bearish FVG). The EA places pending limit or stop orders at these zones and manages them through a complete set of filters, safety checks and risk controls.

The EA is primarily designed for XAUUSD (Gold) but works on any instrument and timeframe combination supported by MetaTrader 5.


HOW IT WORKS

────────────

On every new bar of the detection timeframe (sourceTF), the EA scans recent price history for valid FVG zones and stores them in an internal cache. On every new bar of the placement timeframe (placementTF), it reads that cache, applies all active filters, and places pending orders for zones that pass every check. The two timeframes can be set independently, allowing combinations such as detecting FVGs on H1 while evaluating placement conditions on M30.

Before placing any order the EA runs the following checks in sequence: duplicate detection (no two orders for the same FVG zone), candle direction filters, EMA trend filter, gap size filters, distance from current price, zone age, spread limit, margin and volume validation, and STOPS_LEVEL compliance. Only zones that pass all active filters receive a pending order.

If an order placement fails because the market is closed (for example at session open), the EA saves the order to a retry queue and attempts to place it again every tick for up to five minutes.


SIGNAL FILTERS

──────────────

Third candle confirmation — the candle that closes the FVG gap must move in the direction of the signal: green (close > open) for bullish FVG, red for bearish FVG.

All-three-candles confirmation — all three candles forming the FVG must be the same color. This is a stricter version of the above filter and ensures the FVG is backed by a consistent directional impulse rather than a mixed sequence.

Middle candle wick check — the wick of the middle candle (the one between the two gap candles) is inspected. If its counter-directional wick is more than wickMultiplier times longer than its directional wick, the signal is rejected. This filters out candles with strong rejection shadows that suggest weak momentum.

EMA(200) trend filter — before placing any pending order, the EA checks whether the last N closed H1 candles all lie entirely above (for BUY) or entirely below (for SELL) the 200-period Exponential Moving Average on the H1 chart. For a BUY order to be allowed, the Low of every one of those candles must be greater than the EMA value at that bar. For a SELL order, the High of every candle must be below the EMA. This filter always uses the H1 timeframe regardless of the sourceTF and placementTF settings. If not enough historical data is available at EA startup, the filter is skipped for that bar to prevent false blocking.

SELL-specific gap filters — SELL signals require a larger minimum gap size than BUY signals (controlled by a multiplier), and optionally a maximum gap size cap to avoid trading exhaustion moves.


PENDING ORDER MANAGEMENT

────────────────────────

The EA enforces a configurable maximum number of pending orders per direction (BUY and SELL are counted separately). When the FIFO system is enabled and the limit is reached, the oldest pending order is automatically removed to make room for the newest FVG signal. When FIFO is disabled, new signals are skipped until an existing pending order is filled or expires.

Pending orders are automatically removed when the FVG zone that generated them reaches its maximum age (maxFVGDurationMinutes). The age is measured from the time the FVG zone was formed, not from the time the order was placed.


RISK AND MONEY MANAGEMENT

──────────────────────────

The EA supports two lot sizing modes. In fixed mode, every trade uses the same lot size defined by the lotSize parameter. In dynamic mode, the lot size is calculated automatically for each trade based on the account balance, the configured risk percentage per trade, and the Stop Loss distance, ensuring that each trade risks no more than the specified percentage of the account balance.

SELL trades support independent TP, SL, risk percentage and pending order limit settings, because gold tends to behave differently during price drops versus rallies.

Every order is validated before sending: free margin is checked against the required margin, volume is verified against the symbol's minimum, maximum and step values, the number of pending orders is checked against the broker's account limit, and SL/TP distances are verified against the symbol's STOPS_LEVEL.


VISUALIZATION

─────────────

Active FVG zones are drawn as colored rectangles directly on the chart. Bullish zones use one color and bearish zones another, both fully configurable. Transparency, maximum number of visible zones and optional size labels can all be adjusted. Zones are automatically removed from the chart when they expire.


A dashboard panel in the top-left corner of the chart shows current account balance, equity, floating P/L, total EA profit since the start, number of closed trades, win rate, and the current number of pending orders per direction.


INPUT PARAMETERS

────────────────


Basic Settings
allowLong — enables BUY pending orders from bullish FVG zones. When set to false, no BUY orders are placed regardless of detected signals.
allowShort — enables SELL pending orders from bearish FVG zones. When set to false, no SELL orders are placed.
magicNumber — unique identifier assigned to all orders and positions opened by this EA. Change this value if you run multiple EAs on the same account to avoid conflicts.
configName — a text label displayed in the on-chart dashboard. Useful for identifying different parameter sets during optimization or testing.
tradeComment — comment string attached to every order and visible in the MT5 trade history.
sourceTF — the timeframe on which FVG zones are detected. The EA scans candle history on this timeframe to find valid gaps. Recommended values are H1 or H4.
placementTF — the timeframe that controls when pending orders are evaluated and placed. A new evaluation runs only at the open of each new bar on this timeframe. Must be equal to or smaller than sourceTF.

Money Management
lotSize — fixed lot size used for every trade when dynamic lot sizing is disabled.
useDynamicLotSizing — when true, the lot size is calculated automatically based on account balance, risk percentage and Stop Loss distance. When false, the fixed lotSize value is used.
riskPerTradePercent — maximum risk per trade expressed as a percentage of account balance. Active only when useDynamicLotSizing is true.

FVG Detection
maxFVGPerSide — maximum number of pending orders allowed simultaneously in one direction. BUY and SELL are counted separately.
minGapPoints_global — minimum FVG gap size in points. Gaps smaller than this value are ignored as noise. For XAUUSD, 30 points equals 3 pips.
maxFVGDurationMinutes — maximum age of an FVG zone in minutes, measured from the time the zone was formed. Zones older than this are removed from the cache and any pending orders generated by them are cancelled.
maxFVGDetectionWindow — how far back in history (in minutes) the EA searches for FVG zones during each detection pass.
entryOffsetPoints — offset added to the FVG boundary to set the entry price. For BUY orders: entry = FVG top + offset. For SELL orders: entry = FVG bottom - offset.
requireThirdCandleConfirmation — when true, the candle that closes the FVG must be in the direction of the signal (green for bullish, red for bearish).
requireAllThreeCandlesConfirmation — when true, all three candles forming the FVG must be the same color. Provides stronger directional confirmation than the single-candle check above.
enableMiddleWickCheck — when true, the EA inspects the wick of the middle candle of the FVG formation and rejects signals where the counter-directional wick is disproportionately large.
wickMultiplier — the maximum allowed ratio of the counter-directional wick to the directional wick of the middle candle. A value of 2.0 means the counter-directional wick may be at most twice as long as the directional wick.
useFIFOPendingSystem — when true and the pending order limit is reached, the oldest pending order is removed to make room for the new  signal. When false, new signals are skipped while the limit is full.

Take Profit and Stop Loss
takeProfitType — selects the TP mode. In this version only TP_FIXED (fixed take profit) is available.
takeProfitPips — distance from entry price to Take Profit in points. For XAUUSD: 500 points = 50 pips.
stopLossPips — distance from entry price to Stop Loss in points for BUY trades. The default is intentionally high and acts as a safety net; primary exits rely on the Take Profit.

SELL Trade Settings
useSellSpecificSettings — when true, SELL trades use the parameters defined in this group instead of the global BUY parameters. Recommended for XAUUSD due to asymmetric volatility between upward and downward moves.
sellTakeProfitPips — Take Profit distance for SELL trades in points, independent of takeProfitPips.
sellStopLossPips — Stop Loss distance for SELL trades in points.
sellRiskPercentOverride — overrides the risk percentage for SELL trades when dynamic lot sizing is active. Set to 0.0 to use the global riskPerTradePercent.
sellMaxPendingsOverride — overrides the maximum number of SELL pending orders. Set to 0 to use the global maxFVGPerSide.

SELL FVG Filters
sellRequireBiggerGap — when true, SELL signals require a larger minimum gap than BUY signals, multiplied by sellGapMultiplier.
sellGapMultiplier — multiplier applied to minGapPoints_global to calculate the effective minimum gap for SELL signals. Ignored when sellMinGapPointsFixed is greater than zero.
sellMaxGapPoints — maximum allowed SELL FVG size in points. Gaps larger than this are rejected as potential exhaustion moves. Set to 0 to disable this cap.
sellMinGapPointsFixed — fixed minimum gap size for SELL signals in points. When greater than zero, this value is used directly and sellGapMultiplier is ignored.

Safety Limits
maxSpreadPoints — maximum allowed spread in points. When the current spread exceeds this value, no new pending orders are placed. Position management (trailing, cleanup) continues regardless of spread.
maxDistanceFromPrice — maximum allowed distance between the pending order entry price and the current market price, in points. FVG zones whose entry price is too far from the current price are skipped.
countOpenPositionsInLimit — when true, open positions are counted together with pending orders toward the maxFVGPerSide limit. When false, only pending orders are counted.

EMA Trend Filter
enableEMATrendFilter — enables the EMA(200) trend filter. When active, a pending order is placed only if the last N closed H1 candles all lie entirely on the correct side of the 200-period EMA. BUY orders require all candles above EMA (Low > EMA), SELL orders require all candles below EMA (High < EMA). The filter always uses H1 regardless of sourceTF and placementTF.
emaTrendCandleCount — number of recently closed H1 candles that must satisfy the EMA condition. Higher values produce a stricter trend requirement. A value of 10 means all ten of the last closed H1 candles must fully clear the EMA line.

Visual Settings
showFVGOnChart — draws active FVG zones as filled rectangles on the chart.
bullFVGColor — fill color for bullish (BUY) FVG rectangles.
bearFVGColor — fill color for bearish (SELL) FVG rectangles.
fvgTransparency — transparency of the FVG rectangle fill. Range 0 (opaque) to 255 (fully transparent). A value of 90 produces a light, non-intrusive tint.
showOnlyActiveFVG — when true, only FVG zones relevant to the current allowLong/allowShort configuration are displayed. When false, all detected zones are shown regardless of trade direction settings.
maxFVGToShow — maximum number of FVG rectangles drawn on the chart per direction. Limits visual clutter when many zones are detected.
showFVGLabels — when true, a text label showing the gap size in points is displayed at the center of each FVG rectangle.

Debug and Testing
debug — enables verbose logging to the MT5 Journal tab. Outputs detailed information about FVG detection, filter decisions, lot calculations, EMA trend checks, SL/TP modifications, and order management. Disable in live trading to reduce log volume.


    Отзывы 2
    Samuel Henrique Almeida Ferreira
    540
    Samuel Henrique Almeida Ferreira 2026.05.14 00:54 
     

    Hello. I’m testing the EA and I would like to better understand the FVG identification logic used in it. I really liked the robot, and during my backtests it has shown very promising and impressive results. What criteria does the EA use to detect, validate, and invalidate FVGs? Is mitigation considered by candle close, wick touch, or another method? Does it use any additional filters for entries, trend, or confirmation? Thank you.

    Рекомендуем также
    Fibomathe
    Almaquio Ferreira De Souza Junior
    Fibomathe Indicator: Support and Resistance Tool for MT5 The Fibomathe Indicator is a technical analysis tool designed for MetaTrader 5 (MT5) 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.
    FREE
    Bneu Vortex Pro
    Marvinson Salavia Caballero
    Bneu Vortex Pro v2.03 — AMD Phase Engine + 30 Strategies + Adjustable Cloud AI Gate Bneu Vortex Pro v2.03 is the upgraded MetaTrader 5 Expert Advisor built around an Accumulation / Manipulation / Distribution (AMD) phase engine. Instead of using one fixed signal, the EA first classifies market phase, then only enables the strategies designed for that phase. Every potential trade is also passed through an adjustable Cloud AI quality gate. CORE UPGRADE The previous simple scorer has been repla
    FREE
    Crimson FX
    Michael Prescott Burney
    Crimson EA emerges as a force to be reckoned with on the USDJPY M15 chart, embodying the perfect fusion of 50 meticulously crafted strategies that span across trend analysis, hedging, and scalping disciplines. This powerhouse operates beyond the confines of conventional stop-loss and take-profit mechanisms, relying instead on precise entry and exit signals generated from its strategic arsenal. Coupled with an advanced reversal function, Crimson EA offers a protective shield to safeguard invest
    FREE
    Суть системы заключается в идентификации момента формирования "разворотной" композитной свечи с заданными характеристиками (размер свечи в пунктах, структура теней). В анализе японских свечей аналогами подобных разворотных моделей являются "Молот" (Hammer) и "Повешенный" (Hanging Man), но в данной системе тело свечи не обязательно должно быть маленьким, а результирующая свеча строится из нескольких свечей. Входные параметры системы: Range - задает максимальное количество баров, которые будут уча
    FREE
    Easy GOLD MT5
    Franck Martin
    3.91 (43)
    Easy Gold is the latest addition to the BotGPT family. It is surprising and very powerful. It is ideal for beginners due to its simplicity.  There is absolutely nothing to do, it's 100% automated, simply indicate the percentage of risk you want to take per trade and the EA is ready. Whatever your capital, the EA takes care of everything. Optimized on (XAUUSD).  Unleash all the power with the professional version (AGI Gold) and its connection to the neural network, available in my store. My othe
    FREE
    Description Quantum Gold Pro EA is a TRIAL Expert Advisor for MetaTrader 5, specially designed for Gold (XAUUSD) automated trading. This EA uses smart market entry logic, basket profit management, and built-in risk protection to support traders who want to test automated strategies before using the full version. Features Optimized for Gold (XAUUSD) Automatic Buy / Sell trading system Basket Take Profit control Spread and margin protection Dashboard display on chart Smart risk management Easy se
    FREE
    Morning Range Breakout (Бесплатная версия) Morning Range Breakout (Free Version) — это простой торговый советник, реализующий стратегию входа по пробою утреннего диапазона. Советник определяет максимум и минимум за заданный интервал времени (например, 08:00–10:00 UTC) и открывает сделку при пробое вверх или вниз. Бесплатная версия включает базовую логику без ограничений. Все параметры и сообщения на английском языке, согласно требованиям MQL5 Market. Основные возможности Определение утреннего д
    FREE
    MultiTrend Commander
    Джованни Орсани
    MultiTrend Commander — автоматическая торговая система Что это? Автоматизированное торговое программное обеспечение, которое: Интеллектуально определяет рыночные тренды Принимает решения на основе нескольких таймфреймов Автоматически управляет рисками Что оно делает? Определяет тренды Анализирует рынок в режиме реального времени Комбинирует сигналы с разных таймфреймов (15 мин, 1 час, 4 часа) Проверяет направление тренда перед входом Защищает ваш капитал Автоматически рассчитывает ст
    FREE
    !! THE FIRST FREE NEURAL NETWORK EA WITH EXCELLENT AND REALISTIC RESULTS.!! Another beautiful work of art, guys you don't know the powerful creations that are created by my developer Nardus Van Staden. Check him out guys and gals, he is the real deal, an amazing person and a professional when it comes to coding and business, if you want work done!, hit him up! you can get in contact with him HERE . THE FOLLOWING PRODUCT IS A FREE VERSION OF A PAID VERSION THAT IS TO COME, PROFITS ARE GOING TO B
    FREE
    Free automatic Fibonacci is an indicator that automatically plots a Fibonacci retracement based on the number of bars you select on the BarsToScan setting in the indicator. The Fibonacci is automatically updated in real time as new highest and lowest values appears amongst the selected bars. You can select which level values to be displayed in the indicator settings. You can also select the color of the levels thus enabling the trader to be able to attach the indicator several times with differe
    FREE
    Dual MACD & Stochastic Expert Advisor (EA)   – полностью автоматизированная торговая система, использующая два индикатора   MACD (Схождение/Расхождение скользящих средних)   в сочетании с   Стохастическим осциллятором   для поиска высокоточных торговых сигналов. Этот советник сочетает трендовый анализ MACD с импульсным анализом Stochastic, что обеспечивает точные точки входа и выхода. Основные особенности: •   Двойная стратегия MACD   – использует два MACD с разными настройками для подтвержден
    FREE
    Break Asian Range
    Damaso Perez Moneo Suarez
    Введение Break Asian Range — это торговый бот, который автоматизирует известную стратегию «азиатские максимумы и минимумы». Он разработан для обнаружения и торговли прорывами азиатской сессии на таких активах, как EURUSD, GBPJPY и другие волатильные пары. Он сочетает настраиваемые технические подтверждения с продвинутым управлением рисками (SL, TP, трейлинг-стоп, переменный риск, повторные входы...), подходящим как для консервативного, так и для агрессивного стиля торговли. Работает с нескольки
    FREE
    Tenet Support & Resistance Pro — это продвинутый индикатор для MetaTrader 5, разработанный, чтобы помочь трейдерам точно определять ключевые уровни поддержки и сопротивления на рынке. Индикатор автоматически строит горизонтальные линии на основе истории цен, выделяя стратегические зоны. Кроме того, он отображает в реальном времени текущую зону, где торгуется свеча , предоставляя ясное представление о критических зонах принятия решений. Уникальная функция — обратный отсчет рядом со свечой , ко
    FREE
    Данный информационный индикатор будет полезен тем, кто всегда хочет быть в курсе текущей ситуации на счете. VERSION MT 4 -  Больше полезных индикаторов Индикатор отображает такие данные, как прибыль в пунктах, процентах и валюте, а также спред по текущей паре и время до закрытия бара на текущем таймфрейме. Существует несколько вариантов расположения информационной строки на графике: Справа от цены (бегает за ценой); Как комментарий (в левом верхнем углу графика); В выбранном углу экрана. Так же
    FREE
    Gap Catcher
    Mikita Kurnevich
    5 (5)
    Read more about my products Gap Cather - is a fully automated trading algorithm based on the GAP (price gap) trading strategy. This phenomenon does not occur often, but on some currency pairs, such as AUDNZD, it happens more often than others. The strategy is based on the GAP pullback pattern. Recommendations:  AUDNZD  TF M1  leverage 1:100 or higher  minimum deposit 10 USD Parameters:  MinDistancePoints - minimum height of GAP  PercentProfit - percentage of profit relative to GAP level
    FREE
    Trading Sessions by Mahefa R is an indicator for MetaTrader 5 that visually identifies the four main trading sessions: New York, London, Tokyo, and Sydney . Designed to provide a clean, intuitive, and professional market view, it highlights the most active periods of the Forex market using smart visualization of session ranges , session-specific candle colors , and daily separators . Main Features: Automatic detection of the 4 major sessions New York London Tokyo Sydney Each session is fully c
    FREE
    VolumeBasedColorsBars — Free Powerful Volume Analysis for All Traders Unlock the hidden story behind every price bar! VolumeBasedColorsBars is a professional-grade, 100% FREE indicator that colorizes your chart candles based on real, adaptive volume analysis. Instantly spot surges in market activity, identify exhaustion, and catch the moves that matter. This indicator gives you:    • Dynamic color-coded bars for instant volume context    • Adaptive thresholds based on historical, session-awar
    FREE
    CommunityPower MT5
    Andrey Khatimlianskii
    4.69 (90)
    CommunityPower EA   — это советник для терминала MetaTrader   4/5, созданный сообществом и для сообщества. Он бесплатный, универсальный, и очень мощный, и позволяет реализовать множество торговых стратегий. Идея простая Ваши предложения + мой код = выгода для всех! Это машинка для печатания денег? Конечно, нет. Это инструмент, который позволяет создать и запустить Вашу собственную стратегию, и только от Вас зависит, будет ли она прибыльной. Есть ли готовые сет-файлы? Да, Вы можете найти множе
    FREE
    ToolBot Probabilistic Analysis - FREE   An effective indicator for your negotiations The toolbot indicator brings the calculation of candles and a probabilistic analysis so that you have more security on your own. Also test our  FREE tops and bottoms indicator: :   https://www.mql5.com/pt/market/product/52385#description Also test our  FREE (RSI, ATR, ADX, OBV) indicator:   https://www.mql5.com/pt/market/product/53448#description Try our EA ToolBot for free:   https://www.mql5.com/market/prod
    FREE
    Clock Trades – Точная торговля по времени! Clock Trades EURUSD — это бесплатная, ограниченная версия Clock Trades , умного и надёжного советника, который позволяет автоматизировать сделки по времени Эта бесплатная версия работает исключительно на EURUSD и предоставляет полный функционал на одном из самых популярных торговых инструментов в мире бесплатно. Clock Trades — это умный и надёжный советник, позволяющий автоматизировать сделки по времени . Установите точные час и минуту для открытия
    FREE
    Statistical Arbitrage Spread Generator for Cointegration [MT5] What is Pair Trading? Pair trading is a market-neutral strategy that looks to exploit the relative price movement between two correlated assets — instead of betting on the direction of the market. The idea? When two assets that usually move together diverge beyond a statistically significant threshold, one is likely mispriced. You sell the expensive one, buy the cheap one , and profit when they converge again. It’s a statistica
    FREE
    BTC Scalper - Automated RSI Breakout Strategy for BTCUSD Unlock the power of automated trading with BTC Scalper! This expert advisor is a fully autonomous trading strategy, designed to capitalize on fast-moving BTCUSD markets. It leverages a potent combination of RSI Breakouts and two Exponential Moving Averages (EMA) to find high-probability trade entries, ensuring optimal confluence for success. Key Features: Fully Automated Trading : Set it, forget it, and let BTC Scalper handle your trades 2
    FREE
    EasyTrading Panel Basic by Vexo EasyTrading Panel Basic is a free manual trade execution panel for MetaTrader 5. It provides a streamlined workflow for placing market orders with automatic risk-based lot sizing, stop loss, and take profit calculation. The panel works on any symbol and any timeframe. How It Works The panel displays on-chart with your account balance, current lot size, risk percentage, reward-to-risk ratio, and calculated stop loss. All values update in real time as you adjust par
    FREE
    Zigzag star
    Ahmed Mohammed Bakr Bakr
    ZigZag Expert Advisor – Strategy Description The ZigZag Expert Advisor (EA) is an advanced price-action trading system designed to identify significant market swings , trend structure , and high-probability reversal zones using the ZigZag algorithm. The EA filters market noise by focusing only on meaningful highs and lows, allowing it to trade in harmony with market structure rather than reacting to random price fluctuations. Core Strategy Logic Detects higher highs, higher lows, lower highs, an
    FREE
    Short Description GoldEdge Bollinger Bounce Scalper is a precision mean reversion EA designed to capture bounce entries when price stretches to the outer Bollinger Bands and shows signs of reversal. Full Description GoldEdge Bollinger Bounce Scalper is built for traders who want a structured and disciplined bounce trading system. This Expert Advisor is designed to identify short-term overextended price conditions and react when the market shows potential to return back toward balance. Instead of
    FREE
    USDJPY Keltner Range M15 Strategy is a fully automated MetaTrader 5 strategy designed to capture structured breakout opportunities on USDJPY using daily directional confirmation, Keltner Channel reference levels, volatility-buffered pending STOP entries and simple fixed-risk management. The strategy is designed for USDJPY on the M15 timeframe. Its goal is to participate when the market shows directional intent through daily high or daily low behavior, while using Keltner Channel structure and
    FREE
    Fibo Trader - это советник, позволяющий создавать автоматизированные шаблоны для паттернов колебаний по значениям коррекций Фибоначчи, используя полностью автоматизированную и динамически созданную сетку. Данный процесс достигается путем оптимизации советника, с последующим его запуском в автоматическом режиме. Советник позволяет переключаться между автоматическим и ручным режимом. В ручном режиме пользователю предоставляется графическая панель, позволяющая управлять текущими торговыми условиями
    FREE
    Описание эксперта Алгоритм оптимизирован для торговли Nasdaq Торговый эксперт основан на постоянном ведении длинных позиций с ежедневной фиксации прибыли, если такова имеется и временном прекращении работы при осуществлении длительных коррекций. Принцип торговли эксперта, основан на исторической волатильности, торгуемого актива. Значения Размера коррекции (InpMaxMinusForMarginCallShort) и Максимального падения (InpMaxMinusForMarginCallLong), задаются вручную. Рекомендации по эксплуатации Р
    FREE
    CRESPIN V16.1 MARKET - Système de Trading Automatisé Nouvelle Génération Découvrez le système de trading automatisé le plus abouti de la série CRESPIN. Version 16.1 - Une révolution dans la gestion automatisée pour comptes CENT. Des années de développement concentrées dans un seul outil professionnel. LIRE ABSOLUMENT TOUT LE DESCRIPTIF (Après achat ,M'écrire via la messagerie pour  recevoir la configuration  optimale  pour backtesting , demo , et réel ) POURQUOI V16.1 CHANGE TOUT pour XAUUSD Arc
    FREE
    TrendView — Clear Trend Visualization for Confident Trading TrendView is a free trend indicator designed to give traders a clean and reliable view of market direction. It displays clear trendlines in three colors, making it easy to identify bullish, bearish, and neutral phases without cluttering the chart with unnecessary elements. Whether you are monitoring long-term market structure or short-term price action, TrendView helps you keep your focus on the bigger picture. For traders who also w
    FREE
    С этим продуктом покупают
    Quantum Queen MT5
    Bogdan Ion Puscasu
    4.98 (587)
    Привет, трейдеры! Я —   Королева Quantum   , жемчужина всей экосистемы Quantum и самый высокорейтинговый и продаваемый советник в истории MQL5. Более 20 месяцев торговли на реальных счетах позволили мне заслужить звание бесспорной королевы XAUUSD. Моя специальность? ЗОЛОТО. Моя миссия? Обеспечивать стабильные, точные и разумные результаты торговли — снова и снова. IMPORTANT! After the purchase please send me a private message to receive the installation manual and the setup instructions. Цена
    Quantum Athena
    Bogdan Ion Puscasu
    5 (22)
    Квантовая Афина — точность, выкованная из опыта Здравствуйте, трейдеры! Я —   Квантовая Афина   , облегченная версия легендарной Квантовой Королевы, усовершенствованная и модернизированная с учетом современных рыночных условий. Я не пытаюсь быть всем сразу. Я сосредотачиваюсь на том, что работает сейчас. Моя специализация? ЗОЛОТО. Моя миссия? Обеспечивать высокую эффективность, результативность и интеллектуальную оптимизацию торговых операций — с точностью в основе. IMPORTANT! After the pu
    Pulse Engine
    Jimmy Peter Eriksson
    4.94 (17)
    ЦЕНА В ЧЕСТЬ СТАРТА – ОСТАЛОСЬ ВСЕГО НЕСКОЛЬКО ЭКЗЕМПЛЯРОВ! Главная цель этой системы — долговременная работа в режиме реального времени без использования каких-либо рискованных мартингейлов или сеток. ОЧЕНЬ ОГРАНИЧЕННОЕ КОЛИЧЕСТВО ЭКЗЕМПЛЯРОВ ПО ТЕКУЩЕЙ ЦЕНЕ Окончательная цена:   1499 долларов США [Сигнал в реальном времени]    |    [Результаты тестирования]    |    [Руководство по настройке]    |    [Результаты FTMO] Другой подход к торговле Торговая система Pulse Engine не использует никаких
    BB Return mt5
    Leonid Arkhipov
    4.99 (93)
    BB Return — советник для торговли золотом (XAUUSD). Эту торговую идею я использовал ранее в ручной торговле. В основе стратегии — возврат цены к диапазону Bollinger Bands , но не в лоб и не по каждому касанию. Для рынка золота одних лент недостаточно, поэтому в советнике применяются дополнительные фильтры, отсекающие лишние и нерабочие ситуации. Открываются только те сделки, где логика возврата действительно оправдана.   Принципы торговли — в торговле не используются сетки, мартингейл и усреднен
    TwisterPro Scalper
    Jorge Luiz Guimaraes De Araujo Dias
    4.39 (71)
    Меньше сделок. Лучшие сделки. Стабильность прежде всего. • Живой сигнал Режим 1 Twister Pro EA — это высокоточный скальпинговый советник, разработанный исключительно для XAUUSD (Золото) на таймфрейме M15. Торгует реже — но каждая сделка имеет смысл. Каждый вход проходит через 5 независимых уровней проверки перед открытием ордера, что обеспечивает чрезвычайно высокую точность на стандартной конфигурации. ТРИ РЕЖИМА: Mode 1 (рекомендуется) — Очень высокая точность, мало сделок в неделю. Создан д
    Quantum Valkyrie
    Bogdan Ion Puscasu
    4.73 (140)
    Квантовая Валькирия - Точность. Дисциплина. Исполнение Со скидкой       Цена.   Цена будет увеличиваться на 50 долларов за каждые 10 покупок. Текущий сигнал:   НАЖМИТЕ ЗДЕСЬ   Публичный канал Quantum Valkyrie MQL5:   НАЖМИТЕ ЗДЕСЬ ***Купите Quantum Valkyrie MT5 и получите Quantum Emperor или Quantum Baron бесплатно!*** За подробностями обращайтесь в личные сообщения! IMPORTANT! After the purchase please send me a private message to receive the installation manual and the setup instructio
    Goldwave EA MT5
    Shengzu Zhong
    4.58 (40)
    Реальный торговый счёт   LIVE SIGNAL (IC MARKETS): https://www.mql5.com/en/signals/2339082 Данный EA использует абсолютно ту же торговую логику и те же правила исполнения, что и верифицированный сигнал реальной торговли, представленный на MQL5.При использовании рекомендованных и оптимизированных настроек, а также при работе с надёжным ECN / RAW-spread брокером (например, IC Markets или TMGM) , поведение EA в реальной торговле спроектировано таким образом, чтобы максимально соответствовать струк
    Quantum King EA
    Bogdan Ion Puscasu
    4.98 (179)
    Quantum King EA — интеллектуальная мощь, усовершенствованная для каждого трейдера IMPORTANT! After the purchase please send me a private message to receive the installation manual and the setup instructions. Специальная цена запуска Живой сигнал:       КЛИКНИТЕ СЮДА Версия MT4:   ЩЕЛКНИТЕ ЗДЕСЬ Канал Quantum King:       Кликните сюда ***Купите Quantum King MT5 и получите Quantum StarMan бесплатно!*** За подробностями обращайтесь в личном сообщении! Управляйте   своей торговлей точно и
    Chiroptera
    Rob Josephus Maria Janssen
    4.76 (25)
    Prop Firm Ready! Chiroptera is a multi-currency, single trade Expert Advisor that operates in the quiet hours of the night. It uses single-placed trades with tactically placed Take Profits and Stop Losses, that are continuously adjusted to maximize gains and minimize losses. It keeps track of past and upcoming news reports to ensure impacts are minimized and carefully measures real-time volatility to prevent impacts due to unpredictable geo-political disturbances caused by Tweets and other ad-ho
    The Gold Reaper MT5
    Profalgo Limited
    4.5 (94)
    ПРОП ФИРМА ГОТОВА!   (   скачать SETFILE   ) WARNING : Осталось всего несколько экземпляров по текущей цене! Окончательная цена: 990$. Получите 1 советник бесплатно (для 2 торговых счетов) -> свяжитесь со мной после покупки Ultimate Combo Deal   ->   click here Live Signal YouTube Reviews Добро пожаловать в Gold Reaper! Созданный на основе очень успешного Goldtrade Pro, этот советник был разработан для одновременной работы на нескольких таймфреймах и имеет возможность устанавливать частоту т
    Gold Safe EA
    Anton Zverev
    5 (4)
    Живой Сигнал:   https://www.mql5.com/en/signals/2360479 Таймфрейм: M1 Валютная пара: XAUUSD Varko Technologies  - это не бизнес, это философия свободы. Я заинтересован в долгосрочном сотрудничестве и построением репутации. Моя цель - это постоянно совершенствовать и оптимизировать продукт под меняющиеся рыночные условия. Gold Safe EA - в алгоритме одновременно используется несколько стратегий, главная философия это акцент на контроле минусовых сделок и риска. Используется несколько уровней за
    Scalper speed with sniper entries. Built for Gold. 33% OFF only  this weekend for 299 USD (ends Sunday midnight)   |  regular price 499 USD  |   final   price  599  USD Check the Live signal  or Manual Hybrid scalper combining scalping speed with single position or intelligent recovery for XAUUSD. 4 trading strategies | Triple timeframe confirmation | 3 layers of account protection. Most trades close in under 30 minutes — minimal market exposure, maximum control. Wave Rider uses triple timefram
    Gold House MT5
    Chen Jia Qi
    4.44 (50)
    Gold House — Система торговли на пробоях свинг-структуры золота Скорое повышение цены. По текущей цене осталось всего несколько лицензий (3/100) . Следевая целевая цена: $999. Живые сигналы: Режим Profit Priority: https://www.mql5.com/en/signals/2359124 Режим BE Priority: https://www.mql5.com/en/signals/2372604 Важно: после покупки, пожалуйста, отправьте нам личное сообщение, чтобы получить рекомендуемые параметры, инструкцию, меры предосторожности и советы по использованию. (MQL5 messaging):
    Akali
    Yahia Mohamed Hassan Mohamed
    3.24 (82)
    LIVE SIGNAL: Нажмите здесь, чтобы посмотреть живую статистику ВАЖНО: СНАЧАЛА ПРОЧИТАЙТЕ РУКОВОДСТВО Крайне важно прочитать руководство по настройке перед использованием этого советника, чтобы понять требования к брокеру, режимы стратегии и «умный подход». Нажмите здесь, чтобы прочитать официальное руководство Akali EA Обзор Akali EA — это высокоточный скальпирующий советник (Expert Advisor), разработанный специально для золота (XAUUSD). Он использует алгоритм чрезвычайно жесткого трейлинг-стопа
    Wall Street Robot is a professional trading system developed exclusively for US stock indices, focused on S&P500 and Dow Jones. These markets are known for their high liquidity, structured movements and strong reaction to global economic flows, making them ideal for algorithmic trading strategies based on precision and discipline. By concentrating only on these indices, the system is able to adapt closely to their behavior, volatility patterns and intraday dynamics, instead of trying to operate
    Full Throttle DMX
    Stanislav Tomilov
    5 (9)
    Full Throttle DMX - Реальная стратегия,   реальные результаты   Full Throttle DMX — это мультивалютный торговый советник, предназначенный для работы с валютными парами EURUSD, AUDUSD, NZDUSD, EURGBP и AUDNZD. Система построена на классическом торговом подходе, используя известные технические индикаторы и проверенную рыночную логику. Советник содержит 10 независимых стратегий, каждая из которых предназначена для выявления различных рыночных условий и возможностей. В отличие от многих современных
    Bonnitta EA MT5
    Ugochukwu Mobi
    3.38 (21)
    Советник Bonnitta EA  основан на стратегии отложенной позиции ( PPS ) и очень продвинутом алгоритме скрытной торговли. Стратегия Bonnitta EA представляет собой комбинацию секретного пользовательского индикатора, линий тренда, уровней поддержки и сопротивления ( Price Action ) и наиболее важного алгоритма скрытной торговли, упомянутого выше. НЕ ПОКУПАЙТЕ EA БЕЗ КАКИХ-ЛИБО ПРОВЕРОК НА РЕАЛЬНЫЕ ДЕНЬГИ БОЛЕЕ 3 МЕСЯЦЕВ, МНЕ ЗАНИМАЛОСЬ БОЛЕЕ 100 НЕДЕЛЬ (БОЛЕЕ 2 ЛЕТ), ЧТОБЫ ПРОВЕРИТЬ BONNITTA EA НА РЕ
    AnE
    Thi Ngoc Tram Le
    5 (3)
    ANE — Экспертный советник Gold Grid ANE — это полностью автоматизированный Экспертный советник (Expert Advisor), разработанный для торговли XAUUSD (Золото) на таймфрейме M15 с использованием сеточной стратегии усреднения . Важно: Перед запуском советника на реальном счёте протестируйте его на демо-счёте, чтобы понять поведение системы усреднения. Сигнал в реальном времени ANE Official Channel Торговая стратегия ANE управляет позициями как единой группой (корзиной). При благоприятных условиях с
    ВАЖНЫЙ   : Этот пакет будет продаваться по текущей цене только в очень ограниченном количестве экземпляров.    Цена очень быстро вырастет до 1499$    Включено более 100 стратегий   , и их будет еще больше! БОНУС   : При цене 999$ или выше — выберите  5     моих других советника бесплатно!  ВСЕ ФАЙЛЫ НАБОРА ПОЛНОЕ РУКОВОДСТВО ПО НАСТРОЙКЕ И ОПТИМИЗАЦИИ ВИДЕО РУКОВОДСТВО ЖИВЫЕ СИГНАЛЫ ОБЗОР (третья сторона) NEW - VERSION 5.0 - ONECHARTSETUP Добро пожаловать в ИДЕАЛЬНУЮ СИСТЕМУ ПРОРЫВА! Я рад п
    Quantum Emperor MT5
    Bogdan Ion Puscasu
    4.85 (504)
    Представляем       Quantum Emperor EA   , новаторский советник MQL5, который меняет ваш подход к торговле престижной парой GBPUSD! Разработан командой опытных трейдеров с опытом торговли более 13 лет. IMPORTANT! After the purchase please send me a private message to receive the installation manual and the setup instructions. ***Купите Quantum Emperor EA и вы можете получить  Quantum StarMan   бесплатно!*** За подробностями обращайтесь в личном сообщении Подтвержденный сигнал:   нажмите здесь В
    Aurum AI mt5
    Leonid Arkhipov
    4.86 (44)
    ОБНОВЛЕНИЕ — ДЕКАБРЬ 2025 В конце ноября 2024 года советник Aurum был выпущен в продажу. Всё это время он торговал в реальных условиях без фильтра новостей, без дополнительных защитных условий и без сложных ограничений — и при этом уверенно оставался на плаву. Live Signal (launch April 14, 2026) Этот год работы на реальном рынке наглядно показал надёжность самой торговой системы. И только после этого, опираясь уже на реальный опыт и статистику, в декабре 2025 года мы выпустили большое обновлен
    The Gold Phantom
    Profalgo Limited
    4.57 (30)
    ГОТОВО К ИСПОЛЬЗОВАНИЮ РЕКВИЗИТА! -->   СКАЧАТЬ ВСЕ ФАЙЛЫ ДЛЯ СЪЕМОК ПРЕДУПРЕЖДЕНИЕ: Осталось всего несколько экземпляров по текущей цене! Окончательная цена: 990$ НОВИНКА (от 399$)   : Выберите 1 советника бесплатно! (ограничено 2 номерами торговых счетов, любые мои советники, кроме UBS) Выгодное комплексное предложение     ->     нажмите здесь ПРИСОЕДИНИТЬСЯ К ОБЩЕСТВЕННОЙ ГРУППЕ:   Нажмите здесь   Сигнал в реальном времени Live Signal 2 !! ЗОЛОТОЙ ФАНТОМ УЖЕ ЗДЕСЬ !! После оглушительного
    Quantum Bitcoin EA
    Bogdan Ion Puscasu
    4.83 (120)
    Quantum Bitcoin EA   : нет ничего невозможного, вопрос лишь в том, как это сделать! Шагните в будущее торговли   биткойнами   с   Quantum Bitcoin EA   , последним шедевром от одного из лучших продавцов MQL5. Разработанный для трейдеров, которым нужна производительность, точность и стабильность, Quantum Bitcoin переопределяет возможности в изменчивом мире криптовалют. ВАЖНО!   После покупки отправьте мне личное сообщение, чтобы получить руководство по установке и инструкции по настройке. Цен
    XIRO Robot MT5
    MQL TOOLS SL
    4.85 (26)
    XIRO Robot is a professional trading system created to operate on two of the most popular and liquid instruments on the market:  GBPUSD, XAUUSD and BTCUSD . We combined two proven and well tested systems, enhanced them with multiple new improvements, optimizations and additional protective mechanisms, and integrated everything into one advanced and unified solution. As a result of this development process, XIRO Robot was created. Robot was designed for traders who are looking for a reliable and
    EA Legendary Multi Strategy — Профессиональный мульти-стратегийный советник. Один советник — десятки стратегий. Подтверждённые сигналы. Жёсткий риск-менеджмент. Создан для трейдеров, которые ценят точность входов, гибкость настроек и контроль над просадкой. Это не просто советник. Это квантовый скачок в алгоритмической торговле, где мощь коллективного разума стратегий встречается с точностью искусственного интеллекта. Коллективный разум: Более 12 независимых торговых стратегий работают в унисо
    Grabber Bot
    Ihor Otkydach
    5 (3)
    Осталось всего 5 копий по цене $399. Следующая цена: $499 Grabber Bot —  это полностью автоматический торговый советник, построенный на проверенной логике системы Grabber System , которая уже получила признание и положительные оценки трейдеров на платформе MQL5 Market. Идея создания этого советника основана на реальном торговом опыте и обратной связи от пользователей. Многие трейдеры, использующие ручную версию Grabber System, сталкивались с одними и теми же проблемами: сигналы появляются, когд
    Gold Oni
    Lo Thi Mai Loan
    4.67 (3)
    > ЦЕНА ПОВЫШАЕТСЯ КАЖДЫЕ 24 ЧАСА - ДЕЙСТВУЙТЕ СЕЙЧАС, ИНАЧЕ ЗАПЛАТИТЕ БОЛЬШЕ ЗАВТРА Текущая цена: $229.99 -> Финальная цена: $1999 Каждый день промедления - это дополнительные расходы. Проверьте историю цены. [ Живой сигнал ] | [ Результаты бэктеста ] | [ Руководство по настройке ] БОНУС: Напишите нам в личные сообщения после покупки и получите БЕСПЛАТНЫЙ бонусный EA мгновенно. >> Важное примечание: после покупки напишите нам в личные сообщения, чтобы получить файл настроек, подобранный под раз
    AI Gold Trading MT5
    Ho Tuan Thang
    3.72 (43)
    ХОТИТЕ ТАКИЕ ЖЕ РЕЗУЛЬТАТЫ, КАК В МОЕМ LIVE-СИГНАЛЕ?   Используйте тех же брокеров, что и я:   IC MARKETS  &  I C TRADING .  В отличие от централизованного фондового рынка, на Форекс нет единого унифицированного ценового потока.  Каждый брокер получает ликвидность от разных поставщиков, создавая уникальные потоки данных. Другие брокеры могут обеспечить торговые показатели, эквивалентные лишь 60-80%.     Канал Forex EA Trading на MQL5:  Присоединяйтесь к моему каналу MQL5, чтобы быть в курсе посл
    NEXORION: Initium Novum — Детерминированная логика и алгоритмический синтез NEXORION — это аналитический комплекс институционального уровня, базирующийся на строгих математических алгоритмах обработки ликвидности. В основу проекта заложена концепция прозрачности вычислений: советник преобразует хаотичные котировки в структурированные геометрические зоны, визуализируя процесс принятия решений непосредственно на торговом графике. Мониторинг в реальном времени https://www.mql5.com/es/signals/237233
    Gold Zilla AI MT5
    Christophe Pa Trouillas
    4.77 (13)
    Генерируйте контролируемую прибыль с помощью Grok AI , диверсифицированным по рискам и оптимизированным для золота советником . GoldZILLA AI — это многостратегический алгоритм, определяющий рыночные режимы для динамического выбора из пяти различных стратегий, оптимизируя доходность при минимизации просадки по XAUUSD. [   Live Signal   ] - [  Dedicated group   | Version   MT5   -   MT4   ] После покупки отправьте мне личное сообщение, чтобы получить руководство пользователя и инструкции по настро
    Другие продукты этого автора
    I am happy that you are here, let me introduce my small miracle. How it started: At first, bot was created for XAUUSD pair. It could be used / trained for whatever you like, but at your own risk!  For your info, I am not a marketing guy so nothing here will look so fancy, my bot just simply works, and decision is only on you if you would like to buy it based on your tests. It all started as an experiment after one developer here told me that doing these modifications would be too complicated. So
    Фильтр:
    Samuel Henrique Almeida Ferreira
    540
    Samuel Henrique Almeida Ferreira 2026.05.14 00:54 
     

    Hello. I’m testing the EA and I would like to better understand the FVG identification logic used in it. I really liked the robot, and during my backtests it has shown very promising and impressive results. What criteria does the EA use to detect, validate, and invalidate FVGs? Is mitigation considered by candle close, wick touch, or another method? Does it use any additional filters for entries, trend, or confirmation? Thank you.

    Martin Vrlik
    399
    Ответ разработчика Martin Vrlik 2026.05.14 15:33
    I will create indicator which will contain all the filters used in my EA. Will let you know when finished.
    sancai
    23
    sancai 2026.05.12 03:41 
     

    Пользователь не оставил комментарий к оценке

    Martin Vrlik
    399
    Ответ разработчика Martin Vrlik 2026.05.14 15:28
    Hi, as I wrote in the DM, config for XAUUSD is the default one.
    Ответ на отзыв