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+
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
HMA Trend Expert
Alexander Fedosov
5 (1)
HMA Trend robot for professional traders works with a set of Hull moving averages( HMA ). Advisor Parameters Use Trade Panel  — Use the visual panel to configure and trade robot. Lot  — Lot size for a market entry. Take Profit(points)  — Take Profit for an open order. Stop Loss(points)  — Stol Loss for an open order. Max Spread(0 - disabled)  — Maximum allowable spread at which you can enter the market. 0 - disabled. Magic number  — The magic number of the robot. EA Comment  — Comments of robot.
Buyers of this product also purchase
BB Return mt4
Leonid Arkhipov
5 (14)
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
The Gold Reaper MT4
Profalgo Limited
4.61 (33)
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
Vortex Gold MT4
Stanislav Tomilov
4.93 (42)
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
Quantum King MT4
Bogdan Ion Puscasu
5 (4)
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
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.
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. 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
Gold Safe MT4 EA
Anton Zverev
5 (2)
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 continuously improve and optimize the product to meet changing market conditions. Gold Safe EA       - the algorithm uses several strategies simultaneously, the main
Boring Pips MT4
Thi Thu Ha Hoang
4.54 (13)
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
Golden Mirage mt4
Michela Russo
5 (8)
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
Waka Waka EA
Valeriia Mishchenko
4.25 (48)
8+ years of live track record with +12,000% account growth: Live performance MT 5 version can be found here Waka Waka is the advanced grid system which already works on real accounts for years. Instead of fitting the system to reflect historical data (like most people do) it was designed to exploit existing market inefficiencies. Therefore it is not a simple "hit and miss" system which only survives by using grid. Instead it uses real market mechanics to its advantage to make profit Supported cu
Vortex Turbo EA MT4
Stanislav Tomilov
5 (10)
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
One Gold MT4
Stanislav Tomilov
4.6 (15)
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
XG Gold Robot MT4
MQL TOOLS SL
4.35 (40)
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
Multi Sniper mq
DMITRII GRIDASOV
5 (3)
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
SentinelAI
Valeriia Mishchenko
No losing months since August 2019, with a 2.04% monthly gain: Live performance MT 5 version can be found here Sentinel AI is fully automated trading system is built for major forex pairs such as EURUSD and GBPUSD on the M5 timeframe. By combining price action and mean reversion principles with advanced AI-driven analytics, it is designed to identify potential trend reversals and exploit market inefficiencies with greater accuracy and efficiency. Supported currency pairs: EURUSD, GBPUSD Timefram
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
GOLD Scalper PRO
Lachezar Krastev
4.48 (25)
ULTIMATE SALE! Get GOLD Scalper PRO with a huge –60% discount ! Special Ultimate Sale Price: $177 (Regular Price: $447 — You Save $270! Don't Miss!) 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 a very effective and profitable trading strategy, professionally developed especially for tra
AI Prop Firms MT4
MQL TOOLS SL
5 (4)
AI Prop Firms - Intelligent Automation Built for   Prop Trading Firms . AI Prop Firms is an advanced fully automated Forex trading system powered by   Artificial Intelligence , developed specifically to operate within the strict rules and evaluation models of prop trading firms. The system is designed to trade under controlled risk conditions while   maintaining consistency , stability, and compliance with prop firm requirements. AI Prop Firms uses intelligent market analysis logic that continu
Saints Row Aggressive Scalper
Nervada Emeule Adams
2.5 (2)
Saints Row Aggressive Scalper is a high-frequency trading (HFT) Expert Advisor built for traders who demand fast execution, sharp entries, and consistent performance in volatile markets. Designed specifically for XAUUSD (Gold) and USTEC (NASDAQ), this EA is engineered to capitalize on rapid price movements using a precise and aggressive scalping approach. It performs exceptionally well during the New York trading session, where liquidity and volatility create optimal trading conditions. IMPORTA
Big Forex Players MT4
MQL TOOLS SL
4.73 (45)
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
Forex GOLD Investor
Lachezar Krastev
4.39 (51)
ULTIMATE SALE! Get Forex GOLD Investor with a huge –60% discount ! Special Ultimate Price: $217 (Regular Price: $547 — You Save $330!) 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 strategy, the second system has time based dependency which opens up to 2 trades at a time and the third system is based on breakout strategy. It has been t
TW Sniper EA – Gold Scalping Expert Advisor for XAUUSD Trend Trading TW Sniper EA MT4 is an advanced Forex Expert Advisor for gold trading, built with precise trend-based logic to deliver stable performance even in highly volatile market conditions. This powerful gold scalping robot focuses on XAUUSD trading during key sessions, ensuring consistent growth while maintaining strict risk control and professional money management. With its smart automated strategy, traders can experience reliable r
Hello All, good news, the very famous Bitcoin Wizard version 1.6 is now available on the mql5 website which works very smoothly. Bitcoin Wizard – Automated Bitcoin Trading System Bitcoin Wizard is an advanced automated trading system designed specifically for Bitcoin trading . It identifies strong market momentum by analyzing high–low price levels within specific periods and executes pending orders to capture breakout opportunities. Built for traders who want a fully automated solution , Bitcoin
Indicement MT4
Profalgo Limited
5 (2)
Welcome to Indicement! PROP FIRM READY! -> download set files here LAUNCH PROMO: Only a few copies left at current price! Final price: 990$ NEW: Choose 1 EA for FREE! (limited to 2 trading account numbers) Ultimate Combo Deal   ->   click here JOIN PUBLIC GROUP:   Click here VERSION 4.0 LIVE RESULTS OLD VERSION FINAL RESULTS INDICEMENT brings my 15 years of experience in creating professional trading algorithms to the Index markets. The EA uses a very well thought out algorithm to find the best
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
FlipDamonHFT
Allistair Kabelo Mandow
1 (4)
Ask in private for more details after purchase Discounted   price .  The price will increase by $500 with every 10 purchases. Source code FlipDemonHFT available: https://t.me/snakeByteHoldings 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 MetaTrader 4, developed for t
XIRO Robot MT4
MQL TOOLS SL
5 (5)
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
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:
TPS Gold Scalper EA - High-Risk Edition: Seize Gold Trading Opportunities with Aggressive Precision Minimum Equity :- 1000 $ Trading Timeframes :- H1 Recommended pair :- XAUUSD Experience the next level of gold trading with the TPS Gold Scalper EA - High-Risk Edition. Designed for traders who thrive on high-risk, high-reward strategies, this advanced trading robot is your ticket to harnessing rapid price movements in the gold market. Aggressive Scalping Algorithm: The TPS Gold Scalper EA is p
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