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
おすすめのプロダクト
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
SMC Liquidity Core MT5 Professional Smart Money Concepts Expert Advisor for MetaTrader 5 SMC Liquidity Core MT5 is a professional fully automated Expert Advisor designed for traders who want to trade XAUUSD (Gold) using institutional Smart Money Concepts (SMC) . The EA has been carefully developed to identify Liquidity Sweeps , validate Change of Character (CHoCH) , and execute trades only after market structure confirms a potential reversal. Instead of relying on traditional lagging indicators,
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
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 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は、機関投資家レベルのアルゴリズム取引向けに設計された高度なExpert Advisorです。超高速の非同期ブロック決済システム(バスケット)と組み合わせた動的コスト平均法(グリッド)を利用します。 戦略の概要 EAは移動平均線を使用して市場の方向性をフィルタリングし、計算されたグリッド注文を実行します。QuantumLogic AIは厳密な時間枠内で動作し、独自の「オーバータイム」アルゴリズムを使用して、セッション終了時に取引を安全に管理および決済します。 主な機能と革新 トリプルセッション時間管理: 1日を3つの独立した期間に分割します。 オーバータイムトレーリングテクノロジー: セッション終了時に未決済注文が残っている場合、そのサイクルで達成された最大利益のカスタマイズ可能な割合を保護します。 内蔵ニュースフィルター: 影響の大きいUSDニュース(3つ星)をカレンダーでスキャンし、エントリーを一時停止して強制決済します。 非同期決済エンジン: 数十の注文をミリ秒単位で決済し、スリッページを削減します。 マルチレベル
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
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
Orizon 4MA Trend Master O Poder da Confluência Institucional de Médias Móveis O Orizon 4MA Trend é um Robô de Investimento (Expert Advisor) de alta precisão, projetado para traders que operam a favor do "Smart Money". Ao combinar quatro médias móveis distintas (9 EMA, 21 EMA, 50 SMA e 200 SMA), este robô filtra o ruído do mercado e executa ordens apenas quando todas as camadas de tendência estão perfeitamente alinhadas. A Lógica das 4 Camadas A estratégia baseia-se na Hierarquia das Médias . El
The Bitcoin Reaper
Profalgo Limited
3.71 (34)
発売プロモーション: 現在の価格で入手できるコピーの数はごく限られています。 最終価格: 999ドル 新規 (349 ドルから) --> 1 EA を無料で入手 (取引口座番号 2 つ)。 究極のコンボディール   ->   こちらをクリック 公開グループに参加する: ここをクリック   LIVE SIGNAL LIVE SIGNAL V2.0 UPDATE 2.0 INFO BITCOIN REAPER へようこそ!   Gold Reaper が大成功を収めた後、同じ勝利の原則を Bitcoin 市場に適用する時が来たと判断しました。そして、それは非常に有望に見えます!   私はこれまで 20 年以上にわたってトレーディング システムを開発してきましたが、私の専門分野は「断然」ブレイクアウト戦略です。 このシンプルながらも効果的な戦略は、常に最高の取引戦略の上位にランクインしており、基本的にあらゆる市場に適用できます。     特にビットコインのような変動の激しい市場では、真価を発揮します。   それで、この戦略はどのように機能するのでしょうか? ブレイクアウト戦略は、重要なサ
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
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
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
HTB Throne Gold Scalper EA は、XAUUSD(ゴールド)を対象とした自動売買システムで、M5 の時間足で動作します。 事前に定義されたルールと管理されたリスクパラメータに基づき、日中のスキャルピング取引を実行します。 本 EA は、市場構造およびボラティリティの状況を分析して取引機会を選択します。 各取引は個別に管理されます。 グリッド戦略やマーチンゲール手法は使用していません。 リスク管理 全体的なリスクを管理するための日次損失制限 取引活動は口座残高に応じて調整されます 高いボラティリティが予想されるニュース時の取引を抑制するニュースフィルター ブローカーおよび口座要件 Raw Spread または ECN タイプの口座向けに設計 低スプレッドおよび高速な約定環境を推奨 XAUUSD に最適化 取引プロファイル 取引銘柄 XAUUSD(ゴールド) 時間足 M5 取引スタイル 日中スキャルピング 取引期間 短期 リスクモデル 管理型 戦略タイプ グリッドなし、マーチンゲールなし 推奨ユーザー リスク管理された自動売買に関心のあるトレーダー マーチンゲール手
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
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は、多層的な市場分析アプローチを使用して動作します: - アンサンブル戦略:EAは、テクニカル指標(MACD、RSI、EMA)、価格アクションパターン、ボラティリティ分析の組み合わせを使用して市場状況を評価します。 - 機関投資家レベルのリスク管理:フラクショナル・ケリー法によるポジションサイジング、パフォーマンスに基づく動的リスクスケーリング、および日次利益を保護するエクイティラッチングが含まれます。 - ステルス執行:ステルスストップロスとテイクプロフィットレベル、およびブローカーサーバーへの痕跡を最小限に抑える仮想保留注
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
このプロダクトを購入した人は以下も購入しています
Quantum Queen X MT5
Bogdan Ion Puscasu
5 (29)
伝説は続く。女王は進化する。 Quantum Queen Xへようこそ。これは、Quantum Queenの実績ある成功を基盤とした、伝説的なゴールド取引システムの次世代版です。 Quantum Queen Xは、Quantum Queenと同じ実績のあるコアエンジンをベースに構築されており、トレーダーがどの戦略を有効または無効にするかを正確に選択できる強力な新しいカスタムモードが導入されています。 すべての戦略は個別にレビュー、改良、最適化され、さまざまな市場状況においてさらに優れたパフォーマンスと適応性を発揮します。デフォルトのプリセットも強化され、7つの戦略ではなく厳選された9つの戦略を組み合わせることで、より広い市場範囲とより多くの取引機会を提供すると同時に、Quantum Queen XをMQL5で最も成功したGOLDエキスパートアドバイザーにした規律ある取引哲学を維持しています。 IMPORTANT! After the purchase please send me a private message to receive the installation manual
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
重要 : この商品は、ごく少数の数量のみ、現行価格で販売されます。    価格はまもなく1999ドルになります!   100以上の戦略を収録 !さらに追加予定! ボーナス : 私の他のEAの中から5つ  を無料で 選んでください!   すべての設定ファイル + 完全なセットアップおよび最適化ガイド ビデオガイド ライブシグナル レビュー(第三者による) 新登場 - 44種類の戦略ライブシグナル 究極のブレイクアウトシステムへようこそ! この度、8年の歳月をかけて綿密に開発された、洗練された独自のエキスパートアドバイザー(EA)である「アルティメット・ブレイクアウト・システム」をご紹介できることを嬉しく思います。 このシステムは、MQL5市場で高いパフォーマンスを発揮するEAの基盤となっており、その中には高く評価されているGold Reaper EAも含まれています。 7か月以上にわたり1位の座を維持したほか、Goldtrade Pro、Goldbot One、Indicement、Daytrade Proもランクインした。 Ultimate Breakout Systemは、
XG Gold Robot MT5
MQL TOOLS SL
4.33 (112)
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
Mad Turtle
Gennady Sergienko
4.53 (123)
シンボル XAUUSD(ゴールド/米ドル) タイムフレーム(期間) H1-M15(任意) シングルポジショントレード対応 はい 最低入金額 500 USD (または他通貨の同等額) すべてのブローカーに対応 はい(2桁または3桁の価格表示、任意の通貨、シンボル名、GMT時間に対応) 事前設定なしで稼働可能 はい 機械学習に興味がある方は、こちらのチャンネルを購読してください: 購読する! Mad Turtle プロジェクトの主な特徴: 本物の機械学習 このエキスパートアドバイザー(EA)は、GPTサイトや類似サービスに接続しません。 モデルはMT5に組み込まれたONNXライブラリを使用して展開されます。初回の起動時に、偽造不可能なシステムメッセージが表示されます。 CLICK 参照: ONNX(Open Neural Network Exchange)。 資金の安全性 プリロールオーバーやマイクロスキャルピング、統計的サンプルの少ない狭いレンジでの取引を使用しません。 グリッドやマーチンゲールなどの危険な戦略を使用しません。 また、長期間稼働し、1日で利益や資金をすべて
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
Syna
William Brandon Autry
5 (27)
Syna 7 - トレードに寄り添い続けるAI ほとんどのトレーディングシステムは、エントリーした時点で考えるのをやめます。 Synaは違います。 Syna 7は、分析から決済まで関与し続けるために設計されたAIトレーディング・アシスタントであり、自律型トレーディングシステムです。 現在の状況を監視し、トレードの文脈を記憶し、ニュースとボラティリティを評価し、ポジションを管理し、口座間を調整し、注文が約定した後も判断を再評価し続けることができます。 トレードはエントリーで終わりません。 インテリジェンスも同じであるべきです。 分析から決済まで、ひとつの連続したインテリジェンス。 チャンネルとコミュニティ アップデート、シグナル、リリース情報、製品デモはチャンネルでご確認ください。公開グループでは質問や他のトレーダーとの交流ができます。 私のMQL5チャンネルをフォロー 私のMQL5公開グループに参加 Synaとは Synaは、トレーディング運用全体のインテリジェンス層として機能するよう設計されています。 次のような対象と連携できます。 Syna自身の自律的なトレーディング戦略 他のE
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
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
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 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
[ 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 ビットコインスキャルピングMT4/MT5のご紹介 – 暗号通貨取引のためのスマートEA ローンチプロモーション: 現在の価格で残り3コピーのみ! 最終価格:$3999.99 ボーナス - 生涯Bitcoin Scalping購入で、無料 EA AI VEGA BOT (2アカウント)をプレゼント => 詳細についてはプライベートでお問い合わせください! EAライブシグナル MT4バージョン なぜビットコインが今日重要なのか ビットコインは単なるデジタル通貨以上の存在となり、金融革命を引き起こしました。暗号通貨の先駆者として、ビットコ
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 continuously
AiQ
William Brandon Autry
4.87 (38)
AiQ Gen 2 登場 – より速く。よりスマートに。かつてないほど高性能に。 私たちは2024年末にMean Machineでこの変革を始めました。リアルな最先端AIをライブのリテール取引に導入した最初期のシステムの一つです。 AiQ Gen 2はそのラインにおける次の進化です。 AiQ Gen 2は全く異なるレベルのスピードのために構築されています。指値注文がそのエッジの核にあり、モメンタムが拡大する前に精密にポジションを取り、そしてアダプティブ・インテリジェンスに引き継ぎます。 ほとんどのAIツールは一度回答すると、すべてを忘れます。 AiQ Gen 2は違います。 すべての指値注文セットアップ、各配置や調整の背後にある推論、なぜトリガーされたか、なぜ見送ったか、そしてマーケットがどう反応したかを記憶しています。毎セッションの完全なコンテキスト。時間とともに蓄積される永続インテリジェンス。 これはマーケティングのためにAIを付け足しただけのEAではありません。 これは精密な指値注文執行を中心に構築された高速専門インテリジェンスです。 従来のEAは固定されたロジックの中に閉じ込
Bonnitta EA MT5
Ugochukwu Mobi
3.38 (21)
Bonnitta EA は、保留ポジション戦略 (PPS) と非常に高度な秘密取引アルゴリズムに基づいています。 Bonnitta EA の戦略は、秘密のカスタム指標、トレンドライン、サポートおよびレジスタンス レベル (価格アクション)、および上記の最も重要な秘密の取引アルゴリズムを組み合わせたものです。 3 か月以上のリアルマネーテストなしで EA を購入しないでください。ボニッタ EA をリアルマネーでテストするのに 100 週間以上 (2 年以上) かかりました。結果は以下のリンクで確認してください。 BONNITTA EA は愛とエンパワーメントから作られています。 少数の購入者のみを対象とした価格設定と著作権侵害アルゴリズムの実装です。 Bonnitta EA は、22 年間で 99.9% の品質を持つ本物のティックを使用してテストされ、実際の市場状況に近いスリッページとコミッションでストレス テストに合格しました。 Expert Advisor には、完全な統計制御による統計収集およびスリッページ制御のアルゴリズムが含まれています。 この情報はブローカーのトリックか
Quantum Baron
Bogdan Ion Puscasu
4.79 (43)
クォンタムバロンEA 石油が「黒い金」と呼ばれるのには理由があります。Quantum Baron EA を使用すれば、比類のない精度と信頼性で石油を活用できます。 M30 チャートの XTIUSD (原油) の高オクタン価の世界を支配するように設計された Quantum Baron は、レベルアップしてエリート精度で取引するための究極の武器です。 IMPORTANT! After the purchase please send me a private message to receive the installation manual and the setup instructions. 割引   価格 。       10回購入するごとに価格が50ドルずつ上がります。最終価格は4999ドルです。 クォンタムバロンチャンネル:       ここをクリック ***Quantum Baron MT5 を購入すると、Quantum StarMan を無料で入手できます!*** 詳細については、プライベートでお問い合わせください。 私はグリッドEAです。あなたのト
速さ。正確さ。恐れなし。 単なるEAではなく、M1スキャルピングの戦略そのもの。 PythonX M1 Scalper は、 XAUUSD専用・M1タイムフレーム向け に設計された高性能エキスパートアドバイザーです。 精密に調整された プライスアクション と インジケーターロジック を組み合わせて、信頼できるトレードシグナルを生成します。 わずか**$500の初期資金**で、世界の有名ブローカー9社にてバックテスト済み。 一部では$500,000超の利益 を達成しました。 マーチンゲールなし グリッド戦略なし 隠れたリスクなし 複数のフィルターで構成された、洗練されたエントリーロジック エントリーは単一の指標に依存せず、以下の 5つの要素が相互に補完しながら判断 されます: 包み足(Engulfing)パターン認識 CCI(商品チャネル指数)によるトレンド確認 RSIでのモメンタム方向一致 EMAによる中期トレンド確認 ボリューム急増フィルター 一部フィルターがオフでも、内部的には他のロジックを支援する形で機能し、 全体の精度を高める 構造です。 リスク管理とトレード制御 利益確定(
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
説明。 この製品は、プロジェクト「 PULSE_OF_MARKET 」の一部として作成されました。 EA「UndefeatedTriangle」は、AUD、CAD、NZD通貨間の独自の変動を利用する高度なシステムです。歴史的な結果は、構成で使用されるこれらのペアは、一方向への高速移動後に常に最初に移動したペアに戻ることを示しています。この観察により、これらの固有の状況の最大点を取得できるグリッドマーチンゲールシステムを含めることができます。 EA「UndefeatedTriangle」は、AUDCAD、AUDNZD、NZDCADの3つのペアのみを使用します。 MT4 version 利点。 実際のアカウントの監視。 同様の選択肢よりもはるかに安価です。 1米ドルでもミニアカウントで操作できます。 複雑な針のパラメーターはありません。 使いやすい。 パラメーター。 Short Name (In Comment Section) –コメントセクションのジャーナルまたはアカウント履歴に表示されます。 Print Logs On Chart -オン/オフ情報パネル; Display O
Ziu Institutional is an Expert Advisor for MetaTrader 5 designed exclusively for XAUUSD on the 1-minute timeframe. It performs a single daily evaluation at 9:48 New York time and manages the position with partial Take Profit closes, break-even, protective trailing and forced close at the end of the NY session. The decision engine combines several market structure scenarios computed at 9:47 NY: London range sweeps, Fibonacci levels across macro, micro and session ranges, Fair Value Gaps on H4, H
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
*** 最良の結果と迅速なエントリーおよびエグジットのために、M1またはM5に適用してください *** Minting – The Gold Scalper(Lite Edition)   は、Ramulo Software Ltd. によって開発された、プロフェッショナル仕様で軽量かつ効率的なエキスパートアドバイザー(EA)です。ゴールド(XAUUSD)の高いボラティリティと収益機会を最大限に活かすために設計されており、EMAベースのインテリジェントな相場構造、ATRによるトレンド検出、段階的なUSDトレーリング、そして厳格なドローダウン管理を一体化した、シンプルで運用しやすいトレーディングシステムです。 Minting は Emerge エコシステムへの入り口となるEAです。安定性・透明性・継続的な口座成長を提供するため、あえてシンプルに設計されています。推奨される流れは、Minting で得た利益を使って、より高度なトレード知能、深いマーケットロジック、そしてより積極的な利益獲得能力を持つフラッグシップEA「Emerge」へアップグレードすることです。 このEAは、 まず資本
Real monitoring     :   EA Miracolo    1 Real monitoring       :   EA Miracolo     2 Recommended  pair   :      XAUUSD / BTCUSD ( Timeframe M15 / M30) IMPORTANT! After the purchase please send me a private message to receive the installation manual and the setup instructions. For any other information, please contact us by private message or in   the mql5 group. Imagine an experienced trader monitoring the market daily, waiting for prices to break through key levels, and immediately opening a
Mean Machine
William Brandon Autry
4.83 (42)
Mean Machine GPT Gen 2 登場 – オリジナル。今、よりスマートに、より強く、かつてないほど高性能に。 私たちは2024年末にMean Machineでこの変革全体を始めました。リアルな最先端AIをライブのリテール取引に導入した最初期のシステムの一つです。 Mean Machine GPT Gen 2はそのオリジナルのビジョンの次の進化です。 オリジナルを置き換えたのではありません。進化させたのです。 ほとんどのシステムは一度応答し、一度行動し、すべてを忘れます。 Mean Machine GPT Gen 2は違います。 すべてのトレード、すべての判断、すべての結果、そしてなぜエントリーしたか、なぜ保持したか、なぜエグジットしたかの正確な推論を記憶しています。毎セッションの完全なコンテキスト。時間とともに蓄積される永続インテリジェンス。 これはマーケティングのためにAIを付け足しただけのEAではありません。 これはオリジナルのMean Machine、永続的な専門インテリジェンスとして再構築されたものです。 従来のEAは固定されたロジックの中に閉じ込められたままで
Real monitoring   :   EA Amazing Brain MT5   Real monitoring :   EA Amazing Brain & EA Miracolo Recommended  pair   :      XAUUSD / Timeframe M30/ M15 / M12/ M10/ M6 IMPORTANT! After the purchase please send me a private message to receive the installation manual and the setup instructions. For any other information, please contact us by private message or in   the mql5 group. Breakout based strategy, generates market entry signals when the price crosses a border of a certain price range. To c
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
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.
XAUUSD TEMPORAL INTERFERENCE AITemporal Interference Scanner - The absolute pinnacle of Multi-Timeframe convergence. XAUUSD Temporal Interference AI - is the absolute pinnacle of market timing, built upon the groundbreaking "Cross-Temporal Interference" theory. By scanning the fractal noise across 9 different timeframes, the AI detects precise moments where market waves collide, cancel out, or amplify each other. When these temporal waves perfectly align in a localized singularity, the AI execu
Quantum Time Sovereign Institutional-Grade Time-Based Trading System for XAUUSD (H1) IMPORTANT! After purchase, you can instantly download the setting files from the Download Area on my personal website, or send me a private message if needed. Next Price 159 9 $ Development Background & Research Effort Quantum Time Sovereign is not a typical Expert Advisor. This system is the result of extensive research into the structural behavior of the gold market, including: • Thousands of hours of strategy
フィルタ:
レビューなし
レビューに返信