Dai Dai

Dai Dai is a fully automated grid Expert Advisor for MetaTrader 5, built based on Stochastic divergence entries and a dynamically spaced grid that adapts to live market volatility. It opens the first position only when a confirmed divergence signal appears, then manages the open basket automatically — adding grid orders as price moves against it and closing the entire basket the moment a combined profit target in dollars is reached.

The EA offers a choice between Martingale lot scaling and a fixed-lot grid, a deep drawdown recovery mode that tightens the profit target when the basket grows large, and a hard equity stop that protects your account if losses reach a defined threshold. All execution is live-trade ready: the EA respects broker spread conditions, checks available margin before every order. A configurable session time filter controls when new entries are permitted, while basket management and closing remain active at all times.

HOW IT WORKS

At every tick, the EA reads the Stochastic oscillator and scans recent price highs and lows for a divergence pattern. A bullish divergence — where price makes a lower low but Stochastic makes a higher low below the 20 level — opens a Buy basket. A bearish divergence — price making a higher high while Stochastic makes a lower high above the 80 level — opens a Sell basket. Only one basket per direction is active at a time. Once a basket is open, the EA monitors distance from the last entry. When price moves against the position by a grid step calculated from the ATR (Average True Range), a new order is added. The grid step automatically widens in volatile markets and narrows during quiet periods, always respecting a configurable minimum. Lot sizes either stay fixed or scale up with each additional order using a configurable Martingale multiplier capped at a maximum lot size. The basket closes in full as soon as the combined floating profit of all positions in that direction reaches the dollar target. If the order count exceeds the recovery threshold, the profit target drops to breakeven, allowing the EA to exit the basket at zero loss instead of waiting for the full target. A hard equity stop closes all positions instantly if the account drawdown reaches a set percentage.

KEY FEATURES

  • Stochastic Divergence Entry — opens the first position only on a confirmed divergence signal between price action and the Stochastic oscillator, filtering out random noise and entering only at statistically meaningful turning points.
  • ATR Dynamic Grid Spacing — grid step distance is calculated from the current ATR multiplied by a configurable factor, so the EA spaces orders further apart in fast-moving markets and tighter in calm ones. A minimum step floor prevents orders from stacking too closely.
  • Martingale or Fixed Lot Grid — switch between Martingale lot scaling (each new grid order multiplied by a configurable factor) and a flat fixed-lot grid with a single toggle. A maximum lot cap limits exposure regardless of how deep the basket goes.
  • Basket Profit Target — all positions in a direction are closed simultaneously the moment their combined floating profit reaches the configured dollar target. Closing is permitted at any time of day, independent of the session filter.
  • Deep Drawdown Recovery Mode — when the number of open orders in a basket reaches a configurable threshold, the profit target automatically drops to zero, allowing the EA to exit at breakeven and stop the drawdown from compounding further.
  • Hard Equity Stop — if account equity falls below a defined percentage of balance, all positions are closed immediately and the EA prints an alert. Set to 0 to disable.
  • Spread Filter — new entries and grid additions are blocked when live spread exceeds the configured maximum. Basket closing is never blocked by spread.
  • Session Time Filter — new entries are restricted to a configurable server-time window with minute-level precision. A separate cutoff parameter stops new grid orders a set number of minutes before the session ends, preventing late additions that cannot be managed.
  • Margin Check — before every order, the EA calculates the margin required and compares it to free margin. If insufficient, the order is skipped cleanly with a log message rather than failing at the broker.
  • Live On-Chart Dashboard — a compact panel displays system status, lot mode, max drawdown setting, current ATR grid step, live spread, total closed trades, win rate, daily P&L, and total floating profit — all colour-coded for instant reading. The panel is automatically disabled during backtesting to avoid interference.
  • Daily P&L Tracking — equity baseline resets automatically each new day, providing an accurate intraday profit and loss figure at all times.
  • 2-Digit to 5-Digit Broker Compatibility — all point-based inputs are automatically scaled to the broker's decimal precision at startup.
  • Multi-EA Isolation — configurable magic number allows multiple instances to run on different symbols or timeframes simultaneously without interference.

  • RECOMMENDED SETUP

  • Timeframe: M1
  • Pair: XAUUSD (Gold)
  • Account type: ECN or STP with low spreads
  • Recommended brokers: VT MARKETS or a Cent 2-digit broker (ROBOFOREX)
  • 2 decimal price quota for GOLD
  • Account type: Hedging
  • Minimum balance Cent Account: $500 (recommended $1,000+ for Martingale mode), if balance $500 in Cent Account you will get $50,000
  • Minimum balance Standard Account: $50,000
  • VPS: strongly recommended for uninterrupted basket management

  • INPUT PARAMETERS

    --- GRID & RISK SETTINGS ---

  • InpMagicNumber — Unique identifier for this EA's orders. Change when running multiple instances on the same account. Default: 888.
  • InpMaxSpread — Maximum allowed spread in 2-digit points. New entries and grid additions are blocked above this level. Default: 30.
  • InpUseMartingale — When true, each additional grid order is multiplied by InpSmartMultiplier. When false, every grid order uses InpBaseLot. Default: true.
  • InpBaseLot — The lot size of the first order in each basket, and the fixed lot size for all grid orders when Martingale is disabled. Default: 0.01.
  • InpMaxLot — Hard cap on any single order's lot size. Prevents Martingale scaling from producing excessively large orders deep in the grid. Default: 2.00.
  • InpSmartMultiplier — Multiplier applied to the previous lot size for each new Martingale grid order. Only active when InpUseMartingale is true. Default: 1.5.
  • InpBasketProfitUSD — Dollar profit target for the combined basket. When total floating profit across all positions in one direction reaches this value, the basket is closed in full. Default: $5.00.
  • InpMaxDrawdown — Maximum allowed drawdown as a percentage of account balance. All positions are closed immediately if this level is breached. Set to 0 to disable. Default: 80.

  • --- DEEP DRAWDOWN RECOVERY ---

  • InpRecoveryOrderCount — When the number of open orders in a basket reaches this count, the profit target is changed to $0.00 (breakeven), allowing the EA to exit without requiring a full recovery. Set to 0 to disable. Default: 7.

  • --- DYNAMIC ATR GRID SETTINGS ---

  • InpATRPeriod — Number of bars used to calculate the Average True Range. A longer period produces a smoother, slower-reacting grid step. Default: 14.
  • InpATRMultiplier — Scales the ATR value to produce the grid step distance. Higher values space orders further apart. Default: 2.0.
  • InpMinGridStep — Minimum allowed grid step in points, regardless of what ATR calculates. Prevents orders from being placed too close together in very low-volatility conditions. Default: 150.

  • --- STOCHASTIC SETTINGS ---

  • InpStochK — K period of the Stochastic oscillator used for divergence detection. Default: 14.
  • InpStochD — D period (signal line smoothing) of the Stochastic oscillator. Default: 3.
  • InpStochSlowing — Slowing parameter of the Stochastic oscillator. Default: 3.

  • --- TRADING TIME (SERVER TIME) ---

  • InpStartHour — Server hour when the EA begins placing new entries and grid orders. Default: 2.
  • InpStartMinute — Minute within the start hour when the session opens. Default: 0.
  • InpEndHour — Server hour when the EA stops placing new entries. Existing baskets continue to be managed after this point. Default: 22.
  • InpEndMinute — Minute within the end hour when the session closes. Default: 0.
  • InpStopNewOrdersBeforeEndMinutes — Stops all new entries and grid additions this many minutes before the session end time. Prevents late orders from being opened without enough time to recover. Default: 30.

  • Note:

    • Always test on a demo account first before going live. Grid strategies carry significant risk if parameters are not matched to your broker and symbol.
    • Martingale mode requires adequate account balance to sustain multiple grid levels. Reduce InpBaseLot if your balance is limited.
    • Use a Cent account if starting with a small balance.
    • A VPS is strongly recommended to ensure all open baskets are managed continuously without interruption.
    • This EA does not need any file set to run, just make sure it runs on 2 digit broker.
    • Get user manual settings guide inside our Telegram group.
    Recommended products
    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
    Hamster Scalping mt5
    Ramil Minniakhmetov
    4.71 (241)
    Hamster Scalping is a fully automated Expert Advisor. Night scalping strategy. The RSI indicator and an ATR-based filter are used for entries. The advisor needs a hedging account type Be careful i not sell EA or sets at telegram it scam. All settings free here at   blog .  IMPORTANT! Contact me immediately after the purchase to get instructions and a bonus! Real operation monitoring as well as my other products can be found here: https://www.mql5.com/en/users/mechanic/seller General Recommendati
    | Fully-automated Smart Money Concept (ICT) inspired trading solution with multi-strategy capabilities | Built by a grid trader >> for grid traders.  This is MT5 version, click  here  for  Blue CARA MT4  (settings and logics are same in both versions)     Real monitoring signal  -->  Cara Gold Intro Blue CARA EA   ('CARA') - short for  C omprehensive  A lgorithmic   R esponsive   A dvisor is a next-gen  multi-currency    multi-timeframe  EA base on the widely known (and perhaps the most popul
    AI Equity Protector - Quant EA for Funded Accounts Building trading systems is tough work. Most standard EAs look great in backtests but fall apart the second real market volatility hits. I was tired of seeing robots blow accounts during basic news events. So, I coded the AI Equity Protector. It took a lot of trial and error to get this right. It is built strictly for capital preservation. If you trade with Prop Firms or manage real funded accounts, you know exactly how crucial that is. Exness L
    Magic EA MT5
    Kyra Nickaline Watson-gordon
    Magic EA is an Expert Advisor based on Scalping, Elliot Waves and with filters such as RSI, Stochastic and 3 other strategies managed and decided with the robot smartly. Large number of inputs and settings are tested and optimized and embedded in the program thus inputs are limited and very simple. Using EA doesn't need any professional information or Forex Trading Knowledge. EA can trade on all symbols and all time frames, using special and unique strategies developed by the author. The EA w
    King of Pullbacks
    Reward Ndunga Mubita
    King of Pullbacks — Expert Advisor King of Pullbacks is a proprietary Expert Advisor developed to exploit temporary price retracements within established bullish market structures . The trading logic is based on a multi-layer confirmation model that evaluates market conditions dynamically before any trade is executed. The internal methodology is non-disclosed and protected by design. General Trading Concept The EA focuses on: XAUUSD H4, H1 Recommended brokers: Exness, FBS, etc Trading with
    Classic SNR MetaTrader 5 Expert Advisor | Multi-Symbol Support & Resistance Trading with Trend-Based Logic Overview Classic SNR Breakout EA is a professional trading robot that identifies structural Support & Resistance levels using daily swing points and executes trades based on H1 price action relative to these levels. The EA applies   dual logic : in an uptrend, it sells on H1 rejection below an SNR level; in a downtrend, it buys on H1 rejection above an SNR level. Breakout confirmations are
    Bear vs Bull EA MT5
    Nguyen Nghiem Duy
    Bear vs Bull EA Is a automated adviser for daily operation of the FOREX currency market in a volatile and calm market. Suitable for both experienced traders and beginners. It works with any brokers, including American brokers, requiring FIFO to close primarily previously opened transactions. *In order to enable the panel, it is necessary to set the parameter DRAW_INFORMATION = true in the settings; - Recommendations Before using on real money, test the adviser with minimal risk on a cent tradi
    Magic Grid MT5
    Aliaksandr Charkes
    4.14 (7)
    Magic Grid MT5 is a non-indicator Expert Advisor using a grid strategy (on a hedging account). The strategy is based on automatic reopening of grid pending orders, after closing their market positions (by Take-Profit, Stop-Loss or manually). Pending orders are placed with a specified step from the initial prices, which can be entered manually or generated automatically (once at the beginning of the trade).   The robot can trade on any timeframe, on any currency pair, on several currency pairs,
    Works to open two hedging deals, buying and selling, with a goal of each deal of 20 points With the opening of multiple cooling deals in the manner of another lot size and suspending each type of sale or purchase transaction At a profit level. The King Hedging Forex 2R Upward or Downward Profit Parameters: Lot1: Manual Lot Size Auto_Lot: Set true to automatically calculate optimal Lot Size based on risk preferences, Set False if you want to use manual lot size. Max_Risk: Max Risk as percentage
    Gold Injection EA MT5
    Muhammad Sharjeel Awan
    5 (1)
    Automated Gold Trading EA for XAUUSD Gold Injection EA is an automated MetaTrader 5 Expert Advisor developed for XAUUSD Gold trading . This EA uses built-in trading logic with grid management, automatic lot calculation, spread filtering, drawdown control, weekly schedule settings, and news filter settings. It is designed for traders who want an automated Gold trading tool with adjustable risk and trade management options. Current Price: $30 → Next Price: $499 → Final Price: $999 MYFXBOOK Gold
    Gold Zilla AI MT5
    Christophe Pa Trouillas
    4.69 (16)
    Generate controlled returns with an  AI-assisted , risk-diversified and Gold-optimized EA . GoldZILLA AI is a multi-strategy algorithm detecting market regimes to dynamically select from five distinct strategies, optimizing returns while minimizing drawdown on XAUUSD. [ Live Signal ] - [  Dedicated group | Version MT5 - MT4 ] After the purchase, please send me a private message to receive the user manual and the AI setup instructions. Why choose this EA? Dynamic multi-strategy approach Advanced
    Hunt Protocol
    Dmitriq Evgenoeviz Ko
    Hunt Protocol is a Expert Advisor (EA) designed for trading the Gold (XAUUSD) market. It uses a unique strategy for capturing price impulses (impulse scalping) that occur during sharp price movements over short timeframes (seconds), as well as trend filtering on higher timeframes. The advisor is designed to profit from the high volatility of precious metals, combining entry accuracy with strict risk control. Only 5 copies at premium price, then the price will increase! Exclusive to XAUUSD: The
    M5 Gold Scalper
    Dmitriq Evgenoeviz Ko
    Forex M5 Gold Scalper is a highly effective trading robot designed for automated gold trading (XAUUSD) on the MetaTrader 5 platform. The robot specializes in scalping, using five-minute chart analysis to quickly respond to market fluctuations and ensure stable income with minimal time investment. Features of the robot Analyzes graphs using PA. Quickly opens and closes positions when support and resistance levels are crossed. Offers automation of processes with manual configuration of key parame
    This robot operates based on the Parabolic SAR indicator. Verion for MetaTrader4 here . The advanced EA version includes the following changes and improvements: The EA behavior has been monitored on various account types and in different conditions (fixed/floating spread, ECN/cent accounts, etc.) The EA functionality has been expanded. Features better flexibility and efficiency, better monitoring of open positions. Works on both 4 and 5 digits brokers. The EA does not use martingale, grid or arb
    Fundamental Robot MT5
    Kyra Nickaline Watson-gordon
    Fundamental Robot is an Expert Advisor based on Fundamental Signals Indicator. The Fundamental Signals Indicator has a powerful calculation engine that can predict market movement over 30000 points. The indicator is named fundamental because it can predict trends with large movements, no complicated inputs and low risk.  The EA works with low margin levels and thus has low risk. Using EA : The EA is very simple and without complicated input parameters. These are main parameters must be set
    Exclusive EA for FOREX HEDGE account The EA (FuzzyLogicTrendEA) is based on fuzzy logic strategies based on the analysis of a set of 5 indicators and filters. Each indicator and filter has a weight in the calculation and, when the fuzzy logic result reaches the value defined in the EA parameter, a negotiation is opened seeking a pre-defined gain. As additional functions it is possible to define maximum spread, stop loss and so on . Recommended Symbol: EURUSD, AUDUSD, GBPUSD, NZDUSD, USDCAD, AU
    ================================================== DeepNero Xtreme Ultimate MT5 (Market Edition) ================================================== DeepNero Xtreme Ultimate MT5 stands as the absolute flagship of the DeepNero systematic ecosystem. This elite iteration harnesses the maximum capacity of our ONNX neural evaluations combined with a comprehensive 20-tier market assessment architecture. Designed for zero-compromise precision, the Ultimate version scans deeply for intricate market dis
    Phoenix Plus
    Dang Cong Duong
    At first, I got my teeth into  Phoenix  Ultra   Expert Advisor. This   Expert Advisor  will support automatic close order if the direction is correct and perform recovery if the direction is wrong. If you enter an order: 1. The price goes in the right direction and hits the   Min Profit Point ,   trailing stop 20% of the current profit. 2. The price goes in the opposite direction, the Expert Advisor will place the order with the volume is   Recovery Volume Percent  at the input, the distance to
    Mango Scalper
    Mahmoud M A Alkhatib
    Mango Scalper  is a fully automated scalping robot that uses a very Good and Smart breakout strategy, advanced money management and probabilistic analysis. Most effective in the price consolidation stages that occupy the bulk of the market time. Proven itself on real accounts with an excellent risk-to-reward ratio. Does not need forced optimization, which is the main factor of its reliability and guarantee of stable profit in the future. S uitable for both beginners and experienced traders.  
    The Gold Buyer
    Moses Aboliwen Aduboa
    Ride the Gold Trend with a Simple Buy-Only EA The  EA is a fully automated Buy-Only Expert Advisor for MetaTrader 5. It is designed to capture upward market opportunities with safe risk management and seamless execution. Why Traders Choose It: Best performance on Gold (XAUUSD) – highly liquid and trending. Buy-Only EA – focuses purely on long positions. Plug & Play setup – attach and let it trade automatically. Built-in Stop Loss & Take Profit protection. Smart one-position contro
    Strategy Overview BTC Breakout Scalper Pro is a breakout scalper for BTCUSD M1 that places pending stop orders at high-volatility breakout points, confirmed by RSI filter (12/88 extremes) and ADX M15 ≥ 20 (trending market only). The EA does NOT use martingale, grid, or hedging. Each trade is a single position with predefined SL/TP based on price percentage. Position size scales with account equity via the built-in Smart_Lots algorithm — bounded by your chosen MaxLots cap (.set file). Backtest Re
    Gold EA: Proven Power for 1-Minute Gold Trading Transform your trading with our Gold EA, meticulously crafted for 1-minute charts and delivering over 2000% growth in 5 years from just $100-$1000 . No Martingale, No AI Gimmicks : Pure, time-tested strategies with robust money management, stop loss, and take profit for reliable performance across multiple charts. Flexible Trading Modes : Choose Fixed Balance for safe profits, Mark IV for bold growth, or %Balance for high rewards—combine Mark IV an
    Cyclone Intraday
    Mikhail Mitin
    5 (1)
    How the EA works (simple explanation) Trades on M5 timeframe Uses H1 timeframe to analyze global market context Analyzes 2 or 3 timeframes simultaneously On each timeframe: Checks price position relative to one or two Moving Averages Evaluates MA angle and distance between price and MA Entry logic is based on trend + volatility conditions , not on random signals The full algorithm is illustrated in the screenshots. Recommended usage Symbol: EURUSD Timeframe: M5 Trading style: Intraday
    OverSeer MT5
    Theo Karam
    4 (2)
    OverSeer:Your Thoughtful Trading Ally OverSeer isn’t just another Expert Advisor—it’s a carefully crafted companion for traders looking to navigate the complex world of index trading with a steady, conservative approach. Built through years of experimentation and learning, OverSeer helps you gain exposure to global markets while keeping your strategies grounded in realism. Why Choose OverSeer? OverSeer bridges thoughtful trading strategies and practical decision-making. Instead of trying to pr
    RSI Intelligent
    Sabil Yudifera
    RSI Intelligent is a fully automated scalping robot that uses a very efficient Relative Strength Index (RSI) breakout strategy, Probabilistic analysis with (RSI). Most effective in the price Cumulative probability of a normal distribution that occupy the bulk of the market time. Transactions happen almost every day like Scalping follow trend. A Forex robot using the Relative Strength Index (RSI) indicator combined with an artificial neural network would be an advanced automated trading system th
    Apex Gold Fusion
    Dmitriq Evgenoeviz Ko
    ++ Apex Gold Fusion – The Intelligence and Energy of Gold Trading Apex Gold Fusion is more than just a trading robot; it's a synergy of advanced mathematical algorithms and in-depth gold (XAUUSD) volatility analysis. This advisor is designed for traders who value entry accuracy, capital security, and consistent results. ++ Why choose Apex Gold Fusion? ++ Specialization on XAUUSD: The algorithm is tailored exclusively to the nature of gold movements, taking into account its specific market impul
    Exclusive Black Pro Max MT5 — Automated Trading System Exclusive Black Pro Max MT5 is an Expert Advisor for MetaTrader 5, built on advanced market analysis algorithms and risk management strategies. The EA operates in a fully automated mode and requires minimal trader intervention. Attention! Contact me immediately after purchase to receive setup instructions! IMPORTANT: All examples, screenshots, and tests are provided for demonstration purposes only. If a specific currency pair shows good resu
    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
    Buyers of this product also purchase
    Quantum Queen MT5
    Bogdan Ion Puscasu
    4.98 (647)
    Hello, traders! I am Quantum Queen , the crown jewel of the entire Quantum ecosystem and the highest-rated, best-selling Expert Advisor in the history of MQL5. With a proven track record of over 20 months of live trading, I’ve earned my place as the undisputed Queen of XAUUSD. My specialty? GOLD. My mission? Deliver consistent, precise, intelligent trading results — over and over again. IMPORTANT! After the purchase please send me a private message to receive the installation manual and the set
    Quantum Athena
    Bogdan Ion Puscasu
    5 (59)
    Quantum Athena — Precision Forged from Experience Hello, traders! I am Quantum Athena — the light version of the legendary Quantum Queen, refined and re-engineered for today’s market conditions. I don’t try to be everything. I focus on what works now. My specialty? GOLD.My mission? Deliver sharp, efficient, and intelligently optimized trading performance — with precision at its core. IMPORTANT! After the purchase please send me a private message to receive the installation manual and the s
    Chiroptera
    Rob Josephus Maria Janssen
    4.83 (35)
    Prop Firm Ready! Chiroptera is a non-martingale, multi-currency 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-
    TwisterPro Scalper
    Jorge Luiz Guimaraes De Araujo Dias
    4.35 (88)
    Fewer trades. Better trades. Consistency above all. • Live Signal Mode 1 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, few trades per week. Bu
    Quantum King EA
    Bogdan Ion Puscasu
    4.99 (196)
    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
    Quantum Valkyrie
    Bogdan Ion Puscasu
    4.61 (149)
    Quantum Valkyrie  - Precision.Discipline.Execution Discounted   price .  The price will increase by $50 with every 10 purchases. Live Signal: CLICK HERE Quantum Valkyrie MQL5 public channel: CLICK HERE ***Buy Quantum Valkyrie MT5 and you could get Quantum Emperor or Quantum Baron for free !*** Ask in private for more details! IMPORTANT! After the purchase please send me a private message to receive the installation manual and the setup instructions.      Hello, traders. I am Quantum Val
    Goldwave EA MT5
    Shengzu Zhong
    4.72 (54)
    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
    Pulse Engine
    Jimmy Peter Eriksson
    4.24 (25)
    LAUNCH PRICE – ONLY A FEW COPIES LEFT! 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 patterns. Thes
    BB Return mt5
    Leonid Arkhipov
    4.52 (121)
    BB Return — an Expert Advisor for gold trading (XAUUSD). I previously used this trading idea in manual trading. The core of the strategy is a return of price to the Bollinger Bands range, but not blindly and not on every touch. For the gold market, bands alone are not enough, so the EA uses additional filters that eliminate weak and non-working market situations. Trades are opened only when the return logic is truly justified.   Trading principles — the strategy does not use grid trading, martin
    Byrdi
    William Brandon Autry
    5 (13)
    BYRDI. Multi-Asset Mesh Trading Intelligence. Most EAs trade one chart at a time. BYRDI runs a network. Each chart becomes a node. Each node can trade its own symbol, account, broker, AI model, risk profile, and position management mode. The mesh connects them into one coordinated system. Forex. Gold. Metals. Indices. Crypto. Oil. Synthetics where supported by the broker. One trader. Many markets. One coordinated mesh. A New Category Traditional EAs are isolated systems. One terminal. One symbo
    Scalping Robot Pro MT5
    MQL TOOLS SL
    5 (10)
    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, and short term volatility to identify high probability scalping opportunities in the gold market. Scalping Robot Pro is optimized for traders who prefer dynamic trading with quick entries an
    The Gold Reaper MT5
    Profalgo Limited
    4.46 (97)
    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 YouTube Reviews 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 from very conservative to extre
    Ultimate Breakout System
    Profalgo Limited
    5 (39)
    IMPORTANT : This package will only be sold at current price for a very limited number of copies.    Price will go to 1499$ very fast    +100 Strategies included and more coming! BONUS : At 999$ 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 Welcome to the ULTIMATE BREAKOUT SYSTEM! I'm pleased to present the Ultimate Breakout System, a sophisticated and
    Quantum Bitcoin EA
    Bogdan Ion Puscasu
    4.83 (121)
    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
    Wave Rider EA MT5
    Adam Hrncir
    5 (28)
    Scalper speed with sniper entries. Built for Gold. Summer sale  499 USD  only |   regular   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 timeframe analysis (H1 trend + M15/M30 entry confirmation) to only en
    Nexorion Initium Novum EA
    Valentina Zhuchkova
    5 (8)
    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
    Precise Pair Trading Pro
    Arkadii Zagorulko
    5 (2)
    Please note that I do not sell this EA through any third-party resellers, affiliates, or alternative distribution channels. A Smarter Way to Trade Gold and Euro This EA is built on advanced quantitative methods to identify temporary inefficiencies between two major markets. It seeks to benefit from moments when price behavior diverges from its usual dynamics. Monitoring -  Live signal The system adapts automatically to market conditions and manages entries and exits with precision, aiming to cap
    Zerqon EA
    Vladimir Lekhovitser
    5 (1)
    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
    Gold House MT5
    Chen Jia Qi
    4.52 (50)
    Gold House — Gold Swing Breakout Trading  Price increase coming soon. Only a few licenses remain at the current price (3/100) . Next target price: $999. Live signals: Profit Priority mode : https://www.mql5.com/en/signals/2359124 BE priority mode :  https://www.mql5.com/en/signals/2372604 Important: After purchasing, please remember to send us a private message to receive the recommended parameters, instructions, precautions, and usage tips. (MQL5 messaging):   https://www.mql5.com/en/users/wa
    Osloma Gold
    Uttam Kumar Nandeibam
    4.56 (9)
    Get it TODAY for just $299 !  Many members have asked for a discount, and since individual discounts are not possible, I am opening a FLAT 40% OFF SALE for 48 hours only . Once this period ends, the price will return to $499 . Live Signal Link : https://www.mql5.com/en/signals/2372291     Current Price : $499 for NEXT 10 buyers only  * Price will be updated to $599 after this.  Osloma Gold (OG) is a dynamic market-structure based Expert Advisor designed specifically for Gold (XAUUSD) . It combi
    Gold Safe EA
    Anton Zverev
    4 (9)
    Live Signal:   https://www.mql5.com/en/signals/2360479 Timeframe:   M1 Currency pair:   XAUUSD Gold Safe EA Manual: https://www.mql5.com/ru/blogs/post/770312 Varko Technologies   is not a business, it is a philosophy of freedom. I am interested in long-term cooperation and building a reputation. My goal is to continuously improve and optimize the product to meet changing market conditions. Gold Safe EA   - the algorithm uses several strategies simultaneously, the main philosophy is an emphasi
    Lizard
    Marco Scherer
    4.5 (8)
    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 significant structural levels on the chart and places pending stop orders at precisely calculated entry points. No martingale. No grid. No averaging. 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 per
    Neurox AI
    Stanislav Tomilov
    5 (1)
    Neurox AI — The Future of Gold Trading Powered by Multi-Module Neural Intelligence After almost two years of active AI hype, one thing has become clear: simple generative models such as ChatGPT and similar systems do not work as real trading engines. They can explain, write text, generate ideas, or assist with analysis, but they are still mainly assistants — not professional trading algorithms by themselves. In 2026, the most promising results in algorithmic trading came not from one large unive
    AnE
    Thi Ngoc Tram Le
    4.8 (5)
    ANE — Gold Grid Expert Advisor ANE is a fully automated Expert Advisor designed for trading XAUUSD (Gold) on the M15 timeframe using a grid-based averaging strategy . Important: Test the EA on a demo account first to understand the behavior of the averaging system before running it on a live account. Live Signal ANE Official Channel Trading Strategy ANE manages positions as a group. It opens additional trades to optimize the average entry price when conditions allow, then closes the entire bask
    Akali
    Yahia Mohamed Hassan Mohamed
    3.17 (84)
    LIVE SIGNAL: Click here to view live performance IMPORTANT: READ THE GUIDE FIRST It is critical that you read the setup guide before using this EA to understand the broker requirements, strategy modes and the smart approach. Click here to read the Official Akali EA Guide Overview Akali EA is a high-precision scalping Expert Advisor designed specifically for Gold (XAUUSD). It utilizes an extremely tight trailing stop algorithm to secure profits instantly during periods of high volatility. Thi
    Impulse MT5
    Simon Reeves
    Are you ready to power up your Gold trading? Impulse by Starpoint Trading — A dual-strategy gold EA that waits for the perfect shot. Introductory Price of 199 USD to run for 1 week, until 7th June 2026. Regular price: 299 USD Impulse is a momentum grid EA designed exclusively for XAUUSD, combining two independently developed entry strategies into a single unified grid framework. 2 momentum-based scalper strategies | Dual-timeframe confirmation | Bar-close execution | Smart virtual take profit E
    Sharkyra Gold
    Nico Demus Sitepu
    5 (3)
    Only 10  copies left at current  price!,  Next Price 9 99 USD.   T he newest and powerful  Sharkyra  Gold  MT5  of Expert Advisors. My specifically designed to run on the XAUUSD/GOLD pair. Sharkyra  Gold   EA  is a fully automated trading system designed for traders who love speed, accuracy, and consistency. Built with a smart  logic  engine, this EA takes advantage of micro market movements and executes trades with lightning-fast precision making it perfect for volatile market sessions.   Shark
    Gold Snap
    Chen Jia Qi
    4.56 (9)
    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 Only 3 copies remaining at the current price. The price will be increased 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 Welcome to join our MQL5 channel for product updates and trading insi
    Full Throttle DMX
    Stanislav Tomilov
    5 (11)
    Full Throttle DMX - Real strategy  Real results   Full Throttle DMX is a multi-currency trading expert advisor designed to operate with EURUSD, AUDUSD, NZDUSD, EURGBP, and AUDNZD currency pairs. The system is built on a classical trading approach, using well-known technical indicators and proven market logic. The EA contains 10 independent strategies, each designed to identify different market conditions and opportunities. Unlike many modern automated systems, Full Throttle DMX does not use ris
    Quantum Emperor MT5
    Bogdan Ion Puscasu
    4.86 (505)
    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
    More from author
    M1 Gold Scalper EA
    Achmad Benny
    2.33 (3)
    M1 Gold Scalper EA is a professional Expert Advisor built exclusively for XAUUSD (Gold) on MetaTrader 5. It places a pair of pending buy-stop and sell-stop orders on every new bar, captures breakout moves, and manages the trade automatically from entry through to exit — including a full bidirectional recovery grid when price moves against the initial position. Every feature in this EA was refined through live trading across multiple brokers. The code handles 2-digit and 3-digit gold brokers tr
    Propfirm Master is a fully automated Expert Advisor built specifically for traders who participate in prop firm challenges on MetaTrader 5. It uses a high/low breakout strategy — placing a BuyStop and a SellStop on every new bar — and manages each trade automatically from entry to exit. A built-in risk engine monitors your daily profit and loss limits in real time, closes all trades the moment a limit is hit, and locks trading for the rest of the day — so you never violate your challenge rules b
    M1 Gold Hedge A breakout and hedge recovery Expert Advisor designed for Gold (XAUUSD) . The EA places directional breakout orders aligned with the H1 trend bias. When a position moves against you, a recovery position opens in the opposite direction at a larger lot size. All positions are managed as a single basket and close automatically when the profit target is reached. Fully compatible with both netting and hedging account types. How It Works Entry At the start of each cycle the EA scans the
    Trend Filter Line is a trend-following tool designed to help traders identify the market's core direction with surgical precision. Based on the popular Two-Pole Filter logic, this indicator eliminates market "noise" and provides a clear, color-coded visualization of the prevailing trend. Whether you are a scalper, day trader, or swing trader, the Trend Filter Line Pro acts as your primary decision-making filter—ensuring you never trade against the momentum. How It Works The indicator uses a s
    FREE
    M1 Scalper Sniper: The Ultimate Trend & Volume Visualizer Trading the 1-minute (M1) timeframe can be a nightmare of market noise and "fakeouts," especially on volatile assets like Gold (XAUUSD) and Bitcoin (BTCUSD) . The M1 Scalper Sniper was engineered to solve this problem by combining institutional volume analysis with ultra-smoothed price action. Unlike standard indicators that lag or clutter your screen, the M1 Scalper Sniper uses a wickless "brick" system to show you the "meat" of the tr
    M1 Hft Oco
    Achmad Benny
    M1 HFT OCO is a fully automated scalping Expert Advisor for MetaTrader 5, non-martingale strategy and designed to trade any symbol on the M1 timeframe. It places a pair of pending Buy Stop and Sell Stop orders at the start of every new candle, captures the breakout in whichever direction price moves, and manages the trade automatically from entry through to exit — including a smart trailing stop that locks in profit as the move continues. Every feature was designed with live execution in mind.
    Trend Friend Gold is a fully automated channel breakout Expert Advisor for MetaTrader 5, non-martingale strategy designed to take the emotion out of trading by following a disciplined. Trend-following breakout strategy specifically for Gold (XAUUSD). At the open of every new candle it measures the recent price channel, waits for a valid confirmed breakout in either direction, and enters a trade with precision — managing it automatically from entry through to exit with a configurable trailing sto
    Filter:
    No reviews
    Reply to review