FoxterAII

FoxterAI — Grid Trading EA with ATR-Adaptive Step and Interactive Control Panel

FoxterAI is an automated grid trading robot for MetaTrader 5 built on an averaging grid strategy. The grid step is calculated from the ATR indicator rather than a fixed pip value: during high volatility orders are placed wider, during low volatility — closer together. The EA manages two independent series simultaneously — BUY and SELL.

Key Feature: Control Panel Fully Works Inside the Strategy Tester

The built-in interactive panel is fully functional in the Strategy Tester visual mode. During a backtest you can change key parameters without stopping the test: enable/disable trading, switch direction, change entry mode, activate Basket Mode, adjust profit target, enable the Level System, change grid limits — and immediately see the effect on results. This dramatically speeds up optimization.

Architecture

On every tick the EA executes: series update, DetectTrend(), CheckNewSeriesEntry(), ManagePositions() (breakeven, trailing, grid averaging, Take Profit), panel update.

Trend Detection

Custom ATR algorithm — average High-Low range over N completed bars on the selected timeframe. ATR is cached and recalculated only on new candle formation.

  • TrendTimeframe — timeframe for trend detection (H1)
  • TrendATR_Period — ATR period in bars (14)

SuperTrend

Built-in calculation without external indicators. Base = (High+Low)/2, Upper = Base + Mult x ATR, Lower = Base - Mult x ATR. Used as entry filter, averaging filter, and level source. SuperTrend line is drawn directly on the chart.

  • SuperTrendTF — SuperTrend timeframe (H1)
  • SuperTrendATRPeriod — ATR period (10)
  • SuperTrendMultiplier — ATR multiplier (3.0)
  • DrawSuperTrend — draw line on chart (true)
  • SuperTrendBarsToDraw — bars to draw (300)

Entry Modes

Cycled through via the Entry Mode button on the panel. Four modes available:

  • Trend only — enters in the direction of the trend
  • Trend + Impulse (default) — additionally requires an impulse candle on M15 whose range exceeds the specified % of ATR
  • Trend + Impulse + SuperTrend — maximum filtering: trend, impulse, and SuperTrend simultaneously
  • Trend + SuperTrend — trend confirmed by SuperTrend, no impulse required
  • EntryMode — entry mode (Trend + Impulse)
  • ImpulseTimeframe — timeframe for impulse detection (M15)
  • ImpulseATR_Period — ATR period for impulse (14)
  • ImpulseMinPercent — minimum impulse size % of ATR (150)
  • MinBarsBetweenSeries — bars between close and new entry (1)

Averaging Grid

Step = ATR(Grid_Timeframe, Grid_ATR_Period) x Grid_StepPercent / 100. Averaging triggers when all conditions are met: price moved one step from the last order, trend matches the series direction, minimum time interval passed, order count and total lot within limits.

  • Grid_Timeframe — timeframe for step calculation (M15)
  • Grid_ATR_Period — ATR period for step (14)
  • Grid_StepPercent — grid step % of ATR (50)
  • MartinCoeff — martingale multiplier (1.5)
  • FirstLotMultiplier — first lot multiplier (1.0)
  • MaxOrdersBuy / MaxOrdersSell — max orders per series (10)
  • MaxTotalLot — max total lot per series (2.0)
  • GridIntervalMinutes — minimum interval between averaging orders min (30)
  • UseSTForAveraging — SuperTrend filter for averaging (false)

Advanced Grid and Martingale Modes

Expanding grid (UseExpandingGrid): each grid step is multiplied by GridStepMultiplier. Reduces averaging frequency during deep moves against the position.

Stepped martingale (UseSteppedMartin): divides the grid into three zones with different multipliers. Example: first 3 orders at 1.0, next 3 at 1.3, all subsequent at 1.6. Activates martingale only deep in the grid.

ATR-adaptive martingale (UseATRAdaptiveMartin): dynamically adjusts the multiplier based on current volatility. High volatility — minimum coefficient, low volatility — maximum. All three modes can be combined.

  • UseExpandingGrid — expanding grid (false), GridStepMultiplier — step multiplier (1.3)
  • UseSteppedMartin — stepped martingale (false)
  • StepZone1Count / Coeff — zone 1: order count and multiplier (3 / 1.0)
  • StepZone2Count / Coeff — zone 2 (3 / 1.3), StepZone3Coeff — zone 3 (1.6)
  • UseATRAdaptiveMartin — ATR-adaptive martingale (false)
  • ATRAdaptive_MinCoeff — min coefficient at high volatility (1.0)
  • ATRAdaptive_MaxCoeff — max coefficient at low volatility (2.0)

Take Profit Modes

ATR-based TP: distance = ATR(TP_Timeframe, TP_ATR_Period) x TP_Percent / 100.

Deposit % TP: target = Balance x FirstTPDepositPercent / 100.

Individual TP: fixed TP per order in points (Basket Mode only, 0 = disabled).

Combined series TP: when 2+ orders exist, TP is recalculated from the weighted average open price. When IncludeCommissionSwap is enabled, accumulated commissions and swap are deducted.

  • TP_Timeframe — ATR TP timeframe (M15), TP_ATR_Period — period (14)
  • TP_Percent — TP size % of ATR (100)
  • UseDepositPercentTP — deposit % TP (false)
  • FirstTPDepositPercent — first order TP % of balance (0.5)
  • IndividualTP_Points — individual TP in points (100, 0=disabled)
  • IncludeCommissionSwap — include commission and swap in P&L (true)
  • SlippagePercent — slippage compensation % of profit (0.1)

Basket

Combines BUY and SELL series for joint closing at a shared profit target. Three types:

  • OFF — series managed independently
  • Immediate — combined from the first order
  • After N — combined after N averaging orders

Basket Mode: extended profit management — includes not only open but also already closed orders of the current grid. Allows accumulating profit from partial closings.

  • BasketType — type: OFF / Immediate / After N (OFF)
  • BasketProfitPercent — target profit % of balance (0.1)
  • BasketAfterNOrders — combine after N averagings (5)
  • UseBasketMode — Basket Mode (false)

Breakeven and Trailing

Breakeven activates when the series has 2+ orders. When price reaches the specified distance, SL is moved to the open price (or offset from it).

  • UseBreakeven — enable breakeven (false)
  • BreakevenActivatePoints — points to activate (100)
  • BreakevenSL_Points — SL offset from open price (0 = at open price)

Trailing works only on the first order (no averaging). Disabled automatically when the second order appears. Distances are set as % of ATR.

  • UseFirstOrderTrailing — enable trailing (false)
  • TrailActivatePercent — activation threshold % of ATR (70)
  • TrailDistancePercent — trailing distance % of ATR (50)

Level System

Optional module for anchoring grid logic to significant price levels. Enabled via the Levels button on the panel.

Three level sources (Source button):

  • Round levels — levels at a fixed pip step (e.g. every 50 points). 21 levels around current price
  • Daily High/Low — High/Low levels over N bars on two timeframes. Default: D1x1 + W1x1 = 4 levels
  • SuperTrend TF — SuperTrend boundary on the LevelTF timeframe

Four operating modes (Mode button):

  • Filter — levels displayed, no effect on trading
  • TP at levels — TP is set at the nearest level in trade direction
  • Entry only — first order opens only near a level (LevelEntryZone x ATR)
  • Full — TP at levels + entry near level + grid step adapted to next level
  • UseLevelAveraging — enable system (false), LevelSource — Round/D-HL/ST-TF
  • RoundLevelStep — round level step points (50), LevelTF — timeframe (H4)
  • LevelHL_TF1/Count1 — D-HL pair 1 (D1/1), LevelHL_TF2/Count2 — pair 2 (W1/1)
  • UseLevelTP — TP at levels (false), LevelTP_OffsetPips — offset points (5)
  • UseLevelEntry — entry near level only (false), LevelEntryZone — zone ATR fraction (0.15)
  • UseLevelGrid — adaptive grid step (false), UseLevelAutoLot — auto lot (false)

Losing Order Trim

Forcibly closes the most losing order in the series when the remaining orders still allow reaching the profit target. Trim button on the panel.

  • OFF — disabled
  • Own — closes if the remaining orders of the same direction yield target profit
  • Joint — closes if all remaining BUY and SELL orders together yield target profit

Filters and Protection

  • Spread filter: current spread must not exceed MaxSpread points (30)
  • Margin filter: free margin level must be at least MinFreeMarginLevel % (200)
  • Time windows: up to three independent windows "09:00-17:00". Midnight crossing supported. If all empty — 24/7 trading
  • ATR protection: if ATR = 0 (no history loaded) — all trading is blocked
  • Symbol normalization (UseNormalizeSymbol): removes broker suffixes (EURUSDm to EURUSD)

Interactive Control Panel

Three tabs. White input fields accept keyboard values — click the field, type a number, press Enter to apply, Escape to cancel.

Trading tab: START/STOP, direction BUY/SELL/BOTH, Entry Mode, Dry Run (no new series, existing close normally), Max BUY/SELL, Max Lot, Profit %, BASKET ON/OFF, Individual TP, BASKET type, TRIM, ST averaging filter, BREAKEVEN, TRAILING, Lot Mult.

Grid tab: Expanding Grid, Step Mult, Stepped Martin with zones, ATR Martin with Min/Max, Levels ON/OFF, Source (Round/D-HL/ST-TF), Round step, Mode (Filter/TP/Entry/Full).

Info tab: trend and SuperTrend direction, Bid/Ask/spread, BUY/SELL series status (orders, total lot, floating profit, TP), balance and equity, drawdown, daily/weekly/monthly statistics.

System buttons (all tabs): Emergency Close — close all positions immediately, Remove Robot, Close BUY / Close SELL, panel scaling (70-200%).

Requirements

  • MetaTrader 5, any symbol and timeframe
  • No external DLL — full MQL Market compatibility
  • Cent account support (UseCentAccount, CentMultiplier, CentBalanceBase)

Risk Notice

Grid trading involves holding multiple open positions simultaneously. During strong directional moves, drawdown can be significant. Before using on a live account, thoroughly test all settings in the Strategy Tester and select risk management parameters (initial lot, max orders, max total lot) appropriate to your account size.

Contact Us

We are open to dialogue! If you have questions about setup, suggestions for improvements, or you want to develop a trading robot based on your own strategy — feel free to send us a private message. We will discuss your needs, propose a solution, and turn your idea into a working Expert Advisor.

Recommended products
GRV Grid MT5
Roman Gergert
GRV Grid expert Advisor is a regular grid trader trading in both directions. The peculiarity of this grid is that subsequent orders in the grid are opened not only upon reaching the set step but also on the basis of the signal, which allows not to accumulate a lot of orders that can very quickly drain the entire Deposit. The EA makes a decision based on the signals from THE mA indicator and the trend filter. The EA trades almost non-stop, i.e. there are almost always open orders, so for stable
Pew Pew MT5
Wilna Barnard
Pew Pew EA – Mean Reversion Grid Expert Advisor for MT5 Pew Pew is an advanced mean reversion Expert Advisor with a predictive grid recovery system designed to adapt to real market conditions. Developed through extensive coding, testing, and refinement, it uses structured trading logic to adjust recovery behaviour according to volatility, news impact, and changing price action. The EA is designed for traders who want a practical automated recovery system with clear controls, a professional on-c
Babel Assistant
Iurii Bazhanov
4.33 (9)
Babel assistant 1     The MT5 netting “Babel_assistant_1” robot uses the ZigZag indicator to generate Fibonacci levels on M1, M5, M15, H1, H4, D1, W1  periods of the charts , calculates the strength of trends for buying and selling. It opens a position with "Lot for open a position" if the specified trend level 4.925 is exceeded. Then Babel places pending orders at the some Fibonacci levels and places specified Stop Loss , Take Profit. The screen displays current results of work on the position
FREE
Make grid trading safe again | Built by a grid trader >> for grid traders.     Walkthrough Video  <==   Get Grid Rescue up and running in 5 minutes   This is MT5 version, click  here  for  BlueSwift GridRescue MT4     (settings and logics are same in both versions)   BlueSwift Grid Rescue   MT5    is a risk management   utility  MT5 EA  (used together with other grid trading experts) that can help you trade aggressive grid / averaging / martingale systems with manageable drawdown, therefore
| 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
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
The Fractal Trend Master is one of the most powerful and sophisticated Expert Advisors on the market, designed to protect traders' capital while maximizing profit opportunities. Based on Bill Williams' renowned methodology, this EA uses three essential technical analysis tools: the Alligator indicator , fractals , and the Gator Oscillator , creating a robust and precise framework for identifying and following market trends. This EA was designed with a focus on advanced risk management and capita
Scalping bot for the gold/dollar pair (XAU/USD) — a powerful and versatile solution for traders, designed to deliver maximum efficiency in a dynamic market. This bot is specifically engineered for scalping: it analyzes price changes and places trades even before significant market movements begin. This allows it to secure advantageous positions early and capitalize on even the smallest market fluctuations. Key Features: Flexibility: Adapts to any market conditions and suits your trading strategy
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
Viking Alpha DAX Ivar Edition
Valdeci Carlos Dos Passos Albuquerque
Viking Alpha DAX — Germany 40 Expert Advisor for MetaTrader 5 LAUNCH PROMO Only 10 copies at launch price. Price increases with each sale. Launch price: $297 Next price: $497 Final price: $997 Live Performance: FX Blue — Vikingtradingbots What Makes Viking Alpha DAX Different Most DAX robots fail for one simple reason: they treat the Germany 40 like a forex pair. It isn't. The DAX has a heartbeat — a specific rhythm tied to the Frankfurt Stock Exchange opening, the European session structure, an
Ultra KZM
Nattapat Jiaranaikarn
Ultra KZM is an Expert Advisor that using the unique trading operation. It's strategy is based on the combination of grid and correlation system which is the new method that I invented and developed for a long time. You can see Live Signal from these links : (delete space) 1.  https: //www .myfxbook.com/portfolio/ultra-kzm-eurjpyeurchf/10224608 2.  https: //www .myfxbook.com/portfolio/ea-ultra-kzm-real-account/10374382 Note that this EA should run in ECN swap-free account. When you backtest yo
RSI Master PRO – Professional Expert Advisor for MetaTrader 5 Overview: RSI Master PRO is an Expert Advisor (EA) developed for MT5, designed to trade automatically in the financial markets using the Relative Strength Index (RSI) as its core decision-making engine. Its modular design and fully customizable parameters make it a powerful and flexible tool for traders who base their strategy on this momentum indicator. ️ Key Technical Features: • RSI-Based Logic: Uses RSI readings to generate
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
ThanosAlgotrade
Irina Manikeeva
1 (1)
ThanosAlgotrade is an automatic trading advisor for obtaining stable profits over a long period of time. Does not require manual intervention. Designed to work in the MT5 terminal on "hedge" type accounts , the Adviser needs to be installed on the EURUSD currency pair chart on the M1 time frame and enable auto trading. Monitoring of the adviser's work can be viewed here
Matrix Arrow EA MT5
Juvenille Emperor Limited
5 (7)
Matrix Arrow EA MT5  is a unique expert advisor that can trade the  Matrix Arrow Indicator's MT5   signals with a trade panel on the chart, manually or 100% automatically.  Matrix Arrow Indicator MT5  will determine the current trend at its early stages, gathering information and data from up to 10 standard indicators, which are: Average Directional Movement Index (ADX), Commodity Channel Index (CCI), Classic Heiken Ashi candles, Moving Average, Moving Average Convergence Divergence (MACD), Rela
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
Extensiver
Syed Oarasul Islam
Extensiver is designed to trade any markets (Stocks, Forex, Commodities, Futures, Cryptos). The strategies are developed based on various Price Actions that will be observed on different Fibonacci Extension Levels. Product Home Page:  https://www.mql5.com/en/market/product/51242 ADVANTAGES: Works on any market and time frames Multiple Strategies in 4 categories:  Extension, Breakout, Trend Follow, Reversal Trades simultaneously on any number of markets under the same account  Display Fibonacci
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.  
This algorithm is based on the grid strategy and performs dynamic position management to make it work on netting accounts. Unlike other robots, this grid system bases its entries on profit over time of the asset instead of using pips. This parameter is the one that corresponds to "Average Distance".  You can trade all 28 major currencies simultaneously.  Parameters: +------------------------------------------------------------------+ :-:-:-:-:-:-:-:EXPERT SETTINGS:-:-:-:-:-:-:-: +---------------
ScorpionGrid
Evgenii Kuznetsov
5 (3)
Multi-currency grid Expert Advisor, in most cases it receives quite accurate entries. If an entry is not accurate enough, the positions are managed using an elaborate martingale strategy. Work on real account:  http://tiny.cc/nkaqmz Entries are performed using the signals of RSI and Stochastic indicators, in the overbought/oversold areas, plus additional entry conditions based on a proprietary algorithm. Recommended timeframe - М15. Input parameters SetName - name of the current settings file Ma
RSI Grid MT5
Joseph Anthony Aya-ay Yutig
GET OTHER EAs FOR FREE!!!  GET OTHER EAs FOR FREE!!!  GET OTHER EAs FOR FREE!!!  GET OTHER EAs FOR FREE!!!  GET OTHER EAs FOR FREE!!!  RSI Grid is based on the RSI overbought and oversold conditions and opens a grid when the trade is on the losing side of the market. The RSI provides technical traders with signals about bullish and bearish price momentum, and it is often plotted beneath the graph of an asset’s price. An asset is usually considered overbought when the RSI is above 70% and overso
Max ScalperSpeed MT5   is a fully automated expert advisor. This system has been developed to improve the efficiency of generating more returns. Rely on scalping trading strategies and recovery strategies with appropriate trading frequencies, and also able to work well in all market conditions, whether trend or sideways, able to trade full time in all conditions. Enable or disable news filtering according to user needs. Added a proportional lot size adjustment function, where users can choose t
Prime Gold HFT Ali
Nguyen Khac Diep
Prime Gold HFT Ali Coded by Prime Capital Vietnam Best with XAUUSD -  High frequency trading Find your best setting with the backtest before trade with a real account please! With default setting: - Deposit: min 10k-20k money (USC or USD) - Lot trade from 0.01 - Max DD: ~10-20% - Profit: ~10-20% per month with default setting - Leverage: best with 1:2000 Note: - Best with spread max < 30 - Time frame: any - Important: Contact Us before buy  ------   ------   ------   ------   ------   ------
Gold Pulse AI MT5
Rodrigo Arana Garcia
Only  4 /10  copies left at this price ---> Next price 175$ //  MT4 Version Launch offer: Get a free EA with your purchase !!! Gold Pulse AI was created using TensorTrade, an open-source Python framework designed specifically for building, training, evaluating, and deploying robust trading algorithms using reinforcement learning. The strategy of the algorithm is to take advantage of the momentum in the gold market by using pending orders. After analyzing previous candlesticks to identify areas
This PORTFOLIO of 3 strategies has been developed, tested and traded live on DAX H1 timeframe. Multiple EAs traded together will lead to a BIGGER PROFITS and SMOOTHER EQUITY CURVE. 3 not correlated EAs logics for DAX H1 timeframe merged to a single strategy. Very SIMPLE STRATEGIES with only FEW PARAMETERS.  Every trade has his own logic for STOP LOSS. To catch the profits every strategy uses different approach - some has TAKE PROFIT, some uses TIME BASED EXITS or PROFIT TRAILING. EA has been b
This PORTFOLIO of 3 strategies has been developed, tested and traded live on DAX M30 timeframe. Multiple EAs traded together will lead to a BIGGER PROFITS and SMOOTHER EQUITY CURVE. 3 not correlated EAs logics for DAX M30 timeframe merged to a single strategy. Very SIMPLE STRATEGIES with only FEW PARAMETERS.  Every trade has his own logic for STOP LOSS. To catch the profits every strategy uses different approach - some has TAKE PROFIT, some uses TIME BASED EXITS or PROFIT TRAILING. EA has been
ExtremeX
Noelle Chua Mei Ping
This algorithm thrives on extreme conditions of volatility.  It will evaluate the condition prior to market close, enter a position and exit when market swings to extreme levels in your favour.  The algorithm does not deploy any technical indicators, just simple mathematical calculations.  This works very well on non directional markets especially FOREX in the short term which are very choppy.  You can test out on other asset classes as well.  20 year backtest done to validate the rule.
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
StarFox
Juan Antonio Alvarenga Galindo
Master Guide: Entry Logic in Algorithmic Trading (STARFOX System) 1. Introduction to the Automatic Decision Engine In the design of high-fidelity systems, the decision-making architecture is centralized in the CSignalEngine. This specialized class is not merely a software component, but a class-based architectural structure that abstracts complex data buffers (RSI, MA, ADX) into discrete, executable boolean logic. The CSignalEngine processes a three-candle technical history (indices 0, 1, and
BLACK HORSE VIP EA Overview Videos ~   https://www.tiktok.com/@sabojack Product Description BLACK HORSE VIP is an automated trading solution developed exclusively for Multi-Symbol. This Expert Advisor is designed to assist traders in executing trades systematically with a strong emphasis on risk control, trade discipline, and long-term stability . The system adapts to market behavior and manages positions automatically, aiming to reduce emotional decision-making while maintaining consi
Buyers of this product also purchase
Quantum Queen X MT5
Bogdan Ion Puscasu
4.67 (12)
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.5 (127)
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 (122)
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
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
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
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
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
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
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
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
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
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
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
Logan MT5
Thierry Ouellet
5 (7)
LIMITED TIME OFFER AT 249$ Price will go up at  499$ on July 24th! 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
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
BB Return mt5
Leonid Arkhipov
4.48 (124)
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.   Global   update   on   June   14th   Trading principles — the strat
Quantum iGold MT5
Yassine Mouhssine
4 (3)
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
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
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. Impulse v2.00 is here! The biggest update in Impulse's history has arrived. Version 2.00 takes everything that made Impulse a disciplined, patient Gold trading system and elevates
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 749 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,
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
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
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
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
More from author
FoxterAI
Serhii Shal
FoxterAI — Grid Trading EA with ATR-Adaptive Step and Interactive Control Panel FoxterAI is an automated grid trading robot for MetaTrader 4 built on an averaging grid strategy. The grid step is calculated from the ATR indicator rather than a fixed pip value: during high volatility orders are placed wider, during low volatility — closer together. The EA manages two independent series simultaneously — BUY and SELL. Key Feature: Control Panel Fully Works Inside the Strategy Tester The built-in int
Filter:
No reviews
Reply to review