Xauusd Gold 1M Scalper Pro MT5

XAUUSD Gold 1M Scalper MT5

This Expert Advisor is designed for Gold (XAUUSD) on the 1-minute timeframe in MetaTrader 5. It uses a multi-timeframe trend filter combined with a momentum indicator and a volatility-based entry condition to select trade entries during the London and New York trading sessions.

Strategy Overview

A trade opens only when three conditions align simultaneously: the higher timeframe EMA alignment confirms the broader trend direction, the 1-minute Supertrend matches that direction, and the Stochastic Oscillator provides a valid entry timing signal. Stop loss and take profit levels are set dynamically using the Average True Range.

  • Supertrend - ATR-based trend direction on the 1-minute chart. Detects trend flips and stable continuation.
  • Stochastic Oscillator - Entry timing. Oversold recovery for buy entries, overbought decline for sell entries.
  • EMA Alignment (Higher Timeframe) - Two moving averages on M5 or higher filter entries to match the broader trend only.
  • ATR (Average True Range) - Sets dynamic stop loss and take profit. Also filters out low-activity periods.

Backtest Information

The EA was tested on historical XAUUSD data from January 2020 to April 2026 using Exness MT5 data at 78% tick quality, build 5800, with an initial deposit of 100 USD and leverage of 1:400.

These figures reflect a historical simulation only. Past backtest results do not represent real trading performance and do not indicate future results.

Metric Result
Total trades 13,491
Winning trades 11,752
Win rate 87.11%
Long win rate 86.85%
Short win rate 87.43%
Profit factor 4.72
Max equity drawdown 7.84%
Recovery factor 280.80
Average trade duration 41 seconds
Max consecutive wins 89
Max consecutive losses 6

Built-in Risk Controls

  • Daily loss limit - Trading stops and open positions are closed when equity falls below a set percentage of the day-start balance.
  • Balance recovery unlock - Trading resumes automatically if the account balance recovers above the day-start level from closed trades.
  • Breakeven - Stop loss moves to entry price once the trade reaches a defined profit level in points.
  • Trailing stop - Stop loss follows price in configurable steps after a minimum profit threshold is reached.
  • Session filter - Entries limited to London and New York session hours. Asian session excluded by default.
  • Spread filter - Entries skipped when current spread exceeds a configurable threshold.
  • ATR volatility filter - Entries skipped when ATR is below a minimum value, indicating low market movement.
  • Daily trade limit - EA stops opening new trades after a set number per day.

Requirements

Item Value
Platform MetaTrader 5
Symbol XAUUSD (Gold)
Timeframe M1 (1 minute)
Minimum deposit 100 USD (500 USD or more suggested)
Account type Hedging mode
Tested on Exness Zero Account

Settings Guide

Each parameter is shown as: Name = default_value | range | what it does.

[ Sanity Test ]

inp_SanityTest = false
Set to true only for MQL5 marketplace validation. Places 2 test trades and exits. Must be false for all live and demo use.

[ Debug ]

inp_Debug = true
Prints bar-by-bar signal information to the Journal tab. Useful during setup. Turn off in live trading to reduce journal output.

inp_DebugVerbose = false
Prints raw indicator values every bar. For detailed inspection only. Produces heavy output.

[ Supertrend ]

inp_ST_Period = 7 | range 5-21
ATR period used for the Supertrend band. Lower values produce more signals. Higher values produce fewer, stronger signals.

inp_ST_Mult = 2.0 | range 1.5-4.0
ATR multiplier for band width. Lower creates tighter bands with more direction changes. Higher creates wider bands and stronger filtering.

[ Stochastic ]

inp_Stoch_K = 5 | range 3-14 - K period.
inp_Stoch_D = 3 | range 3-5 - D smoothing period.
inp_Stoch_Slow = 3 | range 3-5 - Slowing period.
inp_Stoch_OB = 65.0 | range 60-80 - Overbought level. Sell entry considered when K crosses below this.
inp_Stoch_OS = 35.0 | range 20-40 - Oversold level. Buy entry considered when K crosses above this.

[ Higher Timeframe Filter ]

inp_HTF = PERIOD_M5
Timeframe used for EMA trend alignment check. Must be higher than the chart timeframe. M5 or M15 suggested.

inp_HTF_EMA = 50 | range 20-100 - Faster EMA on the higher timeframe.
inp_HTF_EMA2 = 200 | range 100-200 - Slower EMA. Buy condition: price above both EMAs, faster above slower. Sell: reverse.

[ Risk Management ]

inp_RiskPct = 1.0 | range 0.5-2.0
Percentage of account balance used to calculate lot size per trade.

inp_ATR_Period = 14 | range 10-20 - ATR period for stop loss and take profit distances.
inp_ATR_Min = 0.40 | range 0.20-1.00 - Minimum ATR to allow entry. Entries skipped below this value.
inp_ATR_SL_Mult = 1.2 | range 1.0-2.0 - Stop loss = ATR multiplied by this value.
inp_RR_Ratio = 2.0 | range 1.5-3.0 - Take profit = stop loss distance multiplied by this value.
inp_MaxSpread = 30.0 pts | range 15-50 - Max spread allowed at entry. Note: backtest used 100 points.
inp_MaxDailyLoss = 3.0% | range 2.0-5.0 - Max equity drop from day-start balance. EA locks until balance recovers.
inp_MaxDailyTrades = 15 | range 5-30 - Maximum number of trades allowed per day.

[ Position Management ]

inp_UseBreakeven = true - Moves stop loss to entry price at breakeven profit level.
inp_BreakevenPts = 20.0 | range 10-50 - Points of profit needed to trigger breakeven.
inp_UseTrailing = true - Enables trailing stop after threshold is reached.
inp_TrailingStart = 30.0 | range 20-80 - Points of profit needed to activate trailing.
inp_TrailingStep = 10.0 | range 5-20 - Stop loss moves in steps of this size as price advances.

[ Session Filter ]

inp_UseSessions = true - Limits entries to London and New York hours only.
inp_LondonOpen = 8 | inp_LondonClose = 17 - London session in broker server time.
inp_NYOpen = 13 | inp_NYClose = 20 - New York session in broker server time.
All hours are broker server time. Example: UTC+3 broker means London open = 10, New York open = 16.

[ Direction and Identification ]

inp_EnableBuy = true - Allow buy entries.
inp_EnableSell = true - Allow sell entries. Either direction can be disabled independently.
inp_MagicNumber = 202500003 - Unique trade identifier. Change if running another EA on the same account. Do not change while a trade is open.
inp_Comment = "XAUUSD_v3d" - Label attached to each trade in terminal history.

Suggested Settings by Use Case

Use Case RiskPct MaxDailyLoss MaxDailyTrades ATR_Min MaxSpread
Conservative 0.5 2.0% 10 0.50 25 pts
Balanced 1.0 3.0% 15 0.40 30 pts
Prop Firm Account 0.5 2.0% 8 0.50 25 pts
Backtesting Debug=false, DebugVerbose=false, SanityTest=false

Important Notes

  1. Attach this EA to a XAUUSD M1 chart only.
  2. A deposit of 200 USD or more is suggested for standard accounts. Cent accounts are supported.
  3. Session hours are in broker server time. Verify your broker server clock before configuring session values.
  4. inp_SanityTest must be false for live and demo trading. It is a marketplace validation utility only.
  5. Use a different magic number for each EA instance on the same account.
  6. The backtest used inp_MaxSpread = 100 points. The recommended value for live trading is 30 points.

Disclaimer

This Expert Advisor does not guarantee any level of profit or protect against financial loss. Backtest results are based on historical data and simulated conditions. They do not represent real account performance and are not an indication of future results. Live results will differ due to slippage, spread variation, and changing market conditions. Trading involves risk. Only use capital that you are prepared to lose. Always test on a demo account before using on a live account.


推荐产品
Trader AI
Nestor Alejandro Chiariello
Trader AI | 专业欧元/美元趋势专家 Trader AI 是一款专为欧元/美元货币对打造的尖端算法交易系统。与传统EA不同,Trader AI采用由神经网络驱动的每日自动分析引擎,能够解读市场结构并精准执行交易。 三年真实交易账户 稳健的增长业绩 每日AI分析 这款专为现代交易者设计的智能交易系统,融合了机器学习和强大的趋势跟踪策略,为追求稳定性、低回撤以及实时适应影响欧元和美元的宏观经济变化的交易者提供专业的解决方案。 为什么选择Trader AI? AI自适应核心:Trader AI摒弃了静态参数。其算法每日更新,分析订单流和当前波动性,从而重新校准入场和出场点。 欧元/美元专属:专注于欧元/美元这一单一货币对,代码针对欧元的特定流动性模式和价差特征进行了高度优化,确保卓越的交易表现。 每日综合分析:每个交易时段,EA 都会对市场结构(前一日高点/低点、供需区域)进行深度扫描,以使其与机构偏好保持一致。 经纪商无关设计:可在任何经纪商(IC Markets、Pepperstone、Exness 等)上无缝运行,不受滑点或执行速度的影响。 主要功能
| Fully-automated Smart Money Concept (ICT) inspired trading solution with multi-strategy capabilities | Built by a grid trader >> for grid traders.  This is MT5 version, click  here  for  Blue CARA MT4  (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 perhaps the most popul
Exp5 The xCustomEA for MT5
Vladislav Andruschenko
4.27 (11)
The xCustomEA for MetaTrader 5 — 适用于自定义指标的通用交易 Expert Advisor 将几乎任何自定义指标快速转化为自动化交易系统。 The xCustomEA for MetaTrader 5 是一款通用型 Expert Advisor,能够读取您的自定义指标信号,并按照您设定的逻辑自动执行交易。 您只需要填写指标名称、信号缓冲区和关键参数,EA 就会基于这些数据完成自动执行。对于希望把自定义指标快速接入实盘交易、又不想为每一个新想法都重新编写一个机器人 的交易者和开发者来说,这是一个高效、灵活且可重复使用的交易引擎。 The xCustomEA 并不只是一个“信号转订单”的简单工具。它把自定义指标接入能力与 The X 产品线成熟的交易架构结合在一起,为您提供完整的进场、出场、过滤、保护和持仓管理环境。 The xCustomEA for MetaTrader 4 | 完整使用说明 + DEMO + PDF | 设置与输入参数说明 | PIPFINITE TREND PRO 策略示例 | The X — Universal EA 产品定位 这款
Magic EA MT5
Kyra Nickaline Watson-gordon
Magic EA is an Expert Advisor based on Scalping, Elliot Waves and with filters such as RSI, Stochastic and 3 other strategies managed and decided with the robot smartly. Large number of inputs and settings are tested and optimized and embedded in the program thus inputs are limited and very simple. Using EA doesn't need any professional information or Forex Trading Knowledge. EA can trade on all symbols and all time frames, using special and unique strategies developed by the author. The EA w
Razgon X
Mikhail Atarskii
Razgon XAUUSD EA is a high-performance automated trading robot specifically designed for trading XAUUSD (Gold). The advisor uses a multi-level signal filtering system, including ALMA, trend filter based on EMA and MACD, allowing only high-quality trading decisions. Supports trading on multiple currency pairs and includes a built-in control panel with a transparent glass interface. Key Features ALMA indicator entry filter (fast and slow) Trend filter using three EMA (96) and EMA 200 MACD filter
KS_Gold_Hunter_Pro EA 主要专为 XAUUSD(黄金)交易而设计。 (KS Gold Hunter Pro 的实际售价为 2999 美元,但目前正面向所有实盘用户开放试用。) (所有设置均已更新至 2026 年 1 月的“黄金模式”版本;该设置可能无法在往年的历史数据上完全正常运行。) 所有的黄金交易关键参数设置,都将根据黄金行情的实时波动进行动态调整与更新。 **推荐设置:** 默认推荐使用 Exness Zero 账户,配合黄金 1 分钟(M1)图表进行交易。若使用其他经纪商,您可以在购买后于评论区留言,向我索取相应的配置参数;配置与测试过程均十分简便。 **价格详情:** 实际售价 2999 美元;现提供按月订阅方案,起价为 40 美元/月。 **典型的交易行为特征:** *   执行大量超短线交易(持仓时间通常仅为数秒至数分钟)。 *   大量交易在同一交易日内完成开仓与平仓。 *   频繁获得小额盈利,但也伴随着许多小额亏损。 *   在市场波动剧烈时(通常为伦敦盘与纽约盘的重叠时段)表现最佳。 **购买前您需要了解的事项:** *
Bot RSI and Bollinger Bands
Aurelio Miguel Machado Da Silva
这个机器人是一个自动化的交易工具,利用这两个流行的指标在外汇市场中识别交易机会。RSI指标(相对强度指数)是一种技术指标,用于衡量一个资产相对于市场上其他资产的相对强度。Bollinger Bands是一种测量市场波动性的指标,有助于确定一个特定资产的价格限制。 RSI和Bollinger Bands指标的交易机器人结合使用这两个指标来识别有利可图的交易机会。当RSI指示资产处于超买或超卖状态,并且Bollinger Bands指示价格接近价格限制时,机器人会自动进入或退出交易。 最棒的是,这个机器人可以同时在多个货币对中运行,这意味着它可以同时寻找多种货币的交易机会。这对于希望多样化自己的投资组合并最大化利润的交易者尤其有用。 RSI和Bollinger Bands指标的交易机器人易于设置和使用。它可以根据用户的偏好进行定制。此外,该机器人是完全自动化的,这意味着它可以在不需要持续监督的情况下全天候运行。 无论您是经验丰富的交易者还是希望在外汇市场中涉足的新手投资者,RSI和Bollinger Bands指标的交易机器人都可以帮助您最大化利润并将风险降至最低。凭借其能够同时在多个货
Aegis DAX Scalper EA
Damiano Donatello
Aegis DAX Scalper EA is a MetaTrader 5 Expert Advisor designed for short-term trading on GER40/DAX40. The system combines a M5 trend filter with M1 pullback entries, RSI confirmation, candle structure analysis, spread filtering, volatility filtering and automated trade management. The EA does not use grid, martingale or recovery basket logic. Each trade is opened with a real stop loss and managed through break-even and trailing stop rules. Version 1.01 includes improved compatibility with di
Classic SNR EA MetaTrader 5 智能交易系统 | 多品种支撑阻力交易,基于趋势逻辑 概述 Classic SNR Breakout EA 是一款专业的交易机器人,使用日线摆动点识别结构性支撑与阻力水平(Support & Resistance),并根据 H1 价格行为相对于这些水平的表现执行交易。EA 应用 双重逻辑 :在上涨趋势中,当 H1 收盘于 SNR 水平下方(拒绝信号)时做空;在下跌趋势中,当 H1 收盘于 SNR 水平上方(拒绝信号)时做多。当 H1 收盘价果断突破水平时,也会交易突破信号。 EA 可同时扫描多达 14 个交易品种,自动解析经纪商特定的品种名称和后缀。 本策略适用于理解结构性水平可根据市场环境既充当支撑/阻力又充当突破触发器的交易者。 工作原理 EA 分析日线收盘价,在可配置的回溯期内识别高点和低点。这些摆动点成为结构性的支撑和阻力水平。然后 EA 监控 H1 K线收盘价相对于每个 SNR 水平的表现,并应用 基于趋势的逻辑 来确定交易方向。 核心交易逻辑 EA 并非简单地单向交易突破。相反,它会评估价格位置和 H1 收盘行为: 价格
LL Smart Recovery Grid EA
Leopoldo Licari
5 (1)
LL Smart Recovery Grid EA is an advanced automated trading system for MetaTrader 5 that combines adaptive grid trading, intelligent hedging, and dynamic basket recovery to manage market volatility and optimize trade recovery. The EA is built to manage market fluctuations efficiently while maintaining control over drawdown and optimizing basket recovery. Instead of relying on simple grid or martingale logic, this system introduces smart hedge activation, and ATR-based grid spacing , allowing the
Exclusive EA for FOREX HEDGE account The EA (FuzzyLogicTrendEA) is based on fuzzy logic strategies based on the analysis of a set of 5 indicators and filters. Each indicator and filter has a weight in the calculation and, when the fuzzy logic result reaches the value defined in the EA parameter, a negotiation is opened seeking a pre-defined gain. As additional functions it is possible to define maximum spread, stop loss and so on . Recommended Symbol: EURUSD, AUDUSD, GBPUSD, NZDUSD, USDCAD, AUD
SAMARKAND EAGLE EA 洞察趋势。纪律入场。自动执行。 Samarkand Eagle EA 是一款基于趋势交易理念开发的智能交易系统,专为 XAUUSD 黄金交易者设计,适合倾向于顺应市场方向、而不是随意开仓的交易者使用。 该 EA 的设计灵感来源于鹰的敏锐观察力与耐心。它在 H1 小时图上观察市场趋势,并根据预设的方向交易逻辑自动开仓。其目标是在当前主导趋势中识别交易机会,并通过简单、结构化的手数系统自动执行交易。 交易方式 Samarkand Eagle EA 运行于 H1 时间周期,采用基于趋势的交易方式。 该 EA 不会随机进入市场。它会监测市场方向,只有在其趋势条件满足时才会开仓交易。 对于建议起始资金为 1,000 美元 的账户,标准手数设置如下: 第一手:0.04 第二手:0.02 此手数结构是根据建议账户资金设计的。使用更大账户资金的交易者,可以根据自身资本规模和风险承受能力,按比例增加交易手数。 手数按比例调整示例: 账户资金 1,000 美元:   第一手:0.04   第二手:0.02 账户资金 2,000 美元:  
Aurus AI
Dmitriq Evgenoeviz Ko
Aurus AI : Multi-AI Architecture Aurus AI Core is more than just a trading advisor; it's a next-generation intelligent ecosystem based on the principle of multi-layered artificial intelligence consensus. The system consists of four specialized AI modules, each responsible for a separate stage of trade entry signal verification. Four-layer filter system The advisor opens a trade only when all four independent modules give an "APPROVED" signal: Market Sense Layer : Evaluates overall market volati
Bolic Eagle EA
Almaquio Ferreira De Souza Junior
Bolic Eagle EA - Advanced Parabolic SAR-Driven Trading Algorithm Overview Bolic Eagle EA is a sophisticated algorithmic trading solution designed for traders seeking a highly adaptable and automated system rooted in the Parabolic SAR indicator. This Expert Advisor (EA) is crafted to identify and capitalize on market reversals by utilizing the precision of the Parabolic SAR, enhanced with optional trend confirmation tools, advanced risk management protocols, and unique features such as email no
Viking Alpha DAX Ivar Edition
Valdeci Carlos Dos Passos Albuquerque
Viking Alpha DAX — Germany 40 Expert Advisor for MetaTrader 5 LAUNCH PROMO Only 10 copies at launch price. Price increases with each sale. Launch price: $297 Next price: $497 Final price: $997 Live Performance: FX Blue — Vikingtradingbots What Makes Viking Alpha DAX Different Most DAX robots fail for one simple reason: they treat the Germany 40 like a forex pair. It isn't. The DAX has a heartbeat — a specific rhythm tied to the Frankfurt Stock Exchange opening, the European session structure, an
Future of the Enjoy Dax40 Scalper: Unlock the potential of your trading journey with the Enjoy Dax40 Scalper EA, meticulously crafted for scalping strategies across higher time frame trends. This powerful EA excels in navigating the intricacies of the Dax40 (De40) or Ger40 indices, extending its proficiency to the UsTec (Nasdaq100) and US30 (DJ IND) markets. Boasting a strategic blend of our proprietary custom trend indicator and other short-term and long MT5 standard trend indicators, this EA o
FiboBreakout XAU
Daniel Maslowski
FiboBreakout Gold 5M EA – High-Precision Algorithmic Trading for XAUUSD FiboBreakout Gold 5M is an advanced, fully automated Expert Advisor engineered specifically to exploit the high volatility of Gold ( XAUUSD ) on the 5-minute (5M) timeframe. By combining classic Fibonacci breakout mechanics with modern algorithmic filters, this EA captures explosive intraday moves while strictly protecting your capital. Key Features ("The Good Stuff") Dynamic Fibonacci Engine: The EA continuously scans a
Lemm is a scalper designed for intraday trading in M1 timeframe, therefore very fast and aggressive. It can be configured in a quieter version with higher timeframes or on different assets simultaneously using different magic numbers. The default configuration is for  forex pairs, but by changing the parameters, it can be used on any pair (it has had excellent results on XauUsd and DjiUsd). It is equipped with a movable and minimized summary panel and push notifications on the smartphone. Recom
Live Signal 1 : BlueBerry Markets (6+ Months) Live Signal 2 :   Vantage International  (4 Months) TradeSentinel Apex – Real Trading. No Gimmicks. " No AI hype. No Martingale. Just disciplined automated trading. " TradeSentinel Apex is a professional Expert Advisor built for traders who value discipline, transparency, and controlled risk . This EA does NOT use fake “AI” buzzwords. It does NOT use dangerous Grid or Martingale systems. Instead, TradeSentinel Apex is built on a structured, rule-b
Atomic Xau
Ignacio Agustin Mene Franco
Atomic XAU - Expert Advisor Overview Atomic XAU is an automated trading system specifically designed to trade XAU/USD (Gold) on the M5 timeframe. This EA combines four professional technical indicators to identify high-probability trading opportunities with rigorous risk management. Trading Strategy The system uses multi-indicator confirmation through: MACD: Detects momentum changes and trend crossovers Bollinger Bands: Identifies overbought/oversold zones and volatility RSI: Confirms extreme
Quora
Suresh Pargunam
XAUUSD Swing PRO EA v1.0 is a professional MetaTrader 5 Expert Advisor designed specifically for Gold (XAUUSD) swing trading. The EA combines EMA trend analysis, breakout confirmation, ATR-based volatility management, and advanced trade protection features to deliver stable and disciplined trading performance. This EA is optimized for traders seeking controlled drawdown, high-quality entries, and long-term consistency in both personal and funded trading accounts.
GoldenEagle
Chantal Thys
GoldenEagle – Smart Trend Trading EA GoldenEagle is a powerful and intelligent Expert Advisor designed to trade trending markets with precision and consistency. Built for MetaTrader 5, this EA combines Moving Average crossovers, RSI filters, and volatility detection (ATR) to identify high-probability trading opportunities. Key Features: Trend-Based Logic – Trades only in strong, confirmed market trends RSI Filtering – Avoids overbought/oversold traps ATR Volatility Filter – Detects
Gold Pulse Scalper  (Prop Firm) is an automated trading system developed for XAUUSD (Gold), designed to operate on the M5 timeframe. It uses algorithmic logic and data-driven analysis to identify trading opportunities based on predefined rules and systematic market evaluation. Discounted   price.     The price will increase by $50 with every 3 purchases. Final price $1800 Live Signal VT Markets:  CLICK HERE   (Coming Soon) Supported Settings Symbol : XAUUSD Recommended Brokers: IC Markets, VT Ma
TrendPulse RSI 黄金专家 概述 TrendPulse RSI 黄金专家是一款专为 XAUUSD(黄金)设计的全自动智能交易系统 (EA)。该策略结合了基于移动平均线的长期趋势识别和基于 RSI 的入场和出场信号,以在当前市场趋势方向的回调中进行交易。 该 EA 针对 M1 时间框架进行了优化,旨在为希望采用系统化方法进行黄金交易而无需手动干预的交易者提供服务。 策略工作原理 该 EA 使用两条简单移动平均线 (SMA) 来判断市场方向: 200 SMA 400 SMA 买入条件 200 SMA 高于 400 SMA。 RSI (14) 收盘价低于超卖水平。 确认后立即开立买入仓位。 卖出条件 200 SMA 低于 400 SMA。 RSI (14) 收盘价高于超买水平。 确认后立即开立卖出仓位。 建仓 该 EA 支持顺序入场。 如果趋势持续有效且RSI发出新的有效信号,EA可以沿同一方向开立更多仓位。这使得该策略能够更有效地参与持续的市场波动。 退出逻辑 当RSI收盘价高于超买水平时,平仓买入仓位。 当RSI收盘价低于超卖水平时
注意,白金交易者! XPTUSD 趋势保护型 EA 不会随意开仓。 它只在趋势明确且市场确认时才入场。 避免噪音和过度交易,保护账户不被破坏。 智能风险管理:连续亏损后降低仓位,连胜时增加盈利机会。 每笔交易独立——无马丁格尔、网格或对冲。 渐进式止损保护利润,同时不阻碍趋势发展。 适应伦敦、纽约及中间交易时段。 可控回撤,长期稳定。 为追求稳健而非侥幸的交易者设计。 XPTUSD 趋势保护型 EA 是一个完全自动化的专家顾问,专为 白金 (XPTUSD) 设计,运行于 M15 时间框架。 详细说明 系统基于 多时间框架趋势跟随逻辑 ,只有在市场结构、趋势强度和波动性确认时才执行交易,显著减少低质量操作。 核心特性是 自适应风险管理 :仓位大小根据账户余额、ATR 计算的止损距离以及对近期交易表现敏感的风险系数动态调整。连续亏损后,EA 会自动降低风险并启动冷却期,以优先保护资本。 渐进式止损 会随着价格向有利方向移动而调整,遵循 非线性保护曲线 ,逐步锁定利润,同时不限制趋势的完全发展。 EA 还会根据 伦敦、纽约及中间时段 调整操作参数,提高低质量时段的选择性,并在流动性和
RoboInvest
Vasil Georgiev Todorov
# RoboInvest RoboInvest is a professional grid-based Expert Advisor built for XAUUSD (Gold) on the M5 timeframe. It combines moving average crossovers, ATR volatility filter, and optional RSI confirmation to deliver highly adaptive entries during trending conditions. --- ## Strategy Overview - Entry signals based on fast MA vs slow MA (3 / 20 by default) - Optional RSI filter (entry when RSI confirms trend bias) - Grid logic with lot multiplier (default: 1.12) - Works during sp
Marksman MT5
Agus Santoso
MT4 版本: https://www.mql5.com/en/market/product/138644 MT5 版本: https://www.mql5.com/en/market/product/138645 Marksman EA – 精准入场,干净利落地执行。 Marksman 是一款基于单次交易策略的自动化 EA,旨在通过一次精准交易,在每个仓位上设置止盈和止损。 这款 EA 的设计灵感源自真正的神射手,结合使用 OsMA、随机震荡指标和移动平均线,以高精度筛选最佳交易机会。 主要特点: 单次入场:一个仓位,一次决策,无需平均或马丁格尔策略。 全面风险控制:每个仓位均配备止损和获利,非常适合自律的交易者。 三重过滤系统:只有当 OsMA、随机震荡指标和移动平均线三个指标一致时,才会入场。 通用货币对和时间框架:适用于所有交易品种和时间框架,并可根据货币对的特性进行优化。 轻量稳定:图表负载低,适用于 VPS 或实盘交易。 核心策略: OsMA 检测动量和背离。 随机指标确认超卖/超买状态。 移动平均线作为主要趋势过滤器。 当三者一致时,EA 将开仓,
RoundLock EA MT5
AW Trading Software Limited
Round Lock 是一款具有动态仓位锁定功能的智能交易系统。Round Lock 是一款具有动态仓位锁定功能的智能交易系统,它是一款先进的交易系统,采用双向订单锁定策略,仓位逐步增长,并根据市场动态调整。 圆锁的优点: 通过锁仓进行风险控制, 市场趋势领域交易量的动态增长, 根据限制设置灵活的行为, 适用于平缓和趋势阶段,在每种情况下优化结果, 具有保护机制的平均策略和电网方法的自动化。 MT4 版本 -> 此处 / 故障排除 -> 此处 顾问会开立两笔反向订单。当其中一笔订单盈利平仓后,顾问会重新开立两笔订单,订单量会根据 Multiplier_Volume 乘数和顾问开立的订单数量而增加。每开立一笔新订单,顾问都会以相同的交易量开立订单,并相互锁定。开立订单的过程会持续到同类型的订单数量达到 Limit_for_orders 的数量,届时顾问只会增加网格,而不会锁定。 Round Lock 的工作原理: 顾问开设一对方向相反的订单(买入/卖出),从而固定仓位并控制波动性。 仅当前一对订单中的其中一个通过获利平仓后,才会开设新的一对订单。 因此,订单组之间的距离会自动调整 -以
HYBRID MULTI-STRATEGY PRO-P Enhanced:外汇和黄金市场的精准多策略掌控 释放 HYBRID MULTI-STRATEGY PRO-P Enhanced 的全部潜力,这是一款尖端的专家顾问(EA),专为以外科手术般的精准度征服外汇和 XAUUSD 市场而设计。这款人工智能驱动的 EA 专为精英交易者、对冲基金和机构投资者量身定制,结合了先进的混合策略——包括突破、均值回归、趋势跟随、剥头皮和亚洲时段——以及复杂的时机机制、流动性扫单检测和动态风险管理。在严格的回测中,是您利用市场动能并智胜市场操纵的终极工具。 SET FILE:   MQL5 CHAT LINK BLACK FRIDAY SALE IS HERE: $89.00 ONLY ,仅限下 10 次销售,下一价格 $399.00 赶快行动! 为什么选择 HYBRID MULTI-STRATEGY PRO-P Enhanced? 与容易落入市场陷阱或依赖高风险策略(如马丁格尔)的传统 EA 不同, HYBRID MULTI-STRATEGY 通过精心设计的多策略系统提供机构级性能。针对外汇和 XA
Gold Blaster Smart Scalper EA
Himanshu Mukeshbhai Bhatt
Blaster Gold EA is a hybrid gold robot combining RSI-based precision entries with a smart scalper for extra profit. It opens controlled main trades with fixed DCA layers, auto-profit closing, gap protection and optional news filter. Ultra-safe with preset risk modes and strict 1-main + 1-scalper trade control. Designed for stable XAUUSD automation with strong recovery and consistent profit flow. How it work, RSI Two-Layer EA   is a refined, high-precision automated trading system built for tra
该产品的买家也购买
Quantum Queen X MT5
Bogdan Ion Puscasu
5 (8)
传奇仍在继续。女王不断进化。 欢迎来到 Quantum Queen X——传奇黄金交易系统的下一代产品,它建立在 Quantum Queen 已证明的成功之上。 Quantum Queen X 基于与 Quantum Queen 相同的成熟核心引擎构建,引入了强大的全新自定义模式,允许交易者精确选择要启用或禁用的策略。 每项策略都经过单独审查、改进和优化,以在不同的市场环境下提供更佳的性能和适应性。默认预设也得到了增强,现在包含 9 项精心挑选的策略,而非之前的 7 项,从而提供更广泛的市场覆盖和更多交易机会,同时保留了使 Quantum Queen X 成为 MQL5 平台上最成功的黄金智能交易系统的严谨交易理念。 IMPORTANT! After the purchase please send me a private message to receive the installation manual and the setup instructions 折扣价   价格 。     每购买 10 件,价格将上涨 50 美元。最终价格为 1999 美元。 实时信号 IC Ma
Scalping Robot Pro MT5
MQL TOOLS SL
4.51 (128)
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
The Gold Reaper MT5
Profalgo Limited
4.46 (102)
道具公司已准备就绪!( 下载道具文件 ) 警告: 目前仅剩少量存货! 最终价格:990美元 免费获得 1 个 EA(适用于 3 个交易账户)-> 购买后请联系我 超值组合优惠   ->   点击这里 加入公开群组: 点击此处   实时信号 客户端信号 YouTube 评论 最新手册 欢迎来到黄金收割者! 这款EA是在非常成功的Goldtrade Pro的基础上开发的,设计用于同时在多个时间框架上运行,并且可以选择将交易频率设置为从非常保守到极度波动。 该EA使用多种确认算法来寻找最佳入场价格,并在内部运行多种策略来分散交易风险。 所有交易都有止损和止盈,但同时也使用追踪止损和追踪止盈来最大限度地降低风险,并最大限度地提高每笔交易的潜力。 该系统基于非常流行且行之有效的策略:交易突破重要支撑位和阻力位的交易机会。   黄金非常适合这种策略,因为它是一种波动性很高的货币对。 系统会根据您的账户规模和最大允许回撤设置自动调整交易频率和手数! 回测结果显示增长曲线非常稳定,回撤幅度控制得非常好,恢复速度也很快。  这款EA已经针对黄金进行了最长时间的压力测试,使用了多个经纪商的多个价格
TwisterPro Scalper
Jorge Luiz Guimaraes De Araujo Dias
4.46 (122)
更少交易。更好交易。稳定性高于一切。 • 实时信号 模式 1 实时信号 模式 2 Twister Pro EA 是一款专为 XAUUSD(黄金)M15 时间框架开发的高精度剥头皮智能交易系统。交易次数少——但每次交易都有目的。 每笔入场在开仓前须通过 5 个独立验证层,默认配置下胜率极高。 两种模式: • 模式 1(推荐)— 极高胜率,每周交易次数少。专为资金保护和纪律性交易而设计。 • 模式 2(短止损)— 止损幅度显著缩短,交易次数多于模式1。每笔亏损极小。适合希望在受控风险下增加市场曝光的交易者。 规格参数: 交易品种:XAUUSD | 时间框架:M15 最低入金:$100 | 推荐:$250 RAW SPREAD 账户必须使用 强烈推荐 VPS 无网格!每笔交易均设有止盈和止损! 推荐券商: Exness Raw | Vantage | Fusion Markets 购买后发送消息即可获得: 完整用户指南 专属奖励 过往业绩不代表未来结果。请理性交易。
Adaptive Gold Scalper Important Pre-notice: This strategy requires a long period of practical verification, and favorable trading returns cannot be guaranteed in the short run. Traders must select brokers with ultra-low order latency, minimal slippage and zero/low stop level requirement; poor broker conditions will lead to disastrous trading results. I have over 14 years of professional trading experience. With proper brokerage conditions and sufficient running time, this fully automated scalpi
Ultimate Breakout System
Profalgo Limited
5 (46)
重要的 : 此套装将仅以当前价格出售,且数量非常有限。    价格很快就会涨到 1999 美元    包含 +100 种策略 ,未来还会有更多! 奖励 :价格为 1499 美元或更高 --> 免费选择我的其他  5  个EA! 所有设置文件 完整的设置和优化指南 视频指南 实时信号 审查(第三方) NEW - VERSION 5.0 - ONECHARTSETUP NEW - 30-STRATEGIES LIVE SIGNAL 欢迎来到终极突破系统! 我很高兴向您介绍终极突破系统,这是经过八年精心开发的先进且专有的专家顾问 (EA)。 该系统已成为 MQL5 市场上多个顶级 EA 的基础,包括广受好评的 Gold Reaper EA、 连续七个多月保持第一的位置,以及 Goldtrade Pro、Goldbot One、Indicement 和 Daytrade Pro。 终极突破系统不仅仅是另一个 EA。 它是一种专业级工具,旨在帮助交易者在任何市场和时间范围内创建无限数量的突破策略。 无论您专注于波段交易、剥头皮交易还是构建多元化投资组合,该系统都能提供无与伦比的灵活性和
Gold Snap
Chen Jia Qi
4.47 (17)
Gold Snap — 黄金快速利润捕捉系统 实盘信号: https://www.mql5.com/en/signals/2362714 实盘信号2: https://www.mql5.com/en/signals/2372603 实盘信号 v2.0: https://www.mql5.com/en/signals/2379945 当前价格仅剩 3 份。价格很快将上涨至 $999。 重要: 购买后请通过私信联系我们,以获取用户指南、推荐设置、使用说明以及更新支持。 https://www.mql5.com/en/users/walter2008 欢迎加入我们的 MQL5 频道,获取产品更新与交易见解。 https://www.mql5.com/en/channels/tendmaster 在 Gold House 的长期研发与实战验证中,我们进一步确认了突破策略在黄金市场中的有效性,也验证了我们自适应参数系统在真实市场环境中的实际价值。 但对于突破系统来说,始终存在一个现实问题: 止盈太早,容易错过后续真正的大行情; 止盈太晚,又往往会经历一定程度的利润回吐。 这不是某一种策略独有
Quantum King EA
Bogdan Ion Puscasu
4.96 (211)
Quantum King EA — 智能力量,为每一位交易者精炼 IMPORTANT! After the purchase please send me a private message to receive the installation manual and the setup instructions. 特别推出价格 直播信号:       点击这里 MT4版本:   点击此处 量子王者频道:       点击这里 ***购买 Quantum King MT5 即可免费获得 Quantum StarMan !*** 详情请私讯询问! 用精确和纪律来管理您的交易。 Quantum King EA 将结构化网格的优势和自适应 Martingale 的智能融入一个无缝系统 - 专为 M5 上的 AUDCAD 设计,专为希望实现稳定、可控增长的初学者和专业人士打造。 Quantum King EA 是针对 M5 时间范围内的 AUDCAD 对开发的全自动交易系统。 它将网格策略的结构与马丁格尔的自适应恢复逻辑相结合,形成了一个在所有市场阶段智能管理交易的系
Goldwave EA MT5
Shengzu Zhong
4.73 (71)
真實交易帳戶   LIVE SIGNAL(IC MARKETS): https://www.mql5.com/en/signals/2339082 本 EA 使用與 MQL5 上已驗證之實盤交易訊號完全相同的交易邏輯與執行規則。在使用建議且已優化的設定,並搭配信譽良好的 ECN / RAW 點差經紀商 (例如 IC Markets 或 TMGM) 時,本 EA 的實盤交易行為在設計上,將高度貼近該實盤訊號的交易結構與執行特性。請注意,由於不同經紀商的交易條件、點差、執行品質以及 VPS 環境存在差異,個別使用者的實際結果可能有所不同。 本 EA 為限量銷售產品,目前僅剩 2 個授權名額,售價為 USD 999。完成購買後,請透過私人訊息與我聯繫,以取得使用手冊與建議設定。 不使用過度網格策略,不使用高風險馬丁格爾,不進行攤低成本操作。 目前此 EA 仍處於早期限量階段價格。未來價格將依據銷售與維護階段進行調整,預計每個階段上調約 USD 100,今年的目標最終價格為 USD 1899。 重要說明 GoldWave 是以真實市場環境為核心設計的交易系統。 它使用 AI 輔助的自適應邏
Nexorion Initium Novum EA
Valentina Zhuchkova
5 (16)
NEXORION: Initium Novum — 确定性逻辑与算法综合体系 NEXORION 是一款基于严密流动性处理数学算法的机构级分析系统。该项目的核心理念是“计算透明化”:交易型 EA 将混沌的价格流转化为结构化的几何区域,并将决策过程直接在交易图表上进行可视化呈现。 实时信号监控 https://www.mql5.com/es/signals/2372338 系统技术规格 交易资产 :XAUUSD (黄金) 运行周期 :H1 (1小时图) 核心方法论 :机构流动性分析与确定性逻辑 (Institutional Liquidity Analysis & Deterministic Logic) 决策依据 :流动性池与平衡水平的数学计算 数学架构与可视化 本系统的关键创新在于 动态计算映射 (Dynamic Computation Mapping) 。算法不仅是分析价格,更是通过以下模块构建市场的数学模型: 流动性追踪 (Liquidity Tracking) :基于市场阶段的深度分析,精确识别买方流动性 (BSL) 与卖方流动性 (SSL) 区域。 平衡态分析 (Equili
AXIO Gold EA
Shengzu Zhong
4.6 (10)
AXIO GOLD EA MT5 MQL5 實盤信號參考 https://www.mql5.com/en/signals/2378982?source=Site+Signals+My AXIO GOLD EA MT5 是一款專門為 MetaTrader 5 上的 XAUUSD 黃金開發的自動交易系統。 該 EA 使用與 MQL5 上已驗證實盤信號相同的邏輯和執行規則。當使用推薦的優化設定,並運行在信譽良好的 ECN/RAW 原始點差經紀商,例如 TMGM 時,該 EA 的實盤交易行為設計目標是盡可能貼近該實盤信號的交易結構和執行特徵。 請注意,經紀商條件、點差、執行品質、交易品種規格、滑點、延遲、VPS 環境以及帳戶設定方面的差異,都可能導致個人帳戶結果有所不同。 AXIO GOLD 不使用危險的馬丁格爾加倉法,不使用過度網格擴展,也不會在虧損交易中不斷加倉攤平。 目前產品價格以 MQL5 Market 頁面顯示為準。未來價格可能會根據產品開發、更新、維護以及支援工作量進行調整。 購買後,請透過 MQL5 私訊聯絡我,以取得使用者手冊、推薦設定和安裝指導。 開發者介紹 我是 MetaT
Gold House MT5
Chen Jia Qi
4.53 (59)
Gold House — 黄金摆动突破交易系统。 一个EA,三种交易模式。选择最适合你的交易风格。无网格,无马丁。 每售出 10 份,价格将上涨 50 美元。最终计划价格:1,999 美元。 实盘信号: 利润优先模式: https://www.mql5.com/cn/signals/2359124 BE 优先模式: https://www.mql5.com/cn/signals/2372604 Adaptive Mode: https://www.mql5.com/cn/signals/2379287   (高风险配置参考——盈亏都会被放大,不属于推荐配置。) 重要:购买后请务必私信我们,以获取推荐参数、使用说明、注意事项以及使用技巧。 (MQL5私信): https://www.mql5.com/en/users/walter2008 保持更新——加入我们的 MQL5 频道以获取产品更新和交易技巧。打开链接后,请点击页面顶部的“订阅”按钮进行关注。: 点击加入 这套EA来自我们团队的内部实盘账户,基于 7 年历史数据开发验证,并经过实盘确认后才决定公开。我们没有为了上架专门优
Quantum Emperor MT5
Bogdan Ion Puscasu
4.86 (507)
介绍     QuantumEmperor EA 是一款突破性的 MQL5 专家顾问,它正在改变您交易著名的 GBPUSD 货币对的方式!由拥有超过13年交易经验的经验丰富的交易者团队开发。 IMPORTANT! After the purchase please send me a private message to receive the installation manual and the setup instructions. ***购买 Quantum Emperor EA,即可免费获得  Quantum StarMan  !*** 私信询问更多详情 已验证信号:   点击此处 MT4版本:   点击这里 量子 EA 通道:       点击这里 每购买 10 件,价格将增加 50 美元。最终价格为 1999 美元 量子皇帝EA     采用独特的策略,将单笔交易连续拆分成五笔较小的交易。这意味着每次 EA 执行一笔交易时,它都会自动将其拆分成五个较小的仓位。 量子皇帝EA     量子帝王EA凭借其卓越的亏损交易处理方法,在众多专家顾问中脱颖而出。
Pulse Engine
Jimmy Peter Eriksson
3.94 (34)
最新消息——目前仅剩少量存货,欲购从速! 该系统的主要目标是在不使用任何有风险的鞅或网格的情况下实现长期的实时性能。  数量极其有限,现价优惠 最终价格 1499 美元 【实时信号】    |    【回测结果】    |    【设置指南】    |    【FTMO 结果】 一种不同的交易方法 Pulse Engine 不使用任何指标或特定时间框架。它采用了一种非常独特的方法,这是 MQL5 上任何其他交易系统都不采用的方法。 它交易的是日内方向性模式。这些模式是我利用自己多年来不断开发和完善的特定模式识别软件发现的。 该软件使我能够识别出市场历史上在一天中哪些时段会出现强劲的单向波动。 每个市场和每周的每一天都有其独特的走势。 这种方法之所以如此强大,是因为它不依赖于市场是处于趋势行情、反转行情还是任何特定的市场状态。其模式与这些因素完全无关。 脉冲引擎包含涵盖 六大市场的 70 多种不同模式 ,并结合超过 5万笔 交易的历史回测数据。 每个市场的回测时间均尽可能追溯至数据允许的最长时期, 外汇货币对约 20年,指数约 15 年, 加密货币 约10 年。这确保了极高的统计显
BB Return mt5
Leonid Arkhipov
4.48 (124)
BB Return — 一款用于黄金交易(XAUUSD)的智能交易系统(EA)。该交易思路最初来自我的 手动交易 经验。策略核心是价格回归 Bollinger Bands(布林通道) 区间,但并非机械式或每次触及即入场。针对黄金市场的特性,系统加入了额外过滤条件,用于剔除无效和低质量的市场环境,仅在回归逻辑真正成立时才开仓。   Global   update   on   June   14th   交易原则 — 系统不使用网格、马丁或加仓平均成本等风险策略。EA 可使用 固定手数 或 AutoRisk 自动风险 模式运行。BB Return 对点差、滑点及不同经纪商的报价方式不敏感,可在任何经纪商及多种账户类型下运行,包括 Standard、ECN、Pro、Raw、Razor 。系统不受交易时段限制,可 24 小时运行 。   $ 359   不是最终价格。 当前价格仅剩 5–7 个名额。 之后将上涨。 该EA限量提供,以保证策略的稳定性。 设置与交易频率 — 启动系统无需复杂设置,策略设计即基于 默认参数 运行,通常只需调整手数或 AutoRisk 模式。系统平均每年约执行
Quantum Bitcoin EA
Bogdan Ion Puscasu
4.77 (128)
量子比特币 EA   :没有不可能的事情,唯一的问题是弄清楚如何去做! 使用 Quantum Bitcoin EA 迈向 比特币 交易的未来,这是来自顶级 MQL5 卖家之一的最新杰作。Quantum Bitcoin 专为追求性能、精度和稳定性的交易者而设计,重新定义了加密货币波动世界中的可能性。 重要提示! 购买后,请给我发送私人消息,以获取安装手册和设置说明。 每购买 10 件,价格将增加 50 美元。最终价格为 1999 美元 100本只剩80本了。 量子比特币/女王通道:       点击这里 ***购买 Quantum Bitcoin EA 即可免费获得 Quantum StarMan!*** 私信询问更多详情! Quantum Bitcoin EA 在 H1 时间范围内蓬勃发展,采用 趋势跟踪策略 来捕捉市场动量的本质。它利用 复杂的网格方法 来确保每个交易周期都以胜利结束——将波动性从挑战转变为机遇。比特币市场以 4 年为一个周期,Quantum Bitcoin EA 经过优化,可以捕捉每个周期中发生的模式,确保它始终以有利的方式结束交易 为什么选择量子比
Cortex Aurex
Vladimir Mametov
5 (2)
这是一个专为黄金(XAUUSD)交易而开发的全自动 MetaTrader 5 智能交易系统(Expert Advisor)。其交易逻辑专门针对黄金市场的特点而设计,包括快速的价格波动、剧烈的市场反转以及高波动性。该 EA 能够在对执行速度、交易纪律和精确仓位管理要求极高的市场环境中实现全自动交易。 该系统专注于严格的交易管理、快速响应市场变化以及受控的出场策略。其核心理念非常简单:通过移动止损(Trailing Stop)让盈利交易尽可能延续,同时使用固定止损(Stop Loss)保护每一笔交易,并在 M1 时间周期出现反向信号时提前平掉亏损仓位,从而进一步控制风险。 信号:  https://www.mql5.com/en/signals/2378776 特别优惠价格: 当前价格仅适用于前 40 份授权。售出 40 份后,EA 的价格将上涨 100 美元 ,调整为 599 美元 。 核心理念 本智能交易系统专为希望使用自动化黄金(XAUUSD)交易工具,并需要清晰、实用仓位管理机制的交易者设计。 EA 采用趋势跟随策略,在主趋势方向上的回调中寻找入场机会,从而在已有趋势中获得更有利的
Wave Rider EA MT5
Adam Hrncir
4.88 (42)
Scalper speed with sniper entries. Built for Gold. Wave Rider 5.0 is out (see  Announcement ) $499 for a limited time  before the regular $599 price kicks in. Check the Live signal  or Manual  or  Broker performance Version 5.0 upgrade notice: Close all Wave Rider positions before updating. Strategy Magic Numbers and several input names changed. Review your settings and save a new preset because older sets or templates may not restore every option. New version runs best on VT Markets, Vantage, B
XG Gold Robot MT5
MQL TOOLS SL
4.3 (111)
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
Chiroptera
Rob Josephus Maria Janssen
4.57 (46)
Prop Firm Ready! Chiroptera is a non-martingale, non-grid, multi-currency Expert Advisor that operates in the quiet hours of the night. It uses single-placed trades (of all 28 pairs!) with tactically placed Take Profits and Stop Losses, that are continuously adjusted to maximize gains and minimize losses. It keeps track of past and upcoming news reports to ensure impacts are minimized and carefully measures real-time volatility to prevent impacts due to unpredictable geo-political disturbances c
Obsidian Flow Atlas EA
Valentina Zhuchkova
5 (6)
Obsidian Flow Atlas EA 精准 · 结构 · 执行 金融市场不会奖励情绪化的交易。 市场奖励的是纪律、稳定性,以及基于客观数据做出决策的能力。 Obsidian Flow Atlas EA 正是基于这一理念而开发。 这是一套面向 MetaTrader 5 的全自动交易系统,专为以下两种全球最受欢迎的交易品种而设计: • XAUUSD(黄金) • EURUSD(欧元兑美元) 系统能够自主分析市场环境、开仓并管理仓位,依靠其内部交易逻辑和内置风险管理模型独立运行。 您无需长时间盯盘、寻找入场机会或手动做出交易决策。 只需安装 EA,选择适合您的风险等级,然后让系统完成其余工作。 经验证的真实交易表现 为了确保最大程度的透明度,系统的实际交易表现可通过以下公开信号进行查看。 XAUUSD(黄金) https://www.mql5.com/en/signals/2378564 超过 3 个月的真实账户实盘交易记录。 EURUSD(欧元兑美元) https://www.mql5.com/en/signals/2378563 超过 3 个月的真实账户实盘交易记录。 这些公开信号
Precise Pair Trading Pro
Arkadii Zagorulko
3.75 (12)
请注意,我不会通过任何第三方经销商、代理或其他分销渠道销售此 EA。 监控 -  实时信号 公开频道 - 这里 此 EA 交易两个品种,并寻找它们之间的短期失衡。当两个品种的走势偏离它们通常的正常关系时,EA 可以开仓,并在失衡变小时平仓。 这不是网格 EA。这不是马丁格尔。EA 不会打开很多恢复订单。每个品种只使用 1 个持仓。 它不是为了在回撤中持仓很多天而设计的。 EA 在开仓前使用过滤器。如果市场条件不好,它可以跳过交易。 EA 输入参数: 主要交易品种 - 用于交易的第一个品种。 次要品种 - 用于比较和交易的第二个品种。 分析时间周期 - 用于计算的时间周期。 历史数据深度 - EA 检查多少根K线用于计算。 Entry Threshold - EA 开仓前失衡必须有多强。数值越高,交易越少,但信号越强。 Exit Threshold - EA 判断失衡已经变小并且可以平仓的水平。 Close Target - 平仓的利润目标。较小的值可以更快平仓。较大的值可以等待更多利润。 Beta Smoothing - 使信号更稳定,并减少市场噪音。 Min Correlation
Aetherion Prime EA
Valentina Zhuchkova
AETHERION PRIME EA 专为 XAUUSD H1 周期打造的精准算法交易系统 公开实盘信号,可实时查看交易表现: https://www.mql5.com/ru/signals/2381671 限量首发优惠 首批仅有 7 份授权,首发价格仅为 259 美元 。 这 7 份售出后,价格将立即上涨 100 美元,调整至 359 美元 。 本次首发优惠专为希望在项目早期加入,并从一开始就通过公开实盘信号观察 Aetherion Prime EA 表现的交易者准备。 新一代黄金自动交易系统 Aetherion Prime EA 是一款专门为 MetaTrader 5 平台上的 XAUUSD H1 周期 开发的全自动交易系统。 该 EA 的核心理念非常清晰: 精准优先于频率,结构优先于情绪,风险控制优先于收益表现。 Aetherion Prime 不会频繁、随意地进入市场,而是会持续分析当前市场环境,等待内部入场条件完全满足后才执行交易。 每一笔仓位都会按照预先设定的算法规则进行开仓和管理,不受情绪影响,也不需要不必要的人工干预。 专门针对 XAUUSD 开发 黄金是金融市场中波
Byrdi
William Brandon Autry
5 (19)
BYRDI - 如同一体交易的 AI 网络 大多数智能交易系统只看到一个终端。 BYRDI 看到的是整个网络。 在一个账户上开立的交易,可能改变您所拥有的每一个其他账户的风险。 BYRDI 将各自独立的 MetaTrader 5 终端连接成一个协调一致的网格。每个节点都可以保留自己的账户、经纪商、市场、AI 模型、策略和风险设置,同时对更大的系统保持感知。 一个节点可以独立交易。 多个节点可以作为一个网络协同运作。 共享市场可以在符合条件的节点之间分配。敞口可以在整个网格中受到控制。如果某个被指派的节点变得不可用,在受支持的情况下,另一个符合条件的节点可以接管。 超越入场。超越账户。 一位交易者。众多市场。一个智能网络。 公开的网格表现 BYRDI 目前在三个公开跟踪的真实资金节点上运行。 3 个实盘 BYRDI 节点 相对于入金资本 +10.63% 的已平仓利润 $1,198.00 总入金 $1,325.53 合计余额 $1,322.58 合计净值 $127.30 已平仓利润 约 0.22% 当前合计浮动回撤 这些数据反映的是截图时刻的仪表盘状态。随着仓位开平、净值波动以及资本的存
HFT Spike EA
OMG FZE LLC
3.67 (3)
[ My Channel ] HFT Spike EA 推荐账户:高杠杆 Standard、ECN、Raw;Cent;Propfirm(如 FTMO FundedNext 等) 策略:量子物理学原理、HFT Spike(高频交易)、级别交易、神经交易、无马丁格尔、无网格、单仓位趋势交易。 基于 XAUUSD tick 数据设计的全自动、风险受控的 EA。无需选择 Time-Frame。默认值与已测试的配置相同。 专为黄金设计。检测突发的波动爆发("spike"),并在 spike 后的价格走势通过过滤器时以精准时机开仓。 平均持仓时间较短,因此突出表现为 Scalping Trading。  Symbol : GOLD/XAUUSD Digits : 2 digits & 3 digits Leverage : Any Broker : Any Min Balance : 25$ (for 1:500) Latency : up to 500ms 无 set 文件。无 Timeframe。 无马丁格尔 - 无网格 可调节的风险级别 PropFirm 模式 对于每日亏损设
Golden Conqueror
Taner Altinsoy
5 (1)
Welcome to Golden Conqueror , a highly advanced, fully automated active scalping algorithmic system designed exclusively for Gold (XAUUSD) . Built with institutional logic, this EA strictly avoids dangerous grid or martingale systems. Instead, it utilizes high-precision Pivot Breakouts to exploit market momentum and volume surges. To ensure absolute risk mitigation and capital protection, the algorithm strictly limits itself to a maximum of 1 open trade at a time . Furthermore, every single exe
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
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
XIRO Robot MT5
MQL TOOLS SL
4.94 (33)
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
SomaGold
Andrii Soma
5 (9)
SomaGold 是一款专为 MetaTrader 5 打造的多策略突破型智能交易系统(EA),仅适用于黄金(XAUUSD)。一张图表、一个 EA,32 套独立策略并行运行,构成单一、分散化的组合。 实时信号。 这是我在 MQL5 上发布的第一款 EA。为在上线时让更多人能够入手,我采用透明的阶梯定价模式: 首发价:100 USD 每售出 10 份拷贝,价格上涨 100 USD 早期购买者在产品生命周期内锁定最低价格。 理念 与其运行单一、容易过度拟合某一狭窄市况的设置,SomaGold 自带一套精选的 32 套预调策略,全部在同一黄金图表上的单个 EA 中并行运行。 每套策略拥有各自的 magic number、注释、时间周期、摆动识别参数、出场规则、新闻距离与手数步长。它们共享同一执行引擎但独立交易,因此您可在多个时间周期与突破宽度上获得真正的分散化,而无需管理大量图表。 组合构建 我进行了 48 次完全不同的优化: 首先,我在 2 个时间段上运行优化: 2018–2023 2020–2025 时间周期分为 4 组: D1、H12、H8、H4 突破宽度有三种变体: V1 Bro
作者的更多信息
DailyLevelEngulfEntry (DLE) EA DailyLevelEngulfEntry is a fully automated Expert Advisor for MetaTrader 5 built around disciplined market structure analysis, breakout validation, and price-action confirmation. The system is designed to operate with controlled exposure, selective entries, and structured trade management. The EA processes higher-timeframe conditions first, then applies lower-timeframe confirmation before execution. This layered approach helps reduce low-quality signals and keeps t
筛选:
无评论
回复评论