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
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
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
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
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.
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
BB Return mt4
Leonid Arkhipov
5 (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
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
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
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
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
Iberian EA Ultimate - FX H4 is a fully automatic professional Forex expert advisor. This EA trades according to trends (NO scalping, NO martingale) This EA combines various strategies to verify the possibility of a trend and a series of global validations to give the final approval to the opening of the order Despite its complexity, detecting trends is not always the greatest difficulty, it is also necessary to know when to close the operation. In this case, the success of the EA is supported b
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
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 scalp
Quantum King MT4
Bogdan Ion Puscasu
5 (5)
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
Wall Street Robot MT4
MQL TOOLS SL
5 (1)
Wall Street Robot is a   professional trading system   developed exclusively for US stock indices, focused on S&P500 and Dow Jones. These markets are known for their high liquidity, structured movements and strong reaction to global economic flows, making them ideal for algorithmic trading strategies based on precision and discipline. By concentrating only on these indices, the system is able to adapt closely to their behavior, volatility patterns and intraday dynamics, instead of trying to oper
Tom Scalper MT4
Xuan Bach Nguyen
Tom Scalper - The Trendline Breakout Expert Advisor Overview: Tom is an Expert Advisor designed for Gold (XAUUSD) trading. It uses a single trendline to determine the trend and incorporates pattern recognition to identify breakout conditions. Built for traders seeking a structured approach, Tom follows predefined criteria to execute trades based on market movements. Join My MQL5 Channel for the Latest Updates! Live Signal :   https://www.mql5.com/en/signals/2361938 Pricing Launch Price : $199
Gold Zilla AI MT4
Christophe Pa Trouillas
5 (2)
Generate controlled returns with an  AI-assisted , risk-diversified and Gold-optimized EA . GoldZILLA AI is a multi-strategy algorithm detecting market regimes to dynamically select from five distinct strategies, optimizing returns while minimizing drawdown on XAUUSD. [ Live Signal ] - [  Dedicated group | Version MT5 - MT4 ] After the purchase, please send me a private message to receive the user manual and the AI setup instructions. Why choose this EA? Dynamic multi-strategy approach Advanced
Gyroscopes
Nadiya Mirosh
Gyroscope        professional forex expert   (for EURUSD, GBPUSD, USDJPY, AUDUSD, USDCHF, EURGBP, EURJPY, NZDUSD, USDCAD, EURCHF, AUDJPY, CADJPY pairs)   alyzing the market using the Elliot Wave Index. Elliott wave theory is the interpretation of processes in financial markets through a system of visual models (waves) on price charts. The author of the theory, Ralph Elliott, identified eight variants of alternating waves (of which five are in the trend and three are against the trend). The mov
GOLD Scalper PRO
Lachezar Krastev
4.48 (25)
ULTIMATE SALE -60% OFF! Get GOLD Scalper PRO with a huge –60% discount ! Special Price: $177 (Regular Price: $447 — You Save $270!) Don't miss out on getting this amazing gold trading EA at such a low price. The price will increase very soon! Live Results:   https://www.mql5.com/en/signals/2353871 GOLD Scalper PRO is a fully automated trading system which takes much of the work out of trading, leaving you free to do other things! You should not be fooled by the low price – GOLD Scalper Pro is
Dark Algo
Marco Solito
4.66 (67)
Last copy at 399$ -> next price 499$ Dark Algo  is a fully automatic Expert Advisor for Scalping Trading on Eurusd and Gbpusd . This Expert Advisor is based on the latest generation of algorithm and is highly customizable to suit your trading needs.  If you   Buy this Expert   Advisor you can   write a feedback   at market and   get   a second EA for   Free , for More info contact me The basic strategy of this EA is built on a sophisticated algorithm  that allows it to identify and follow market
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
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
ORIX mt4
Leonid Arkhipov
4.75 (4)
ORIX System — a trading robot developed specifically for the GBPUSD currency pair on the M5 timeframe. The Expert Advisor is based on price behavior analysis and market structure elements and does not use standard technical indicators. The EA does not use martingale, trading grids, averaging against the market, hedging, opening trades without a stop-loss, or high-frequency or chaotic trading. Live signals Main requirements and recommendations Currency pair: GBPUSD Timeframe: M5 Minimum deposit:
DAX Robot is an advanced automated trading system developed specifically for the   DAX 40 Index   on the H1 timeframe. Designed to handle the fast paced nature of one of Europe's   most actively traded indices , the robot continuously analyzes market conditions and automatically executes trades based on its built in trading logic. The system focuses on identifying high probability   trading opportunities   by combining trend analysis, market momentum, and volatility based conditions. DAX Robot
XG Gold Robot MT4
MQL TOOLS SL
4.29 (42)
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
Javier Gold Scalper V2
Felipe Jose Costa Pereira
5 (4)
Javier Gold Scalper: Our Technology by Your Side! Manual and configuration files: contact me after purchase to receive the manual and configuration files Price: The price increases according to the number of licenses sold Available copies: 5 Trading gold, one of the most volatile assets in the financial market, requires high precision, thorough analysis, and extremely effective risk management. The Javier Gold Scalper was developed specifically to integrate these pillars into a robust and sophi
Golden Mirage mt4
Michela Russo
5 (9)
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
PRO MULTI SNIPER EA is a high quality 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. M15 timeframe!   No Grid! No Martingale! It is original product which is offered only on this MQL5 website. Download EA Set_files for testing and trading: GBPCAD Set_file GBPAUD Set_file EA unique features: - Machine Learning methods are used. - Implemented compound interest method and
FlipDamonHFT
Allistair Kabelo Mandow
1 (4)
FlipDamonHFT is a fully automated Expert Advisor for MetaTrader 4, developed for trading XAUUSD (Gold) on the M15 timeframe. It uses a high-frequency approach combined with advanced risk controls to identify and capture short-term opportunities in the gold market. The EA is designed for traders who understand the high-risk nature of HFT strategies. It focuses on precision execution, dynamic position sizing, and multi-layer protection to manage trades during volatile gold movements. Key Features
Live Signal on Vantage https: // www.mql5.com/en/signals/2378090 https: // www.mql5.com/en/signals/2378091 live signal is running mode/option 1 with autolot 2 % risk. Add webrequest for news filter https: //nfs.faireconomy.media Overview:  The Gold Space is a fully automated, professional-grade Expert Advisor specifically engineered for the XAUUSD (Gold) market. Designed natively for MetaTrader 4, this EA capitalizes on high-probability volatility expansions using a precise, dynamically calcula
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
Trend Line PRO EA mt4
Evgenii Aksenov
4.65 (46)
The Trend Line EA adviser trades based on the Trend Line PRO indicator signals in automatic mode. An additional set of functions allows the Trend Line PRO strategy to become break-even with any instrument in MT4: Gold, Forex, Indices, Stocks, Crypto. Big sale 50% OFF! Price $199. Regular price $398 All our signals are now available on myfxbook: click here   Unique set files and all recommendations are provided free of charge. All future updates of the adviser are included in the price. After th
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