FoxterAI

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 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 — source: Round/D-HL/ST-TF
  • RoundLevelStep — round level step points (50), LevelTF — timeframe for ST levels (H4)
  • LevelHL_TF1/Count1 — D-HL pair 1 (D1 / 1), LevelHL_TF2/Count2 — pair 2 (W1 / 1)
  • UseLevelTP — TP at levels (false), LevelTP_OffsetPips — TP offset from level points (5)
  • UseLevelEntry — entry near level only (false), LevelEntryZone — entry zone ATR fraction (0.15)
  • UseLevelGrid — adaptive grid step (false), UseLevelAutoLot — auto lot by level (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 4, 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
JumpLump
Olga Zhdanova
A great addition to your lucrative portfolio of expert advisors. The strategy is based on an algorithm for breaking through the built levels for a certain period of time. The EA has a fixed StopLoss, which allows you to keep the minimum drawdown. Tested on all ticks using the Tick Data Suite , with the closest possible real trading conditions, watch the video. Price for the first 10 buyers $ 75 (I beg you to post your reports in the comments) Recommendations: Good ECN broker with low spread.
GRV Grid
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
The Arrow Scalper
Fawwaz Abdulmantaser Salim Albaker
1 (2)
Dear Friend..  I share with you this simple Expert Adviser .. it is full automatic  this Expert Adviser following the trend of the pair you install on or any stocks or indices , it is works like that: - when the trend on H4 chart show a start of up trend the expert will wait till the 15M & 1H charts show an up trend the EA will open a buy order directly , and do the same for down trend and open a sell order the buy or sell  order lot size and take profit and stop loss will measured manually  by
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 MT4 version, click  here  for  BlueSwift GridRescue MT5  (settings and logics are same in both versions) BlueSwift Grid Rescue MT4  is a risk management utility  EA  (used together with other grid trading experts) that can help you trade aggressive grid systems with manageable drawdown, therefore reduce substanstially margin call risk as we
| Fully-automated Smart Money Concept (ICT) inspired trading solution with multi-strategy capabilities | Built by a grid trader >> for grid traders.  This is MT4 version, click  here  for  Blue CARA MT5  (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 perhapse most popular) Inn
AEC Scalper
Gennady Kuznetsov
AEC Scalper I bring to your attention the AEC Scalper trading Advisor. The adviser works from 20:00 to 22:00 GMT. For testing in the strategy tester, the trading time should be set from 23:00 to 1:00. The EA works well on the following currency pairs: AUDCAD, AUDCHF, AUDJPY, CADCHF, CADJPY, EURAUD, EURCAD, EURCHF, EURGBP, EURUSD, GBPAUD, GBPCAD, GBPUSD  M5 Timeframe. Minimum deposit from $100 Trading is conducted on ECN accounts with a low spread. Leverage from 1:100 Trading is conducted in a
Elastic Grid
Aliaksandr Charkes
4.86 (7)
Elastic Grid MT4 is a multi-functional grid Expert Advisor, designed for full or partial automation of various ideas related to grid trading. The EA trades on any timeframe and symbol. It can also trade several symbols with any amount of decimal places. It does not interfere with manual trading and other EAs' operation or any indicators. It allows to adjust its settings on the fly, works only with its own orders displaying all necessary data on them when needed, and for some situations it can be
Ultra KZM MT4
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 You cannot backtest this EA in MT4 because MT4 cannot backtest in
Reversepro Smartsma ea mt4
AL MOOSAWI ABDULLAH JAFFER BAQER
ReversePro SmartSMA EA – A Fully Customizable Moving Average Strategy ReversePro SmartSMA EA is an advanced yet fully customizable trading tool designed for traders who prefer to fine-tune their strategies. This Expert Advisor (EA) is not pre-optimized, allowing you the flexibility to adjust its settings to fit your trading style, risk management preferences, and market conditions. How It Works This EA is based on the well-known Simple Moving Average (SMA) crossover strategy, enhanced with addi
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
Harvest GOLD
Sayan Vandenhout
Harvest GOLD USES THE TREND WAVE INDICATOR AND IT CAN IDENTIFY THE BEGINNING AND THE END OF A NEW WAVE TREND MOVEMENT. AS AN OSCILLATOR, THE INDICATOR IDENTIFIES THE OVERBOUGHT AND OVERSOLD ZONES. IT WORKS GREAT TO CATCH THE SHORT TERM PRICE REVERSALS AND USES A MARTINGALE STRATEGY TO CLOSE ALL TRADES IN PROFIT. USE DEFAULT SETTINGS ON H1 OR HIGHER TIME FRAME ON ANY PAIR FOR MORE ACCURATE TRADES WHY THIS EA : Smart entries calculated by 3 great strategies The EA can be run on even a $30000
Matrix Arrow EA MT4
Juvenille Emperor Limited
5 (8)
Matrix Arrow EA MT4 is a unique expert advisor that can trade the Matrix Arrow Indicator's MT4 signals with a trade panel on the chart, manually or 100% automatically.  Matrix Arrow Indicator MT4 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), Relative
The algorithm of the adviser's work: When the Expert Advisor is launched at a specified distance from the price (first_step), BuyStop and SellStop orders are placed. Further, depending on which way the price went, one of them becomes market, and the other begins to crawl after the price. When the price rolls back, it also becomes market. If we have reached a set profit in some direction, the order is closed and a creeping pending order of the same direction is placed again. If the profit is no
DoubleEverest
Eduard Khisamov
The DoubleEverest Expert Advisor is a pure, distilled idea. This automated EA follows its own unique mathematical algorithm. DoubleEverest : no indicators no martingale, locking, averaging, other risky money management techniques trades every day DoubleEverest catches the price in the European and American sessions. Considers the volatility and dynamics of the market. DoubleEverest places pending orders on the price extremes: of the past and current day, fractals, significant resistance and supp
Dream Chaser
Roman Lomaev
Dream Chaser: Expert Advisor for MetaTrader 4 Dream Chaser   is a powerful and multifunctional Expert Advisor that combines market volatility analysis with a grid trading strategy. It is designed for automatic entry point search and position management, equipped with a convenient visual interface for manual control. Key Features Hybrid Strategy:   Uses analysis of candle sizes for the initial entry and a grid method for averaging. Visual Control Panel:   Includes an information display and
Max ScalperSpeed
Paranchai Tensit
Max ScalperSpeed   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 to ad
High Freq Grid Scalper
Letsekang Bruno Sekhosana
This E.A is designed to wait for the perfect opportunity to get in the market, take a few trades (low risk) and get out. There is an option to Cut Loss at specific percentage of balance, this should be set to a max of 1% since we scalping. Very cautious EA, can go up to a few days without taking a trade. This should not alarm you, it simply means there currently is no opportunity available. Mainly designed for low spread brokers. Tested Pairs and their settings: EURUSD M1 : Jan 2022 - Dec 2022
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  ------   ------   ------   ------   ------   ------
Calmed
Jennifer Afi Azasoo
5 (3)
EA Calmed Gold We have tried to optimise Calmed Expert Advisor  for Gold but works with any other forex pairs and stocks. This expert uses  martingale (optionally) for recovery. Please, backtest for at least 1 year and run a demo for at least one whole month before going live; that way, you will know how the Calmed Expert Advisor behaves across the various markets. Please do not just purchase and start using the EA, as past performance cannot guarantee future results. Backtest results may be di
This Expert Advisor trades based on trend lines, as well as on the basis of volume analysis. Volumes are calculated using minute bars, in order to determine if they were ascending or descending. The trend lines are drawn based on High and Lows in the trade history. There are also additional indicators. Buy or sell signals depend on all those factors. This allows the EA to enter the market with more accuracy and to perform more deals. Input parameters Lots - lot size (if 0, a lot is calculated b
Purchase bonus After purchasing this Expert Advisor, you will receive any other Expert Advisor from my Market products as a gift at no additional cost. To arrange the bonus, use the internal MQL5 messaging system after the purchase. Overview EA Bravissimo EURUSD H1 is an Expert Advisor for EURUSD on MetaTrader 4. The working timeframe is H1. The strategy combines classic technical indicators with Price Action. It includes trend-following and reversal logic. Trading logic The product contains sev
Gold Pulse AI MT4
Rodrigo Arana Garcia
Only   4 /10   copies left at this price ---> Next price 175$ //  MT5 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 area
Doctor
Andrey Kolmogorov
This is a universal adviser working in several directions. The first and main thing is assistance in various situations that arise during trading. The second is scalping or positional trading according to the trend, open orders, at the same time, insured with support orders using the model of a quantum set of algorithms. Main Advantages Work in several directions; Increase in account balance during drawdown; Maintenance of already open orders; Building a grid lock; Scalping and/or trend trading
Overview Gold Liquidity Capture EA is an automated Expert Advisor for MetaTrader 4 designed for XAUUSD (Gold) on the H1 timeframe. It uses Bollinger Bands and swing reference points to prepare stop-entry orders at adaptive distances. Orders are intended to trigger only when price movement confirms direction after a defined setup condition. The EA places fixed Stop Loss and Take Profit levels and removes pending orders after a set bar limit if they are not triggered. What the EA Does The EA monit
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 back
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
The Infinity Expert Advisor is a scalper. When the resistance and support levels are broken, trades are opened in the direction of the price movement. Open positions are managed by several algorithms based on the current market situation (fixed stop loss and take profit, trailing stop, holding positions in case of trend indication, etc.). Requirements for the broker The EA is sensitive to spread, slippages and execution quality. It is strongly recommended not to use the EA for currencies with s
The robot uses the trading strategy of breaking the lines of the Bollinger Bands indicator. The essence of this strategy lies in the constant analysis of the indicator lines and the search for the most effective breakout points for its lines. When the price breaks through the indicator line in one of the directions, the robot opens a trade in that direction and starts to follow it. But the robot does not open trades every time the indicator lines are broken, but only in those places where it co
The Super scalper universal is a fully automated scalping Expert Advisor, which uses five indicators. Each open position is protected by a hidden stop order managed by an advanced modification algorithm. When searching for the suitable signals, the EA uses the integrated indicator in conjunction with the trend and time filters, as well as the volatility filter. It use dynamic position closure, which considers the location where the order had been opened and the subsequent price action. Profit is
H4 GBPUSD Trend Scalper is a trend signal scalper The EA trades according to the trend strategy using original built-in indicator for opening and closing orders. The external inputs for limiting trading on Fridays and Mondays are available. The purpose of the strategy is to use the current trend with the most benefit. According to the results of testing and working on demo and real accounts, the best results achieved by using the Н4 timeframe on the GBP/USD pair Works on MetaTrader 4 Build 971+
Buyers of this product also purchase
The Gold Reaper MT4
Profalgo Limited
4.62 (34)
PROP FIRM READY! ( download  SETFILE ) LAUNCH PROMO: 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 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 from very conservative to e
Scalping Robot Pro MT4
MQL TOOLS SL
4.43 (14)
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 tra
Quantum King MT4
Bogdan Ion Puscasu
5 (6)
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 MT5 version : CLICK HERE Quantum King channel:   Click Here ***Buy Quantum King MT4 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 strengt
Xyron Edge is a Professional breakout Expert Advisor (EA) designed to trade market structures by utilizing swing high and swing low levels. The EA places pending orders above resistance areas and below support areas to capture breakout movements while maintaining controlled risk management. --------- EA Setting & Preset :  EA Input Settings Guide Live Signal :  https://www.mql5.com/en/signals/2385451 --------- Key Features Fully automated trading Dynamic support and resistance detection Pen
AW Recovery EA
AW Trading Software Limited
4.35 (84)
The Expert Advisor is a system designed to recover unprofitable positions. The author's algorithm locks a losing position, splits it into many separate parts, and closes each of them separately. Easy setup, delayed launch in case of drawdown, locking, disabling other Expert Advisors, averaging with trend filtering and partial closing of a losing position are built into one tool. It is the use of closing losses in parts that allows you to reduce losses with a lower deposit load, which ensures saf
Bitcoin Scalp Pro
Profalgo Limited
5 (4)
NEW PROMO: Only a few copies copies available at current price Final price: 999$ NEW: From 349$ or higher --> Choose 1 EA for free! (for 2 trade account numbers) Make sure to check out our " Ultimate EA combo package " in our   promo blog ! LIVE SIGNAL Bitcoin Scalp Pro is a unique trading system on the market.  It is fully focused on exploiting the volatility of the Bitcoin market by trading the breakouts of support and resistance levels. The focus of the EA lies on safety, which translates i
ToTheMoon MT4
Daniel Moraes Da Silva
5 (1)
ONE OF THE FEW ROBOTS WITH A SIGNAL HISTORY OF MORE THAN 3 YEARS AND AMONG THE TOP 10.   LINK TO MY ROBOTS AND SIGNAL PRESETS: In my profile there is a link to download the PRESETS that I use in my SIGNALS, you can download and Backtest for free, there are explanations in the my WebSite. https://www.mql5.com/en/users/tec_daniel   LINK TO OTHER ROBOT VERSIONS: MT4:  https://www.mql5.com/en/market/product/97963 MT5:  https://www.mql5.com/en/market/product/97962   SOME EXAMPLES OF SIGNALS ON “mql5.
Fortune MT4
Shane Lee
5 (3)
Real Trading Account  LIVE SIGNAL VT MARKETS:  https://www.mql5.com/en/signals/2363526 Join SmiteFX Algos MQL5 Public Chat :   https://www.mql5.com/en/messages/03e4dab0b20bdd01 Fortune is an automated breakout Expert Advisor for MetaTrader 4 & 5, developed primarily for XAUUSD. The EA identifies potential breakout and breakdown zones based on recent market structure, then manages each trade according to the risk percentage set by the user. Every position is opened with predefined Stop Loss and
XGen Scalper MT4
Burak Baltaci
3 (2)
XGen Scalper MT4 - Professional Automated Trading System XGen Scalper is a state-of-the-art Expert Advisor that combines advanced algorithmic structure with proven technical analysis to deliver consistent results across all markets. This powerful trading system operates seamlessly on forex pairs, precious metals such as gold and silver, cryptocurrencies, and commodity indices. Advanced Algorithmic Technology The proprietary wave scanning algorithm processes market data in real time, identify
Exorcist Projects
Ivan Simonika
3 (1)
Exorcist Bot   is a multi-currency, multi-functional advisor that works on any time frame and in any market conditions. - The robot’s operation is based on an averaging system with a non-geometric progression of constructing a trading grid. - Built-in protection systems: special filters, spread control, internal trading time limitation. - Construction of a trading network taking into account important internal levels. - Ability to customize the aggressiveness of trading. - Working with pending
Fortress MT4
Shane Lee
5 (1)
Real Trading Account  LIVE SIGNAL VT MARKETS:  https://www.mql5.com/en/signals/2378166 Join SmiteFX Algos MQL5 Public Chat :   https://www.mql5.com/en/messages/03e4dab0b20bdd01 Fortress is an automated breakout Expert Advisor for MetaTrader 4 & 5, developed primarily for XAUUSD. The EA utilizes multiple confirmation algorithms and internal strategies to identify optimal breakout points at key support and resistance levels. Position sizing and trade frequency automatically adjust to the user's
Big Forex Players MT4
MQL TOOLS SL
4.72 (43)
We proudly present our cutting-edge robot, the  Big Forex Players EA  designed to maximize your trading potential, minimize emotional trading, and make smarter decisions powered by cutting-edge technology. The whole system in this EA took us many months to build, and then we spent a lot of time testing it. This unique EA includes three distinct strategies that can be used independently or in together. The robot receives the positions of the  biggest Banks  (positions are sent from our database t
Gold Trade Pro
Profalgo Limited
4.61 (23)
LAUNCH PROMO: Only a few copies left at current price! Final price: 990$ Get 1 EA for free (for 2 trade accounts) -> contact me after purchase Ultimate Combo Deal -> click here New live signal:   https://www.mql5.com/en/signals/2084890 Live Signal high risk :  https://www.mql5.com/en/signals/2242498 Live Signal Set Prop Firm Set JOIN PUBLIC GROUP:   Click here Parameter overview Gold Trade Pro joins the club of Gold trading EA's, but with one big difference: this is a real trading strategy.
One Gold MT4
Stanislav Tomilov
4.68 (19)
One Gold - Future of Trading Introducing One Gold EA, a sophisticated trading robot for gold on the Meta Trader platform, developed to assist traders with advanced market analysis. Our proprietary technology leverages neural networks and data-driven algorithms to analyze both historical and real-time gold market data, providing insights that can aid in decision-making. Unlike traditional manual strategies, One Gold EA operates with minimal intervention, streamlining the trading process and aimin
Recovery Manager Pro MT4
Ianina Nadirova
5 (1)
Recovery Manager Pro is a system for recovering drawdowns from other advisors or from manually opened orders. RM Pro has the ability to automatically dynamically adjust. The trader needs to select the risk level and the advisor will work in fully automatic mode. Can work in drawdown recovery mode and standby mode! If another advisor generates a drawdown, RM Pro will disable it, lock the position and start the process of restoring the deposit using partial closures. In its trading, the advisor u
Multi Sniper mq
DMITRII GRIDASOV
5 (4)
MULTI SNIPER EA is precise automatic trading system with around 90% accuracy for MT4 platform. This profitable scalping EA is really one of the most stable system on the market at the present time. No grid! No martingale! It is original product which is offered only on this MQL5 website. Download EA Set_files for testing and trading: GBPAUD Set_file GBPCAD Set_file - Implemented compound interest method and scalping techniques. - System sets dynamic SL automatically depending on market volati
Boring Pips MT4
Thi Thu Ha Hoang
4.6 (15)
Have you ever wondered why most expert advisors are not effective in live trading, despite their perfect backtest performance? The most likely answer is Over-fitting . Many EAs are created to ‘learn’ and adapt perfectly to the available historical data, but they fail to predict the future due to a lack of generalizability in the constructed model. Some developers simply don't know about the existence of over-fitting, or they know but don't have a way to prevent it. Others exploit it as a tool
Neural Cortex
Olivier Nomblot
NEURON CORTEX  Institutional grade neural  NEW V4  Continuous learning that retains experience across regimes, multi-scale market reading, and confidence-aware sizing that expands only when the model is aligned. Fully Market-validated with a silent tester path and automatic gold awareness The swarm decides. The swarm learns. The swarm knows when to stay out. try the15m backtest NDX . better in real (neurals are very hard to backtest )  EXEPTIONAL STARTING BID BEFORE THE WORLD FINDS OUT  Most ne
Infinity Trader EA
Lachezar Krastev
5 (18)
BUY 1 and GET 1 FREE - Promotion! Buy Infinity Trader EA with a huge –60% discount and GET 1 FREE EA by your choice! Promo Price: $217 (Regular Price: $547 — You Save $330!) After purchase contact me to get your GIFT EA! You can also contact me to get the list of available GIFT EAs! Infinity Trader EA Live Results:  https://www.mql5.com/en/signals/2290275 Infinity Trader EA seamlessly integrates the strengths of Chat GPT and Gemini AI, providing unparalleled market insights and in-depth funda
Forex GOLD Investor
Lachezar Krastev
4.39 (51)
BUY 1 and GET 1 FREE - Promotion! Buy Forex GOLD Investor with a huge –60% discount and GET 1 FREE EA by your choice! Promo Price: $217 (Regular Price: $547 — You Save $330! ) After purchase contact me to get your GIFT EA! You can also contact me to get the list of available GIFT EAs! Forex GOLD Investor is one of the best expert advisors developed to trade on GOLD(XAUUSD) in the forex market. Forex GOLD Investor consists of 3 trading systems . The first one is based on scalping trading strat
PRO ADVANCED MULTI SCALPING EA - is fully automatic multi-pair trading system - very safe with steady growth. This profitable scalping EA is really one of the most stable system on the market at the present time - it takes around 60-90 trades per month.  Download EA Set_files for testing and trading: USDCHF Set_file GBPCHF Set_file GBPCAD Set_file GBPAUD Set_file EURCHF Set_file EURCAD Set_file EURAUD Set_file AUDCAD Set_file Features of EA: - Adjustable Volatility-Adaptive Stop Loss. - Fixe
Quantum Gold Miner
Siphesihle Mabhengu
Quantum Gold Miner Fully Automated XAUUSD Breakout Trading — For MetaTrader 4 & 5 Trade gold breakouts with precision, not guesswork. Quantum Gold Miner is a fully automated expert advisor purpose-built for XAUUSD. Instead of relying on fixed support and resistance lines, it identifies high-probability supply and demand zones directly from live market structure — the swing highs and lows where price has repeatedly reacted — and trades the breakout from those zones with disciplined, rules-based
Vortex Gold MT4
Stanislav Tomilov
4.93 (44)
Vortex - your investment in the future The Vortex Gold EA expert Advisor made specifically for trading gold (XAU/USD) on the Metatrader platform. Built using proprietary indicators and secret author's algorithms, this EA employs a comprehensive trading strategy designed to capture profitable movements in the gold market. Key components of its strategy include classic indicators as CCI and Parabolic Indicator, which work together to accurately signal ideal entry and exit points. At the heart of V
Luna AI PRO
Profalgo Limited
4.67 (3)
Launch promo: Only 1 copies available at 399$ Final price: 2000$ There will be only a limited number of copies sold of this EA Luna AI is a very advanced night scalper and one of the best you can find on the market.  It was developed using years of experience in live trading with the mean-reverse strategy, and selected only the best pairs and techniques to be included in this EA. Since the EA is build upon existing technology that was developed over the years, the EA is very effective and has
Universal Indicator EA, your ultimate solution to automate your trading strategy without any coding requirements. This powerful expert advisor is designed to work with any indicator that gives Buy and Sell Signals, making it a versatile tool for traders of all levels. With Universal Indicator EA, you can easily read signals from both Indicator Buffers and Objects on the Chart. You can also test your indicator on the demo account before purchasing to ensure that the EA is compatible with your ind
Aurum AI mt4
Leonid Arkhipov
4.94 (34)
UPDATE — DECEMBER 2025 At the end of November 2024, the Aurum expert advisor was released for sale. Throughout this time, it traded in real market conditions without a news filter, without additional protective restrictions, and without complex limitations — while confidently remaining profitable and stable. Live Signal (launch April 14, 2026) This full year of real trading clearly demonstrated the reliability of the trading system. Only after that, based on real experience and statistics, a m
Quantum Nexus MT4
Farell Edson Mazarin
Quantum Nexus is an innovative Expert Advisor that combines quantitative analysis, multi-level validation, trend-following algorithms, position-tracking mechanisms, and statistical monitoring within a unified automated trading system. Bringing this product to life required decades of development experience and one year of preparation to create Quant v5 - a hedge-fund-level quantitative analysis tool with continuous rolling OOS tests used to mathematically prove the statistical edge of strategies
BB Return mt4
Leonid Arkhipov
4.89 (18)
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
Aura Superstar MT4
Stanislav Tomilov
4.8 (10)
Aura Superstar  is a fully automated EA designed to trade  currencies during rollover time .  It is based on machine learning cluster analysis and genetic scalping  algorithms. The first multi-currency scalper using deep machine learning mechanism, a multi-level perceptron and an adaptive neuro filter combined with classic indicators. Expert showed stable results since 2003 year. No dangerous methods of money management used, no martingale, no grid, or hedge. Suitable for any good ECN broker.  I
Gann Gold EA MT4
Elif Kaya
4.75 (4)
- Final real price is 1000$ - Discount and price is 99$ (Next price is 200$),  Price will be increased after 2 purchases. Live Real Signal: https://www.mql5.com/en/signals/2384841 Welcome, Gold GANN Expert opens automatically trade with Highly profit, Fixed small Stop loss. - Lifetime update free No Martingale, No Grid, No Scam I am focused on help my clients, not just earn. The Gann Gold EA is High safety by small fix Stop Loss, which sets trades based on good risk to reward ratio(1:3). It is
More from author
FoxterAII
Serhii Shal
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 int
Filter:
No reviews
Reply to review