Atomic Advanced EA

Atomic EA - Comprehensive User Guide

Welcome to the Atomic EA Operational Manual. Atomic is a sophisticated algorithmic trading companion that blends multiple dynamic strategies, adaptive regime detection, rigid risk management, and multi-symbol scaling. This guide covers how to set up the EA, tune strategy engines, read visual elements, and manage  .set  configurations.

1. Installation and General Setup

1.1 Core Inputs

When attaching Atomic EA to a chart, begin with the General Settings:

  • SymbolsToTrade : List the assets you are actively pursuing (e.g.,  XAUUSD ,  EURUSD ).
  • TimeframeToTrade : Specify the anchor evaluation timeframe (e.g.,  M15 ,  H1 ). This is independent of the chart you attach the EA to.
  • BaseMagicNumber : A unique digit (e.g.,  54321 ) imperative for separating Atomic trades from manual executions or other EAs running simultaneously.
  • MainStrategy : Select the core logic triggering trade signals. There are 32+ available strategies, ranging from Moving Average algorithms to Fair Value Gaps and Delta Volume Order Flow.

1.2 The "Regime Adaptive" Core Strategy

Unique to Atomic is the ability to select the  STRATEGY_REGIME_ADAPTIVE . Rather than running one fixed strategy, the EA analyzes the current market (Overbought, Trending, Choppy, Volatile) and routes the signal generation to specialized child strategies tailored explicitly for those conditions.

2. Setting Up Risk & Lot Sizes

Risk rules in Atomic are strictly enforced logic loops designed to prevent capital ruin.

2.1 Lot Sizing Modalities

Under  Lot Sizing , define how volume is constructed:

  • LOT_SIZE_FIXED : Applies the exact volume specified.
  • LOT_SIZE_ACCOUNT_BASED : Uses your current account equity combined with the  RiskPerTradePercent  field and the calculated Stop Loss point distance.
  • LOT_SIZE_ATR_BASED : Aggressively alters lot exposure dependent on the current asset ATR. Highly volatile conditions yield smaller position sizes, smoothing capital swings.

2.2 Protecting Stop Losses & Take Profits

SL_Mode  controls structural exit risk. You can set it to raw pips ( SL_MODE_POINTS ) or use the intelligent  SL_MODE_ATR  setting, which multiplies recent market volatility ( StopLoss_ATR_Multiplier ) to calculate a breathing-room stop suitable for that precise moment.

Atomic also supports  Ratio-Based  TP configurations, where you assign a base distance and a target RR (Risk-to-Reward) metric, autonomously dividing SL and TP distances to ensure mathematical expectancy.

3. Dynamic Trade Filters

While a Strategy dictates when to enter, Filters dictate when to abstain. The EA contains logic for over 20 confirmation filters. For example:

  • Economic Events ( EnableNewsFilter ): Prohibits opening trades X minutes before or after designated High/Medium impact data releases.
  • ADX Trend Filter ( UseADX_Filter ): Forces the system to reject signals if market momentum is below a specific ADX strength.
  • Volatility Threshold ( UseVolatilityFilter ): Preempts signals in sluggish markets where ATR rests below safe liquidity limits.
  • Regime Rejection: Configurable parameters ( BlockTradesInQuiet ,  BlockTradesInChoppy ) force the EA to flat-line activity during sideways or dangerous chop.

Use the  UseSignalConfidence  module to modify how strict filters apply. Instead of purely blocking a signal, confidence mode permits the trade if it passes a percentage of all activated filters, scaling your lot size up or down proportionately based on the final confidence score (between 0.0 and 1.0).

4. Position & Exit Management

4.1 Trailing Stops and Breakevens

Under Position Control, you'll define non-critical exit mechanics:

  • Breakeven Engine: Automate shifting your Stop Loss to entry minus a configured buffer once the price has progressed safely in your favor.
  • Trailing Variants: Options range from standard Pip-Steps to intelligent trails chasing Parabolic SAR markers, Moving Averages, or Ichimoku Kijun levels.
  • Partial Take-Profit: Set multiple thresholds (PTP1, PTP2) to shave designated lot percentages off open trades upon reaching predefined distances.

4.2 Circuit Breakers (Account Emergency)

Activate  EnableCircuitBreaker  and provide a strict total loss percent or consecutive loss count per day. Upon breaching this limit, the EA closes positions immediately and rejects further activity until server rollover.

5. Dashboard and Visual Features

The EA actively displays state information via its interactive overlays.

  • CDashboardPanel: A live chart metric box that breaks down open positions, Realized/Floating P&L, Total Margin utilized, the present System Regime, Strategy active, and the status of circuit breakers.
  • Visual Mode Graphics: During backtesting, the EA renders execution arrows, Stop-Loss / Take-Profit projection fields, Partial TP dots, and suggested Trailing Stop indicators directly onto candle wicks.

6. Configuring and Utilizing  .set  Files

To manage and save complex setups, Atomic uses  .set  files. This lets you reload entire rule matrices in a few clicks.

Loading Sets:

If evaluating the EA, open the MT5 Strategy Tester, click the "Inputs" Tab -> Right Click the layout -> "Load", and open any provided  .set  file.

Optimization Principles:

A standard  .set  file configuration will contain fields marked for optimization limits (Step/Min/Max). Follow this process for optimal testing:

  1. Ensure  SymbolsToTrade  matches the tester asset target.
  2. Select variables for MT5 sweeping by checking the optimization box next to parameters like  MainStrategy  or the primary lookback periods.
  3. Observe the  OnTester()  pass validations logged by the internal GPU Monte Carlo Engine, predicting "Risk-of-Ruin" based on your provided parameters. Set files producing high Walk-Forward Analysis (WFA) fail rates should be discarded.

Technical Architecture Documentation

1. System Overview

Atomic EA is an advanced, multi-strategy, stateful Expert Advisor built for MetaTrader 5 (MQL5). It features a highly modular architecture where the main EA logic acts as an orchestrator for stateless procedural modules.

The system relies heavily on a central data structure,  CSymbolManager , which acts as the unified state and data repository passed by reference to all functional modules. The architecture guarantees clean separation of concerns: signal generation, trade exclusion, execution, risk management, and chart visualization are discrete processes.

2. Core Execution Flow

The  OnTick()  execution pipeline ensures robust and predictable behavior across all modules:

  1. Heartbeat & Multi-EA Coordination: If enabled, updates Terminal Global Variables to signal instance liveliness to other EA instances.
  2. Data Refresh ( RefreshData ): Populates the  CSymbolManager  buffers with the latest bar and indicator data. Inline calculated buffers (e.g., Z-Score, Volume Profile) are processed here.
  3. Regime Detection: Evaluates multiple technical indicators (ADX, ATR, RSI, Stoch, CCI, Momentum, MACD, BB) to classify current market regime (e.g., Trending, Volatile, Chop, etc.).
  4. Signal Generation ( CheckTradeSignals ):
    • GetMainStrategySignal()  identifies initial entry opportunities using 32 unique sub-strategies.
    • ApplyAllFilters()  filters signals based on enabled indicators, volatility checks, and economic news.
    • CalculateFilterConfidence()  scores the resulting signal (0.0 to 1.0).
  5. Trade Execution ( ExecuteTrade ):
    • Validates over 13 pre-trade conditions (limits, margins, correlation).
    • Dynamically calculates Lot Size (using Risk %, ATR, and Confidence modulation).
    • Generates and manages order requests with exponential backoff retry logic.
  6. Position Management ( ManagePositions_Tick ):
    • Executes critical actions: SL enforcement, Breakeven application.
    • Executes non-critical actions: Trailing Stops, Partial Take Profits.
    • Evaluates Strategy-specific and Time-based Exits.
  7. Circuit Breaker Assessment: Aggregates realized and floating losses against daily threshold rules.
  8. UI & State Updates: Refreshes Chart Indicators, Dashboard, and persists state into binary format for restart recovery.

3. Module Breakdown

3.1. Main Entry Point: 
Atomic.mq5

Defines all generic configurations, constants, enums (e.g.,  ENUM_TRADING_STRATEGY ,  ENUM_MARKET_REGIME ), input parameters grouped by strategy/risk, and the  CSymbolManager  class. Maps global execution events ( OnInit ,  OnTick ,  OnDeinit ,  OnTester ) to module routines.

3.2. Signals & Strategy Core ( Signals.mqh )

Houses  GetMainStrategySignal() , expanding into 32 selectable strategies. This ranges from generic Moving Average crossovers and candlestick patterns to advanced strategies like Order Flow Delta Volume, Z-Score Mean Reversion, Fair Value Gaps (FVG), Market Structure mapping, and Volume Profile Point of Control.

3.3. Filter Engine ( Filters.mqh )

Executes secondary confirmation validations. Filters overlap with strategies but act to nullify signals.  ApplyAllFilters  can work in standard Boolean Mode (reject on first failure) or Confidence Mode (tally total passed filters over required filters to derive a signal strength).

3.4. Risk Management ( RiskManager.mqh )

Centralized risk calculation logic handling SL/TP models (Fixed, ATR-based, Ratio-based splits) and position sizing. Contains advanced Lot Progression modes (Loss Recovery, Fibonacci, D'Alembert). Enforces account-level checks, tracking maximum drawdown, margin availability, and consecutive losses.

3.5. Position Lifecycle ( PositionManager.mqh )

Manages active positions and pending limit/stop orders. Controls multiple trailing stop modalities (MA-based, Points, Parabolic SAR, Kijun Sen) and multi-level partial closures (PTP1, PTP2, PTP3). Implements early exit rules based on logic inversions (Strategy Exits) and time degradation (Time-based Exits).

3.6. Persistence & State ( StatePersistence.mqh )

Since MQL globals reset strictly upon terminal closure or EA re-initialization, this module saves critical variables (Hedge Levels, Drawdown states, Daily P&L, Circuit Breaker flags) into a binary file under MT5's  FILE_COMMON  location. This ensures continuity across restarts.

3.7. Multi-EA Coordination ( MultiEACoordination.mqh )

Allows multiple instances of the EA across various charts/assets to communicate securely. Employs Terminal Global Variables (TGV) using atomic Compare-And-Swap ( GlobalVariableSetOnCondition() ) to reserve margin, implement account-wide circuit breakers, and track gross currency risk exposure to avoid correlated ruin.

3.8. Walk-Forward Analysis ( WalkForward.mqh  /  MonteCarloOpenCL.mqh )

Dedicated to the  OnTester()  lifecycle. Uses OpenCL GPU acceleration (with CPU fallback) to simulate thousands of equity curve permutations on backtest results. Enables Out-of-Sample randomization, slippage simulation, and Risk-of-Ruin (RoR) estimations, wrapped in a Walk-Forward partitioning scheme (In-Sample vs Out-Of-Sample rolling windows) for high-fidelity optimization validation.

4. Signal Confidence Implementation

The  SignalConfidence.mqh  module generates a fractional confidence multiplier used to scale initial lot sizes dynamically. The algorithm is driven by evaluating the weighted sum of passed criteria:

  • Strategy Score: How robust the primary signal is.
  • Filter Hit Rate: The ratio of passed confirmation filters against the total enabled soft filters.
  • MTF Alignment: Bonus scoring if higher timeframes align with the signal.
  • Market Regime: Weight multiplier based on how well the regime matches the strategy paradigm.

5. Development Guidelines

  • Best encoding standards and practices for C++
  • Data Encapsulation
  • Stateless Execution
Recommended products
Insight Investor: Advanced Multi-Currency Forex Trading Bot Introduction In the fast-paced world of Forex trading, having the right tools can significantly enhance your trading experience. Insight Investor is an advanced multi-currency trading bot designed to automate and optimize your trading operations. This expert advisor employs modern algorithms to analyze market conditions and execute trades, aiming to deliver consistent results while maintaining controlled risk levels. Key Features of Ins
Ew3
Roberto Alencar
EW3 - Expert Advisor for Forex Mean Reversion Trading Overview An Expert Advisor designed to operate on mean reversion strategy with disciplined risk management, avoiding high-risk approaches such as grid or martingale methods. Key Features • Mean Reversion Strategy: Identifies and trades market correction movements • Multi-Symbol Support: Operates on 26 currency pairs simultaneously • Centralized Risk Control: Global stop loss and take profit management across all positions • Multi-Timeframe
Gold Soverient H4
Arockia Dinesh Babu
Trading Specifications: Symbol: XAUUSD (Gold) Timeframe: H4 (Required for optimal performance) Strategy: Swing Trading / Trend Following Minimum Deposit: $1000 (Recommended for proper risk management) Lot Size : 0.01 ·         Within a year, your entire initial capital was fully withdrawn, and since then, the EA has been trading exclusively with profit funds only, without any exposure to the original balance. ·         The current price of $599 is a limited launch offer, and it will be increased
Surya Gold EA is a highly advanced, fully automated trading system engineered specifically for trading Gold (XAUUSD) on the 1-Minute (M1) timeframe. It represents a premium blend of high-probability intraday scalping, structural trend alignment, and smart grid recovery mechanics. Recommended Settings & Requirements Symbol : XAUUSD (Gold) Timeframe : M1 (1-Minute) Account Type : Hedging is mandatory (Netting accounts are incompatible). Minimum Deposit : $3000 (Recommended: $3,000+ for stable lon
Robo davi I
Lucas Silvino Da Silva
Robô Davi I by Êxodo Capital is a professional system for traders created for the MT5 platform and optimized to work with MINI FUTURE INDEX (WIN) at B3 in BRAZIL. The system uses bias algorithms. After identifying the trend, the position is opened and the robot conducts the trade through a trailing stop that will be driven by the 13-period average. Maximum GAIN of 2200 pts. Main features Our setup has the option to use martingale, the EA has the option to customize. Presentation in the grap
ACDO Brasil
Edson Cavalca Junior
The robo t opens a buy or sell position using the signs. Know our products   Position openings are based on the parameters identified as signals, if you activate all the robot will issue a trading order only if the number of signals is greater than the minimum stipulated by the user. The  filters  are used to increase the accuracy of the signals and if activated and not met your criteria, the order is not sent. EA also offers MOBILE STOP with the Parabolic SAR indicator and also by distance
BlinkBreakout EA
Dariia Sinielnik
BlinkBreakout EA is a professional automated trading system for MetaTrader 5 that trades breakouts of session ranges (London/New York) with dynamic ATR-based risk management. The EA identifies the consolidation range at the start of a user-defined session, then automatically enters when price breaks the High or Low. Every trade uses a hard Stop Loss calculated from current market volatility (ATR), with optional Take Profit, Break-Even, and Trailing Stop functions. Key features: • Session-based
QuantumLogic AI
Silvano Cesar Silva Vieira
QuantumLogic AI QuantumLogic AI is a highly sophisticated Expert Advisor designed for institutional-grade algorithmic trading. It utilizes a dynamic cost-averaging strategy (Grid) combined with an ultra-fast asynchronous block closing system (Basket). Developed for traders who demand absolute control over market exposure, it incorporates advanced time management and dynamic risk containment protocols. STRATEGY OVERVIEW The EA filters market direction using a Moving Average baseline and execute
Fully automatic advisor, GBPUSD . Timeframe m15 . Terminal MT5 ChatGPT O1 deeply analyzed all GBPUSD quotes I downloaded from high timeframes, in order to find a safe strategy; identified paranormal activity of this tool. The advisor tracks such atypical GBPUSD activities and will immediately react by trying to enter in the opposite direction. Each order is protected by a stop loss . One order can be divided into a maximum of three orders. Each order has its own take profit and stop loss. Mini
Xauusd buyonly pro ea
Jean Pierre Bucyenyisenge
How the EA hunts high-probability BUYs (5 gates all must pass) Kill Zone — Only trades London (10–13), New York (16–19), Asia (03–06) in Exness server time GMT+3 H4 Trend — Price must be above the H4 50 EMA — higher timeframe must be bullish Breakout Confirmed — 3 consecutive closes above resistance (no fake breakouts from wicks) Retest + Bullish Candle — Price pulls back to the broken level and closes green = confirmation RSI 45–75 + Spread < 3 pips — Momentum must be bullish, not overboug
Gold speedster
Simon Aderinola Akinteye
Gold Speedster EA — Precision. Speed. Profitability. THE EA MYFXBOOK LINK NOW WORKING Up almost 3% in just few days. MyFxbook link :                https://www.myfxbook . com/members/CannyFX/gold-speedster/12075079 Kindly remember to clear the space just before com/ above when pasting the link in your browser. Unleash the power of intelligent automated trading with Gold Speedster , a next-generation Expert Advisor engineered exclusively for XAUUSD (Gold) . Built for traders who demand performa
-         What it does? Opens BUY (or SELL) orders automatically every X pips you decide. Closes each trade at your personal TP .  Works on any symbol: SP500, NAS100, GOLD, EURUSD, BTC... 100 % YOUR SETTINGS   What can you enter in the settings? - Trading direction: Buy or Sell - Entry level - Entry volume - Maximum number of buy orders - Maximum number of sell orders - Pips required for each new entry - Pips to take profit per trade - Stop Loss Level - Close all trades when SL level is hit Exam
GoldBurst Bot EA
Muhammad Hairi Bin Gulamsarwar
Capture the explosive daily movements of Gold with GoldBurst V2, a fully automated algorithmic trading system engineered engineered specifically for the ultra-liquid XAUUSD market. Built for precision, speed, and disciplined execution, GoldBurst V2 bypasses human emotional error to systematically target high-probability momentum breakouts. Rather than chasing every market tick, GoldBurst V2 utilizes an advanced Triple-Confluence Engine to isolate high-energy institutional order flow and execute
The Bitcoin Reaper
Profalgo Limited
3.71 (34)
LAUNCH PROMO: Only a very limited number of copies will be available at current price! Final Price: 999$ NEW (from 349$) --> GET 1 EA FOR FREE (for 2 trade account numbers). Ultimate Combo Deal   ->   click here JOIN PUBLIC GROUP:   Click here LIVE SIGNAL LIVE SIGNAL V2.0 UPDATE 2.0 INFO Welcome to the BITCOIN REAPER!   After the Tremendous success of the Gold Reaper, I decided it is time to apply the same winning principles to the Bitcoin Market, and boy, does it look promising!   I have been
The Inside Bar e one is a reversal/continuation candle formation, and is one of the most traded candle patterns. Robot F1 allows you to configure different trading strategies, Day Trade or swing trade, based on the Inside Bar as a starting point.  This pattern only requires two candles to perform. Robot F1 uses this extremely efficient pattern to identify trading opportunities. To make operations more effective, it has indicators that can be configured according to your strategy. Among the o
Titan Trader King – Gold Scalping EA for MT5 Titan Trader King is a precision-engineered automated trading system designed to capture high-quality momentum and trend continuation opportunities in fast-moving financial markets. The system is specially optimized for Gold (XAUUSD) trading behavior while maintaining strong performance capability across multiple high-liquidity trading instruments. Built for traders who demand structured, rule-based execution, Titan Trader King removes emotional decis
US500 Pulse
Md Abdul Manann
Your Automated Edge for Consistent Trading Success Tired of emotional trading decisions and inconsistent results? Master the US500 (US S&P 500 Index) with a professional-grade trading robot built for the discipline and consistency required for long-term market success. Get started for just $34/month. License: 20 Devices & Unlimited Accounts.  US500 Pulse is not just another EA. It's a comprehensive, trend-following trading system designed to navigate the fast-paced US500 market with a primary
LazyBoy Scalper Hedger Utility EA
Hesham Ahmed Kamal Barakat
From the creators of the successful   LazyBoy Super Trends Gold Trader   and   LazyBoy Scalper/Scrapper.   Comes this ultra safe ultra high profitability Gold Scalper Hedger Expert Advisor. Join out Telegram Group for More Information. About the EA - This EA is a utility only EA. It's a trade assistant, not a fully automated EA and it will not make you money in backtesting or in real account unless you setup the inputs correctly. Basically it will do exactly as you set it to do in the inputs. T
XHTB Throne EA is a high-performance scalping solution tailored for Gold (XAUUSD), built to operate with speed, precision, and discipline in volatile market conditions. Its core strength lies in a refined trailing stop system that locks in profits almost instantly, ensuring gains are protected the moment price moves in favor. Click here to read the Official XHTB EA Guide Risk Management Daily loss limits to control overall risk Trading activity adjusts according to account balance News filt
FiveStarFX Gold Reversal Edge Professional automated trading solution designed for structured execution and controlled risk management in the Gold market. Built for traders who value discipline, precision, and consistency. Key Features Fully automated trading One trade at a time (controlled exposure) Fixed Stop Loss and Take Profit Smart Break-Even protection Profit lock with buffer Step-based trailing management Spread protection system Works on any broker Trade Management The E
FREE
Retest Precision EA
Rodolfo Sanchez Morales
Main Description Retest Precision EA is an automated trading system designed for high-precision trading using breakout and retest strategies, focusing on real market movements and avoiding impulsive entries. This EA identifies key support and resistance zones, waits for breakout confirmation, and executes trades only when the market validates the move, thus seeking high-probability, controlled-risk entries. With dynamic volatility-based risk management (ATR) and a conservative approach, it
Hakeem Golden Guard
Abdul Hakeem 'amur Salim Aamir Al Hajri
Hakeem Golden Guard Protect Profits. Cut Losses. Let Winners Run. ---  Professional Advanced Trade Management System Take full control of your trades with institutional-grade trade protection logic. Hakeem Golden Guard is designed for serious traders who demand: • Precision • Discipline • Capital Protection • Intelligent Profit Management Built and refined through extensive testing on both LIVE and DEMO accounts. ---  What Makes It Different This is NOT a basic trailing stop EA. Hakeem
Skeleton BTC
Miguel Felipe Orozco Velandia
This automated trading robot for MT5 has been developed with a conservative and realistic approach, focusing on risk management and capital preservation. Its operational structure is designed to maintain controlled drawdown, making it suitable for traders seeking a disciplined and long-term strategy. It implements a selective scalping strategy on the BTCUSD pair, operating on the M1 timeframe. Unlike other systems that open frequent trades without filters, this bot acts only when specific condit
Goldenify
Saiful Izham Bin Hassan
Goldenify Goldenify is a professional quantitative workstation designed for precision trading on Gold and other major symbols. It utilizes an ensemble decision manifold that combines classical technical analysis with pattern recognition and advanced risk management protocols. The system focuses on capital preservation and execution quality, featuring institutional-grade modules for dynamic position sizing and stealth order management. Key Features Goldenify operates using a multi-layered approac
Quantrix Apex Scalper
Donald Burne Pinnock
The Quantrix Apex Scalper is a precision-built MetaTrader 5 expert advisor engineered for traders who prioritize capital preservation over reckless aggression. Unlike conventional bots that fire indiscriminately on every signal, this system employs a rigorous four-layer trend confirmation framework—combining ADX strength analysis, dual EMA alignment, price-to-MA positioning, and directional momentum validation—to ensure every single trade is taken strictly in the direction of a confirmed market
Cls PRO
Marco Aurelio Santos Costa
With CLS you WILL NOT LOSE, as long as you have a professional capital management. It is impossible to make a loss with CLS, why?  It works by buying and selling two positively correlated currency pairs. This means that when PAR 1 goes up PAR 2 also goes up, however, there is something that happens in the market that is the distortion of the price ratio. That is, when the PAR 1 rises and PAR 2 falls, that's when we enter, buying Par 2 and selling Par 1.  This seems simple but it is not, you
Robot Titan Rex
Cesar Juan Flores Navarro
Asesor Experto (EA) totalmente automático, opera sin ayuda del usuario, se llama Titan T-REX Robot (TTREX_EA),actualizado a la versión 2, diseñado a base de cálculos matemáticos y experiencia del diseñador plasmado en operaciones complejas que tratan de usar todas las herramientas propias posibles. Funciona con todas las criptomonedas y/o divisas del mercado Forex. No caduca, ni pasa de moda ya que se puede configurar el PERIODO desde M1..15, M30, H1.... Utiliza Scalping de forma moderada busca
GoldEdge Matrix — Premium Prop-Firm Edition combining USD, CAD,   JPY and CHF currency complexes , powered by the GE ATR Price Border system, dual-layer hedging, ATR volatility control and per-symbol cut loss protection. GoldEdge Matrix is the complete all-in-one MT5 Expert Advisor built for traders who want maximum currency coverage with minimal setup. It combines the logic of GoldEdge USD, GoldEdge CAD, GoldEdge JPY and GoldEdge CHF into one premium EA, with pre-configured presets and full op
Buyers of this product also purchase
Quantum Queen X MT5
Bogdan Ion Puscasu
5 (23)
The Legend Continues. The Queen Evolves. Welcome to Quantum Queen X — the next generation of the legendary GOLD trading system that builds upon the proven success of Quantum Queen. Quantum Queen X is built on the same proven core engine as Quantum Queen, introducing a powerful new Custom Mode that allows traders to choose exactly which strategies to enable or disable. Every strategy has been individually reviewed, refined, and optimized to deliver even better performance and adaptability across
Scalping Robot Pro MT5
MQL TOOLS SL
4.46 (138)
Scalping Robot Pro is a professional trading system designed specifically for fast and precise scalping on XAUUSD using the M1 timeframe. The system is built to capture short term market movements with accurate execution and controlled risk management. It focuses on real time price behavior, momentum shifts, short term volatility, and selective grid based trade management techniques to identify high probability trading opportunities in the gold market. Scalping Robot Pro is optimized for traders
Ultimate Breakout System
Profalgo Limited
5 (46)
IMPORTANT : This package will only be sold at current price for a very limited number of copies.    Price will go to 1999$ soon!   +100 Strategies included and more coming! BONUS : At 1499$ or higher price --> choose 5  of my other EA's for free!   ALL SET FILES COMPLETE SETUP AND OPTIMIZATION GUIDE VIDEO GUIDE LIVE SIGNALS REVIEW (3rd party) NEW - 44-STRATEGIES LIVE SIGNAL Welcome to the ULTIMATE BREAKOUT SYSTEM! I'm pleased to present the Ultimate Breakout System, a sophisticated and propr
XG Gold Robot MT5
MQL TOOLS SL
4.31 (113)
The XG Gold Robot MT5 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 Action, Cycle S
Syna
William Brandon Autry
5 (27)
Syna 7 - The AI Trading Operator That Stays With the Trade. Most trading systems make an entry decision and then fall back to fixed rules. Syna 7 remains involved. Syna is an autonomous AI trader, trading assistant, and position-management system designed to operate from analysis through exit. It can analyze current market conditions, evaluate news and volatility, remember the original trade reasoning, monitor open exposure, and continue reassessing the position as conditions change. Trading do
Big Forex Players MT5
MQL TOOLS SL
4.76 (140)
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
XIRO Robot MT5
MQL TOOLS SL
5 (34)
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 and
Wall Street Robot MT5
MQL TOOLS SL
3.89 (18)
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 operate
Mad Turtle
Gennady Sergienko
4.53 (123)
Symbol XAUUSD Timeframe (period) H1-M15 (any) Support for single-position trading YES Minimum deposit 500 USD  (or the equivalent in another currency) Compatible with any broker YES (supports 2 or 3-digit brokers. Any deposit currency. Any symbol name. Any GMT time.) Runs without pre-configuration YES If you are interested in the topic of machine learning, subscribe to the channel:  Subscribe! Key Facts about the Mad Turtle Project: Real Machine Learning This Expert Advisor does not conn
Bitcoin Scalping MT5
Lo Thi Mai Loan
5 (5)
[ IMPORTANT ] REAL CLIENT FEEDBACK :  https://www.mql5.com/en/market/product/127498/comments#comment_58814415 [ IMPORTANT ]  UPDATED (1 YEAR PERFORMANCE):  https://www.mql5.com/en/market/product/127498/comments#comment_59233853 [ IMPORTANT ]  UPDATED (1 YEAR 6 MONTHS PERFORMANCE):  https://www.mql5.com/en/market/product/127498/comments#comment_60000067 Follow the channel for the latest update .  JOIN GROUP:   Click here Other EAs You May Like AI AURUM PIVOT  | AI VEGA BOT  | Golden Blitz  I
Aero MT5
Volodymyr Babak
Transparent pricing model.  The price increases with each stage of sales. Next stage: $1500 . [  Live Signal +7 Months · 0.1% DD · +27% Growth  ] How Aero works Aero is a fully automated Expert Advisor for XAUUSD (Gold) , trading both directions on the daily chart. At its core is a breakout strategy . Gold breaks key levels almost every day — Aero identifies which of them are statistically worth trading, and ignores the rest. That selection is made by kNN (k-Nearest Neighbors) — a machine lear
Waka Waka EA MT5
Valeriia Mishchenko
4.13 (40)
8+ years of live track record with +12,000% account growth: Live performance MT 4 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
DAX Robot MT5
MQL TOOLS SL
5 (3)
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 is designe
Neural Sentinel XAUUSD MT5 – High-Frequency Algorithmic AI System for Gold Neural Sentinel XAUUSD MT5 is a high-performance algorithmic trading system engineered exclusively for the Gold (XAUUSD) market. This Expert Advisor utilizes an advanced multi-timeframe analytical engine, combining trend-following momentum with precise volatility and anti-reversal filters to capture rapid intra-day market inefficiencies. Try our other EAs:  GET ONE FOR FREE!!!                       SELLER PAGE HERE -BROK
Apex Drawdown Zero
Tshivhidzo Moss Mbedzi
Apex Drawdown Zero V9 — Gold & Forex Trading Robot (XAUUSD, EURUSD, EURJPY) with Prop Firm Protection | MT5 Apex Drawdown Zero is a fully automated trading robot for MetaTrader 5, built for traders who care about drawdown control first. It trades a proprietary daily session-range model on the H1 timeframe, taking a maximum of one qualified trade per day with a fixed, percent-based risk and a structural stop-loss attached from the moment of entry. No martingale. No grid. No averaging. No recovery
AiQ
William Brandon Autry
4.87 (38)
AiQ Gen 2 - Precision Pending-Order Intelligence for Fast-Moving Markets. AiQ Gen 2 is built to identify developing market movement, prepare before the opportunity fully unfolds, and position with precision through intelligent pending orders. Instead of waiting until price has already reached the intended entry area, AiQ analyzes current market structure, direction, timing, volatility, and expansion potential before deciding where an order should be placed. It prepares before the move, but only
Bonnitta EA MT5
Ugochukwu Mobi
3.38 (21)
Bonnitta EA  is based on Pending Position strategy ( PPS ) and a very advanced secretive trading algorithm. The strategy of  Bonnitta EA  is a combination of a secretive custom indicator, Trendlines, Support & Resistance levels ( Price Action ) and most important secretive trading algorithm mentioned above. DON'T BUY AN EA WITHOUT ANY REAL MONEY TEST OF MORE THAN 3 MONTHS, IT TOOK ME MORE THAN 100 WEEKS(MORE THAN 2 YEARS) TO TEST BONNITTA EA ON REAL MONEY AND SEE THE RESULT ON THE LINK BELOW. B
Quantum Baron
Bogdan Ion Puscasu
4.79 (42)
Quantum Baron EA There’s a reason oil is called black gold — and now, with Quantum Baron EA, you can tap into it with unmatched precision and confidence. Engineered to dominate the high-octane world of XTIUSD (Crude Oil) on the M30 chart, Quantum Baron is your ultimate weapon for leveling up and trading with elite precision. IMPORTANT! After the purchase please send me a private message to receive the installation manual and the setup instructions. Discounted   price .     The price will inc
THE GOLD DIGGER - A SCALPER LIKE NO OTHER Precision. Purpose. Performance. NOT JUST AN EA – A PRECISION ENGINEERED XAUUSD SCALPING SYSTEM PythonX M1 Scalper isn’t just another Gold EA — it’s a specialized, high-performance scalping framework built exclusively for XAUUSD on the M1 timeframe . It has been engineered to deliver precise entries, smart risk control, and consistent returns over time — not just in ideal conditions, but across 9 major brokers over multi-year periods. With a starting bal
Perceptrader AI MT5
Valeriia Mishchenko
4.67 (6)
80 consecutive months in profit with low drawdown: Live performance MT4 version can be found here Perceptrader AI is a cutting-edge grid trading system that leverages the power of Artificial Intelligence, utilizing Deep Learning algorithms and Artificial Neural Networks (ANN) to analyze large amounts of market data at high speed and detect high-potential trading opportunities to exploit. Supported currency pairs: NZDUSD, USDCAD, AUDNZD, AUDCAD, NZDCAD, GBPCHF Timeframe: M5 Features: Trend , Mome
BulletProof BTC
Rodrigo Domenico Minafra
5 (1)
BULLETPROOF BTC — Session Breakout EA for BTC/USD A fully automated session-breakout system for Bitcoin. NO martingale. NO grid. NO averaging down. NO hidden recovery tricks. SL and TP on every position, always. 6 risk profiles with one-click configuration. Validated on a full year of out-of-sample data. ------------------------------- WHY THIS EA IS DIFFERENT: VALIDATION, NOT PROMISES ------------------------------- Most EAs show you one beautiful backtest. BulletProof BTC was built the har
Velora MT5
Ahmad Aan Isnain Shofwan
The Intelligent Grid EA — A Team of Smart Modules Following the 5-star success of its MT4 predecessor, Velora has been completely rebuilt for MT5 with a fundamental shift in design. Most grid EAs are one engine doing many jobs. Velora is different. Inside Velora, there is a team. Four smart modules, each with one specialty, working together so the system stays adaptive at every stage of a trade — from the moment of entry, to scaling decisions, to the exit. Meet the team: VSE — Velora Smart Entr
Minting
Zenzo Phathisani Mtungwa
***ATTACH to M1 or M5 for best results and quick entries and exits*** Minting –  is a streamlined, professional-grade Expert Advisor developed by Ramulo Software Ltd., designed specifically to capitalize on the volatility and profit potential of Gold (XAUUSD). It combines intelligent EMA-based market structure, ATR trend detection, tiered USD trailing, and strict drawdown control into a lightweight, easy-to-run trading system. Minting is the entry gateway into the Emerge ecosystem . It is inten
Tenet Scalp
Cence Jk Oizeijoozzisa
TENET is an automated Expert Advisor for MetaTrader 4 developed specifically for trading XAUUSD (Gold) on the M1 timeframe. The EA uses a grid-based position management approach combined with predefined risk control, automated trade management, and multiple entry filters. It is designed for traders who prefer short-term market opportunities while maintaining controlled exposure. Every position is protected by a Stop Loss, and the EA includes Break-Even and Trailing Stop functions for automated
Mean Machine
William Brandon Autry
4.83 (42)
Mean Machine GPT Gen 2 - The Flagship Adaptive Mean-Reversion and Recovery System. Mean Machine helped introduce frontier AI into live retail trading in late 2024. Gen 2 preserves the original strategy while expanding the intelligence around it. Mean Machine GPT Gen 2 is an autonomous trading system built around adaptive mean reversion, trend awareness, Commonwealth-pair specialization, and optional Sacred Phi position management. It analyzes whether price has moved away from a reasonable marke
Super Tenet
Cence Jk Oizeijoozzisa
5 (1)
Super Tenet is a powerful and intelligently designed Expert Advisor developed for traders who prefer stable automated execution on Gold markets. Built specifically for XAUUSD on the M1 timeframe, this system combines fast reaction speed with advanced internal trade management and adaptive market behavior. The EA has been optimized to work smoothly across different brokers and trading environments. Whether you use ECN, Standard, Raw Spread, or low-latency execution accounts, Super Tenet is design
Gyroscopes mt5
Nadiya Mirosh
5 (2)
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
Golden Pickaxe MT5
Valeriia Mishchenko
3.56 (9)
EA has high-performance live track records of different set files: Live performance MT 4 version can be found here Golden Pickaxe is a mean-reversion grid trading system that uses machine learning technology to place high-profit potential trades on the Gold market. It uses real market inefficiencies to its advantage to have an edge over the market. The EA has 5 predefined set files, which are essentially 5 different trading systems on gold . You may choose the default option (XAU Risky) or have
Super Hybrid EA AI Pro
Bashar Taisir Saleh Al Zubaidi
5 (1)
Super Hybrid EA AI Pro Professional XAUUSD Grid, Martingale, Hedging and Basket Risk-Control Expert Advisor for MetaTrader 5 Group Channel Link: https://www.mql5.com/en/messages/0193d17ed016dd01 This Expert Advisor incorporates seven advanced protection layers designed to safeguard the trading account, control exposure, and reduce overall trading risk. 1. High-Impact News Filter The EA automatically suspends the opening of new trades for two hours whenever major high-impact economic news is dete
Night Hunter Pro MT5
Valeriia Mishchenko
3.92 (37)
EA has a live track record with many months of stable trading with  low drawdown: All Pairs 9 Pairs Night Hunter Pro is the advanced scalping system which utilizes smart entry/exit algorithms with sophisticated filtering methods to identify only the safest entry points during calm periods of the market. This system is focused on a long-term stable growth. It is a professional tool developed by me years ago that is constantly updated, incorporating all the latest innovations in the trading area.
Filter:
No reviews
Reply to review