Moon Sniper Execution

// ===================== INPUTS =====================
input bool   InpValidationPatch = true;  // FALSE FOR USE EA

input group "---- GENERAL SETTINGS ----"
input double LotSize          = 0.01;
input int    MagicNumber      = 5555;
input int    MaxSpread        = 500;
input int    Slippage         = 1000;
input int    TradeLockMinutes = 0;
input int    BE_Profit_Points = 500;

// FIX #8: Separate grid step tolerance from order slippage
// On XAUUSD Daily, EntryStep is large so a tight tolerance is needed.
// This replaces the old Slippage-as-buffer approach in ManageGrid.
input int    GridStepTolerance = 1000; // Points: how far past the step is still valid for entry

input group "---- TIME FILTER (SERVER TIME) ----"
input bool   UseTimeFilter      = true;
input int    StopHour_Server    = 20;
input int    StopMinute_Server  = 50;
input int    StartHour_Server   = 22;
input int    StartMinute_Server = 2;
input bool   CloseAllOnStop     = true;

input group "---- EMA CROSSOVER ACTIVATION ----"
input bool             UseEMACrossover   = true;
input int              EMA_Fast_Period   = 30;
input int              EMA_Slow_Period   = 80;
input ENUM_TIMEFRAMES  EMA_Crossover_TF  = PERIOD_CURRENT;
input double           CrossoverObsZone  = 8000;   // Points price must travel after crossover to confirm
input bool             UseEMAFilter      = false;   // Legacy directional EMA filter
input int              EMA_Period        = 50;
input ENUM_TIMEFRAMES  EMA_Timeframe     = PERIOD_CURRENT;

input group "---- SLOW MODE SETTINGS ----"
input double EntryStep_Slow   = 3000;
input double FixedSL_Slow     = 3000;
input double TrailStart_Slow  = 3000;
input double TrailDist_Slow   = 5300;
input int    TrailStep_Slow   = 500;
input double BreakEven_Slow   = 2500;
input int    MaxTrades_Slow   = 5;
input bool   GridOn_Slow      = true;
input int    SpeedWindow_Slow = 3;      // seconds
input int    LockDuration_Slow = 0;
input double Threshold_Slow   = 700.0;
input int    GridDuration_Slow = 900;

input group "---- MEDIUM MODE SETTINGS ----"
input double EntryStep_Medium   = 3000;
input double FixedSL_Medium     = 3000;
input double TrailStart_Medium  = 3000;
input double TrailDist_Medium   = 5300;
input int    TrailStep_Medium   = 500;
input double BreakEven_Medium   = 3000;
input int    MaxTrades_Medium   = 6;
input bool   GridOn_Medium      = true;
input int    SpeedWindow_Medium = 3;
input int    LockDuration_Medium = 1200;
input double Threshold_Medium   = 1200.0;
input int    GridDuration_Medium = 1200;

input group "---- FAST MODE SETTINGS ----"
input double EntryStep_Fast   = 3000;
input double FixedSL_Fast     = 3000;
input double TrailStart_Fast  = 3000;
input double TrailDist_Fast   = 5300;
input int    TrailStep_Fast   = 500;
input double BreakEven_Fast   = 3000;
input int    MaxTrades_Fast   = 7;
input bool   GridOn_Fast      = true;
input int    SpeedWindow_Fast = 3;
input int    LockDuration_Fast = 1500;
input double Threshold_Fast   = 1600.0;
input int    GridDuration_Fast = 1500;

🌙 MOON SNIPER

Expert Advisor for MetaTrader 5

XAUUSD    Dual-Side Stop Grid + Trailing Breakeven System

Version

1.00

Symbol

XAUUSD

Magic Number

220125

==============MUST SET AS FALSE IN INPUTS BEFOR TRADING DO NOT IGNOR==========

1. Overview & Description

MOON SNIPER is a fully automated Expert Advisor (EA) for MetaTrader 5, engineered specifically for the XAUUSD (Gold) market. It employs a dual-side pending order grid strategy, placing Buy Stop orders above price and Sell Stop orders below price simultaneously, then managing each triggered position with a precision breakeven and trailing stop mechanism.


The strategy is built around the premise that during high-momentum market moves, Gold will break decisively in one direction. By pre-positioning pending orders on both sides of the market, MOON SNIPER is set to capture whichever breakout occurs. Once the winning side triggers, the losing side is cancelled automatically, and the EA focuses entirely on protecting and maximising the open trades.


1.1  Core Philosophy

  • Momentum Capture: Wait for the market to come to the orders, never chase price.
  • Asymmetric Protection: Aggressive trailing once breakeven is reached — never give back significant gains.
  • Intelligent Filtering: Speed and time filters prevent the grid from firing during slow, choppy conditions or outside optimal trading hours.
  • Fully Autonomous: No manual intervention required once configured. The EA manages the entire trade lifecycle from placement to closure.


1.2  How It Works — Cycle Overview

Each complete run of the EA follows a defined cycle:


STEP 1

Speed & time filters are checked. If conditions are met, the grid is placed: N Buy Stop orders above price and N Sell Stop orders below price, each separated by the configured grid spacing.

STEP 2

Each order that triggers (i.e., price reaches it) becomes an open position with a fixed stop loss already attached.

STEP 3

As each position gains profit, the EA first moves the stop loss to breakeven, then begins trailing to lock in gains.

STEP 4

The moment one side (Buy or Sell) is fully complete — meaning all its pending orders and open positions are gone — the EA cancels all remaining opposite-side orders and resets for a new cycle.

STEP 5

If the maximum trigger count on either side is reached, or all trades close, the cycle resets automatically.


2. Installation & Setup

2.1  Requirements

  • MetaTrader 5 (build 2755 or later recommended)
  • XAUUSD symbol available on your broker (may be labelled GOLD or XAU/USD)
  • EA trading enabled in MT5 settings (Tools → Options → Expert Advisors → Allow Automated Trading)
  • Sufficient free margin for the configured lot size and grid steps


2.2  Installation Steps

  • Copy the MOON SNIPER .ex5 file into your MT5 data folder: MQL5\Experts\
  • Restart MetaTrader 5, or right-click the Navigator panel → Refresh.
  • Open a XAUUSD M1 or M5 chart (the EA is tick-driven and works on any timeframe, but M1/M5 is recommended for clean visual monitoring).
  • Drag MOON SNIPER from the Navigator panel onto the chart.
  • Configure all parameters in the EA settings dialog (see Section 3).
  • Ensure "Allow Automated Trading" is checked in the EA dialog.
  • Click OK. The EA will initialise and display a live status comment on the chart.

MOON SNIPER is an EMA crossover-based grid scalping strategy designed for fast intraday market movements.
The system combines dynamic EMA trend detection with controlled grid execution to capture short-term momentum opportunities.
It is optimized for high-frequency scalping environments while maintaining structured trade management logic.
Recommended timeframes are M1, M5, and M15 for the best balance between signal frequency and market precision.

💡  TIP — Recommended Broker Conditions

For best performance, use a broker with raw spread or ECN accounts on XAUUSD.

A typical XAUUSD spread should be under 300–400 points during London/New York sessions.

The EA's spread filter (InpMaxSpreadPts) will automatically pause the grid if spread widens.



Recommended products
AI Bolinger PRO
Saniyat Nabiyeva
AI Bolinger Pro — Evolution of a Classic. It is from the AI PRO EA series, which means that the code is 100% designed and written by Artificial Intelligence, and is equipped with 24 different institutional-level position management functions, making it one of the leading (EAs) in terms of the variety of modes. The absence of the human factor in the creation of this advisor via (AI) has allowed the price to be minimized for users; similar functionality created by a real programmer would cost the
EDA Sniper Trade Manager is a premium hybrid trading assistant designed for traders who demand strict risk management. Stop relying on emotions and let a smart algorithmic shield protect your capital. Whether you trade manually via the intuitive panel or use the built-in Auto-Trade module, the 6-Layer Protective Guard System (C1-C6) works silently in the background, adapting to market conditions to protect your equity and maximize your winning runs. ️ PREMIUM ON-CHART CONTROL PANEL Execute and
NQ Trading System – Professional NASDAQ Trading Algorithm NQ Trading System is an advanced fully automated trading algorithm developed for the NASDAQ (US100) market, designed with a focus on controlled risk and consistent long-term growth. This system is built using over 20 years of market experience and real trading data. The goal is not to open random trades, but to analyze market behavior, wait for the right conditions, and manage profits intelligently. Installation & Usage (Important) Thi
PhaseFlow Fusion
Masahiro Takashima
5 (1)
PhaseFlow Fusion PhaseFlow Fusion combines two separate, individually tested strategies inside a single Expert Advisor: a Gold (XAUUSD) trend strategy and a Bitcoin (BTCUSD) regime strategy. They run at the same time from one chart, each detects its own broker symbol automatically, and each keeps its own lot size, magic number and comment. Run both together, or switch either one off to trade a single market. This EA is completely free, with no trial period, no locked features and no account l
FREE
Rebate Hunters
Sudibyo Raharjo
Triangular ABR EA (EURUSD – GBPUSD – EURGBP) Take advantage of market inefficiencies with this high-speed Triangular ABR   Expert Advisor , designed to trade across three major currency pairs: EURUSD, GBPUSD, and EURGBP . This EA identifies price discrepancies between correlated pairs and executes trades within milliseconds to capture risk-adjusted profits before the market corrects itself.  Key Features: Triangular Abr Strategy Exploits real-time price differences between EURUSD, GBPUSD, and E
Range Breakout EA PRO
Kabelo Frans Mampa
Test Before Use... In the forex market, a range refers to a period of time during which the price of a currency pair remains relatively stable, fluctuating within a narrow band. This can be contrasted with a trend, which refers to a sustained movement in the price of a currency pair in a particular direction. During a range, the price of the currency pair may move up and down within a defined range, but it is not trending strongly in any particular direction. This can be a good time for the rang
FREE
Overview European Japan Phoenix Trader is a fully automated trading robot for EURJPY, running on the MetaTrader 5 platform. It is designed for traders who want a hands-off approach to EURJPY without configuring complex parameters or monitoring charts throughout the day. Every trade carries a hard stop loss from the moment it opens. There is no martingale, no grid, and no position averaging. Drawdown is controlled by fixed stop-loss levels on each trade and by configurable daily loss limits that
Vortex X
Ignacio Agustin Mene Franco
VORTEX v1.0 — Expert Advisor for XAUUSD Algorithmic Trading System | Worldinversor 2026 OVERVIEW VORTEX v1.0 is a fully automated Expert Advisor, specifically developed for trading the XAUUSD (Gold/US Dollar) pair. It combines institutional-level structural analysis with momentum divergence detection, filtering each signal through a double-confirmation engine based on CCI and MACD to ensure that only high-probability trades are executed. MAIN STRATEGY VORTEX identifies trading opportunities
ProTrade EA
Jim Ariel Camarce Ignao
Key Features   Automated Candle Pattern Recognition 10 Professional Patterns : Detects Bullish/Bearish Engulfing, Hammer/Shooting Star, Morning/Evening Star, Piercing/Dark Cloud, and 6 additional professional candlestick patterns Smart Filtering : Combine multiple patterns with configurable confirmation logic Volume Confirmation : Optional volume filter to validate pattern strength Multi-Timeframe Analysis : Separate execution and bias timeframes for better timing   Trading Dashboard Int
Signova Premium - Automated 19-Symbol Forex Swing Trading Additional materials and instructions Complete manual   -   MT4 version   -   MT5 version Built on a strategy from the German trading department of a large investment bank, now adapted for retail traders. Low risk by design: at the default risk level, the average trade risk is about 0.75% of your account. Try it free: a 60-day evaluation version is available on our   website . Signova Premium is an automated forex trading robot for Meta
Momentum Navigator
Itumeleng Mohlouwa Kgotso Tladi
Introducing the Momentum Navigator EA Your Path to Wealth and Smart Trading! Take charge of your financial future with Momentum Navigator EA , the ultimate expert advisor for MetaTrader 5. Designed to revolutionize your trading experience, this cutting-edge trading robot empowers you to navigate market trends with precision, efficiency, and confidence. Whether you're new to trading or an experienced professional, Momentum Navigator EA is your perfect partner in reaching financial success. Why
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
Code Green
Md Wakiluzzaman Raz
Code Green EA This is a breakout strategy featuring advanced market confirmation and robust risk management. The system is designed to be highly flexible, offering the choice to utilize a Martingale recovery module or trade without it. Performance & Transparency This EA is built to provide realistic, sustainable results rather than inflated or unrealistic returns. While I have conducted my own internal forward testing, I encourage all traders to verify the strategy’s performance independently on
MaCrussAdv
Babak Bakhtiarzadeh
Simple MA Cross EA Simple MA Cross EA is a fully automated, clean, and robust Expert Advisor based on the classic Moving Average crossover strategy. This EA is designed for trend-following traders and serves as an excellent benchmark for automated trading on the MetaTrader 5 platform. Built using the official MQL5 Standard Library ( CTrade ), the EA ensures reliable, secure, and fast order execution. It is optimized to run smoothly without lagging your platform or spamming your broker’s server.
Gyroscopes mt5
Nadiya Mirosh
5 (2)
Gyroscope        professional forex expert   (for EURUSD, GBPUSD, USDJPY, AUDUSD, USDCHF, EURGBP, EURJPY, NZDUSD, USDCAD, EURCHF, AUDJPY, CADJPY pairs)   alyzing the market using the Elliot Wave Index. Elliott wave theory is the interpretation of processes in financial markets through a system of visual models (waves) on price charts. The author of the theory, Ralph Elliott, identified eight variants of alternating waves (of which five are in the trend and three are against the trend). The mov
PairsTrading MT5
Evgenii Kuznetsov
The EA identifies divergences in two correlated currency pairs and trades in the direction where they converge back. Working timeframe: M30 Input parameters MagicNumber - identification number for the EA. OrdersComment - comment to order, automatic if an empty value is set. Lots - lot size. DepoPer001Lot - automatic lot calculation (specify the balance per 0.01 lot) (if 0, the value from 'Lots' parameter is used). TimeFrame - working timeframe. Symbol #2 - correlated currency. Symbol #2 reverse
Live Gold EA
Prabir Sarkar
Live Gold EA - Professional XAUUSD Gold Trading Robot Live Gold EA is a professional MetaTrader 5 Expert Advisor designed for XAUUSD / Gold trading with smart trade management, adaptive risk control, drawdown protection, and a clean professional dashboard. It is built for traders who want a structured automated gold trading system with optimized internal logic and user-friendly risk controls. Limited Launch Offer The price will increase step by step as more users purchase the EA. First 3 buyers:
Valkiria Gold Scalper AI
Jean Carlos Cedeno Gautreaux
VALKIRIA GOLD SCALPER AI — Paquete de publicación MQL5 Market (La configuracion por defecto no es la mas productiva, escribeme y te dare los parametros que te aseguran de 20 a 30 diarios) DESCRIPCIÓN LARGA (página del producto) Valkiria Gold Scalper AI es un asesor experto (EA) de scalping diseñado específicamente para operar en oro (XAUUSD) en marcos temporales cortos. Combina el cruce de dos medias móviles exponenciales (EMA 20 y EMA 50) con un filtro de momentum basado en el RSI(14) para ide
Golden Voyage
Dmitriq Evgenoeviz Ko
Golden Voyage MT5 is an expert advisor for conservative gold trading (XAUUSD), focused on strict risk management and single-position trading. The advisor does not use grids, martingale, averaging, or locking. Trading logic and risk management Single Position Mode Only one trade per symbol can be open at a time. Re-entries and volume increases are not permitted. Fixed risk per trade The stop-loss size is calculated as a percentage of the current balance. The lot size is automatically determined
Force Trade X MT5 is an EA based on Force Index. Force Index parameters such as Period, BuyShift, BuyValue, SellShift, and SellValue can be adjusted. Force Trade X MT5 applies BTN TECHNOLOGY's state-of-the-art intelligent technology to help you create optimal results for your trades. May your dreams come true through Force Trade X MT5. Good luck. === Inquiries === E-Mail:support@btntechfx.com
One Minute Fury
Aubriel Vuyisile Ncube
OneMinuteFury – Fast Gold Scalper Exclusively built for XAUUSD on the H1 timeframe OneMinuteFury is a precision scalping Expert Advisor engineered for quick, high-probability entries in the gold market. It combines momentum shifts, volatility confirmation, and real market structure to identify favorable short-term opportunities. Key Strengths: Aggressive yet controlled entry logic for fast trades Dynamic stop-loss based on recent price structure Half-risk mode for tighter initial stops (optiona
HMA Scalper Pro EA
Vladimir Shumikhin
5 (2)
HMA Scalper Pro EA — Automated Trading Advisor Based on Hull Moving Average (HMA) for MetaTrader 5 OVERVIEW HMA Scalper Pro EA is a professional trading robot (Expert Advisor) for MetaTrader 5 that trades in the direction of the Hull Moving Average (HMA). The HMA indicator determines the current trend direction, and the EA opens trades in that direction, enhanced by Smart Risk capital management, adaptive grid trading, trailing stop, breakeven, and time filters. The EA supports both Netting a
GOLD D1 – Estratégia Candle 80% com Pirâmide Inteligente e Trailing Dinâmico (MT5) O   GOLD D1   é um Expert Advisor avançado desenvolvido para operar principalmente o XAUUSD (Ouro) com base em análise de força do candle diário, confirmação de momentum e gestão inteligente de posições. Trata-se de um robô robusto, focado em capturar movimentos fortes do mercado enquanto controla o risco através de uma estrutura adaptativa de pirâmide e trailing stop. Estratégia Principal – Candle 80% O robô
Trading strategy: Scalping. Trading on impulses in automatic trading has been used for a long time and the scheme is not new to traders. It is difficult to catch such moments manually, but the adviser copes instantly. Automated trading uses 2 approaches to trade in such cases: look for pullbacks after impulses. trade in the direction of momentum. The search for entry points is done like this: the adviser measures the rate of price change for which this change should occur, if the conditions for
Supremacy
Seira Yokota
SUPREMACY BTCUSD – A hybrid scalping Martingale EA that combines aggressiveness and durability SUPREMACY is a hybrid automated trading system designed exclusively for BTCUSD. While it is a scalping-focused Martingale EA, it also possesses the robustness to withstand long-term operation. Generally, “scalping,” “Martingale,” and “long-term durability” are often considered conflicting elements, but this EA successfully fuses them at a high level. At the core of this EA is a high-speed scalping lo
ZENITH FLOW EA — Real math. No illusions. A fully automated, rules-based Expert Advisor for XAUUSD (Gold) on H1 . No grid. No martingale. No curve-fitting to one lucky year — just a multi-timeframe trend engine with strict, broker-side risk control, validated across 13 years of real-tick history . IMPORTANT: After purchasing, please send me a private message to receive the optimized Set Files and the exclusive Installation Manual. LAUNCH PROMO: EARLY BIRD PRICING To reward early adopte
SolarTrade Suite Financial Robot: LaunchPad Market Expert - designed to open trades! This is a trading robot that uses special innovative and advanced algorithms to calculate its values, Your Assistant in the World of Financial Markets. Use our set of indicators from the SolarTrade Suite series to better choose the moment to launch this robot. Check out our other products from the SolarTrade Suite series at the bottom of the description. Do you want to confidently navigate the world of inves
Bober Real MT5
Arnold Bobrinskii
4.88 (16)
Bober Real MT5 is a fully automatic Forex trading Expert Advisor. This robot was made in 2014 year and did a lot of profitbale trades during this period. So far over 7000% growth on my personal account. There was many updates but 2019 update is the best one. The robot can run on any instrument, but the results are better with EURGBP, GBPUSD, on the M5 timeframe. Robot doesn't show good results in tester or live account if you run incorrect sets. Set files for Live accounts availible only for cu
Outside Day Reversal EA
Munkh Od Jargalsaikhan
Outside day trading strategy looks for a specific pattern in the price chart of a security. The pattern is characterized by a larger range than the previous day, with the high of the day higher than the previous day's high and the low of the day lower than the previous day's low. Works with many symbols, such as BTCUSD, GBPUSD,USDCAD, oil, gas, and others. PLEASE RATE! Thank you very much! FEATURES: - Real Strategy - Daily Bar Strategy - Exit the trade if the day was profitable - ATR multiple s
FREE
Vortex Turbo EA
Stanislav Tomilov
5 (17)
Vortex Turbo — “Trade the storm — control the Vortex” Vortex Turbo represents the next evolutionary stage in intelligent trading — a unique development that merges cutting-edge AI architecture, adaptive market logic, and precise risk control. Built upon proven algorithmic principles, it integrates multiple strategies into a unified high-speed ecosystem powered by a new level of predictive intelligence. Designed as a scalping expert for gold XAUUSD(GOLD), Vortex Turbo employs a controlled martin
Buyers of this product also purchase
Quantum Queen X MT5
Bogdan Ion Puscasu
5 (11)
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
Lizard
Marco Scherer
4.9 (30)
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 Signal - Track real performan
Scalping Robot Pro MT5
MQL TOOLS SL
4.51 (128)
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.46 (102)
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
TwisterPro Scalper
Jorge Luiz Guimaraes De Araujo Dias
4.46 (123)
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
Ultimate Breakout System
Profalgo Limited
5 (46)
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 : At 1499$ or higher price --> 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 - VERSION 5.0 - ONECHARTSETUP NEW - 30-STRATEGIES LIVE SIGNAL Welcome to the ULTIMATE BREAKOUT SYSTEM! I'm pleased to present the Ultimate Breakout
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
Smart Gold Hunter
Barbaros Bulent Kortarla
5 (20)
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
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.18 (28)
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
Quantum King EA
Bogdan Ion Puscasu
4.96 (211)
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
Goldwave EA MT5
Shengzu Zhong
4.73 (71)
Real Trading Account   LIVE SIGNAL IC MARKETS:  https://www.mql5.com/en/signals/2339082 This EA uses the same logic and execution rules as the verified live signal shown on MQL5.When used with the recommended, optimized settings on a reputable ECN/RAW-spread broker ( e.g., IC Markets or TMGM) , the EA's live trading behavior is designed to closely align with the trade structure and execution characteristics of the live signal. Please note that differences in broker conditions, spreads, executio
Mavrik Scalper
Vladimir Lekhovitser
4.5 (2)
Live Trading Signal Public real-time monitoring of trading activity: https://www.mql5.com/en/signals/2378119 Official Information Seller profile Official channel User Manual Setup instructions and usage guidelines: View user manual Mavrik Scalper represents a new generation of AI-driven trading systems built around a Hybrid Attention neural network architecture. Unlike conventional algorithmic strategies that rely primarily on fixed technical indicators or predefined market rules, Mav
Nexorion Initium Novum EA
Valentina Zhuchkova
5 (16)
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/es/signals/2372338 Technical System Specificatio
AXIO Gold EA
Shengzu Zhong
4.6 (10)
AXIO GOLD EA MT5 Live Signal Reference on MQL5 https://www.mql5.com/en/signals/2378982?source=Site+Signals+My AXIO GOLD EA MT5 is an automated trading system developed for XAUUSD Gold on MetaTrader 5. This EA uses the same logic and execution rules as the verified live signal shown on MQL5. When used with the recommended, optimized settings on a reputable ECN/RAW-spread broker such as TMGM , the EA's live trading behavior is designed to closely align with the trade structure and execution charac
Logan MT5
Thierry Ouellet
5 (7)
LIMITED TIME OFFER AT 249$ Price will go up at  499$ on July 27th! 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—includ
Gold House MT5
Chen Jia Qi
4.53 (59)
Gold House — Gold Swing Breakout Trading  One EA. Three Trading Modes. Choose the One That Fits Your Style. No Grid. No Martingale. The price will increase by $50 after every 10 purchases. Final planned price: $1,999. Live Signals:  Profit Priority Mode: https://www.mql5.com/en/signals/2359124 BE priority Mode :  https://www.mql5.com/en/signals/2372604 Adaptive Mode:   https://www.mql5.com/en/signals/2379287  (High-Risk Configuration Reference – Potential profits and losses are amplified. N
Gold Neural Core
TICK STACK LTD
5 (3)
Gold Neural Core — Hyper-Scalping Grid System for XAUUSD Learn how I personally manage risk when using grid systems:  https://www.mql5.com/en/blogs/post/767250 Join my open group for questions related to any of my products:  https://www.mql5.com/en/messages/014beab2560cdc01 Read the user guide to any TickStack grid system:  https://www.mql5.com/en/blogs/post/767232 Gold Neural Core is a high-frequency grid trading system engineered specifically for gold (XAUUSD), combining momentum and trend-bas
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
Smart Gold Impulse
Barbaros Bulent Kortarla
3.42 (12)
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
Pulse Engine
Jimmy Peter Eriksson
3.94 (34)
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
Cortex Aurex
Vladimir Mametov
5 (2)
It is a fully automated Expert Advisor for MetaTrader 5, built specifically for Gold / XAUUSD trading. Its logic is designed around the dynamic nature of the gold market: fast price movements, sharp reversals, and high volatility. The EA helps automate trading in an environment where reaction speed, discipline, and precise position management are especially important. The system is focused on disciplined trade management, fast reaction to market changes, and controlled exits. Its main idea is si
Quantum Emperor MT5
Bogdan Ion Puscasu
4.86 (507)
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
Quantum Athena X
Bogdan Ion Puscasu
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
Quantum iGold MT5
Yassine Mouhssine
5 (5)
Quantum iGold MT5 – Advanced AI Trading System (XAUUSD) Quantum iGold MT5 is a fully automated trading system built using advanced Artificial Intelligence techniques. It employs a hybrid neural architecture that integrates LSTM and Transformer models to analyze price behavior on XAUUSD . This structure enables the system to detect market patterns, adapt to volatility changes, and generate technically refined trading signals in real time. After purchase, please contact me via MQL5 private messa
Impulse MT5
Simon Reeves
5 (13)
Are you ready to power up your Gold trading? Impulse by Starpoint Trading — A six-strategy gold EA that waits for the perfect shot. Launch offer: 30% off until 26th July   — to celebrate the v2.00 release, Impulse is available at a 30% discount. On 26th July the price reverts to $499, so grab it while the offer lasts. Come chat with us in our public MQL5 channel!  https://www.mql5.com/en/channels/starpoint Impulse v2.00 is here! The biggest update in Impulse's history has arrived. Version 2.00
SixtyNine EA
Farzad Saadatinia
5 (3)
SixtyNine EA – A Gold Expert Advisor for MetaTrader 5, featuring 6 integrated strategy layers, predefined Stop Loss on every trade, and a clean trading structure without Martingale, Recovery systems, or Grid trading. Public Live Signal: $500 Start, Fixed 0.02 Lot, 500%+ Growth, 20 Weeks Live The public live signal is the central proof point of SixtyNine EA . The account started with a $500 balance , used a fixed 0.02 lot size per trade , and has been active for more than 20 weeks of live tradin
Wave Rider EA MT5
Adam Hrncir
4.88 (43)
Scalper speed with sniper entries. Built for Gold. Wave Rider 5.0 is out (see  Announcement ) $499  until Signal reaches 150% - then 599 USD Check the Live signal  or Manual  or  Broker performance Version 5.0 upgrade notice: Close all Wave Rider positions before updating. Strategy Magic Numbers and several input names changed. Review your settings and save a new preset because older sets or templates may not restore every option. New version runs best on VT Markets, Vantage, Blackbull, Fusion,
Chiroptera
Rob Josephus Maria Janssen
4.57 (46)
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
Quantum Bitcoin EA
Bogdan Ion Puscasu
4.77 (128)
Quantum Bitcoin EA : There is no such thing as impossible, it's only a matter of figuring out how to do it! Step into the future of Bitcoin trading with Quantum Bitcoin EA , the latest masterpiece from one of the top MQL5 sellers. Designed for traders who demand performance, precision, and stability, Quantum Bitcoin redefines what's possible in the volatile world of cryptocurrency. IMPORTANT! After the purchase please send me a private message to receive the installation manual and the setup i
More from author
//+------------------------------------------------------------------+ //| WAHLA GOLD SPEEDOMETER — Product Description (MQL5 Indicator)   | //+------------------------------------------------------------------+ /* WAHLA GOLD SPEEDOMETER is a real-time market speed and behavior analytics indicator designed for XAUUSD and fast-moving instruments. It does not simply show price movement — it interprets market velocity, volatility, and structural behavior in a single unified dashboard. --- CORE
FREE
JAGI22 EA — Professional XAUUSD Grid Execution System Overview JAGI22 EA is a professional dual-side stop grid trading system designed specifically for XAUUSD (Gold). The strategy is built around controlled execution, fixed stop loss protection, break-even automation, and intelligent trailing management instead of dangerous martingale recovery systems. The EA uses pending Buy Stop and Sell Stop structures to capture strong directional movement while maintaining controlled exposure and predefined
Moon22 Intelligent Expert Advisor “Hello, I am MOON22.” If you are trading with me, you are not just using an Expert Advisor — you are stepping into a structured trading environment built on confidence, control, and protection. I exist for one purpose: to make trading feel less uncertain and more manageable. With MOON22, trading is no longer about fear of market movement. It becomes a system where protection is already active, risk is already structured, and your positions are continuously cared
Hello, I am Trade Care. You focus on finding trading opportunities — I focus on protecting them. Trade Care is an intelligent hybrid trade management system designed to monitor and manage your manually opened trades with precision and discipline. Once your trade is active, I continuously work in the background to help protect it through advanced risk-management techniques and automated trade care functions. I am Trade Care. I monitor your trades. I provide timely stop-loss protection. I manage b
Horsepower Quantum — A Conversation With the User User: Who are you? Horsepower Quantum: I am Horsepower Quantum — an intelligent trading system built to combine speed, structure, precision, and controlled execution. My purpose is not simply to open trades, but to analyze market conditions and react with discipline. User: What makes you different? Horsepower Quantum: I operate through layered decision-making. I combine signal processing, market speed awareness, smart filtering, and controlled
Meet GoldenHorse — Where Precision Meets Automated Trading Hello Trader, I am GoldenHorse — an advanced MT5 automated trading system engineered to transform complex market movements into structured and intelligent execution. Built with a powerful Dual-Side Stop Grid Architecture , Hybrid Manual Trade Management , and an adaptive Multi-Speed Market Detection Engine , I am designed to operate with discipline, speed, and calculated control. I continuously analyze market conditions and dynamically a
Game Changer Horse Power EA –  Overview Game Changer Horse Power is an advanced multi-mode Expert Advisor designed to adapt dynamically to changing market conditions. It operates through a structured execution framework built around three core trading modes: Low Mode (Conservative Execution) Medium Mode (Balanced Execution) High Mode (Aggressive Execution) The system is engineered for high-performance automated trading, focusing on execution stability, structured risk handling, and adaptive m
Wahla22
Umer Shahzad
WAHLA22 EA is an advanced algorithmic trading system built on structured logic, precise entry and exit rules, and an optimized execution architecture. Its primary objective is to deliver stable and consistent trading performance across varying market conditions without unnecessary behavioral deviation. This system operates on a multi-mode design where Play Mode executes the core trading logic exactly as defined, while additional modes are fully isolated and dedicated to validation and analysis.
Filter:
No reviews
Reply to review