Momentum Portfolio

Momentum Portfolio EA

Multi-symbol momentum expert advisor for gold, US indices, and bitcoin. Trades four instruments from a single chart with adaptive risk management, regime detection, and broker-agnostic symbol resolution.

Overview

Momentum Portfolio is a four-symbol expert advisor that trades XAUUSD, NAS100, US30, and BTCUSD using two complementary momentum-detection engines. A single instance attached to any H1 chart manages entries, exits, partial profit-taking, and risk control across all four markets independently. Each symbol has its own parameter set, its own regime-health tracker, and its own position lifecycle — there is no shared state that causes one symbol's behavior to compromise another's.

The EA is designed to run unattended on a small to mid-sized retail account and to work across the major retail brokers without manual ticker mapping.

Key Features

  • Multi-symbol portfolio: trades XAUUSD, NAS100, US30, and BTCUSD from one chart
  • Two entry engines: volatility-regime shift detection + session-open momentum
  • Three-stage profit management: TP1 at 1R, TP2 at 2R with break-even lock, ATR-trailed runner
  • Per-symbol regime detector: pauses trading on a symbol when its rolling win-rate or profit factor drops, resumes after confirmed recovery
  • Smart time-stop: positions making meaningful progress are allowed to develop; stalled positions are closed
  • Cross-broker compatibility: automatically resolves ticker variants (USTEC/NDX100/NAS100, DJ30/WS30/US30, BTC/BTCUSDT/BTCUSD, GOLD/XAUUSD) and common suffixes (.m, .r, +, .cash)
  • Margin-aware position sizing: never opens an order the account cannot afford
  • Market-state aware: respects broker-declared trading sessions, no "Market closed" errors during rollover windows
  • Configurable per-symbol risk: independent ATR periods, ADX thresholds, lot sizing, and spread caps for each instrument
  • Portfolio-level concurrency cap: configurable maximum of simultaneous positions across all symbols (default 3)

Markets and Timeframes

Symbol Primary Timeframe Confirmation Timeframe
XAUUSD H1 H4
NAS100 H1 H4
US30 H1 H4
BTCUSD H1 H4

Attach the EA to any H1 chart — the chart symbol does not need to be one of the four traded symbols. The EA detects which of the four your broker provides and trades only those.

Strategy

The EA combines two distinct entry mechanisms designed to capture different kinds of momentum.

Engine A — Volatility Regime Shift

Compares short-term ATR (5-period) against long-term ATR (20-period). When the short-term volatility expands meaningfully beyond the long-term baseline (configurable expansion factor, default 1.8×), the EA reads the direction of the expansion bar (close versus open) and enters in that direction. Stop-loss sits at the opposite extreme of the expansion bar plus an ATR buffer; target is 2× the stop distance.

Volatility-expansion entries tend to fire when a market is breaking out of consolidation — the moments where directional moves are most likely to continue.

Engine B — Session Open Momentum

Watches the first hours after a market's relevant session opens (London open for XAUUSD, New York open for the indices and BTC). If the price has moved by a configurable ATR-scaled amount during the lookback window, the EA enters in the direction of that move. A maximum-move filter skips entries during news-driven extreme bars. Target is 1.5× the stop distance, reflecting that session-open momentum tends to fade faster than volatility-expansion moves.

Each session fires at most once per day per symbol.

Engine C — Failed Pattern (optional, disabled by default)

Contrarian entries on failed Donchian breakouts. Backtest analysis showed this engine underperforms during persistent trends. It remains in the code for users who want to experiment with mean-reverting setups, but the default configuration leaves it off.

Position Management

Each open position uses a three-stage exit profile:

  1. TP1 (+1R) — Approximately 33% of the position closes. The original structural stop remains in place on the remainder.
  2. TP2 (+2R) — Another 33% closes. The stop moves to entry + 1R, locking in profit on the runner.
  3. Runner — Final ~34% trails with an ATR-based stop from the highest favorable price. Continues until either the trail stops it out or the smart time-stop fires.

The smart time-stop only closes a position if it has been held past the bar limit and is below a minimum-progress threshold (default 0.3R). Productive positions are not arbitrarily cut.

Risk Management

Per-symbol regime detector. Each symbol maintains a rolling 30-trade window of outcomes. If win-rate drops below 45% or profit factor below 1.0, that symbol pauses live trading while continuing to evaluate market conditions through shadow trades (virtual positions tracked but not sent to the broker). Trading resumes for that symbol after 8 confirming successful shadow or live trades. The other symbols continue trading normally.

ADX entry gate. Entries on any symbol require the entry-timeframe ADX(14) to be at or above the configured threshold (default 20). Periods of severe chop are filtered out.

Portfolio concurrency cap. Maximum simultaneous positions across all symbols (default 3). Prevents over-concentration when multiple symbols signal simultaneously.

Margin-aware lot sizing. Before sending any order, the EA queries OrderCalcMargin and caps the position size to a configurable percentage of free margin (default 50%). On small accounts where the desired lot size would exceed available margin, the EA reduces the order rather than failing. If even the broker's minimum lot is unaffordable, the entry is skipped.

Market-state safety. Three layers prevent "Market closed" rejections during broker rollover windows: a proactive broker-declared session check, a tick-age heuristic, and a reactive cooldown after any market-closed rejection. The EA does not spam orders into closed markets.

Re-entry cooldown. Configurable wait period after losses (default 6 bars) and wins (default 0 bars) on each symbol. Prevents immediate re-entry into deteriorating setups.

Recommended Setup

Parameter Recommendation
Account type Hedging
Minimum balance $500 (works but with very small position sizing)
Recommended balance $3,000 or higher
Leverage 1:100 or higher
Broker Any retail broker offering XAUUSD plus indices/crypto
Chart attachment Any H1 chart
VPS Recommended for live deployment

Setup Instructions

  1. Drop the EA onto any H1 chart.
  2. Allow algorithmic trading when prompted.
  3. The EA reports in the Experts log which symbols it has initialized.
  4. If your broker uses different ticker names than the defaults (for example USTEC instead of NAS100, or DJ30 instead of US30), the EA's automatic resolver will try common variants. If it cannot find a match, edit the *_SymbolName inputs directly to your broker's exact tickers.
  5. Adjust *_RiskPercent or *_FixedLots per symbol to match your risk tolerance.
  6. For first-time use, leave all other settings at their defaults and monitor performance for at least one to two weeks before tuning.

The EA writes detailed trade logs to your terminal's Common folder for performance analysis.

Backtesting Recommendations

  • Use "Every tick based on real ticks" model for the most accurate results
  • Use a broker history that includes all four symbols
  • Test minimum 6 months, ideally 12+ months
  • Expect different results across different brokers due to spread, swap, and execution differences
  • The strategy tester will exercise the configured symbol set; for multi-symbol testing, ensure all four symbols are available in your tester data

Broker Compatibility Notes

If a configured symbol does not exist on your broker (and no variant resolves), the EA silently skips that symbol and trades the remaining ones. You will see this reflected in the Experts log's initialization summary.

If you want to disable trading of a symbol regardless of broker availability, set the corresponding *_Enabled input to false.

Important Disclaimers

  • Past performance does not guarantee future results. Backtesting reflects historical behavior under specific market conditions and is not a prediction of live trading outcomes.
  • Trading financial instruments carries substantial risk. You can lose more than your initial investment. Only trade with capital you can afford to lose.
  • This EA is not a "set and forget" system. Monitor performance regularly and adjust as your account grows or as market conditions change.
  • Always test on a demo account first before deploying with real capital, regardless of backtest results.
  • Spreads, slippage, and broker execution quality materially affect live results. Live trading will not exactly match the strategy tester.
  • No EA can predict market direction with certainty. This EA is a rule-based trading system, not a guaranteed profit system.

Support

Use the MQL5 messaging system or the product comments section for questions about setup, configuration, or broker compatibility. Constructive feedback and bug reports are welcomed.



推荐产品
GoldTrendPro v5.0 – Smart Confluence EA for XAUUSD H1 GoldTrendPro v5.0 is a fully automated Expert Advisor built exclusively for XAUUSD (Gold) on the H1 timeframe. Unlike simple grid or martingale systems, GoldTrendPro uses a multi-confluence scoring engine that only enters a trade when multiple independent signals align. No license binding, no expiry. Activation is handled directly by MQL5 Market. Why GoldTrendPro? Most Gold EAs rely on a single indicator. GoldTrendPro aggregates six signal s
Gold Rush Turbo EA
Pham Tung Anh Nguyen
5 (1)
INTRODUCTION Gold Rush Turbo – Ride the Fastest Wave of Gold Trading Experience the thrill of fast-paced gold trading. Gold Rush Turbo is a high-performance, medium-risk Expert Advisor designed for traders who thrive in dynamic market conditions. Built for aggressive scalping on XAUUSD (gold), it uses rapid market entries, tight stops, and momentum-based logic to capture short-term price movements. If you’re ready for high-speed decision-making, Gold Rush Turbo keeps your strategy sharp and your
CHECK OUT OUR OTHER PRODUCTS 24-HRS SALES IS ON  https://www.mql5.com/en/users/alisten/seller Brahma Jyoti — 神圣时间多品种智能交易系统 Brahma Jyoti 是一款专业的 MetaTrader 5 多品种智能交易系统,建立在古老的吠陀时间原理与专有多层信号融合引擎的结合之上。系统只在条件完全对齐时交易 — 绝不在噪音中,绝不在不确定性中。 这不是马丁格尔系统。这不是网格系统。Brahma Jyoti 使用固定风险模型、基于波动率的动态止损管理和严格的时间过滤器。 神圣时间原理 Brahma Jyoti 仅在特定的黎明前窗口内交易,该窗口根据您当地的日出时间和经纪商服务器偏移每天动态计算。在此窗口之外,EA 完全空闲 — 保护您的资金免受剧烈波动影响。 专有信号引擎 在下任何订单之前,Brahma Jyoti 在两个时间框架上运行内部多点融合检查。只有当足够数量的独立确认在同一方向对齐时,EA 才考虑进入头寸。内部过滤器是系统的核心知识产权,不予披露。 资金保护 — 沙
FREE
Mpx Smc6 Order Block Sniper
Punyakorn Prathueangsaenyakorn
MPX-SMC6 — Order Block Sniper EA Gold (XAUUSD) | H1 | MetaTrader 5 Overview MPX-SMC6 is a Smart Money Concepts Expert Advisor for Gold (XAUUSD) on the H1 timeframe. It identifies institutional trading patterns by detecting Liquidity Sweeps followed by a Break of Structure (BOS), then enters at the Order Block — the last opposing candle before the impulsive move. Entries are placed as BuyLimit or SellLimit pending orders, allowing precise execution at the institutional price zone. The EA opens a
The product is designed to search for market correlations and is a full-fledged advisor. Options: "-------------------MagicNumber----------------------------" Mn=111111 - magic number "-------------------TimeFrame-------------------------------" TimeFrame=PERIOD_CURRENT - timeframe of the expert "------------------------RiskLeverage------------------------" Risk=1 - trading leverage "-------------------TradeFixLot-------------------------------" FixLot=0.01 - trading with a fixed lot. 0 -
ANE evo
Thi Ngoc Tram Le
5 (1)
ANE evo 是一个用于 XAUUSD(黄金)的夜间剥头皮智能交易顾问,采用 网格加仓策略 。这是一个 高风险交易系统 ,适合了解网格和加仓方法的交易者。 实时信号 #1 | 手数 0.01 实时信号 #2 | 手数 0.02 官方频道 风险提示:  交易涉及重大亏损风险,并不适合所有投资者。过去的表现不保证未来结果。 ANE evo 使用网格加仓 。所有未平仓头寸的浮动回撤可能显著高于单一仓位的智能交易顾问。在真实账户运行之前,请先在模拟账户测试,并且不要使用无法承受损失的资金进行交易。 交易策略 ANE evo 将其所有持仓作为一个整体篮子进行管理。当入场条件满足时,它会加仓以调整该篮子的平均入场价,并在达到综合目标后一次性平掉整个篮子。 网格运行期间,账户可能出现浮动回撤。对于此类策略而言,这属于正常现象。要让 EA 按预期运行,必须使用正确的手数设置并具备充足的账户资金。 内置控制 最大回撤限制。当达到所设置的回撤水平时,交易将停止。默认值:[X]%。 点差过滤。当点差高于所设限制时,不会开立新仓位。默认值:70 点。 魔术号。EA 只管理自己的持仓,因此可与其他程序共用
Emilian
Kaloyan Ivanov
Emilian:MetaTrader 5 的专家顾问 概述 请认识 Emilian,这位专家顾问采用指数移动平均线(EMA)和相对强度指数(RSI 21)来开启和关闭交易。 通过提供可定制的风险管理策略,Emilian 还利用平均真实范围(ATR 12)或特定的 pip 值来设定获利和止损水平。 主要特性 EMA 交叉策略:使用快速和慢速的 EMA 来获得交叉信号。 RSI 21 确认:通过 RSI 21 添加了额外的确认层,减少误报。 灵活定位:允许进行多空双向交易,可完全根据您的交易偏好进行调整。 动态风险管理:选择基于 ATR 的或基于 pip 的获利和止损设定。 输入参数 LongPositions:允许开启多头/买入头寸。 ShortPositions:允许开启空头/卖出头寸。 Lots:开启头寸的标准手数。 EMA_Fast & EMA_Slow:EMA 交叉策略的快速和慢速周期。 StopAndTipByPips:选择基于 ATR 或 pip 的获利和止损。 TakeProfit_in_Pips & StoppLoss_in_Pips:以 pips 为单位指定获利和
Venom Gold EA
Mustafa Pishori
欢迎来到 Venom EA —— 精准多引擎交易系统 各位交易者,大家好!我非常高兴能向大家介绍 Venom EA——这是一套经过精心打磨、严格遵循纪律的交易系统,专为应对当今波动的市场环境而设计。 我设计这款 EA 的初衷,并非为了捕捉每一个细微的价格跳动(tick)。相反,我旨在让它专注于真正行之有效的要素:耐心、市场结构分析,以及积极主动的资金保护策略。 我打造 Venom EA 的使命非常简单:提供精准、高效且经过智能优化的交易表现。您无需深究其背后复杂的算法数学原理;只需将其加载到图表上,设定好您的风险参数,随后便可让系统自动运行。 上市特惠:目前针对首批用户提供大幅折扣。每售出 10 套,价格将上调 50 美元,直至最终零售价达到 699 美元为止。 Venom EA 的运作原理:动态市场追踪 Venom EA 绝不靠猜测来预测市场走向,也不依赖于那些具有滞后性的标准指标。取而代之,它直接解读市场的原始结构。 该系统由 4 个独立的交易引擎协同运作,持续监控市场的内在波动性。通过精准锁定跨越多个市场周期的隐性结构边界,Venom 仅在确认出现真正的动能(moment
AI Bolinger PRO
Saniyat Nabiyeva
AI Bolinger Pro — 经典进化 (AI Bolinger Pro — Evolution of the Classic) 它属于 EA AI PRO 系列,这意味着其代码 100% 由人工智能设计和编写 。它配备了 24 种不同的机构级头寸管理功能,这使其成为拥有最多样化模式的领先 EA(智能交易系统)之一。 通过 AI 创建该顾问消除了人为因素,从而最大限度地降低了用户的购买价格。如果由真人程序员开发类似的功能,买家的花费将不少于 15,000 美元 。 该顾问的功能完全适合 剥头皮交易者 (Scalpers) 、 日内交易者 (Day Traders) 、 波段交易者 (Swing Traders) 以及任何需要自动化执行和风险管理的交易者。 机器人的强大武器库包括: 智能新闻过滤器、四种止损 (SL) 选项、三种追踪止损 (Trailing SL) 选项(包括基于 High/Low 的高级追踪)、三种部分平仓 (Partial Close) 选项(包括独特的基于“交易量倍数”的选项),以及两种带有灵活设置的交易量倍增 (Volume Multiplier) 选项,
Riftline
Alex Amuyunzu Raymond
Riftline — Multi-Asset Confluence Trading Engine Riftline is a fully automated multi-asset trading engine built for traders who are tired of single-indicator systems that fall apart the moment market conditions shift. Instead of relying on one signal, Riftline scans up to six instruments simultaneously — XAUUSD, EURUSD, GBPUSD, USDJPY, AUDUSD, and BTCUSD by default, fully customizable — and scores every opportunity across multiple independent dimensions before ever placing a trade. How the Confl
Golden Retirement MT5
TICK STACK LTD
4.67 (6)
Golden Retirement is a multi-strategy system designed for trading GOLD vs USD (XAUUSD). It does not use grid or martingale or any high risk money management strategies. Every position has a fixed stop loss and take profit. A trailing stop is used to catch as many pips as possible. It is not a scalping system, but most positions are closed within a day or two. It uses 10 different strategies to make the best out of every market condition. The proof is in the performance. When Golden Retirement
XAU Fib Pullback H1
Avinash Pagadala
XAU Fib Pullback H1 Expert Advisor for MetaTrader 5 — Gold / XAUUSD focus Version: 1.00 What it is XAU Fib Pullback H1 is an Expert Advisor for gold on the H1 chart. Fibonacci-style pullback continuation for gold H1. Built for structured automated participation — not grid , not martingale . Evaluate on your broker and risk profile before any live use. This product is a technical system . Exact thresholds and entry equations remain internal product design and are not published here. Advantages G
FREE
QuantumPip
Evgeniy Scherbina
4.36 (11)
The expert "QuantumPip" is a fully automated expert which can trade several symbols from one chart. The expert also uses prices of Gold, Oil, "Schmuksie" (my adaptation of the "Dixie" indicator), DAX or FTSE to calculate inputs for the symbols. The expert uses 2 types of recurrent neural model - 1 network (decisions "buy" or "sell") and 2 networks (decisions "buy" or "uncertainty" and "sell" or "uncertainty"). QuantumPip can, therefore, trade 16 strategies as one, because it is 2 models per each
T Trader
Steve Zoeger
T Trader Expert #advisor works very well on all Pairs and all Frames. Is fully automated and based on the tick to filter as many as possible winning trades. =============================================================================================== This Robot is fully automated and has been created for everyone. The Robot works also on cent accounts. =============================================================================================== => On the lower Frames there are too many sma
VR Black Box MT5
Vladimir Pastushak
1 (1)
VR Black Box 是一款由经验丰富的交易程序员开发的现代自动交易专家顾问。强大的交易工具,建立在经过验证的跟随市场趋势运动策略之上。该机器人经历了漫长的开发和完善历程,定期更新并适应不断变化的市场条件。在真实交易账户上的多年运行中,它已成为初学者和经验丰富的交易者的可靠助手。 提供设置文件、产品演示版本、说明和奖金 [博客] 版本为 [MetaTrader 4] 你会得到什么 开发者设置文件 免费程序和说明更新; 免费技术支持; 20次产品激活; 运营模式与策略 随机建仓模式(正面和反面) 交替仓位开仓模式 同时建仓或同时建仓模式 只买交易模式 只卖交易模式 亏损交易者撤回交易的模式 建议: 符号 外汇、加密货币、金属、差价合约、指数 时间范围:任意 最低存款:10 美元起 经纪人:任何 账户类型:对冲 杠杆:从1到100 VPS 服务器:24/7 运行。首选,但不是必需的。 谨防骗子 互联网上出现了大量骗子,提供该应用程序或其设置的假冒产品。支付产品和押金时,您可能会面临损失金钱的风险。 MQL5 God 中描述了购买产品的官方地点。 交易机器人设置 VR Black Bo
SP500 Sniper
Eduard Culka
SP500 Sniper —— 智能交易专家顾问(EA)介绍 SP500 Sniper 是一款高度专业化的智能交易系统,专为 标普500指数(S&P 500) 交易而设计,核心目标是实现 超高精度进场、严格的风险控制 以及在真实市场环境中的 稳定表现 。 该策略基于专业量化研究平台 StrategyQuant 开发,采用系统化、数据驱动的方法构建,而非主观判断或过度拟合的策略逻辑。 策略概述 SP500 Sniper 基于 趋势结构与动能确认 进行交易,专注于在市场已经展现出明确方向性之后,捕捉高概率交易机会。 EA 不会对单一指标或短期波动做出反应,而是等待 经过验证的价格行为 后才执行交易。 核心交易逻辑 只有在以下所有条件同时满足时,系统才会生成交易信号: 凯尔特纳通道结构(Keltner Channel) 凯尔特纳通道的 上轨和下轨 必须连续多个K线周期呈下降趋势, 以确认市场处于 持续性的下行结构 ,而非短暂波动或噪音。 动能确认(ROC 指标) 变化率指标(Rate of Change, ROC) 也必须在多个周期内持续下降, 用于确认价格动能正在减弱,并与趋势方向保持
Cyclone Intraday
Mikhail Mitin
5 (1)
How the EA works (simple explanation) Trades on M5 timeframe Uses H1 timeframe to analyze global market context Analyzes 2 or 3 timeframes simultaneously On each timeframe: Checks price position relative to one or two Moving Averages Evaluates MA angle and distance between price and MA Entry logic is based on trend + volatility conditions , not on random signals The full algorithm is illustrated in the screenshots. Recommended usage Symbol: EURUSD Timeframe: M5 Trading style: Intraday
XAU AURUM IMPERIAL SCALPER  Double-Engine Architecture | Broker Stealth Mode | Dynamic Volume Clamping XAU Aurum Imperial Scalper is the sovereign standard in gold trading (XAUUSD). Integrating a state-of-the-art dual-engine consensus and governed by 200/250-period trend filters, it calculates true entry levels with surgical precision. Built for the H1 timeframe, XAU Aurum Imperial Scalper is an algorithmic powerhouse that trades only in the direction of the major institutional trend and pro
Boom and Crash AI
Godbless C Nygu
Boom and crash indices are synthetic indices from   Deriv   that are programmed to reflect rising and falling real-world monetary markets. In other words, they behave specifically like a rising (booming) or falling (crashing) financial market. IMPORTANT! After the purchase please send me a private message to receive the installation manual and the setup instructions. Boom and crash AI developed to follow the market trend, This EA is created to trade  synthetic indices not yet tested on oth
SG TimeBreak — Fully Customizable Time-Based Breakout System Built for Live Trading, Not Backtest Marketing ... EVERYONE WHO IS INTRESTED 1st Write me I give all info needed about Strategy/Money Managment/Brokers +  3M free trial to try 1st on Demo and see the real Results  Real Numbers: The BEST traders in the world achieve 50 %–200% yearly return . This EA is built around that realistic performance standard. JUST LOOK AT CURRENT TOP 5 TRADERS in THE WORLD CHAMPIONSSHIP --> WORLD CHAMPIONSHISP
Dual-regime gold EA on the daily opening range — fades ranges, rides trends, switching automatically by ATR. XAUUSD M5. Full description: Gold Regime Trader is a dual-regime Expert Advisor built around the daily opening range. It reads conditions with ATR and switches between mean-reversion and momentum automatically — no martingale, no grid. Regime switch: ATR(14) vs its own average → at/above = TREND, below = RANGE. RANGE: fades a Bollinger extreme confirmed by RSI at the opening-range bou
Crystal MA Cross
Muhammad Jawad Shabir
5 (3)
Crystal MA Cross EA   Crystal AI Systems | Professional Automated Trading for MetaTrader 5 What Is This EA? Crystal MA Cross is an automated trading bot for MetaTrader 5 that trades Moving Average signals with precision. It waits for the candle to fully close before taking any trade — no fake signals, no intra-bar noise. When the signal flips, it closes the old trade and opens a new one instantly. Clean, simple, and fast. It works on every market — Forex, Gold, Indices, Crypto, Boom/Crash, Silve
FREE
Outside Day Reversal EA
Munkh Od Jargalsaikhan
Outside day trading strategy looks for a specific pattern in the price chart of a security. The pattern is characterized by a larger range than the previous day, with the high of the day higher than the previous day's high and the low of the day lower than the previous day's low. Works with many symbols, such as BTCUSD, GBPUSD,USDCAD, oil, gas, and others. PLEASE RATE! Thank you very much! FEATURES: - Real Strategy - Daily Bar Strategy - Exit the trade if the day was profitable - ATR multiple s
FREE
ScalJumping
Daniel Maximiliano Serkin
ScalpJumping July 50% OFF Hey, haven't you tried it yet? What are you waiting for???? Try yoursef. It is a buy scalper robot with a recommended risk of 6%.This is not magic, it works well in a bullish context. you can do a back test yourself and check its operation. It is a multi-currency robot although it was tested with greater success on the EURUSD pair. Recommendations: currency EURUSD, timeframe 5M, Stop Loss 60, Take Proffit 60, Trailing Stop 0, Dynamic Lots true although you can tes
HedgingMartingale
OMG FZE LLC
4.73 (131)
HedgingMartingale EA [ My Channel ]  ,   [ My Products ]  ,  [ Blog ]     ,  [ Public Chat ] 推荐账户:高杠杆标准账户、ECN、Raw;美分账户;自营交易账户 这个EA是一个将对冲和智能风险管理与马丁格尔策略相结合的交易算法。它被设计为在您无法预测趋势方向的强势市场条件下提供稳定的性能。当使用适当的设置文件时,它可以在任何金融工具上工作。优化结果在外汇、黄金、股票和加密货币等工具上提供了成功的性能。趋向于横盘移动的工具是它的噩梦。它以周期开始交易。在正确的位置开启将开始周期的第一笔交易可以消除风险。因此,各种周期开始进入策略已经被开发并将继续开发。 在买入和卖出方向系统性地开仓。 在亏损后,按照预定义的序列增加手数大小。 通过自动关闭相反方向的仓位来最小化损失。 交易周期示例: 0.02 SELL 0.04 BUY 0.08 SELL 0.16 BUY 0.32 SELL ... 开启的第一笔交易开始一个周期。设置文件中的规则仅适用于这第一笔交易,第一笔交易只能使用冻结功能或仓位限制来停止。
FREE
Indicement MT5
Profalgo Limited
4.21 (24)
歡迎來到指數! 道具準備就緒! -> 在這裡 下載設定文件 推出促銷活動: 目前價格只剩幾本! 最終價格:990$ NEW: Choose 1 EA for FREE! (limited to 2 trading account numbers) 終極組合優惠   ->   點擊此處 加入公共團體: 點擊此處   VERSION 4.0 LIVE RESULTS OLD VERSION FINAL RESULTS INDICEMENT   將我 15 年在創建專業交易演算法方面的經驗帶入指數市場。 EA 使用經過深思熟慮的演算法來找到最佳入場價格,並在內部運行多種策略來分散交易風險。 所有交易都有停損和止盈,但也使用追蹤停損和追蹤停盈來最小化風險並最大化每筆交易的潛力。 該系統建立在非常流行且經過驗證的策略之上:交易突破重要的支撐位和阻力位。   我很高興地說,在多年的 EA 開發過程中,我已經完善了這個策略 該 EA 專為 US500、US30 和 NAS100 指數交易而開發。 這些市場特別適合這種類型的策略交易。 回測顯示出非常穩定的成長曲線,回撤非常可控且恢復很快。 
Day Trader V2
Ahmet Gokcen Sirma
Day Trader EA Day Trader EA is a fully automated trend-following Expert Advisor designed for Forex, Metals, Oil and Index CFDs. The system combines Moving Averages, Momentum Analysis and ATR-based volatility measurements to identify trend continuation opportunities and manage trades automatically. Trading Modes Normal Mode Opens a direct market position. Examples: BUY SELL Stop Mode Opens a market position and a pending stop order in the same direction. Examples: BUY + BUY STOP SELL + SELL STOP
Channel scalper EA MT5
Aleksei Moshkin
5 (1)
Channel scalper EA The EA trades in the SMA channel based on price change rate and volatility. Trading starts 1 hour before rollover and 1 hour after rollover, from 23:00 to 01:00. Trading settings from 23:00 to 01:00 are suitable for brokers using GMT+2 in winter and GMT+3 in summer. If your broker uses GMT-0, the trading start time must be set between 20:00 and 22:00. The EA does not use dangerous strategies, all trading orders are protected by a stop loss. Currency pairs for trading eurusd,
Gold Zenix
Md Billal Hossain
隆重推出 ZENIX EA — 您的黄金市场精英伴侣 欢迎使用 ZENIX — 专为 XAU/USD(黄金)打造的新一代 EA。ZENIX 不仅仅是一个自动交易系统,更是一个精准的引擎,其使命只有一个: 凭借智能、灵活和强大的功能,主宰黄金市场。 ***限时特惠 - 即将结束*** 下次价格上涨至 200.46 美元 切勿错过以优惠价购买“Zenix”的机会。 每购买 5 次,价格将上涨 100 美元。 无论您是专业的散户交易者、信号提供商还是投资组合经理,ZENIX 都将彻底改变您的黄金交易方式——将波动转化为机遇,将风险转化为可衡量的控制。 第一阶段:核心理念——智能与黄金的碰撞 ZENIX 的核心是一个多层决策引擎,它: 像经验丰富的交易员一样,利用价格行为、波动性和动量动态解读市场。 从市场背景中学习,过滤噪音,避免假突破。 在统计上有利的区域以外科手术般的精准度执行。 这不是一个静态网格或随机入场机器人。这就是 ZENIX: ️ 为黄金而设计。由数据训练。为胜利而部署。 第二阶段:值得信赖的技术 自适应算法逻辑 ZENIX
PairTrade
Dmitriy Golubev
介绍一款基于配对交易(Pair Trading)的交易系统。   我们选择相互关联的货币对,例如(EURUSD 和 GBPUSD)或者(XAUUSD 和 XAGUSD)等。机器人会同时在两种货币上以相反方向开仓。为此,它会计算货币之间的价差:卖出领先的货币,买入落后的货币。 系统中设有随着价差扩大而加仓的机制。同时还设有逐步平仓亏损头寸的系统,以降低风险和减轻账户资金压力。系统还包含马丁格尔策略,这会显著提高收益,但同时也会增加账户资金的压力。 请查看以下设置: // 第一个品种 - Symbol1 = "EURUSD";   – 设置第一个交易品种。 // 第二个品种 - Symbol2 = "GBPUSD";   – 设置第二个交易品种。 // Symbol1 的基础交易金额(美元)= 1000.0;   – 用于匹配贵金属(如 XAUUSD 和 XAGUSD)的设置。 // Symbol2 的手动系数 = 1.0;   – Symbol1 和 Symbol2 之间的手数差异。如果 Symbol1 = XAUUSD 且 Symbol2 = XAGUSD,则设置为   5.0 (或根
该产品的买家也购买
Quantum Commander
Bogdan Ion Puscasu
4.5 (8)
量子生态系统正进入一个全新的战场——一位全新的指挥官即将掌舵。量子指挥官专为美国30指数开发,是一款全自动智能交易系统,专为全球最具活力的市场之一而打造。 在充斥着黄金EA的世界中,Quantum Commander脱颖而出。 在推出几款以黄金为重点的产品之后,我们正凭借 US30 进入新的领域——这是一种新的工具、一种不同的策略,也是一个为 Quantum 生态系统带来真正多元化的强大机会。 特价上市优惠价。最终价格 1999 美元。 实时信号:   点击此处 量子指挥官MQL5公共频道: 点击此处 ***购买 Quantum Commander MT5,即有机会免费获得 Quantum Emperor、Quantum King、Quantum Bitcoin、Quantum Baron、Quantum OmniGold、Quantum Athena X 或 Quantum Starman!*** 详情请私信咨询! 量子指挥官登场 量子指挥官的创建只有一个目的。 分析 US30,识别既定市场趋势中的回调,自动执行,并以速度和纪律管理每个仓位。 US30 指数以强劲
Quantum Titan MT5
Bogdan Ion Puscasu
4.87 (30)
Quantum Titan 将机构级交易引入 Quantum 生态系统,为精准度、纪律性和经证实的实时市场表现树立了新的标准。 Titan 是为那些对黄金智能交易系统有更高期望的交易者而开发的,代表了量子交易技术的下一个发展阶段。 全球终身授权数量严格限制在 1000 个。 当1000份全部售罄后,《量子泰坦》将不再发售。 特价上市优惠价。最终价格 1999 美元。 只需5万美元初始投资即可获得实时信号:   点击此处 Quantum Titan MQL5 公共频道:   点击此处 ***购买 Quantum Titan MT5,即有机会免费获得 Quantum Emperor、Quantum King、Quantum Bitcoin、Quantum Baron、Quantum Valkyrie、Quantum OmniGold、Quantum Athena X 或 Quantum Starman!*** 详情请私信咨询! 隆重推出量子泰坦 Quantum Titan 是我从未打算公开发布的黄金级智能交易系统。 几个月来,我一直用自己的资金私下交易 Titan,并且
MoonDog EA
James Vito Armin Bianchini
4.79 (24)
MoonDog EA 是一款专为 MetaTrader 5 上的 XAUUSD 设计的多策略突破型智能交易系统(Expert Advisor)。 该系统结合了五种相互独立的突破策略,用于识别不同类型的突破条件和价格扩张行情。 MoonDog 不使用马丁格尔、Recovery 模式、Grid Recovery、亏损后加大手数或亏损加仓平均成本。 每笔交易都会在开仓时设置独立的 Stop Loss 和 Take Profit。出现亏损后,系统不会通过更大的仓位来试图追回之前的损失。 Break-even、Trailing 和 MoonLock 都是用于保护现有持仓的交易管理功能。它们可以调整已有仓位的保护水平,但不会增加手数,也不会为了追回亏损而开启额外仓位。 官方实盘信号 MoonDog 的真实交易活动可以通过官方 MQL5 Signal 进行监控: https://www.mql5.com/en/signals/2381309 该实盘信号用于提高透明度。由于点差、佣金、滑点、执行延迟、流动性以及经纪商执行条件等因素,实盘结果可能与回测结果存在差异。 交易策略 MoonDog 专门为 X
Quantum Queen X MT5
Bogdan Ion Puscasu
5 (48)
传奇仍在继续。女王不断进化。 欢迎来到 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
The Gold Reaper MT5
Profalgo Limited
4.48 (105)
道具公司已准备就绪!( 下载道具文件 ) 警告: 目前仅剩少量存货! 最终价格:990美元 免费获得 1 个 EA(适用于 3 个交易账户)-> 购买后请联系我 超值组合优惠   ->   点击这里 加入公开群组: 点击此处   实时信号 客户端信号 YouTube 评论 最新手册 欢迎来到黄金收割者! 这款EA是在非常成功的Goldtrade Pro的基础上开发的,设计用于同时在多个时间框架上运行,并且可以选择将交易频率设置为从非常保守到极度波动。 该EA使用多种确认算法来寻找最佳入场价格,并在内部运行多种策略来分散交易风险。 所有交易都有止损和止盈,但同时也使用追踪止损和追踪止盈来最大限度地降低风险,并最大限度地提高每笔交易的潜力。 该系统基于非常流行且行之有效的策略:交易突破重要支撑位和阻力位的交易机会。   黄金非常适合这种策略,因为它是一种波动性很高的货币对。 系统会根据您的账户规模和最大允许回撤设置自动调整交易频率和手数! 回测结果显示增长曲线非常稳定,回撤幅度控制得非常好,恢复速度也很快。  这款EA已经针对黄金进行了最长时间的压力测试,使用了多个经纪商的多个价格
Ghost Scalper MT5
Thomas Christoph Lipka
5 (8)
Ghost Scalper MT5 Ghost Scalper MT5 是一款专为 MetaTrader 5 的 XAUUSD / 黄金 交易开发的全自动智能交易系统。 Ghost 专注于黄金市场中具有选择性的 突破和动量行情 。EA 会等待内部市场条件满足,而不是持续不断地开仓。 价格模式: 每售出 10 份,价格上涨 100 USD ,直到最终价格达到 1,499 USD 。 4 个独立策略 Ghost A Ghost B Ghost C Ghost D 每个策略都有独立的入场逻辑、交易管理和风险设置,并且可以单独启用或关闭。 资金管理 Fixed Lot – 固定手数 Risk Percent – 根据设定的风险百分比自动计算仓位 Risk per Balance – 根据当前账户余额自动调整交易手数 每个 Ghost 策略都可以单独设置风险。多个策略可能同时交易,因此在选择总体风险时需要考虑这一点。 自动交易管理 BUY 和 SELL 入场 自动计算突破水平 挂单管理 Stop Loss 和 Take Profit 自动 Trailing 持仓管理 风险和手数计算 自动更新挂单
Iron Stops
Fajar Dicky Firmansyah
4.5 (52)
100K Real Signal:  https://www.mql5.com/en/signals/2386516 没有噱头。没有空洞的承诺。 Iron Stops 迎合关注一个关键方面的交易者: 一致性 。无论您是正在进行 道具挑战 还是管理客户资金,这款 EA 都能保持在设定的界限内并提供可靠的结果。 仓位在 36 小时 内平仓。 在单一图表上运行: 只需将其应用于 XAUUSD ,使用 M30 时间框架。这就是您所需要的。一个图表。一个强大的工具。 正确的配置对准确回测至关重要! 请联系我获取我的 .ini 文件 和详细说明。 注意: 这款 EA 目前的价格是 580 。一旦购买 30 个许可证,价格将提高到 629 。目前,已有 29 份已售出。在价格变动之前不要错过。 博客 链接 =  https://www.mql5.com/en/blogs/post/763583 频道 链接 =  https://www.mql5.com/en/channels/mqltradingfajar 给我发消息,我会给您发送一份  试用  包,供您在模拟账户中使用。 主要优点 免费赠
Smart Gold Hunter
Barbaros Bulent Kortarla
4.05 (61)
No Grid / No Martingale / No Recovery / No Hedging / Single Entry with SL / One Shot Smart Gold Hunter 是一款用于 MetaTrader 5 上 XAUUSD / 黄金交易的专家顾问(Expert Advisor)。它专为那些喜欢无网格、无马丁格尔、具有真实止损和止盈逻辑以及可控风险管理的黄金 EA 的交易者而设计。 您可以在做决定之前查看实时信号: Live Main Signal : https://www.mql5.com/en/signals/2365400?source=Site Smart Gold Hunter 不是网格 EA,也不是马丁格尔 EA。它不依赖无限恢复仓位、对冲系统或亏损后加仓。其核心理念是以可控逻辑、保护设置和真实交易管理来交易黄金,而不是危险的加仓平均。 该 EA 主要针对 XAUUSD / 黄金设计。您可以在 XAUUSD 或您经纪商的黄金品种上使用,例如 XAUUSDm、GOLD 或类似名称。 经纪商条件对黄金交易很重要,因此建议使用低点差、低滑点、
Ultimate Breakout System
Profalgo Limited
5 (48)
重要的 : 此套装仅以当前价格限量发售。    价格很快就会涨到1999美元!   已包含 300 多种策略 ,更多策略即将推出! 额外福利 :  从我的其他 EA 中免费 选择 5 款!   所有设置文件 + 完整设置和优化指南 视频指南 实时信号 第三方评论 新增 - 44 种策略实时信号 欢迎来到终极突破系统! 我很高兴地向大家介绍终极突破系统,这是一款经过八年精心开发的复杂且专有的智能交易系统 (EA)。 该系统已成为MQL5市场上多款表现优异的EA的基础,其中包括备受赞誉的Gold Reaper EA。 它曾连续七个多月位居榜首,此外还有 Goldtrade Pro、Goldbot One、Indicement 和 Daytrade Pro。 终极突破系统并非仅仅是另一款EA(电子交易系统)。 它是一款专业级工具,旨在帮助交易者在任何市场和时间框架内创建无限数量的突破策略。 无论您是专注于波段交易、超短线交易还是构建多元化投资组合,该系统都能提供无与伦比的灵活性和定制化功能。 可能性无穷无尽! 对于自营交易公司的交易员来说:   有了这个系统,您终于可以创建自己独
Scalping Robot Pro MT5
MQL TOOLS SL
4.37 (157)
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
Aikon MT5
William Brandon Autry
Aikon 改变了您操作 Expert Advisor 的方式。 当前价格 — 接下来的 10 次购买 24 小时首发期现已结束。当前 Market 价格将在接下来的 10 次购买中保持不变。完成这 10 次购买后,价格将再次上调,并逐步接近最终价格 $4,997 。 快速开始。用自然语言与系统交流。选择交易如何承担风险。控制允许投入运作的资本规模。在整个运行过程中使用 AI,同时避免不必要的调用成本。 快速开始 — 第一次使用 AI?没问题。 Aikon 的设计目标是在保持强大深度的同时,不让首次设置变得复杂。 统一 AI 设置可以从一个提供商、一个模型和一个 API 密钥开始。第一次连接会自动为 Aikon 的主要智能角色完成基础配置。以后如有需要,您可以再使用高级模型路由。 Quick Start 随后提供三种方式: 使用一键优化的起始配置。 通过与 Ask Aikon 对话来建立设置。 直接自定义 Trading Constitution。 优化起始方案包括 Forex Single Entry with Stop Loss 、 Gold / XAUUSD Single Ent
ThunderGold Scalper
Jorge Luiz Guimaraes De Araujo Dias
4.59 (17)
ThunderGold Scalper ThunderGold Scalper 是一款专为 MetaTrader 5 黄金自动交易开发的智能交易系统。 该 EA 适用于 M15 周期的 XAUUSD 和 GOLD。系统通过专有的多因素决策引擎识别符合条件的交易机会,并自动管理交易仓位。 系统综合分析市场结构、趋势方向、K线质量、成交量、动量以及交易执行条件。它会耐心等待合适的市场环境,而不是持续频繁开仓。 Live Signal — TMGM 主要功能 专为 XAUUSD 和 GOLD 开发 推荐周期:M15 全自动交易 不使用网格策略 自动 Stop Loss 和 Take Profit 动态移动止损 按风险比例或固定手数计算仓位 趋势和动量过滤器 K线质量和成交量过滤器 高影响力新闻过滤器 节假日和市场关闭保护 滑点调整系统 每日交易次数限制和冷却机制 信息交易面板 针对 Exness 的自动点数调整 推荐交易条件 ThunderGold Scalper 对点差、滑点、流动性和执行速度较为敏感,因此经纪商的交易条件可能会显著影响结果。 该 EA 已在以下经纪商环境中进行测试: TM
GoldenShot
Adam Hrncir
5 (9)
Last copies at 169 USD  /   199 USD next  /   399 USD final price. The earlier you decide, the less you pay. Check the live signal   /   Read the manual  / Why are the back-test numbers that good - is it real or over-fitted? One shot. One target. Zero recovery. GoldenShot is a single-position gold EA built for controlled, long-term trading. It waits for a qualified setup, takes one clean shot with a real stop loss, and if the idea does not work, it manages the trade instead of rescuing it. No
Silent Exit MT5
Fajar Dicky Firmansyah
5 (6)
没有噱头。没有空洞的承诺。 Silent Exit 专为专注于单一目标的交易者打造: 稳定的表现 。  包含所有主要货币对:  EURUSD,USDCAD,USDJPY,NZDUSD,USDCHF,AUDUSD,GBPUSD 无论您是在努力通过 Prop 交易挑战 ,还是在管理客户资金,这款 EA 都能保持纪律性——并带来实际成果。 信号链接: https://www.mql5.com/en/signals/2388541 请记住,这是一个 100k 的 Darwinex Zero 账户,我并没有存入 100k,这个账户仅用于展示实时交易结果。 策略如何运作 成交量加速:   此功能可以检测成交量的快速变化,而这种变化通常预示着即将发生的突破。但这一次,我们加入了多个仅适用于主要货币对的指标。   策略如何运作 成交量加速:  与 Iron Stop 相同, 此功能可以检测成交量的快速变化,而这种变化通常预示着即将发生的突破。但这一次,我们加入了多个仅适用于主要货币对的指标。   正确的回测需要正确的配置! 联系我即可获取我的 .ini 文件 以及详细的配置说明。 注意: 目前该
Quantum King EA
Bogdan Ion Puscasu
4.96 (219)
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 对开发的全自动交易系统。 它将网格策略的结构与马丁格尔的自适应恢复逻辑相结合,形成了一个在所有市场阶段智能管理交易的系
Quantum Athena X
Bogdan Ion Puscasu
5 (11)
更智能的控制,更精准的操控。 欢迎来到 Quantum Athena X——新一代专注于黄金交易的系统,它在 Quantum Athena 的精准性、效率和纪律性执行的基础上更进一步。 Quantum Athena X 基于与 Quantum Athena 相同的精简核心引擎和精心挑选的 6 种策略构建而成。每项策略都针对当前的黄金市场状况进行了单独优化和改进,而全新的强大自定义模式则允许交易者精确选择启用或禁用哪些策略。 对于喜欢即插即用体验的交易者,原有的优化配置仍然可用;而对于想要创建自己个性化策略组合的交易者,自定义模式则提供了更大的灵活性。 IMPORTANT! After the purchase please send me a private message to receive the installation manual and the setup instructions. 折扣价   价格 。     每购买 10 件,价格将上涨 50 美元。最终价格为 1999 美元。 实时信号 IC Markets:       点击这里 Quantum A
Lizard
Marco Scherer
4.22 (50)
什么是 Lizard? Lizard 是一款用于 MetaTrader 5 平台 XAUUSD(黄金)的全自动智能交易系统。它采用多策略摆动突破系统:识别图表上的关键结构位,并在计算得出的入场点位挂出停止订单。 不使用马丁格尔,不使用网格,不在亏损时加仓。 每笔交易都带有明确的止损和止盈,随后由多层退出系统全天候管理,无需人工干预。 支持 我们团队分工明确:一部分成员负责开发,一部分成员负责客户支持。购买后,安装、设置及其他任何问题请联系我们的版主 Zolia: https://www.mql5.com/zh/users/zolia 实盘信号 三个账户,三种风险设置,相同的交易逻辑。运行结果公开可查: Normal Standard: https://www.mql5.com/zh/signals/2372821 ECN High: https://www.mql5.com/zh/signals/2383392 ECN Armageddon: https://www.mql5.com/zh/signals/2386457 工作原理 Lizard 在一小时周期上持续扫描 XAUUSD 图
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
Zerqon EA
Vladimir Lekhovitser
3.47 (34)
实时交易信号 交易活动的公开实时监控: https://www.mql5.com/zh/signals/2372719 官方信息 卖家资料 官方频道 用户手册 安装说明和使用指南: 查看用户手册 Zerqon EA 是专为 XAUUSD 交易开发的自适应专家顾问。 该策略基于通过 ONNX 集成的 Deep LSTM 神经网络模型,使系统能够处理连续性的市场行为并以结构化方式分析价格动态。 该模型专注于识别黄金价格走势、波动性以及时间条件中的特定模式。 与传统固定信号不同,EA 通过训练后的神经网络框架分析市场,仅在内部模型识别到合适条件时才执行交易。 Zerqon EA 不会持续不断地进行交易。 某些时期可能完全没有任何交易,而在适合的 XAUUSD 市场阶段,系统可能会在较短时间内执行多笔交易。 每笔交易均带有预定义的 Stop Loss 和 Take Profit 参数。 同时还使用追踪止损机制来动态管理持仓。 该 EA 适用于偏好基于神经网络的黄金交易方式、重视执行控制以及接受可变交易频率的用户。 主要特点 不使用高风险交易技术,如马丁格尔 (M
Cepheus
Thierry Ouellet
5 (1)
LIMITED LAUNCH SPECIAL: 149 USD (Next Tier: 199 USD / Final Price: 399 USD) Price automatically increases by +50 USD every 10 licenses sold .  User manual Live signals Cepheus Loyalty Cepheus Discipline Cepheus Ultimate (both breakout engines Two Synergistic Engines. Zero Grid. Zero Martingale. Defined Risk. Cepheus is a dual-engine algorithmic trading system developed specifically for XAUUSD (Gold) . Instead of relying on a single trading model, Cepheus combines two independent strategies des
TwisterPro Scalper
Jorge Luiz Guimaraes De Araujo Dias
4.4 (139)
更少交易。更好交易。稳定性高于一切。 • 实时信号 模式 1 实时信号 模式 2 Twister Pro EA 是一款专为 XAUUSD(黄金)M15 时间框架开发的高精度剥头皮智能交易系统。交易次数少——但每次交易都有目的。 每笔入场在开仓前须通过 5 个独立验证层,默认配置下胜率极高。 两种模式: • 模式 1(推荐)— 极高胜率,每周交易次数少。专为资金保护和纪律性交易而设计。 • 模式 2(短止损)— 止损幅度显著缩短,交易次数多于模式1。每笔亏损极小。适合希望在受控风险下增加市场曝光的交易者。 规格参数: 交易品种:XAUUSD | 时间框架:M15 最低入金:$100 | 推荐:$250 RAW SPREAD 账户必须使用 强烈推荐 VPS 无网格!每笔交易均设有止盈和止损! 推荐券商: Exness Raw | Vantage | Fusion Markets 购买后发送消息即可获得: 完整用户指南 专属奖励 过往业绩不代表未来结果。请理性交易。
Cortex IDX
Vladimir Mametov
4 (8)
这是一款专为 MetaTrader 5 平台打造的全自动智能交易系统(Expert Advisor,EA),专门针对 US30(道琼斯工业平均指数) 交易进行了深度优化。交易逻辑结合了美国股指的典型市场特征,包括趋势行情、盘中回调以及高波动阶段,能够自动完成信号识别、开仓、持仓管理和离场操作。 EA 的核心理念是让盈利单尽可能持续运行,同时严格控制亏损风险。盈利仓位可通过智能移动止损(Trailing Stop)持续跟随趋势;当持仓出现亏损且 M1(1 分钟)周期检测到反向信号时,系统可自动提前离场,以减少不必要的回撤。 https://www.mql5.com/en/signals/2376781 产品理念 本 EA 专为希望实现 US30 全自动交易的投资者设计,采用趋势跟随结合回调入场的交易策略,在市场已有明确方向时寻找更优的进场位置,而不是盲目追涨杀跌。 盈利订单可采用 移动止损 持续跟随行情,在锁定利润的同时尽可能捕捉更大的趋势;如果交易者更喜欢固定目标,也可切换至 固定止盈(Take Profit) 模式。 对于亏损订单,EA 会持续监测 M1 周期的价格变化。当市场出现明
Gold Bomb
Aleksandr Makarov
5 (1)
该智能交易系统基于我的  原创指标 ,没有任何  人工智能  或其他废话。 仅仅是指标组合、水平位和价格行为的结合。 不使用危险的交易方法, 适用于   XAUUSD M1  而且還有貨幣對! 始终设置   止损   和   止盈 。 实盘信号: https://www.mql5.com/en/signals/2388322 購買後請務必聯繫我,並將您的交易帳號發送給我以啟動該智慧交易系統!未經我許可,請勿自行使用! -------------------------------- Installation instructions:   Click 特别首发价格:当前价格仅对前 10 份有效。售出 10 份后,价格将上涨至  999$ 技术规格: 交易品种:   XAUUSD   时间周期:   M1 最低建议入金   200 $( 最好 500$) 杠杆:   1:500 账户类型:   任意 经纪商 :   任意经纪商,但最好点差较低 强烈建议使用 VPS 优势: 无马丁格尔 不使用危险的交易方法 每笔订单均设止损和止盈 在真实市场上回测结果稳定 对经纪商条件不敏感
Scalping Index Pro MT5
MQL TOOLS SL
5 (3)
Scalping Index Pro is a professional trading system designed specifically for fast and precise scalping on US30 and DE40 using the M1 timeframe . The system has been developed specifically for the unique behavior of major stock indices, focusing on short term price movements, rapid momentum changes, market volatility, and selective grid based trade management techniques to identify high probability trading opportunities . Scalping Index Pro is optimized for traders who prefer dynamic trading wit
Gold Snap
Chen Jia Qi
4.57 (23)
Gold Snap — 黄金快速利润捕捉系统 Gold Snap v2.1上线优惠:前10份(只剩7)无限许可证仅售599美元,并免费赠送一款内部EA供个人使用。售完或满7天即结束,以先达成者为准。原价999美元。 实盘信号: https://www.mql5.com/en/signals/2362714 实盘信号2: https://www.mql5.com/en/signals/2372603 实盘信号 3: https://www.mql5.com/en/signals/2379945 重要: 购买后,请通过MQL5私信联系我们,以获取用户指南、推荐设置、安装与使用说明、赠品EA领取信息及后续更新支持。您也可以在产品评论区留言,我们会主动与您联系。 https://www.mql5.com/en/users/walter2008 欢迎加入我们的 MQL5 频道,获取产品更新与交易见解。 https://www.mql5.com/en/channels/tendmaster 在 Gold House 的长期研发与实战验证中,我们进一步确认了突破策略在黄金市场中的有效性,也验证了我
The Gold Space
Ayush V Jain
5 (6)
LIVE SIGNAL REACHED NEW HIGH Live Signal on Vantage https: // www.mql5.com/en/signals/2378090 https: // www.mql5.com/en/signals/2378091 live signal is running mode/option 1 with autolot 2 % risk. Join telegram group   https://t.me/+UaALtDiYMb4xYTk1 Overview:  The Gold Space is a fully automated, professional-grade Expert Advisor specifically engineered for the XAUUSD (Gold) market. Designed natively for MetaTrader 5, this EA capitalizes on high-probability volatility expansions using a precise,
Swing Forge Gold
Hanzla Khalil
5 (4)
SwingForge Gold MT5 — Multi-Zone Breakout Engine 4 Copies left then the price will be increased to: $299 — Current Price: $249 If you’ve traded Gold (XAUUSD), you already know the problem: most automated EAs rely on dangerous grids, martingale, or cost-averaging that look great until one big trend wipes out the account. SwingForge Gold was built on the opposite philosophy: strict risk management and pure price action. It trades confirmed swing breakouts using pending stop orders. Every sin
Smart Gold Impulse
Barbaros Bulent Kortarla
4 (24)
无网格 / 无马丁格尔 / 无DCA / 无恢复 Smart Gold Impulse现已在特别早期启动阶段可用。 您可以在此处关注信号结果以供参考, https://www.mql5.com/en/signals/2390103 。结果可能因经纪商、账户类型、滑点、点差条件和VPS设置而有显著差异。当前运行信号账户的设置文件和实时聊天访问链接将仅在买家从评论区发送简短评论后与Smart Gold Impulse买家共享。 同时,这仍然是一个启动版本,而不是完全大规模推广的最终产品。特殊启动价格的原因很简单:我希望早期用户测试它,关注结果,分享反馈,并帮助我了解Smart Gold Impulse在不同经纪商和账户条件下的表现。 请严格按照指南操作,首先从演示设置文件开始,有信心后使用入门设置文件,如果一切顺利,您可以测试信号设置文件。 买家将被邀请加入一个专门的改进小组,我们将在那里一起讨论经纪商结果、设置、更新、设置文件和未来的改进。 每个经纪商在点差、执行、滑点和交易条件方面可能有不同表现。这就是为什么该EA在后期转向常规市场价格之前先以有限的启动价格发布。 早期买家可以享受启
SomaGold
Andrii Soma
5 (10)
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
Range Breakout EA with Range Filters
Jimmy Peter Eriksson
4.58 (24)
更新:下一价格:599 美元,最终价格:999 美元 如果您重视诚实和为真实交易而构建的真正交易系统,而不是一个看起来完美无瑕但最终可能导致账户爆仓的直线回测,那么这可能适合您。 无马丁格尔/无网格 22个月实时信号 +300% 实时增长 【实时信号】    |  【FTMO 结果】    |  【主投资组合】  |  【回测指南】 为什么 Range Breakout EA 如此稳定? Range Breakout EA 基于一种众所周知的市场行为:交易时段之间的波动性变化。 亚洲交易时段的波动性通常较低,形成一个狭窄的价格区间。伦敦交易时段开盘后,波动性增加,价格往往会突破该区间 并继续朝突破方向移动。 该系统会交易这种突破,并在当天晚些时候波动性开始减弱时平仓。 它不使用指标或固定时间框架,这有助于减少过拟合。系统内部使用突破过滤器来避免低质量的突破交易。 该策略在 XAUUSD、USDJPY、BTCUSD、US30 和 DE40 等货币对上表现尤为出色。 同时交易多个市场可以实现强大的分散风险能力。 加入社区! 公众社区:  点击这里! 请私信我并附上购
作者的更多信息
BTC Jump
Ranaweera Wanasinghe Herath Bandara
5 (1)
BTC Jump is a breakout Expert Advisor developed for Bitcoin against the US dollar. Once per trading day it places a single stop order at the previous day's extreme and waits for the market to reach that level. If the level is reached during the session, the order becomes a position that is managed by a volatility-based stop loss, a fixed take profit and a trailing stop. If the level is not reached, the order is removed at the end of the trading window and no trade is taken that day. The Expert A
FREE
Multi jump
Ranaweera Wanasinghe Herath Bandara
MULTI JUMP — Daily Breakout EA for Crypto, Metals and Indices Multi Jump waits for the market to leave yesterday's range. Once per day, at a time you choose, it arms a Buy Stop at the previous day's high and a Sell Stop at the previous day's low. If price never reaches a level, nothing is traded that day and the pending orders are removed at the end of the window. If price does break out, the opposite order is cancelled immediately and the position is handed to the management engine. Everythi
FREE
Push Capture
Ranaweera Wanasinghe Herath Bandara
PUSH Capture A multi-symbol portfolio EA — engineered by a developer, refined by a trader. PUSH Capture is a fully automated portfolio Expert Advisor that trades a diversified basket of major markets from a single chart. Instead of relying on lagging indicators or reacting to every tick, it follows a disciplined, time-driven framework — entering, managing, and exiting positions according to a defined plan, with the patience and consistency that manual trading rarely achieves. A true portfolio a
Ram 2 point 5 B 12
Ranaweera Wanasinghe Herath Bandara
Multi-Symbol Trend Pyramid EA — structure-based stops, volatility-filtered entries Overview A systematic, multi-symbol trend-following Expert Advisor. It trades a configurable basket of instruments from a single chart, entering only in the direction of the higher-timeframe trend, on controlled pullbacks, and only when volatility is in a tradable range. Winners are managed with a structure-based stop, breakeven protection, and a Chandelier trailing stop, with optional pyramiding into established
VG Indicator
Ranaweera Wanasinghe Herath Bandara
VG INDICATOR Three independent strategy engines read every closed bar. They vote. Only when they agree does VG Indicator print a signal -- and it tells you exactly how strong that agreement was. Most signal indicators give you an arrow and nothing else. VG Indicator gives you the arrow, the entry price, the stop, a three-level target ladder, a graded confidence score, and a live dashboard that scores its own past calls on your chart, from your broker's own price history. -------------------
Grid people ea mt5
Ranaweera Wanasinghe Herath Bandara
GRID PEOPLE — Built for Consistency, Tuned for AUDCAD and AUDNZD (M5) (Live signal is only using AUDCAD) If you're here, you already know the appeal of grid trading: smooth equity curves, frequent wins, and a system that works   with   the market's natural ranging behavior instead of fighting it. GRID PEOPLE is crafted for traders who want that consistency — without flying blind. This EA is engineered around disciplined money management and built-in protection, not just raw grid logic: What's un
筛选:
无评论
回复评论