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
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
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
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
Currency EURUSD . Timeframe H1 The minimum deposit is $ 200 when trading 1% per trade.  Classic trend advisor.  The Expert Advisor is based on classic, time-tested indicators . Also, some strategies use Price Action . Every trade is protected by a stop loss  No martingale, no grid, no high risk strategies. All strategies used here are trend following and reversal. Compliance with MM = 4% for each trade is recommended. Question: - Why is testing so slow? Answer: - Be patient, 15 very diff
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+
This is a fully automatic trading robot for the EURCHF currency pair.  But this robot can be configured to trade for other currency pairs. TURBO SCALPER PRO using a trend following strategy based on MACD, Parabolic SAR and Moving Average indicator. The robot works in full automatic mode, on the M1 timeframe. The trader does not need to set it up for trading. Open EURCHF and attach TURBO SCALPER PRO only to EURCHF M1 using the default settings. Advantages of the TURBO SCALPER PRO :  We show you
CRAZZ Winter EA
Low Chun Chiat
1. Intro: Like the cold weather and freezing of winter, Crazz Winter EA’s open trades can be held for one day or TP within minutes. Aiming to have a high consistency and profitable amount, Crazz Winter EA is designed to trade with only two kinds of currency which are EURUSD and AUDUSD and there will only one trade open for each currency at the same time. With the combination of Moving Average and Relative Strength Index, it may detect and identify the current and following market trade. The EA h
Buyers of this product also purchase
Vortex Gold MT4
Stanislav Tomilov
5 (39)
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
BB Return mt4
Leonid Arkhipov
5 (10)
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
Quantum King MT4
Bogdan Ion Puscasu
5 (3)
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
The Gold Reaper MT4
Profalgo Limited
4.59 (32)
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 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 extreme volatile
XIRO Robot MT4
MQL TOOLS SL
5 (4)
XIRO Robot is a   professional trading system   created to operate on two of the most popular and liquid instruments on the market:  GBPUSD,  XAUUSD and BTCUSD . We combined two proven and well tested systems, enhanced them with multiple new improvements, optimizations and additional protective mechanisms, and integrated everything into one advanced and unified solution. As a result of this development process, XIRO Robot was created. Robot was designed for traders who are looking for a reliable
Pattie Breakout ORB EA
Patrick Jeannot
4.75 (4)
Pattie Opening Range Breakout (ORB) is a range of price variation, which for each session, it generates a combination of support and resistance levels, positioning itself in favor of breaking out of the bands, when it is exceeded on the upside is a signal to buy or enter long and when it is exceeded on the downside it is a signal to sell or enter short. Pattie Break Out  EA  is a specialized trading tool designed to automate  time session-based breakouts . The EA operates by drawing a price rang
FlipDamonHFT
Allistair Kabelo Mandow
1 (3)
Ask in private for more details after purchase Discounted   price .  The price will increase by $500 with every 10 purchases. ***Buy FLIPDEMON HFT MT4 and you could get TINGA TINGA or  FLIPDEMON HFT MT5 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. FlipDamonHFT – High-Frequency Trading Robot for XAUUSD (GOLD) FlipDamonHFT is a fully automated Expert Advisor for MetaT
Trendalgo AI MT4
Stefano Frisetti
TRENDALGO is an EA that uses ARTIFICIAL INTELLIGENCE to trade 100% automatically and as the name says it is a TREND FOLLOWING EA, it works well on ASSETs that are TRENDING. AI is used to identify the moment in which volumes, volatility and momentum explode, according to a proprietary equation created by me which takes these values ​​into consideration as objective data and never uses any indicator. TRENDALGO opens a new TRADE and follows it by continuously adjusting STOP LOSS and TAKE PROFIT, f
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
Aussie Loonie EA MT4
MQL TOOLS SL
5 (2)
Aussie Loonie EA is a professional trading system developed exclusively for the   AUDCAD   currency pair. This cross pair is widely recognized for its stable and technical behavior, which makes it particularly attractive for traders who prefer structured and predictable market conditions rather than extreme volatility and sudden price spikes. By focusing solely on AUDCAD, the system is able to   adapt precisely   to the specific characteristics, rhythm and movement patterns of this pair. The EA
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
Aurum AI mt4
Leonid Arkhipov
4.94 (32)
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. This full year of real trading clearly demonstrated the reliability of the trading system. Only after that, based on real experience and statistics, a major update was released in Decembe
GOLD Scalper PRO
Lachezar Krastev
4.6 (25)
WINTER SALE — FINAL DAYS! Get GOLD Scalper PRO with a huge –60% discount AND receive News Scope EA PRO as a FREE BONUS ! Special Winter Sale Price: $177 (Regular Price: $447 — You Save $270!) FREE BONUS: News Scope EA PRO A powerful multi-symbol strategy packed with advanced features, supporting 5 trading pairs — real value: $397! After completing your purchase, simply contact me and I will send you your BONUS EA immediately. Don’t miss this once-a-year opportunity! Live Results:   https://w
Live Signal:   https://www.mql5.com/en/users/varkotechnologies/seller MT5 version:   https://www.mql5.com/en/market/product/164203 Timeframe:       M1 Currency pair:       XAUUSD 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 constantly improve and optimize the product to meet changing market conditions. Gold Safe EA       - the algorithm uses several strategies simultaneously, the main p
Agera MT4
Anton Kondratev
The AGERA MT4  is a Fully Automated and Multi-Faceted Open EA for Identifying Vulnerabilities in the Market for GOLD ! Not    Grid   , Not    Martingale  ,  Not    " AI"     , Not    " Neural Network" ,  Not    " Machine Learning"  , Not "ChatGPT" ,   Not   Unrealistically Perfect Backtests  AGERA  Community :   www.mql5.com/en/messages/01e0964ee3a9dc01 Vantage Real :  https://www.mql5.com/en/signals/2363787 Tickmill Real :   https://www.mql5.com/en/signals/2361808 Default   Settings for One Сha
Aura Black Edition
Stanislav Tomilov
4.62 (21)
Aura Black Edition is a fully automated EA designed to trade GOLD only. Expert showed stable results on XAUUSD in 2011-2020 period. No dangerous methods of money management used, no martingale, no grid or scalp. Suitable for any broker conditions. EA trained with a multilayer perceptron Neural Network (MLP) is a class of feedforward artificial neural network (ANN). The term MLP is used ambiguously, sometimes loosely to any feedforward ANN, sometimes strictly to refer to networks composed of mult
Golden Mirage mt4
Michela Russo
5 (7)
Limited stock at the current price! Final price: $1999 --> PROMO: From $299 --> The price will go up every 5 purchases, next price : $399 Golden Mirage is a robust gold trading robot designed for traders who value reliability, simplicity, and professional-grade performance. Powered by a proven combination of RSI, Moving Average,  ADX, and High/Low Level  indicators, Golden Mirage delivers high-quality signals and fully automated trading on the M5 timeframe for XAUUSD (GOLD) . It features a robu
XG Gold Robot MT4
MQL TOOLS SL
4.33 (39)
The XG Gold Robot MT4 is specially designed for Gold. We decided to include this EA in our offering after   extensive testing . XG Gold Robot and works perfectly with the   XAUUSD, GOLD, XAUEUR   pairs. XG Gold Robot has been created for all traders who like to   Trade in Gold   and includes additional a function that displays   weekly Gold levels   with the minimum and maximum displayed in the panel as well as on the chart, which will help you in manual trading. It’s a strategy based on  Price
RiskShield Dragon   — Automated Multi-Currency Advisor Combining intelligent algorithms, robust protection mechanisms, and flexible configuration, **RiskShield Dragon** delivers consistent profits with minimal risk. --- ## Key Advantages * **Multi-Currency & Multi-Threaded**: Supports over 20 currency pairs (EURUSD, GBPUSD, USDJPY, AUDUSD, NZDJPY, and more) simultaneously on any timeframe. * **Minimum Deposit from 10,000**: Optimized for trading with a starting balance of 10,000 account uni
Quantum Emperor MT4
Bogdan Ion Puscasu
4.85 (172)
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 MT5 Versi
AI Forex Robot MT4
MQL TOOLS SL
4.29 (17)
AI   Forex Robot - The Future of Automated Trading. AI Forex Robot is powered by a next-generation   Artificial Intelligence   system based on a hybrid LSTM Transformer neural network, specifically designed for analyzing XAUUSD, EURUSD   and BTCUSD price movements on the Forex market. The system analyzes complex market structures, adapts its strategy in   real time   and makes data-driven decisions with a high level of precision. AI Forex Robot is a modern, fully automated system powered by   ar
GoldPro
Sergey Batudayev
5 (2)
GoldPro (MT4) — XAUUSD Expert Advisor with 2 selectable modes: Classic & Scalping GoldPro is an automated trading system for   XAUUSD (Gold)   built for traders who want structure, clear risk controls and an EA that can work in different market tempos. Inside one EA you can choose   how it trades : 1) Classic Mode — calm logic for swings & pullbacks A classic approach focused on reversal / mean-reversion behavior (entries from market “exhaustion” zones) and structured position management. Basket
HFT Prop Firm EA
Dilwyn Tng
4.96 (632)
HFT Prop Firm EA is  also known as Green Man due to its distinctive logo, is an Expert Advisor (EA) crafted specifically for overcoming challenges or evaluations from proprietary trading firms (prop firms) that permit High-Frequency Trading (HFT) strategies. With version 5.8 and above GreenMan  HFT Prop Firm EA is plug and play for for almost true HFT prop firm challenges without setfiles with it newly improved automatic features.  MT5 version:  https://www.mql5.com/en/market/product/117386
EA 22 Pairs
Tjia Elisabeth Jasmine Canadi
EA 22 Pairs – MultiPair Averaging + Hedge System (Smart Directional Extended) PROMO LAUNCH — 5 Star Reviewers Wanted! Lifetime 6_Month Price. Limited Quota. Act Fast! Lifetime access only +1 cent from the 6-month price — secure permanent ownership at an unbeatable introductory rate before it reverts to full lifetime value! Version: Perfected Interactive UI - MT4 (Patched) Developer: CyberBot Project P R E P A R A T II O N Is Trading Just Another Form of Gambling? At it
Vortex Turbo EA MT4
Stanislav Tomilov
5 (9)
Vortex Turbo — “Trade the storm — control the Vortex” Vortex Turbo represents the next evolutionary stage in intelligent trading — a unique development that merges cutting-edge AI architecture, adaptive market logic, and precise risk control. Built upon proven algorithmic principles, it integrates multiple strategies into a unified high-speed ecosystem powered by a new level of predictive intelligence. Designed as a scalping expert for gold XAUUSD(GOLD), Vortex Turbo employs a controlled martin
Monopolist
Aleksandr Shurgin
Professional automatic advisor with high performance. The advisor has preset settings, trades automatically calculated or fixed lot. You can use default settings or use your preferences. The Monopolist expert uses the author's, multi-component algorithm for fast processing of market data in real time, to open short-term transactions on dynamic instruments with a small spread. The advisor's strategy is based on price action, transactions are opened with a minimum waiting time for a decision, whic
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.
Apache MHL Moving Average
Paulo Roberto Da Costa
Sinal (GOLD/XAUSD) - mais de 14 meses ativo e mais de 6 mil negociações em conta Standard (alavancagem de 1:400):   https://www.mql5.com/pt/signals/2278431 Produto para MetaTrader4:  https://www.mql5.com/pt/market/product/159627 Produto para MetaTrader5:  https://www.mql5.com/pt/market/product/160313 O Apache MHL Moving Average Expert Advisor ou simplesmente "Apache MHL" é um robô que opera no ativo GOLD/XAUUSD utilizando estratégias baseadas em médias móveis e gestão de risco com Martingale.
Infinity Trader EA
Lachezar Krastev
5 (18)
WINTER SALE — FINAL DAYS! Get Infinity Trader EA with a huge –60% discount AND receive News Scope EA PRO as a FREE BONUS ! Special Christmas Price: $217 (Regular Price: $547 — You Save $330!) FREE BONUS: News Scope EA PRO A powerful multi-symbol strategy packed with advanced features, supporting 5 trading pairs — real value: $397! After completing your purchase, simply contact me and I will send you your BONUS EA immediately. Don’t miss this once-a-year opportunity! Infinity Trader EA Live R
Pingo AI
Anastasiya Morozova
Pingo Pingo is a fully automated trading robot designed for stable and secure trading in the forex market. The advisor is designed with an emphasis on strict risk control and the absence of dangerous strategies such as martingale, grids, or averaging. MT5 Version:  https://www.mql5.com/ru/market/product/155602 How it works Pingo analyzes price patterns and short-term market dynamics using intelligent volatility filters. The robot identifies impulse and correction zones to enter the market with
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