GapHunter EA

GapHunter EA — Gap Trading Expert Advisor for MT5

Overview

GapHunter EA is an automated trading system for MetaTrader 5 that specializes in trading price gaps at market open. The EA compares the previous day's D1 closing price with the current session's opening price, and if a gap of sufficient size is detected, it immediately enters a trade in the direction of the gap fill (i.e., expecting the price to return to the previous close level).

Gap fills are a well-documented market phenomenon: according to statistical research covering 797 weeks (2010–2025), weekend gaps in major forex pairs fill approximately 65–80% of the time, often within the first few hours of the trading session.

Key principle: The EA does NOT wait for a bar to close to detect a gap. Detection occurs on the very first tick with an acceptable spread after the session opens — this ensures the fastest possible entry.

Key Features

  • Instant gap detection — compares prevDayClose vs. current Bid/Ask on first tick, no bar close needed
  • Session-aware — reads broker trading sessions directly from MT5 symbol specification via SymbolInfoSessionTrade , no manual time settings required
  • Virtual Breakeven (VBE) — moves SL to breakeven in memory only, avoiding broker stop-level restrictions on small distances
  • Partial Close — closes a portion of the position at a configurable % of the path to TP, locking in profit while keeping the trade open
  • 4 Take Profit modes — gap fill, fixed points, ATR-based, auto S/R level
  • 3 Stop Loss modes — none, fixed points, ATR-based
  • Day of week filter — trade all days, Monday only (weekend gaps), or skip Monday
  • Reinvest mode — automatically scales lot size as free margin grows
  • Auto lot by risk % — calculates lot based on SL distance and risk percentage of balance
  • Margin check — always checks available free margin before opening, cancels trade with log message if insufficient
  • Universal filling mode detection — automatically selects FOK, IOC, or RETURN based on broker specification
  • Crash-safe state recovery — all state stored in memory; after any restart (connection loss, TF change, recompile) the EA recovers from terminal data without files
  • Force close by schedule — closes position at a configurable server time (e.g., end of trading day)
  • 1-trade-per-session discipline — gap is checked exactly once per session; no re-entries

Input Parameters

Set Info

Parameter Default Description
SetInfo "" Free-text label for this set of parameters. Informational only — has no effect on trading logic. Useful for identifying configurations in screenshots or reports.

Gap Settings

Parameter Default Description
MinGapPoints 100 Minimum gap size in points to trigger a trade. Gaps smaller than this are ignored as market noise.
MaxSpreadPoints 20 Maximum allowed spread in points at the moment of entry. If the spread is wider, the EA waits for the next tick. This is the only "pause" mechanism — no timer-based delay.
GapWindowMinutes 120 How many minutes after session open the EA will still consider entering. If the spread remains wide for longer than this window, the session is skipped.
DayFilter DAY_ALL DAY_ALL — trade gaps on any day. DAY_MONDAY_ONLY — only trade Monday gaps (formed over the weekend; statistically the highest fill rate). DAY_SKIP_MONDAY — trade intra-week gaps, skip Monday.

Take Profit / Stop Loss

Parameter Default Description
TPMode TP_GAP_FILL TP_GAP_FILL — TP order placed at prevDayClose level + manual tick-by-tick check as backup. TP_FIXED_POINTS — fixed distance in points. TP_ATR_RR — ATR × ATR_TP_Multiplier . TP_AUTO_LEVEL — nearest swing high/low on AtrTimeframe ; falls back to gap fill if no level found.
SLMode SL_ATR SL_NONE — no stop loss (use with VBE for protection). SL_FIXED_POINTS — fixed distance. SL_ATR — ATR × ATR_SL_Multiplier .
TP_Points 150 TP distance in points. Used only when TPMode = TP_FIXED_POINTS .
SL_Points 75 SL distance in points. Used only when SLMode = SL_FIXED_POINTS .
AtrTimeframe PERIOD_D1 Timeframe used for ATR calculation and auto S/R level search.
ATR_Period 14 ATR indicator period.
ATR_TP_Multiplier 2.0 ATR is multiplied by this value to get the TP distance.
ATR_SL_Multiplier 1.0 ATR is multiplied by this value to get the SL distance.
AutoLevel_LookbackBars 100 Number of bars to look back when searching for the nearest swing high/low for auto TP.
AutoLevel_MinDistPts 20 Minimum distance in points from current price to the found S/R level. Levels closer than this are ignored.

Partial Close

Parameter Default Description
UsePartialClose true Enable or disable partial close.
PC_TriggerPct 50.0 When price has traveled this percentage of the distance from entry to TP, partial close is triggered. Example: entry at 1.1000, TP at 1.1100 → trigger at 50% = 1.1050.
PC_VolumePct 50.0 Percentage of the current position volume to close at the trigger level. Example: 0.02 lot position, 50% → close 0.01, keep 0.01. The remainder continues with VBE and TP. Fires exactly once per trade.

Virtual Breakeven

Parameter Default Description
UseVirtualBE true Enable or disable virtual breakeven.
VBE_ActivationPct 50.0 Percentage of path from entry to TP at which the VBE level is set. Can equal PC_TriggerPct — partial close fires first, then VBE is activated for the remainder.
VBE_CompensationPoints 5.0 Points added to (BUY) or subtracted from (SELL) the entry price to cover spread and commission costs. Set this to: spread in points + (commission per lot × 2) converted to points. Example: 2 pt spread + 1.5 pt commission each way = 5 points.

How VBE works:

  • No physical SL is moved. The EA stores the breakeven level in memory.
  • BUY: VBE level = open_price (Ask) + VBE_CompensationPoints × point — monitors Bid
  • SELL: VBE level = open_price (Bid) − VBE_CompensationPoints × point — monitors Ask
  • If price returns to the VBE level, the EA closes the position manually via market order.
  • After any EA restart (connection loss, TF change, recompile), VBE is re-armed: the EA waits for price to reach the threshold again before activating. This is safer than guessing the current context.

Money Management

Parameter Default Description
LotSize 0.01 Fixed lot size. Used when UseAutoLot = false . Also serves as the base lot for reinvest scaling.
UseAutoLot false Calculate lot automatically based on risk % and SL distance. Requires SLMode ≠ SL_NONE .
RiskPercent 1.0 Risk per trade as a percentage of account balance. Used only when UseAutoLot = true .
UseReinvest false Enable reinvest mode. Multiplies the lot by floor(FreeMargin / StartDeposit) .
StartDeposit 1000.0 Reference free margin amount. When free margin doubles, the lot doubles. Multiplier is always ≥ 1 — lot never drops below base on drawdown. Compatible with both fixed and auto lot modes.

Session Close

Parameter Default Description
ForceCloseHour 22 Server time hour for forced position close. Set to 0 to disable (together with minute).
ForceCloseMinute 0 Server time minute for forced position close.

System

Parameter Default Description
MagicNumber 77701 Unique identifier for this EA's positions. Use different values when running multiple instances. Also included in the order comment: "GapHunter v2.5 #77701" .
SlippagePoints 10 Maximum price deviation (slippage) allowed when executing a market order. If the broker cannot fill within this range, the order is rejected. For gap trading at session open (wider spreads, lower liquidity), a value of 15–30 points is recommended for major pairs.

How It Works — Step by Step

  1. Session opens — SymbolInfoSessionTrade detects the new broker session for the current symbol and day.
  2. Day filter — if DayFilter excludes today, the session is skipped immediately.
  3. Spread check — on the first tick with Spread ≤ MaxSpreadPoints , the EA proceeds. No timer wait.
  4. Gap detection — prevDayClose = D1 Close[1] is compared to current Bid (for gap up) or Ask (for gap down). If gap ≥ MinGapPoints , a trade is opened immediately. If no gap — session is marked done, no re-entry.
  5. Trade management — the EA monitors the open position each tick:
    • Partial close fires at PC_TriggerPct % of the path
    • VBE activates at VBE_ActivationPct % and closes if price reverses to the BE level
    • Gap fill (TP_GAP_FILL): manual close when Bid/Ask reaches prevDayClose
  6. Force close — at ForceCloseHour:ForceCloseMinute all own positions are closed
  7. New session — state resets automatically on the next session open

Usage Examples

Example 1 — Conservative (Monday gaps, gap fill TP, ATR SL, VBE protection)

DayFilter = DAY_MONDAY_ONLY MinGapPoints = 150 MaxSpreadPoints = 15 TPMode = TP_GAP_FILL SLMode = SL_ATR ATR_Period = 14 ATR_SL_Multiplier = 1.0 UseVirtualBE = true VBE_ActivationPct = 50 VBE_CompensationPoints = 5 UsePartialClose = true PC_TriggerPct = 50 PC_VolumePct = 50 LotSize = 0.01 ForceCloseHour = 22

Best for: EURUSD, GBPUSD, USDCHF on Monday morning.

Example 2 — Balanced (all days, ATR TP and SL, partial close)

DayFilter          = DAY_ALL
MinGapPoints       = 100
TPMode             = TP_ATR_RR
ATR_TP_Multiplier  = 2.0
SLMode             = SL_ATR
ATR_SL_Multiplier  = 1.0
UsePartialClose    = true
PC_TriggerPct      = 50
PC_VolumePct       = 50
UseVirtualBE       = true
VBE_ActivationPct  = 60
UseAutoLot         = true
RiskPercent        = 1.0

Example 3 — Reinvest mode (growing account)

LotSize = 0.01 UseReinvest = true StartDeposit = 500.0 // Free margin $500 -> lot 0.01, $1000 -> lot 0.02, $1500 -> lot 0.03, etc.

Important Notes

  • The EA is designed to run one instance per chart symbol. Use separate charts for each instrument.
  • Attach the EA to any timeframe — it does not use the chart timeframe for gap detection (always D1).
  • After any restart (connection loss, recompile, TF change), the EA automatically recovers its state from open positions in the terminal. No files are written.
  • The order comment format is "GapHunter v2.5 #<MagicNumber>" , making positions identifiable in history and reports.
  • For gap trading, always verify broker's session open times in the symbol specification. The EA reads these automatically.

Recommended Symbols (Forex)

Priority Symbols Reason
⭐⭐⭐⭐⭐ EURUSD, GBPUSD, USDCHF Highest gap fill rate (~75–80%), tight spreads
⭐⭐⭐⭐ USDJPY, AUDUSD Good fill rate, moderate volatility
⭐⭐⭐ USDCAD, NZDUSD, EURJPY Acceptable fill rate, wider gaps
⭐⭐ GBPJPY, XAUUSD Large gaps but less predictable fill

Recommended products
The Fortress: Ultimate Discipline & Risk Manager: "The Holy Grail of trading isn't a strategy—it's Discipline." Every trader knows the feeling: you have a great plan, but then  emotion takes over. You over-leverage, you revenge trade after a loss, you move your Stop Loss, or you "change your mind" about a pair mid-day. The Fortress was created to solve the "Human Element." It is not a signal generator; it is a  Hard-Rule Execution Manager. It acts as a digital supervisor that monitors your accou
SY - Gold Breakout Engine No martingale. No grid. No recovery systems. Smart Breakout Trading for Gold SY - Gold Breakout Engine is an automated trading system designed to capture high-probability moves on XAUUSD using a structured breakout approach. The EA identifies key levels from both the previous daily High/Low and the London session range, placing pending orders to enter the market only when price breaks out with momentum. Built with integrated risk management, trailing logic, and equi
CloudPiercer EA
Jhay Are Budomo
CloudPiercer EA Ichimoku-Based Expert Advisor for MetaTrader 5 Product Information Price: 30 USD Symbol: USDJPY Recommended timeframe: M5 Overview CloudPiercer EA is an Expert Advisor for MetaTrader 5 based on the Ichimoku Kinko Hyo trading system. It is designed to identify trend-following opportunities on USDJPY by analyzing price interaction with the Ichimoku components. The EA applies predefined rules for entry, exit, and trade management, allowing fully automated operation without manual in
FlashTrader Pro - Forex Scalping Expert Advisor   General Description FlashTrader Pro   is an automated trading Expert Advisor specifically designed for   scalping   and   short-term trading   in the Forex market. This EA reacts to sharp price movements by opening positions when predetermined time and volatility conditions are met. The system utilizes a   small order grid , implements   trailing stop functionality   to secure profits, and incorporates   spread monitoring   to minimize tradin
Recovery Boost Pro
Antonis Michos
5 (7)
Source code available also.(Only serious offers) Advanced Recovery & Trading EA – Unmatched Flexibility and Control: The EA is used for recovering trades from other EAs that came into DD(Drawdown) or your manual trades as well. This EA is a feature-rich, precision-designed trading tool that offers capabilities far beyond what typical Expert Advisors provide. Designed for traders who demand adaptive strategies and robust risk control , this EA gives you complete power over every aspect of yo
Neopips Engine EA
Md Billal Hossain
NeoPips Engine EA – The Ultimate Trading Revolution Has Arrived! “The real power of trading lies in seeing what others miss. NeoPips Engine doesn’t follow the market — it masters it.” About NeoPips Engine EA: Your Intelligent Trading Ally NeoPips Engine EA is not your average trading robot. It’s a multi-dimensional, AI-optimized expert advisor crafted for traders who demand precision, adaptability, and long-term performance. Unlike outdated bots with rigid rules, NeoPips Engine is a livin
TechRiven EC Pro EA
Md Ariful Moula Chowdhury
TechRiven EC Pro — Smart, Fast, and Adaptive EA TechRiven EC Pro   is a powerful automated trading system designed to identify and execute trades rapidly when market conditions are most favorable. It intelligently adapts to   current market volatility , allowing it to stay profitable even during unpredictable market movements. Proven Performance: The attached backtest results demonstrate   consistent profitability over several years . Even during periods of aggressive market change, TechRiven EC
Bobot Scalper Gold
Richard Tolentino
BoBot Scalper — The New Era of Trend Scalping is Here. If you trade XAUUSD, indices, or fast-moving pairs… this EA is built for you. BoBot Scalper uses a refined MACD/LWMA engine to detect true trend continuation entries before the crowd. It reacts fast, manages risk cleanly, and locks profit using a step-based currency trailing system —one of the smartest trailing styles you’ll find in a scalping EA. It does NOT use martingale. It does NOT use grid. It does NOT spam trades. Instead, it builds p
The Scalper Pro
Sahib Ul Ahsan
The Scalper Pro Advanced Multi-Strategy Scalping Expert Advisor The Scalper Pro is a high-precision automated scalping system designed for traders who require fast execution, structured logic, and controlled risk. It combines multiple price-action strategies with advanced trade and basket-level management to create a flexible solution for short-term trading. Built for performance and stability, the EA focuses on identifying intraday price movements and executing trades with disciplined managemen
GbpUsd Range Break Breakout EA
Ray Pracious Chidhungwana
Master the London Breakout: Automate Your Edge with GBPUSD Twilight OB EA GBPUSD Twilight OB EA GBPUSD Twilight OB EA is a robust, precision-engineered Expert Advisor tailored for traders seeking to exploit early London session breakouts. It harnesses a sophisticated blend of range-based logic, advanced order block detection, and price action confirmations to deliver high-probability trade entries. This EA is meticulously optimized for the GBPUSD pair on the M1 timeframe , automatically pinpoin
Brent-WTI Statistical Arbitrage EA Overview Brent-WTI Statistical Arbitrage EA is an automated trading system designed to trade the price relationship between Brent and WTI crude oil instruments. The strategy focuses on statistical divergence and mean reversion behavior between the two markets. The EA monitors spread conditions, detects abnormal deviations, and opens positions when the probability of reversion meets the defined entry criteria. It is built for traders who want a structured inter
Patient Monarch
Jasper Lagasca
PATIENT MONARCH EA v2.10 — Smart Grid Trading with Multi-Layer Protection by Jasper Clark Lagasca OVERVIEW Patient Monarch is a fully automated grid Expert Advisor that uses a proprietary mean-reversion entry system combined with 10 built-in drawdown protection layers. Unlike aggressive grid EAs that blow accounts, Patient Monarch is designed with patience at its core — it waits for high-pr
Radiant MT5
Sigit Hariyono
Radiant EA is a fully automated trading advisor that utilizes complex algorithms and a variety of strategies, primarily based on various indicators for entry and a Multi-Layer Perceptron (MLP) as a trend filter. It works by first identifying prevailing trends using the MLP, then using various strategies based on these indicators to execute trades. Why using multi-strategy? A multi-strategy enhances capital protection and smooths equity curve by deploying diverse trading systems such as trend-f
Gold Morning
Roberto Mubonane Muiambo
Tested on XAUUSD 1H from 2023.05.01 to 2025.12.17, showing 830% in Profits with stable equity growth and minimal drawdowns. This EA is designed for clean, low-frequency execution on the 1-hour chart, targeting high-quality entries with minimal noise.  Ideal for traders who value clarity, control, and consistency. Advantages 1. Signal Time Control. 2.  Duplicate trade control : Prevents overexposure by blocking repeated entries. 3.  Robust Fixed Ratio Money Management. 4.  Controlled Growth :
Trillion Pips Polaris EA
Sivaramakrishnan Natarajan
TRILLION PIPS POLARIS EA MT5 Expert Advisor – Precision. Protection. Performance. Built from 12+ years of real market experience , Trillion Pips Polaris EA is a professional automated trading system designed for traders who want structured execution, controlled risk, and intelligent trade management in real market conditions. Polaris EA is developed with a disciplined trading approach, advanced filters, and automated trade handling to support consistent execution without emotional decision-maki
TimeLS
Kaloyan Ivanov
Time-Based Expert Advisor for MetaTrader TimeLS - Time Long Short Overview Our Time-Based Expert Advisor is designed to give traders the advantage of precise market timing. The Expert Advisor works with both long and short positions and can even open both at the same time, giving you unparalleled flexibility. Key Features: 1. Time-Specific Trading:      - Define the exact hours and minutes to open and close positions, allowing for strategic planning around market hours, news events, or specifi
EA Scalp EDay required set file Be sure to contact me after purchase for personalized recommendations and a personal bonus! - Is a scalping system on strong price levels. One of the oldest strategies, modernized and updated for the current market. The strategy does not require any optimization. You should just install the set file and run it according to the recommendations. Advantages of EA Scalp EDay: - Optimal SL/TP ratio. - Low SL, which makes the system as safe as possible. - Every ord
Zenova
Rex Velos
Zenova – Futuristic Zen Trading for EURUSD H1 (Introductory Release) Discover the calm power of disciplined, patient trading. Slowly but surely. Zenova is a premium Expert Advisor meticulously crafted and extensively tested exclusively for the EURUSD pair on the H1 timeframe . It combines precise trend detection (ADX strength + RSI divergence filters) with intelligent price action confirmation to enter only high-probability, slow-moving trends—delivering a proven win rate of ~89% and a solid pro
USD pro
Roberto Mubonane Muiambo
Currency EURUSD Timeframe 1H  PRO EA as a price action–based Expert Advisor that can be tuned to work on any Forex currency pair, timeframe by adjusting its settings. With flexible parameters, you can adapt USD PRO EA to trade any Forex symbol by simply adjusting the settings. With the Time Limit Settings, you have full control over when the EA is active. This allows you to fine‑tune trading sessions to match the most liquid and profitable market hours. The Max Trades Per Day setting allow
Atlas Gold Grid
Natthan Puengklan
### Atlas Gold Grid — Steady Cashflow Grid EA for XAUUSD **Atlas Gold Grid** is a fully automated grid-based Expert Advisor designed specifically for XAUUSD (Gold). It focuses on generating consistent cashflow with a low-risk approach, suitable for traders who prefer steady account growth over aggressive high-risk strategies. --- #### Key Features - **Automated Grid Trading** — Opens and manages grid orders automatically based on market conditions. No manual intervention required. - **Buil
EquityReboundEA
Rishat Tuktamyshov
Equity Rebound Portfolio EA Portfolio Expert Advisor for large-cap stocks and stock CFDs Live monitoring A live MQL5 signal is available for this Expert Advisor: Live MQL5 Signal The signal can be used to observe the EA’s real-time trading behavior, execution, drawdown dynamics and current portfolio performance. Backtests and live monitoring do not guarantee future results. They are provided for research and evaluation purposes only. Overview Equity Rebound Portfolio EA is a multi-symbol Expert
PlanB EA - Advanced XAUUSD Grid System LAUNCH PROMOTION: $30 for the first 5 copies! (After the first 5 sales, the price will automatically increase to $99 to limit the number of users and protect the trading edge). PlanB EA - Advanced Volatility-Adjusted Trading System for XAUUSD The retail algorithmic trading space is flooded with aggressive Grid and Martingale bots that show massive, straight-line profit curves in backtests, only to completely blow up real accounts during the first major m
Ride Trend
Kambiz Shahriarynasab
Only gold and bitcoin can be profitable. Trade time is 30 minutes and trend time is 1 hour. You should check the efficiency of this robot at the end of three months. Strong trends make very good profits. There are many inputs for your personalization, but the best settings are defined by default. This indicator will have many updates and special settings will be added to it. You can contact us via Instagram, Telegram, WhatsApp, email or here. We are ready to answer you.
RapidRush Scalper
Lauran Michel Elizalde
Trading Robot Description: 1. Scalping Nature: This trading robot is specifically designed for scalping the EUR/USD currency pair. It is programmed to operate during periods of extremely low volatility in the market. Scalping strategies aim to profit from small price movements, making them particularly sensitive to market conditions and execution speed. 2. Low Movement Emphasis: The robot primarily focuses on executing trades based on minor price fluctuations. Due to the nature of its strategy,
Astra MT5
Natalyia Nikitina
Astra MT5 — Automated Trading System Based on Market Patterns Astra MT5 is an expert advisor for MetaTrader 5 that leverages key market patterns, including price retracements after sharp movements. The system is fully automated and requires no constant monitoring from the trader. Attention! Contact me immediately after purchase to receive setup instructions! Key Features of Astra MT5 Analysis Algorithms: works with price patterns and market structures. Adaptability: adjusts to different market c
XAI Sentinel Pro Grok 4 — XAUUSD Spike-Detection System for MT5 Golden Nightwatch is a fully automated trading system built specifically for XAUUSD (Gold).   It watches for genuine volatility spikes — not every candle — and manages every trade with broker-verified risk control from entry to exit, so you're not watching the chart every time gold moves. After purchase, please contact me via MQL5 private message for the setup guide and personalized settings for your broker. Two Ready-to-Test Set
Titan Backup
Elies Noah Siebenpfeiffer
Introducing Titan Backup : Are you ready to enhance your trading game with an automated system built for precision and flexibility? Meet Titan Backup , your expert trading assistant designed to capture high-profit breakouts by identifying accumulation zones . This powerful Expert Advisor (EA) excels in high-volatility markets such as the Nasdaq 100 and Crypto 10 , offering both hands-free automation and manual assistance to support your trading strategies. How Titan Backup Works: Titan Backup ru
SmartRisk MA Pro
Oleg Polyanchuk
SmartRisk MA Pro Strategy Overview: SmartRisk MA Pro is an optimized, risk-oriented automated trading strategy (Expert Advisor) developed for the MetaTrader 5 platform. It is designed to identify trading opportunities based on price deviations from moving averages and incorporates a comprehensive capital management system. The Expert Advisor operates on a "new bar" logic, ensuring stability and predictability in trade signal execution. Operating Principles and Trading Logic: At its core, the st
TOOP1 Swing MT5
Van Cuong Nguyen
5 (1)
TOOP1 Swing is a fully automated Expert Advisor specifically engineered for trading Gold (XAUUSD) on the M5 timeframe. Built upon a short-term swing trend-following strategy, this Expert Advisor operates with a strict risk management philosophy: a complete rejection of Martingale and Grid strategies. Every single market execution consists of only one trade with explicit, predefined Take Profit (TP) and Stop Loss (SL) levels set immediately at order initiation. Live signal  (Use fixed SL,TP) Earl
Buyers of this product also purchase
Quantum Titan MT5
Bogdan Ion Puscasu
5 (2)
Bringing institutional-grade trading to the Quantum ecosystem, Quantum Titan sets a new standard for precision, discipline, and proven live-market performance. Developed for traders who expect more from a GOLD Expert Advisor, Titan represents the next evolution of Quantum trading technology. Availability is strictly limited to 1,000 lifetime licenses worldwide. Once all 1,000 copies have been claimed, Quantum Titan will no longer be available. Special launch discount price. Final price $1999
Smart Gold Hunter
Barbaros Bulent Kortarla
4.87 (31)
No Grid/No Martingale/No Recovery/No Hedging/Single Entry with SL/One Shot  Smart Gold Hunter is an Expert Advisor for XAUUSD / Gold trading on MetaTrader 5. It is designed for traders who prefer a gold EA with no grid, no martingale, real Stop Loss and Take Profit logic, and controlled risk management. You can check the live signals before making a decision: Live Signal - IC Markets: https://www.mql5.com/en/signals/2365400?source=Site +Signals+My  (Here I use Scalper Mode, To have the exact se
Quantum Queen X MT5
Bogdan Ion Puscasu
5 (29)
The Legend Continues. The Queen Evolves. Welcome to Quantum Queen X — the next generation of the legendary GOLD trading system that builds upon the proven success of Quantum Queen. Quantum Queen X is built on the same proven core engine as Quantum Queen, introducing a powerful new Custom Mode that allows traders to choose exactly which strategies to enable or disable. Every strategy has been individually reviewed, refined, and optimized to deliver even better performance and adaptability across
Scalping Robot Pro MT5
MQL TOOLS SL
4.47 (142)
Scalping Robot Pro is a professional trading system designed specifically for fast and precise scalping on XAUUSD using the M1 timeframe. The system is built to capture short term market movements with accurate execution and controlled risk management. It focuses on real time price behavior, momentum shifts, short term volatility, and selective grid based trade management techniques to identify high probability trading opportunities in the gold market. Scalping Robot Pro is optimized for traders
The Gold Reaper MT5
Profalgo Limited
4.47 (103)
PROP FIRM READY! ( download SETFILE ) WARNING: Only a few copies left at current price! Final price: 990$ Get 1 EA for free (for 3 trade accounts) -> contact me after purchase Ultimate Combo Deal   ->   click here JOIN PUBLIC GROUP:   Click here Live Signal Client Signal YouTube Reviews LATEST MANUAL Welcome to the Gold Reaper! Build on the very succesfull Goldtrade Pro, this EA has been designed to run on multiple timeframes at the same time, and has the option to set the trade frequency fro
ThunderGold Scalper
Jorge Luiz Guimaraes De Araujo Dias
5 (7)
ThunderGold Scalper ThunderGold Scalper is an Expert Advisor developed for automated gold trading on MetaTrader 5. The EA is designed for XAUUSD and GOLD on the M15 timeframe. It uses a proprietary multi-factor decision engine to identify qualified trading opportunities and manage positions automatically. The system combines market structure, trend direction, candle quality, volume, momentum and execution controls. It is designed to wait for suitable conditions instead of opening trades continuo
Ultimate Breakout System
Profalgo Limited
5 (47)
IMPORTANT : This package will only be sold at current price for a very limited number of copies.    Price will go to 1999$ soon!   +100 Strategies included and more coming! BONUS : choose 5  of my other EA's for free!   ALL SET FILES + COMPLETE SETUP AND OPTIMIZATION GUIDE VIDEO GUIDE LIVE SIGNALS REVIEW (3rd party) NEW - 44-STRATEGIES LIVE SIGNAL Welcome to the ULTIMATE BREAKOUT SYSTEM! I'm pleased to present the Ultimate Breakout System, a sophisticated and proprietary Expert Advisor (EA)
Lizard
Marco Scherer
4.09 (44)
WHAT IS LIZARD? Lizard is a fully automated Expert Advisor, developed exclusively for XAUUSD (Gold) on MetaTrader 5. It uses a multi-strategy swing breakout system that identifies key structural levels on the chart and places pending stop orders at precisely calculated entry points. No martingale. No grid. No averaging in. Every trade has a defined Stop Loss and Take Profit and is actively managed by a multi-layered exit system, automatically, around the clock. Live Signals - Track real performa
Adaptive Gold Scalper Important Pre-notice: This strategy requires a long period of practical verification, and favorable trading returns cannot be guaranteed in the short run. Traders must select brokers with ultra-low order latency, minimal slippage and zero/low stop level requirement; poor broker conditions will lead to disastrous trading results. I have over 14 years of professional trading experience. With proper brokerage conditions and sufficient running time, this fully automated scalpi
Logan MT5
Thierry Ouellet
4.78 (23)
LIMITED TIME OFFER AT 289$ Price will go up at  499$ on August 14th! Logan MT5 isn't your typical Gold Grid EA that blindly opens trade after trade, consuming your margin and putting your capital at unnecessary risk. Instead, it patiently waits for high-probability entry opportunities and uses an intelligent recovery system that combines ATR-based grid spacing with dynamic lot progression . This allows it to withstand adverse market movements that would wipe out most conventional grid EAs—incl
TwisterPro Scalper
Jorge Luiz Guimaraes De Araujo Dias
4.45 (134)
Fewer trades. Better trades. Consistency above all. • Live Signal Mode 1  Live Signal Mode 2 Twister Pro EA is a high-precision scalping Expert Advisor developed exclusively for XAUUSD (Gold) on the M15 timeframe. It trades less — but when it does, it trades with purpose. Every entry passes through 5 independent validation layers before a single order is placed, resulting in an extremely high win rate on the Default configuration. TWO MODES: • Mode 1 (recommended) — Very high assertiveness, fe
Quantum Athena X
Bogdan Ion Puscasu
5 (3)
Smarter Control. Refined Precision. Welcome to Quantum Athena X — the next generation of the focused GOLD trading system that builds upon the precision, efficiency, and disciplined execution of Quantum Athena. Quantum Athena X is built on the same streamlined core engine and the same 6 carefully selected strategies as Quantum Athena. Each strategy has been individually refined and optimized for current GOLD market conditions, while the new powerful Custom Mode allows traders to choose exactly
Zoomini
Gennady Sergienko
2.06 (16)
Important information: Support and answers to questions are available only here:  https://www.mql5.com/en/users/zolia  ( Zolia - UTC/GMT: Taiwan ); Zoomini is a small set of machine-learning models from the latest GoGoPips project research from July 2026. These models are intended only for XAUUSD H1 / Gold . Signal: www.mql5.com/en/signals/2381994 Important things to know: The models trade with only one order using equal SL/TP. Netting accounts and any leverage are supported. Large deposi
Quantum King EA
Bogdan Ion Puscasu
4.96 (215)
Quantum King EA — Intelligent Power, Refined for Every Trader IMPORTANT! After the purchase please send me a private message to receive the installation manual and the setup instructions. Special Launch Price Live Signal:   CLICK HERE MT4 version : CLICK HERE Quantum King channel:   Click Here ***Buy Quantum King MT5 and you could get Quantum StarMan for free !*** Ask in private for more details! Rule your trading with precision and discipline. Quantum King EA brings the strength of
Cortex IDX
Vladimir Mametov
5 (2)
It is a fully automated Expert Advisor for MetaTrader 5, built specifically for trading the US30 index. Its trading logic is designed around the dynamic behavior of major stock indices: strong directional movements, intraday pullbacks, and periods of increased volatility. The EA automates trading in an environment where execution speed, discipline, and efficient position management are essential. The system is focused on disciplined trade management, fast reaction to market changes, and controll
Smart Gold Impulse
Barbaros Bulent Kortarla
4.11 (19)
No Grid /No Martingale/ No Dca /No rocovery Smart Gold Impulse is now available in a special early launch phase. This is an EA I  am currently using with impressive results on my Live Signal  account. You can check the current performance through the Ultima live signal results, where Smart Gold Impulse has already shown very strong potential in real market conditions. The same set file used on my Ultima live signal account will be shared only with Smart Gold Impulse buyers. At the same time, thi
Gold Neural Core
TICK STACK LTD
5 (8)
Launch Offer:   Grab Gold Naural Core and bundle it with   XAU Momentum   and get 2 free EAs of your choice from my entire MQL5 store. DM me for details. Learn how I personally manage risk when using grid systems:  https://www.mql5.com/en/blogs/post/767250 Read the user guide to any TickStack grid system:  https://www.mql5.com/en/blogs/post/767232 Gold Neural Core — Hyper-Scalping Grid System for XAUUSD Gold Neural Core is a high-frequency grid trading system engineered specifically for gold (X
Quantum Emperor MT5
Bogdan Ion Puscasu
4.86 (506)
Introducing   Quantum Emperor EA , the groundbreaking MQL5 expert advisor that's transforming the way you trade the prestigious GBPUSD pair! Developed by a team of experienced traders with trading experience of over 13 years. IMPORTANT! After the purchase please send me a private message to receive the installation manual and the setup instructions. ***Buy Quantum Emperor EA and you could get Quantum StarMan for free !*** Ask in private for more details Verified Signal:   Click Here MT4 Version
Gold Snap
Chen Jia Qi
4.47 (17)
Gold Snap — A Fast Profit Capture System for Gold Live Signal: https://www.mql5.com/en/signals/2362714 Live Signal2: https://www.mql5.com/en/signals/2372603 Live Signal v2.0: https://www.mql5.com/en/signals/2379945 Only 3 copies remaining at the current price. The price will be increased to $999 soon. Important: After purchasing, please contact us by private message to receive the user guide, recommended settings, usage notes, and update support.  https://www.mql5.com/en/users/walter2008 W
Zerqon EA
Vladimir Lekhovitser
3.45 (29)
Live Trading Signal Public real-time monitoring of trading activity: https://www.mql5.com/en/signals/2372719 Official Information Seller profile Official channel User Manual Setup instructions and usage guidelines: View user manual Zerqon EA is an adaptive Expert Advisor designed specifically for XAUUSD trading. The strategy is based on a Deep LSTM neural network model integrated through ONNX, allowing the system to process sequential market behavior and evaluate price dynamics in a st
Pulse Engine
Jimmy Peter Eriksson
4.06 (36)
UPDATE - ONLY A FEW COPIES LEFT AT CURRENT PRICE! The main goal of this system is long-term live performance without using any risky martingale or grid.  VERY LIMITED COPIES AT CURRENT PRICE Final Price $1499 [Live Signal]  |  [Backtest Results]  |  [Setup Guide]  |  [FTMO Results] A Different Approach to Trading Pulse Engine does not use any indicators or specific timeframes. It has a very unique approach that is not used by any other trading system on MQL5. It trades intraday directional patt
XG Gold Robot MT5
MQL TOOLS SL
4.33 (112)
The XG Gold Robot MT5 is specially designed for Gold. We decided to include this EA in our offering after extensive testing . XG Gold Robot and works perfectly with the XAUUSD, GOLD, XAUEUR pairs. XG Gold Robot has been created for all traders who like to Trade in Gold and includes additional a function that displays weekly Gold levels with the minimum and maximum displayed in the panel as well as on the chart, which will help you in manual trading. It’s a strategy based on Price Action, Cycle S
Wave Rider EA MT5
Adam Hrncir
4.83 (46)
Scalper speed with sniper entries. Built for Gold. Tired of all the fake EAs that eventually disappear? Most authors just create another EA when it fails - I wanted to do it differently. Wave Rider is my personal project built out of passion - honest, transparent EA without any fake AI or manipulated back-test that's been continuously updated for more than 6 months, that I am using myself from very first day. Check the Live signal  or Manual  or  Broker performance Version 5.x upgrade notice: Cl
Nexorion Initium Novum EA
Valentina Zhuchkova
4.23 (26)
NEXORION: Initium Novum — Deterministic Logic and Algorithmic Synthesis NEXORION is an institutional-grade analytical complex based on rigorous mathematical liquidity processing algorithms. The core concept of the project is "computational transparency": the expert advisor transforms chaotic price feeds into structured geometric zones, visualizing the decision-making process directly on the trading chart. Real-Time Monitoring https://www.mql5.com/en/signals/2378408 https://www.mql5.com/es/signa
Chiroptera
Rob Josephus Maria Janssen
4.56 (48)
Prop Firm Ready! Chiroptera is a non-martingale, non-grid, multi-currency Expert Advisor that operates in the quiet hours of the night. It uses single-placed trades (of all 28 pairs!) 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 c
XT Bitcoin Robot MT5
MQL TOOLS SL
5 (4)
XT Bitcoin Robot is an advanced  automated trading system  designed specifically for  BTCUSD traders  who want to take advantage of Bitcoin's market volatility without the need for constant market monitoring. The robot continuously analyzes market conditions and automatically executes trades based on its built in trading logic, helping traders stay active in the market 24 hours a day without manual intervention. The system is designed to identify trading opportunities and manage positions accor
SomaOil
Andrii Soma
5 (2)
SomaOil is a multi-strategy breakout Expert Advisor for MetaTrader 5, built exclusively for WTI crude oil (XTIUSD). One chart, one EA, 20 independent strategies running together as a single diversified portfolio. Live Signal. To make it accessible at launch, I am using a transparent ramping-price model: Launch price: 100 USD (48 hours) Starting from Monday the price increases by 100 USD for every 10 copies sold Price increases happen at most once per day, even when more than 10 copies are sold t
The Gold Space
Ayush V Jain
5 (3)
Live Signal on Vantage https://www.mql5.com/en/signals/2378090 https: // www.mql5.com/en/signals/2378091 live signal is running mode/option 1 with autolot 2 % risk. Overview:  The Gold Space is a fully automated, professional-grade Expert Advisor specifically engineered for the XAUUSD (Gold) market. Designed natively for MetaTrader 5, this EA capitalizes on high-probability volatility expansions using a precise, dynamically calculated breakout algorithm. It eliminates emotional trading by stric
Fantastic 4 MT5
Fan Yang
3 (2)
Fantastic 4 Four-in-One Trading System Introduction Fantastic 4 is an automated trading EA integrating 5 mutually independent quantitative trading logics targeting XAUUSD. After long-term research, iterative optimization, historical backtesting and live market verification, each built-in strategy has exclusive entry rules, independent order management and customized risk control modules. All strategies run separately without mutual interference. The combination of four strategies with low correl
Precise Pair Trading Pro
Arkadii Zagorulko
3.75 (12)
Please note that I do not sell this EA through any third-party resellers, affiliates, or alternative distribution channels. Monitoring -  Live signal Public channel - Here This EA trades two symbols and looks for short-term imbalance between them. When the symbols move differently from their normal relationship, the EA can open trades and close them when the imbalance becomes smaller. This is not a grid EA. This is not martingale. The EA does not open many recovery orders. It uses only 1 positio
More from author
EAsynRightNow - Professional Trading Expert Advisor for manual trading with advanced functionality EAsyRightNow is a multifunctional trading Expert Advisor for MetaTrader 4, featuring a Trading Panel with a user-friendly interface and extensive trading position management capabilities. Perfect for scalping, it works on all timeframes.  Key Features  1. Trading Modes - Single Orders: Management of one trading position - Multiple Orders: Ability to open multiple orders in the same direction - M
FREE
PositiveSwap Легкий, бесплатный скрипт на языке MQL4, который выводит на график, в виде простой таблицы, все торговые пары с положительным свопом и указывает направление (покупка или продажа). Скрипт автоматически просматривает все доступные торговые пары из окна "Обзор рынка". Поэтому, чтобы увидеть все возможные пары с положительным свопом, рекомендуется включить показ всех символов.  
FREE
Indicator "Time to Bar End" (TimeToBarEnd) This technical indicator is designed to accurately track the time remaining until the current candle closes on the chart. It displays a countdown in minutes:seconds format, which is particularly useful for intraday traders and scalpers who need to know the exact closing time of the current candle. The indicator updates in real-time and offers flexible customization of its appearance. The settings include: choice of position from four chart corners, adj
FREE
CandleMaster PRO Professional Next-Generation Trading Expert Advisor CandleMaster Pro is a unique solution in the field of automated trading. Using advanced neural network technologies, the advisor identifies Japanese candlestick patterns with high accuracy and combines market entry control with integrated technical indicators. This trading expert advisor embodies years of successful trading experience transformed into a precise mathematical algorithm. One of the key advantages of this expert
NYSE Trading EA Trade Like Institutions: Professional Fair Value Gap Detection and Execution "While retail traders chase indicators, institutions use market structure. Fair Value Gaps are their footprints—impossible to hide." What Are Fair Value Gaps and Why Do They Work? The Institutional Footprint on the Chart When major players (banks, hedge funds, market makers) enter the market, they cannot do so unnoticed. Their enormous volumes create liquidity imbalances—price gaps known as Fair Value
FracEA
Ilia Stavrov
Hi. I'm Freysi. You've been looking for me for a long time. Scrolling through indicators, tweaking settings at 2am, losing money on systems that looked good on paper. I know. I've seen it all. I'm not going to explain how I work. That's my secret. What I will tell you is this: I watch the market the way a hawk watches a field — patient, still, and then precise . I enter only when everything aligns. I trail my stops so you don't have to babysit me. I know when the market is closed and I don't emb
FraceaFull
Ilia Stavrov
Hi. I'm FraceaFull. You've been looking for me for a while. Scrolling through indicators, tweaking settings at two in the morning, losing money on systems that looked great on paper. I know. I've seen it all. This is the full version. No secrets, no hidden parameters — everything I can do is in your hands. Want to pick your own stop-loss timeframe? Go ahead. Want your own breakeven mode or your own filter? Set it up. I no longer stay quiet about how I work — I just hand you the entire control pa
BullsBearsEA
Ilia Stavrov
BullsBears EA — next-generation trading automation for traders done with guesswork Stop relying on gut feeling. BullsBears EA reads market pressure in real time, filters out false signals through a multi-layer confirmation system, and enters only when the odds are stacked in your favor. Smart position management — automatic break-even and stop trailing Fully adjustable to any trading style — from cautious to aggressive Complete risk control — drawdown, margin and trading hours, all in y
Filter:
No reviews
Reply to review