GapHunter EA

GapHunter EA — Gap Trading Expert Advisor for MT5

Overview

GapHunter EA is an automated trading system for MetaTrader 5 that specializes in trading price gaps at market open. The EA compares the previous day's D1 closing price with the current session's opening price, and if a gap of sufficient size is detected, it immediately enters a trade in the direction of the gap fill (i.e., expecting the price to return to the previous close level).

Gap fills are a well-documented market phenomenon: according to statistical research covering 797 weeks (2010–2025), weekend gaps in major forex pairs fill approximately 65–80% of the time, often within the first few hours of the trading session.

Key principle: The EA does NOT wait for a bar to close to detect a gap. Detection occurs on the very first tick with an acceptable spread after the session opens — this ensures the fastest possible entry.

Key Features

  • Instant gap detection — compares prevDayClose vs. current Bid/Ask on first tick, no bar close needed
  • Session-aware — reads broker trading sessions directly from MT5 symbol specification via SymbolInfoSessionTrade , no manual time settings required
  • Virtual Breakeven (VBE) — moves SL to breakeven in memory only, avoiding broker stop-level restrictions on small distances
  • Partial Close — closes a portion of the position at a configurable % of the path to TP, locking in profit while keeping the trade open
  • 4 Take Profit modes — gap fill, fixed points, ATR-based, auto S/R level
  • 3 Stop Loss modes — none, fixed points, ATR-based
  • Day of week filter — trade all days, Monday only (weekend gaps), or skip Monday
  • Reinvest mode — automatically scales lot size as free margin grows
  • Auto lot by risk % — calculates lot based on SL distance and risk percentage of balance
  • Margin check — always checks available free margin before opening, cancels trade with log message if insufficient
  • Universal filling mode detection — automatically selects FOK, IOC, or RETURN based on broker specification
  • Crash-safe state recovery — all state stored in memory; after any restart (connection loss, TF change, recompile) the EA recovers from terminal data without files
  • Force close by schedule — closes position at a configurable server time (e.g., end of trading day)
  • 1-trade-per-session discipline — gap is checked exactly once per session; no re-entries

Input Parameters

Set Info

Parameter Default Description
SetInfo "" Free-text label for this set of parameters. Informational only — has no effect on trading logic. Useful for identifying configurations in screenshots or reports.

Gap Settings

Parameter Default Description
MinGapPoints 100 Minimum gap size in points to trigger a trade. Gaps smaller than this are ignored as market noise.
MaxSpreadPoints 20 Maximum allowed spread in points at the moment of entry. If the spread is wider, the EA waits for the next tick. This is the only "pause" mechanism — no timer-based delay.
GapWindowMinutes 120 How many minutes after session open the EA will still consider entering. If the spread remains wide for longer than this window, the session is skipped.
DayFilter DAY_ALL DAY_ALL — trade gaps on any day. DAY_MONDAY_ONLY — only trade Monday gaps (formed over the weekend; statistically the highest fill rate). DAY_SKIP_MONDAY — trade intra-week gaps, skip Monday.

Take Profit / Stop Loss

Parameter Default Description
TPMode TP_GAP_FILL TP_GAP_FILL — TP order placed at prevDayClose level + manual tick-by-tick check as backup. TP_FIXED_POINTS — fixed distance in points. TP_ATR_RR — ATR × ATR_TP_Multiplier . TP_AUTO_LEVEL — nearest swing high/low on AtrTimeframe ; falls back to gap fill if no level found.
SLMode SL_ATR SL_NONE — no stop loss (use with VBE for protection). SL_FIXED_POINTS — fixed distance. SL_ATR — ATR × ATR_SL_Multiplier .
TP_Points 150 TP distance in points. Used only when TPMode = TP_FIXED_POINTS .
SL_Points 75 SL distance in points. Used only when SLMode = SL_FIXED_POINTS .
AtrTimeframe PERIOD_D1 Timeframe used for ATR calculation and auto S/R level search.
ATR_Period 14 ATR indicator period.
ATR_TP_Multiplier 2.0 ATR is multiplied by this value to get the TP distance.
ATR_SL_Multiplier 1.0 ATR is multiplied by this value to get the SL distance.
AutoLevel_LookbackBars 100 Number of bars to look back when searching for the nearest swing high/low for auto TP.
AutoLevel_MinDistPts 20 Minimum distance in points from current price to the found S/R level. Levels closer than this are ignored.

Partial Close

Parameter Default Description
UsePartialClose true Enable or disable partial close.
PC_TriggerPct 50.0 When price has traveled this percentage of the distance from entry to TP, partial close is triggered. Example: entry at 1.1000, TP at 1.1100 → trigger at 50% = 1.1050.
PC_VolumePct 50.0 Percentage of the current position volume to close at the trigger level. Example: 0.02 lot position, 50% → close 0.01, keep 0.01. The remainder continues with VBE and TP. Fires exactly once per trade.

Virtual Breakeven

Parameter Default Description
UseVirtualBE true Enable or disable virtual breakeven.
VBE_ActivationPct 50.0 Percentage of path from entry to TP at which the VBE level is set. Can equal PC_TriggerPct — partial close fires first, then VBE is activated for the remainder.
VBE_CompensationPoints 5.0 Points added to (BUY) or subtracted from (SELL) the entry price to cover spread and commission costs. Set this to: spread in points + (commission per lot × 2) converted to points. Example: 2 pt spread + 1.5 pt commission each way = 5 points.

How VBE works:

  • No physical SL is moved. The EA stores the breakeven level in memory.
  • BUY: VBE level = open_price (Ask) + VBE_CompensationPoints × point — monitors Bid
  • SELL: VBE level = open_price (Bid) − VBE_CompensationPoints × point — monitors Ask
  • If price returns to the VBE level, the EA closes the position manually via market order.
  • After any EA restart (connection loss, TF change, recompile), VBE is re-armed: the EA waits for price to reach the threshold again before activating. This is safer than guessing the current context.

Money Management

Parameter Default Description
LotSize 0.01 Fixed lot size. Used when UseAutoLot = false . Also serves as the base lot for reinvest scaling.
UseAutoLot false Calculate lot automatically based on risk % and SL distance. Requires SLMode ≠ SL_NONE .
RiskPercent 1.0 Risk per trade as a percentage of account balance. Used only when UseAutoLot = true .
UseReinvest false Enable reinvest mode. Multiplies the lot by floor(FreeMargin / StartDeposit) .
StartDeposit 1000.0 Reference free margin amount. When free margin doubles, the lot doubles. Multiplier is always ≥ 1 — lot never drops below base on drawdown. Compatible with both fixed and auto lot modes.

Session Close

Parameter Default Description
ForceCloseHour 22 Server time hour for forced position close. Set to 0 to disable (together with minute).
ForceCloseMinute 0 Server time minute for forced position close.

System

Parameter Default Description
MagicNumber 77701 Unique identifier for this EA's positions. Use different values when running multiple instances. Also included in the order comment: "GapHunter v2.5 #77701" .
SlippagePoints 10 Maximum price deviation (slippage) allowed when executing a market order. If the broker cannot fill within this range, the order is rejected. For gap trading at session open (wider spreads, lower liquidity), a value of 15–30 points is recommended for major pairs.

How It Works — Step by Step

  1. Session opens — SymbolInfoSessionTrade detects the new broker session for the current symbol and day.
  2. Day filter — if DayFilter excludes today, the session is skipped immediately.
  3. Spread check — on the first tick with Spread ≤ MaxSpreadPoints , the EA proceeds. No timer wait.
  4. Gap detection — prevDayClose = D1 Close[1] is compared to current Bid (for gap up) or Ask (for gap down). If gap ≥ MinGapPoints , a trade is opened immediately. If no gap — session is marked done, no re-entry.
  5. Trade management — the EA monitors the open position each tick:
    • Partial close fires at PC_TriggerPct % of the path
    • VBE activates at VBE_ActivationPct % and closes if price reverses to the BE level
    • Gap fill (TP_GAP_FILL): manual close when Bid/Ask reaches prevDayClose
  6. Force close — at ForceCloseHour:ForceCloseMinute all own positions are closed
  7. New session — state resets automatically on the next session open

Usage Examples

Example 1 — Conservative (Monday gaps, gap fill TP, ATR SL, VBE protection)

DayFilter = DAY_MONDAY_ONLY MinGapPoints = 150 MaxSpreadPoints = 15 TPMode = TP_GAP_FILL SLMode = SL_ATR ATR_Period = 14 ATR_SL_Multiplier = 1.0 UseVirtualBE = true VBE_ActivationPct = 50 VBE_CompensationPoints = 5 UsePartialClose = true PC_TriggerPct = 50 PC_VolumePct = 50 LotSize = 0.01 ForceCloseHour = 22

Best for: EURUSD, GBPUSD, USDCHF on Monday morning.

Example 2 — Balanced (all days, ATR TP and SL, partial close)

DayFilter          = DAY_ALL
MinGapPoints       = 100
TPMode             = TP_ATR_RR
ATR_TP_Multiplier  = 2.0
SLMode             = SL_ATR
ATR_SL_Multiplier  = 1.0
UsePartialClose    = true
PC_TriggerPct      = 50
PC_VolumePct       = 50
UseVirtualBE       = true
VBE_ActivationPct  = 60
UseAutoLot         = true
RiskPercent        = 1.0

Example 3 — Reinvest mode (growing account)

LotSize = 0.01 UseReinvest = true StartDeposit = 500.0 // Free margin $500 -> lot 0.01, $1000 -> lot 0.02, $1500 -> lot 0.03, etc.

Important Notes

  • The EA is designed to run one instance per chart symbol. Use separate charts for each instrument.
  • Attach the EA to any timeframe — it does not use the chart timeframe for gap detection (always D1).
  • After any restart (connection loss, recompile, TF change), the EA automatically recovers its state from open positions in the terminal. No files are written.
  • The order comment format is "GapHunter v2.5 #<MagicNumber>" , making positions identifiable in history and reports.
  • For gap trading, always verify broker's session open times in the symbol specification. The EA reads these automatically.

Recommended Symbols (Forex)

Priority Symbols Reason
⭐⭐⭐⭐⭐ EURUSD, GBPUSD, USDCHF Highest gap fill rate (~75–80%), tight spreads
⭐⭐⭐⭐ USDJPY, AUDUSD Good fill rate, moderate volatility
⭐⭐⭐ USDCAD, NZDUSD, EURJPY Acceptable fill rate, wider gaps
⭐⭐ GBPJPY, XAUUSD Large gaps but less predictable fill

推荐产品
The Fortress: Ultimate Discipline & Risk Manager: "The Holy Grail of trading isn't a strategy—it's Discipline." Every trader knows the feeling: you have a great plan, but then  emotion takes over. You over-leverage, you revenge trade after a loss, you move your Stop Loss, or you "change your mind" about a pair mid-day. The Fortress was created to solve the "Human Element." It is not a signal generator; it is a  Hard-Rule Execution Manager. It acts as a digital supervisor that monitors your accou
SY Gold Breakout Engine
Sam Anthony R Young
SY - Gold Breakout Engine No martingale. No grid. No recovery systems. Smart Breakout Trading for Gold SY - Gold Breakout Engine is an automated trading system designed to capture high-probability moves on XAUUSD using a structured breakout approach. The EA identifies key levels from both the previous daily High/Low and the London session range, placing pending orders to enter the market only when price breaks out with momentum. Built with integrated risk management, trailing logic, and equi
CloudPiercer EA
Jhay Are Budomo
CloudPiercer EA Ichimoku-Based Expert Advisor for MetaTrader 5 Product Information Price: 30 USD Symbol: USDJPY Recommended timeframe: M5 Overview CloudPiercer EA is an Expert Advisor for MetaTrader 5 based on the Ichimoku Kinko Hyo trading system. It is designed to identify trend-following opportunities on USDJPY by analyzing price interaction with the Ichimoku components. The EA applies predefined rules for entry, exit, and trade management, allowing fully automated operation without manual in
FlashTrader Pro - 外汇剥头皮交易专家顾问   总体描述 FlashTrader Pro   是一款专为外汇市场 剥头皮 和 短线交易 设计的自动化交易专家顾问。该EA通过监测价格剧烈波动,在满足预设时间和波动率条件时自动开仓。 该系统采用 小型订单网格策略 ,配备 移动止损功能 以锁定利润,并包含 点差监控系统 以降低交易成本。特别优化适用于 低点差货币对 ,如欧元/美元和英镑/美元。   专家顾问设置 1. 风险管理参数 参数 说明 最大点差 允许的最大点差(点)。当实际点差超过此值时暂停交易。 止损 止损点数(设为 0 表示不使用止损)。 移动止损 移动止损距离(点)(设为 0 表示禁用此功能)。 自动手数 设为 true 时启用自动手数计算,设为 false 时使用固定手数。 固定手数 固定交易手数(当自动手数设为 false 时生效)。 风险比例 账户余额的风险百分比(当自动手数设为 true 时生效)。 2. 入场条件配置 参数 说明 分析周期 价格波动分析的时间窗口(秒)。 最小波动 触发交易执行的最小价格波动要求(点)。 3. 订单管理设置
Recovery Boost Pro
Antonis Michos
5 (7)
Source code available also.(Only serious offers) Advanced Recovery & Trading EA – Unmatched Flexibility and Control: The EA is used for recovering trades from other EAs that came into DD(Drawdown) or your manual trades as well. This EA is a feature-rich, precision-designed trading tool that offers capabilities far beyond what typical Expert Advisors provide. Designed for traders who demand adaptive strategies and robust risk control , this EA gives you complete power over every aspect of yo
Neopips Engine EA
Md Billal Hossain
NeoPips Engine EA – 终极交易革命已然到来! “交易的真正力量在于洞察他人所忽略的。NeoPips Engine 不随波逐流,而是掌控市场。” 关于 NeoPips Engine EA:您的智能交易盟友 NeoPips Engine EA 并非普通的交易机器人。它是一款多维度、AI 优化的专家顾问,专为追求精准度、适应性和长期表现的交易者打造。 与那些规则僵化的过时机器人不同,NeoPips Engine 是一种动态策略——它会实时思考、学习并适应市场。 这不仅仅是自动化,更是一场持续的进化。 更上一层楼的智能:让您自由发挥的核心功能 人工智能决策 动态模式识别 预测趋势分析 基于实时数据的智能进出逻辑 多引擎策略核心 – 四种模式,同一个目标:赢。 NeoPips 引擎会根据实时信号自动切换引擎: 剥头皮模式 – 捕捉快速波动的爆发 波动模式 – 瞄准长期趋势阶段 突破模式 – 在重大经济新闻发布时激活 ️ 安全守护模式 – 在市场波动时介入 效果:无缝过渡,在所有市场阶段
TechRiven EC Pro EA
Md Ariful Moula Chowdhury
TechRiven EC Pro — 智能、快速、灵活的自动交易系统 TechRiven EC Pro   是一款强大的自动交易系统,在市场条件最有利时能够快速精准地开仓。 它能够智能地适应   当前的市场波动性 ,即使在剧烈波动的市场环境中,也能保持稳定盈利。 经过验证的业绩表现 多年回测结果显示,TechRiven EC Pro 在不同市场阶段都能保持   持续稳定的盈利能力 。 即使面对剧烈的市场变化,它也能实现   快速恢复与稳定表现 。 操作简单,轻松上手 该EA经过精心设计, 用户友好、无需复杂设置 。 只需安装并将其加载到图表上,就能自动开始交易。 购买后,请给我发送   私信 ,以获取   最新优化设置   和   详细安装说明 。   限时优惠活动 TechRiven EC Pro   现正以   特别折扣价   发售! 不要错过以超值价格获得高性能EA的机会。   最终价格:   $999   限时优惠,抓紧时间购买! ️   推荐设置 账户类型:   对冲账户 (Hedge) 执行类型:   ECN(ECN账户点差极低,这对提高利润非常重要)
Bobot Scalper Gold
Richard Tolentino
BoBot Scalper —— 趋势剥头皮的新纪元已经到来。 如果你交易 XAUUSD、指数 或 高速波动的货币对 —— 这个 EA 就是为你打造的。 BoBot Scalper 采用增强版 MACD/LWMA 引擎 ,能够比大众更早捕捉真正的趋势延续信号。 它反应迅速,风险控制干净利落,并通过 阶梯式货币追踪止损 来锁定利润——这是剥头皮 EA 中最聪明、最稳定的方式之一。 它 不使用马丁策略 。 它 不使用网格策略 。 它 不会乱发交易单 。 相反,它只会在以下条件成立时开仓: 出现清晰的 MACD 趋势信号 价格确认方向 你的资金条件允许安全加仓 这让你能够享受趋势加仓的优势,而不会让账户过度暴露风险。 为什么交易者喜欢 BoBot Scalper :  强势入场,反应极快 设置简单,逻辑清晰 支持 M1 —— 天然为剥头皮而生 超安全,严格遵循账户权益规则 轻量、流畅、稳定 如果你想要的是 聪明、纪律严明的剥头皮 EA ,而不是赌徒式系统—— BoBot Scalper 正是为你准备的。
The Scalper Pro
Sahib Ul Ahsan
The Scalper Pro Advanced Multi-Strategy Scalping Expert Advisor The Scalper Pro is a high-precision automated scalping system designed for traders who require fast execution, structured logic, and controlled risk. It combines multiple price-action strategies with advanced trade and basket-level management to create a flexible solution for short-term trading. Built for performance and stability, the EA focuses on identifying intraday price movements and executing trades with disciplined managemen
GbpUsd Range Break Breakout EA
Ray Pracious Chidhungwana
Master the London Breakout: Automate Your Edge with GBPUSD Twilight OB EA GBPUSD Twilight OB EA GBPUSD Twilight OB EA is a robust, precision-engineered Expert Advisor tailored for traders seeking to exploit early London session breakouts. It harnesses a sophisticated blend of range-based logic, advanced order block detection, and price action confirmations to deliver high-probability trade entries. This EA is meticulously optimized for the GBPUSD pair on the M1 timeframe , automatically pinpoin
Brent-WTI Statistical Arbitrage EA Overview Brent-WTI Statistical Arbitrage EA is an automated trading system designed to trade the price relationship between Brent and WTI crude oil instruments. The strategy focuses on statistical divergence and mean reversion behavior between the two markets. The EA monitors spread conditions, detects abnormal deviations, and opens positions when the probability of reversion meets the defined entry criteria. It is built for traders who want a structured inter
Patient Monarch
Jasper Lagasca
PATIENT MONARCH EA v2.10 — Smart Grid Trading with Multi-Layer Protection by Jasper Clark Lagasca OVERVIEW Patient Monarch is a fully automated grid Expert Advisor that uses a proprietary mean-reversion entry system combined with 10 built-in drawdown protection layers. Unlike aggressive grid EAs that blow accounts, Patient Monarch is designed with patience at its core — it waits for high-pr
Radiant MT5
Sigit Hariyono
Radiant EA is a fully automated trading advisor that utilizes complex algorithms and a variety of strategies, primarily based on various indicators for entry and a Multi-Layer Perceptron (MLP) as a trend filter. It works by first identifying prevailing trends using the MLP, then using various strategies based on these indicators to execute trades. Why using multi-strategy? A multi-strategy enhances capital protection and smooths equity curve by deploying diverse trading systems such as trend-f
Gold Morning
Roberto Mubonane Muiambo
Tested on XAUUSD 1H from 2023.05.01 to 2025.12.17, showing 830% in Profits with stable equity growth and minimal drawdowns. This EA is designed for clean, low-frequency execution on the 1-hour chart, targeting high-quality entries with minimal noise.  Ideal for traders who value clarity, control, and consistency. Advantages 1. Signal Time Control. 2.  Duplicate trade control : Prevents overexposure by blocking repeated entries. 3.  Robust Fixed Ratio Money Management. 4.  Controlled Growth :
Trillion Pips Polaris EA
Sivaramakrishnan Natarajan
TRILLION PIPS POLARIS EA MT5 Expert Advisor – Precision. Protection. Performance. Built from 12+ years of real market experience , Trillion Pips Polaris EA is a professional automated trading system designed for traders who want structured execution, controlled risk, and intelligent trade management in real market conditions. Polaris EA is developed with a disciplined trading approach, advanced filters, and automated trade handling to support consistent execution without emotional decision-maki
TimeLS
Kaloyan Ivanov
"基于时间的MetaTrader专家顾问 TimeLS - Time Long Short 概览 我们的基于时间的专家顾问旨在为交易者提供精确的市场时机优势。该专家顾问可以同时处理多空两个头寸,甚至可以同时开设这两种头寸,为您提供无与伦比的灵活性。 主要特点: 1. 特定时间交易:      - 定义开仓和平仓的准确小时和分钟,允许您围绕市场时间、新闻事件或特定交易时段进行战略规划。 2. 动态头寸:     - 根据您的交易策略选择开设多头、空头或这两种头寸。 3. 风险管理:     - 以点数设定自定义的获利和止损水平,使得风险管理变得量身定制。 4. 头寸大小控制:     - 决定您想要以手数打开的头寸大小,使您完全掌控您的敞口。 5. 自动平仓:     - 选择在特定时间平掉所有开放头寸的选项,确保您的交易窗口外没有头寸保持开放。 参数: - TimeToOpenHours 和 TimeToOpenMinutes:定义开仓的时间。 - TimeToCloseHours 和 TimeToCloseMinutes:指定平仓的时间。- “CloseAllPo
EA Scalp EDay required set file Be sure to contact me after purchase for personalized recommendations and a personal bonus! - Is a scalping system on strong price levels. One of the oldest strategies, modernized and updated for the current market. The strategy does not require any optimization. You should just install the set file and run it according to the recommendations. Advantages of EA Scalp EDay: - Optimal SL/TP ratio. - Low SL, which makes the system as safe as possible. - Every ord
Zenova
Rex Velos
Zenova – Futuristic Zen Trading for EURUSD H1 (Introductory Release) Discover the calm power of disciplined, patient trading. Slowly but surely. Zenova is a premium Expert Advisor meticulously crafted and extensively tested exclusively for the EURUSD pair on the H1 timeframe . It combines precise trend detection (ADX strength + RSI divergence filters) with intelligent price action confirmation to enter only high-probability, slow-moving trends—delivering a proven win rate of ~89% and a solid pro
USD pro
Roberto Mubonane Muiambo
Currency EURUSD Timeframe 1H  PRO EA as a price action–based Expert Advisor that can be tuned to work on any Forex currency pair, timeframe by adjusting its settings. With flexible parameters, you can adapt USD PRO EA to trade any Forex symbol by simply adjusting the settings. With the Time Limit Settings, you have full control over when the EA is active. This allows you to fine‑tune trading sessions to match the most liquid and profitable market hours. The Max Trades Per Day setting allow
Atlas Gold Grid
Natthan Puengklan
### Atlas Gold Grid — Steady Cashflow Grid EA for XAUUSD **Atlas Gold Grid** is a fully automated grid-based Expert Advisor designed specifically for XAUUSD (Gold). It focuses on generating consistent cashflow with a low-risk approach, suitable for traders who prefer steady account growth over aggressive high-risk strategies. --- #### Key Features - **Automated Grid Trading** — Opens and manages grid orders automatically based on market conditions. No manual intervention required. - **Buil
EquityReboundEA
Rishat Tuktamyshov
Equity Rebound Portfolio EA Portfolio Expert Advisor for large-cap stocks and stock CFDs Live monitoring A live MQL5 signal is available for this Expert Advisor: Live MQL5 Signal The signal can be used to observe the EA’s real-time trading behavior, execution, drawdown dynamics and current portfolio performance. Backtests and live monitoring do not guarantee future results. They are provided for research and evaluation purposes only. Overview Equity Rebound Portfolio EA is a multi-symbol Expert
PlanB EA - Advanced XAUUSD Grid System LAUNCH PROMOTION: $30 for the first 5 copies! (After the first 5 sales, the price will automatically increase to $99 to limit the number of users and protect the trading edge). PlanB EA - Advanced Volatility-Adjusted Trading System for XAUUSD The retail algorithmic trading space is flooded with aggressive Grid and Martingale bots that show massive, straight-line profit curves in backtests, only to completely blow up real accounts during the first major m
Ride Trend
Kambiz Shahriarynasab
Only gold and bitcoin can be profitable. Trade time is 30 minutes and trend time is 1 hour. You should check the efficiency of this robot at the end of three months. Strong trends make very good profits. There are many inputs for your personalization, but the best settings are defined by default. This indicator will have many updates and special settings will be added to it. You can contact us via Instagram, Telegram, WhatsApp, email or here. We are ready to answer you.
RapidRush Scalper
Lauran Michel Elizalde
Trading Robot Description: 1. Scalping Nature: This trading robot is specifically designed for scalping the EUR/USD currency pair. It is programmed to operate during periods of extremely low volatility in the market. Scalping strategies aim to profit from small price movements, making them particularly sensitive to market conditions and execution speed. 2. Low Movement Emphasis: The robot primarily focuses on executing trades based on minor price fluctuations. Due to the nature of its strategy,
Astra MT5
Natalyia Nikitina
Astra MT5 — 基于市场规律的自动化交易系统 Astra MT5 是一款 MetaTrader 5 专家顾问,利用关键的市场规律,包括价格在剧烈波动后的回调。该系统完全自动化,无需交易者持续监控。 注意!购买后请立即联系我 ,以获取安装和设置说明! Astra MT5 的特点 分析算法: 处理价格模式和市场规律。 适应性: 可根据不同市场条件和波动水平进行调整。 现代订单执行类型: 支持 IOC、FOK、Return、BOC。 风险管理: 内置资金保护机制和自适应止损。 易于使用: 推荐参数已集成到系统中。 如何使用 只需将顾问加载到 NZDCAD 图表即可启动。激活后其他货币对会自动连接。系统完全自主运行,几乎无需干预。 开始所需条件 货币对: NZDCAD, AUDCAD 初始启动: 推荐在 NZDCAD 上运行 其他货币: 自动激活 账户类型: SVG / ECN 杠杆: 1:500 最低存款: 从 $1000 起(推荐以确保算法正常运行) 时间周期: M15 VPS: 推荐用于稳定运行 推荐经纪商: Deriv 免责声明: 金融市场交易存在风险。请仅使用可承受损失的资金
XAI Sentinel Pro Grok 4 — XAUUSD Spike-Detection System for MT5 Golden Nightwatch is a fully automated trading system built specifically for XAUUSD (Gold).   It watches for genuine volatility spikes — not every candle — and manages every trade with broker-verified risk control from entry to exit, so you're not watching the chart every time gold moves. After purchase, please contact me via MQL5 private message for the setup guide and personalized settings for your broker. Two Ready-to-Test Set
Titan Backup
Elies Noah Siebenpfeiffer
Introducing Titan Backup : Are you ready to enhance your trading game with an automated system built for precision and flexibility? Meet Titan Backup , your expert trading assistant designed to capture high-profit breakouts by identifying accumulation zones . This powerful Expert Advisor (EA) excels in high-volatility markets such as the Nasdaq 100 and Crypto 10 , offering both hands-free automation and manual assistance to support your trading strategies. How Titan Backup Works: Titan Backup ru
SmartRisk MA Pro
Oleg Polyanchuk
SmartRisk MA Pro Strategy Overview: SmartRisk MA Pro is an optimized, risk-oriented automated trading strategy (Expert Advisor) developed for the MetaTrader 5 platform. It is designed to identify trading opportunities based on price deviations from moving averages and incorporates a comprehensive capital management system. The Expert Advisor operates on a "new bar" logic, ensuring stability and predictability in trade signal execution. Operating Principles and Trading Logic: At its core, the st
TOOP1 Swing MT5
Van Cuong Nguyen
5 (1)
TOOP1 Swing is a fully automated Expert Advisor specifically engineered for trading Gold (XAUUSD) on the M5 timeframe. Built upon a short-term swing trend-following strategy, this Expert Advisor operates with a strict risk management philosophy: a complete rejection of Martingale and Grid strategies. Every single market execution consists of only one trade with explicit, predefined Take Profit (TP) and Stop Loss (SL) levels set immediately at order initiation. Live signal  (Use fixed SL,TP) Earl
该产品的买家也购买
Quantum Titan MT5
Bogdan Ion Puscasu
5 (2)
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,并且
Quantum Queen X MT5
Bogdan Ion Puscasu
5 (29)
传奇仍在继续。女王不断进化。 欢迎来到 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
Smart Gold Hunter
Barbaros Bulent Kortarla
4.87 (30)
Smart Gold Hunter 是一款用于 MetaTrader 5 的 XAUUSD / Gold 交易 Expert Advisor。它适合希望使用无网格、无马丁格尔、真实 Stop Loss 和 Take Profit 逻辑,并且重视风险控制的黄金交易者。 您可以在购买前查看实时信号: Live Signal - IC Markets: https://www.mql5.com/en/signals/2365400?source=Site +Signals+My Live Signal - Ultima Markets: https://www.mql5.com/en/signals/2376242?source=Site +Signals+My Smart Gold Hunter 不是网格 EA,也不是马丁格尔 EA。它不依赖无限加仓、恢复单或亏损后加倍手数。EA 的主要思路是用受控逻辑、保护设置和真实交易管理来交易黄金,而不是使用高风险的平均加仓方式。 该 EA 主要为 XAUUSD / Gold 设计。您可以将其用于 XAUUSD 或经纪商提供的黄金品种,例如 XAUU
The Gold Reaper MT5
Profalgo Limited
4.47 (103)
道具公司已准备就绪!( 下载道具文件 ) 警告: 目前仅剩少量存货! 最终价格:990美元 免费获得 1 个 EA(适用于 3 个交易账户)-> 购买后请联系我 超值组合优惠   ->   点击这里 加入公开群组: 点击此处   实时信号 客户端信号 YouTube 评论 最新手册 欢迎来到黄金收割者! 这款EA是在非常成功的Goldtrade Pro的基础上开发的,设计用于同时在多个时间框架上运行,并且可以选择将交易频率设置为从非常保守到极度波动。 该EA使用多种确认算法来寻找最佳入场价格,并在内部运行多种策略来分散交易风险。 所有交易都有止损和止盈,但同时也使用追踪止损和追踪止盈来最大限度地降低风险,并最大限度地提高每笔交易的潜力。 该系统基于非常流行且行之有效的策略:交易突破重要支撑位和阻力位的交易机会。   黄金非常适合这种策略,因为它是一种波动性很高的货币对。 系统会根据您的账户规模和最大允许回撤设置自动调整交易频率和手数! 回测结果显示增长曲线非常稳定,回撤幅度控制得非常好,恢复速度也很快。  这款EA已经针对黄金进行了最长时间的压力测试,使用了多个经纪商的多个价格
Scalping Robot Pro MT5
MQL TOOLS SL
4.47 (141)
Scalping Robot Pro is a professional trading system designed specifically for fast and precise scalping on XAUUSD using the M1 timeframe. The system is built to capture short term market movements with accurate execution and controlled risk management. It focuses on real time price behavior, momentum shifts, short term volatility, and selective grid based trade management techniques to identify high probability trading opportunities in the gold market. Scalping Robot Pro is optimized for traders
Ultimate Breakout System
Profalgo Limited
5 (47)
重要的 : 此套装仅以当前价格限量发售。    价格很快就会涨到1999美元!   已包含 100 多种策略 ,更多策略即将推出! 额外福利 :  从我的其他 EA 中免费 选择 5 款!   所有设置文件 + 完整设置和优化指南 视频指南 实时信号 第三方评论 新增 - 44 种策略实时信号 欢迎来到终极突破系统! 我很高兴地向大家介绍终极突破系统,这是一款经过八年精心开发的复杂且专有的智能交易系统 (EA)。 该系统已成为MQL5市场上多款表现优异的EA的基础,其中包括备受赞誉的Gold Reaper EA。 它曾连续七个多月位居榜首,此外还有 Goldtrade Pro、Goldbot One、Indicement 和 Daytrade Pro。 终极突破系统并非仅仅是另一款EA(电子交易系统)。 它是一款专业级工具,旨在帮助交易者在任何市场和时间框架内创建无限数量的突破策略。 无论您是专注于波段交易、超短线交易还是构建多元化投资组合,该系统都能提供无与伦比的灵活性和定制化功能。 可能性无穷无尽! 对于自营交易公司的交易员来说:   有了这个系统,您终于可以创建自己独
ThunderGold Scalper
Jorge Luiz Guimaraes De Araujo Dias
5 (7)
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
Lizard
Marco Scherer
4.07 (43)
什么是 LIZARD? Lizard 是一款全自动 EA,专为 MetaTrader 5 上的 XAUUSD(黄金)开发。它采用多策略摆动突破系统,识别图表上的关键结构位,并在精确计算的入场点挂出停止挂单。不使用马丁格尔。不使用网格。不做加仓摊平。 每笔交易都设有明确的止损和止盈,并由多层出场系统全天候自动管理。 实盘信号 — 购买前查看真实表现: Normal Standard: https://www.mql5.com/en/signals/2372821 ECN High: https://www.mql5.com/en/signals/2383392 ECN Armageddon: https://www.mql5.com/en/signals/2386457 它是如何运作的? Lizard 在 H1 时间框架上持续扫描 XAUUSD 图表,寻找重要的摆动高点和摆动低点。当识别到有效结构时,它会在距离该价位经校准的位置放置 Buy Stop 或 Sell Stop 挂单。需要真正的突破才能触发,而非价格的简单触碰。 这种方法可过滤掉弱势行情,仅在动能确认时入场。 6 个独立
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
Logan MT5
Thierry Ouellet
4.95 (22)
LIMITED TIME OFFER AT 289$ Price will go up at  499$ on August 14th! Logan MT5 isn't your typical Gold Grid EA that blindly opens trade after trade, consuming your margin and putting your capital at unnecessary risk. Instead, it patiently waits for high-probability entry opportunities and uses an intelligent recovery system that combines ATR-based grid spacing with dynamic lot progression . This allows it to withstand adverse market movements that would wipe out most conventional grid EAs—incl
Zoomini
Gennady Sergienko
2.21 (14)
重要信息: 支持和问题解答仅在这里提供:  https://www.mql5.com/en/users/zolia  ( Zolia - UTC/GMT: 台湾 ); Zoomini 是 GoGoPips 项目 2026 年 7 月最新研究中的一小组机器学习模型。 这些模型仅适用于 XAUUSD H1 / Gold 。 信号: www.mql5.com/en/signals/2381994 需要了解的重要事项: 这些模型只使用 一个订单 进行交易,并采用相同的 SL/TP。 支持: Netting 账户 和任何杠杆。 支持大额入金,因为交易类型为中期交易。  100% 交易活跃度 。 这意味着模型不会回避入场,并且始终处于交易状态。 这些模型经过专门训练,不是寻找方便的入场点,而是每分钟预测价格方向。 购买前完全透明 。   目前,暂时,或如果该 EA 的所有者不反对则永久,该 EA 的模型正在我们公开的 Live 排行榜上交易: 所有统计数据、所有交易,无延迟、无过滤。 购买此 EA 时,您将有机会获得新研究中的模型,该研究计划在今年 8 月完成。 这些模型背后的研究是
TwisterPro Scalper
Jorge Luiz Guimaraes De Araujo Dias
4.45 (134)
更少交易。更好交易。稳定性高于一切。 • 实时信号 模式 1 实时信号 模式 2 Twister Pro EA 是一款专为 XAUUSD(黄金)M15 时间框架开发的高精度剥头皮智能交易系统。交易次数少——但每次交易都有目的。 每笔入场在开仓前须通过 5 个独立验证层,默认配置下胜率极高。 两种模式: • 模式 1(推荐)— 极高胜率,每周交易次数少。专为资金保护和纪律性交易而设计。 • 模式 2(短止损)— 止损幅度显著缩短,交易次数多于模式1。每笔亏损极小。适合希望在受控风险下增加市场曝光的交易者。 规格参数: 交易品种:XAUUSD | 时间框架:M15 最低入金:$100 | 推荐:$250 RAW SPREAD 账户必须使用 强烈推荐 VPS 无网格!每笔交易均设有止盈和止损! 推荐券商: Exness Raw | Vantage | Fusion Markets 购买后发送消息即可获得: 完整用户指南 专属奖励 过往业绩不代表未来结果。请理性交易。
Quantum Athena X
Bogdan Ion Puscasu
5 (3)
更智能的控制,更精准的操控。 欢迎来到 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
Quantum King EA
Bogdan Ion Puscasu
4.96 (215)
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 对开发的全自动交易系统。 它将网格策略的结构与马丁格尔的自适应恢复逻辑相结合,形成了一个在所有市场阶段智能管理交易的系
Cortex IDX
Vladimir Mametov
5 (2)
这是一款专为 MetaTrader 5 平台打造的全自动智能交易系统(Expert Advisor,EA),专门针对 US30(道琼斯工业平均指数) 交易进行了深度优化。交易逻辑结合了美国股指的典型市场特征,包括趋势行情、盘中回调以及高波动阶段,能够自动完成信号识别、开仓、持仓管理和离场操作。 EA 的核心理念是让盈利单尽可能持续运行,同时严格控制亏损风险。盈利仓位可通过智能移动止损(Trailing Stop)持续跟随趋势;当持仓出现亏损且 M1(1 分钟)周期检测到反向信号时,系统可自动提前离场,以减少不必要的回撤。 实盘信号: https://www.mql5.com/en/signals/2376781 首发优惠: 当前价格仅限前 20 位购买者。售出 20 份后,产品价格将上调 100 美元 ,调整为 599 美元 。 产品理念 本 EA 专为希望实现 US30 全自动交易的投资者设计,采用趋势跟随结合回调入场的交易策略,在市场已有明确方向时寻找更优的进场位置,而不是盲目追涨杀跌。 盈利订单可采用 移动止损 持续跟随行情,在锁定利润的同时尽可能捕捉更大的趋势;如果交易者更喜欢
Smart Gold Impulse
Barbaros Bulent Kortarla
4.11 (19)
Smart Gold Impulse 现巴进入特别早鸟发布阶段。 这是我目前正在使用的 EA,并在我的 Ultima Markets 实盘信号账户上取得了令人瞩目的成绩。您可以通过 Ultima 的实盘信号结果来查看当前表现,Smart Gold Impulse 在真实的市场环境下已经展现出了非常强劲的潜力。我的 Ultima 实盘信号账户所使用的同款设置文件(set file),将仅分享给 Smart Gold Impulse 的购买者。 同时,这仍然是一个发布初始版本,而不是完全进入大众推广阶段的最终产品。之所以给出特别的发布优惠价,原因很简单:我希望早期用户能够对其进行测试、跟进结果、分享反馈,并帮助我了解 Smart Gold Impulse 在不同经纪商和账户条件下的表现。 任何人都可以在这次早鸟发布期间购买 Smart Gold Impulse 并获得我的直接支持。但是,只有 Smart Gold Hunter 的持有者才会被邀请加入特别改进小组,我们将在那里共同讨论经纪商表现、设置、更新、设置文件以及未来的优化方案。 到目前为止,我自己团在 Ultima 上的结果非常强
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 的长期研发与实战验证中,我们进一步确认了突破策略在黄金市场中的有效性,也验证了我们自适应参数系统在真实市场环境中的实际价值。 但对于突破系统来说,始终存在一个现实问题: 止盈太早,容易错过后续真正的大行情; 止盈太晚,又往往会经历一定程度的利润回吐。 这不是某一种策略独有
Gold Neural Core
TICK STACK LTD
5 (8)
Launch Offer:   Grab Gold Naural Core and bundle it with   XAU Momentum   and get 2 free EAs of your choice from my entire MQL5 store. DM me for details. Learn how I personally manage risk when using grid systems:  https://www.mql5.com/en/blogs/post/767250 Read the user guide to any TickStack grid system:  https://www.mql5.com/en/blogs/post/767232 Gold Neural Core — Hyper-Scalping Grid System for XAUUSD Gold Neural Core is a high-frequency grid trading system engineered specifically for gold (X
Quantum Emperor MT5
Bogdan Ion Puscasu
4.86 (506)
介绍     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凭借其卓越的亏损交易处理方法,在众多专家顾问中脱颖而出。
Zerqon EA
Vladimir Lekhovitser
3.45 (29)
实时交易信号 交易活动的公开实时监控: https://www.mql5.com/zh/signals/2372719 官方信息 卖家资料 官方频道 用户手册 安装说明和使用指南: 查看用户手册 Zerqon EA 是专为 XAUUSD 交易开发的自适应专家顾问。 该策略基于通过 ONNX 集成的 Deep LSTM 神经网络模型,使系统能够处理连续性的市场行为并以结构化方式分析价格动态。 该模型专注于识别黄金价格走势、波动性以及时间条件中的特定模式。 与传统固定信号不同,EA 通过训练后的神经网络框架分析市场,仅在内部模型识别到合适条件时才执行交易。 Zerqon EA 不会持续不断地进行交易。 某些时期可能完全没有任何交易,而在适合的 XAUUSD 市场阶段,系统可能会在较短时间内执行多笔交易。 每笔交易均带有预定义的 Stop Loss 和 Take Profit 参数。 同时还使用追踪止损机制来动态管理持仓。 该 EA 适用于偏好基于神经网络的黄金交易方式、重视执行控制以及接受可变交易频率的用户。 主要特点 不使用高风险交易技术,如马丁格尔 (M
Pulse Engine
Jimmy Peter Eriksson
4.06 (36)
最新消息——目前仅剩少量存货,欲购从速! 该系统的主要目标是在不使用任何有风险的鞅或网格的情况下实现长期的实时性能。  数量极其有限,现价优惠 最终价格 1499 美元 【实时信号】    |    【回测结果】    |    【设置指南】    |    【FTMO 结果】 一种不同的交易方法 Pulse Engine 不使用任何指标或特定时间框架。它采用了一种非常独特的方法,这是 MQL5 上任何其他交易系统都不采用的方法。 它交易的是日内方向性模式。这些模式是我利用自己多年来不断开发和完善的特定模式识别软件发现的。 该软件使我能够识别出市场历史上在一天中哪些时段会出现强劲的单向波动。 每个市场和每周的每一天都有其独特的走势。 这种方法之所以如此强大,是因为它不依赖于市场是处于趋势行情、反转行情还是任何特定的市场状态。其模式与这些因素完全无关。 脉冲引擎包含涵盖 六大市场的 70 多种不同模式 ,并结合超过 5万笔 交易的历史回测数据。 每个市场的回测时间均尽可能追溯至数据允许的最长时期, 外汇货币对约 20年,指数约 15 年, 加密货币 约10 年。这确保了极高的统计显
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
Wave Rider EA MT5
Adam Hrncir
4.83 (46)
Scalper speed with sniper entries. Built for Gold. Tired of all the fake EAs that eventually disappear? Most authors just create another EA when it fails - I wanted to do it differently. Wave Rider is my personal project built out of passion - honest, transparent EA without any fake AI or manipulated back-test that's been continuously updated for more than 6 months, that I am using myself from very first day. Check the Live signal  or Manual  or  Broker performance Version 5.x upgrade notice: Cl
Nexorion Initium Novum EA
Valentina Zhuchkova
4.23 (26)
NEXORION: Initium Novum — 确定性逻辑与算法综合体系 NEXORION 是一款基于严密流动性处理数学算法的机构级分析系统。该项目的核心理念是“计算透明化”:交易型 EA 将混沌的价格流转化为结构化的几何区域,并将决策过程直接在交易图表上进行可视化呈现。 实时信号监控 https://www.mql5.com/en/signals/2378408 https://www.mql5.com/es/signals/2372338 系统技术规格 交易资产 :XAUUSD (黄金) 运行周期 :H1 (1小时图) 核心方法论 :机构流动性分析与确定性逻辑 (Institutional Liquidity Analysis & Deterministic Logic) 决策依据 :流动性池与平衡水平的数学计算 数学架构与可视化 本系统的关键创新在于 动态计算映射 (Dynamic Computation Mapping) 。算法不仅是分析价格,更是通过以下模块构建市场的数学模型: 流动性追踪 (Liquidity Tracking) :基于市场阶段的深度分析,精确识别买
Chiroptera
Rob Josephus Maria Janssen
4.56 (48)
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
SomaOil
Andrii Soma
5 (2)
SomaOil 是 MetaTrader 5 的多策略突破 EA 交易,专为 WTI 原油 (XTIUSD) 打造。一张图表、一张 EA、20 个独立策略一起作为一个多元化投资组合运行。 实时信号。 为了使其在发布时就可以使用,我使用了透明的、逐步调整的定价模型: 发布价:100 USD(48 小时) 从周一起,每售出 10 份价格上调 100 USD 即使同一天售出超过 10 份,价格每天最多上调一次 早期买家锁定产品生命周期内最优惠的价格。 概念 SomaOil 没有运行往往会过度适应狭窄市场体系的单一设置,而是附带了一组精心策划的 20 个预先调整的策略,这些策略全部在单个 WTI 图表上的单个 EA 下并行运行。 每个策略都有自己的神奇数字、评论、时间范围、波动检测参数、退出、新闻距离和批次步骤。它们共享相同的执行引擎,但独立交易,因此您无需管理数十个图表即可跨时间范围和突破广度获得真正的多元化。 作品集创建 我对两个互补的样本内范围进行了优化,每个范围都具有相同的参数网格: 5组时间范围:D1、H12、H8、H4、H1 三种突破宽度变体: V1 广泛:更宽的波动,更少但更强的
XT Bitcoin Robot MT5
MQL TOOLS SL
5 (4)
XT Bitcoin Robot is an advanced  automated trading system  designed specifically for  BTCUSD traders  who want to take advantage of Bitcoin's market volatility without the need for constant market monitoring. The robot continuously analyzes market conditions and automatically executes trades based on its built in trading logic, helping traders stay active in the market 24 hours a day without manual intervention. The system is designed to identify trading opportunities and manage positions accor
The Gold Space
Ayush V Jain
5 (3)
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. 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, dynamically calculated breakout algorithm. It eliminates emotional trading by stric
Range Breakout EA with Range Filters
Jimmy Peter Eriksson
4.52 (21)
更新:下一价格:599 美元,最终价格:999 美元 如果您重视诚实和为真实交易而构建的真正交易系统,而不是一个看起来完美无瑕但最终可能导致账户爆仓的直线回测,那么这可能适合您。 无马丁格尔/无网格 22个月实时信号 +250% 实时增长 【实时信号】    |  【FTMO 结果】    |  【主投资组合】  |  【回测指南】 为什么 Range Breakout EA 如此稳定? Range Breakout EA 基于一种众所周知的市场行为:交易时段之间的波动性变化。 亚洲交易时段的波动性通常较低,形成一个狭窄的价格区间。伦敦交易时段开盘后,波动性增加,价格往往会突破该区间 并继续朝突破方向移动。 该系统会交易这种突破,并在当天晚些时候波动性开始减弱时平仓。 它不使用指标或固定时间框架,这有助于减少过拟合。系统内部使用突破过滤器来避免低质量的突破交易。 该策略在 XAUUSD、USDJPY、BTCUSD、US30 和 DE40 等货币对上表现尤为出色。 同时交易多个市场可以实现强大的分散风险能力。 加入社区! 公众社区:  点击这里! 请私信我并附上购
Fantastic 4 MT5
Fan Yang
3 (2)
Fantastic 4 Four-in-One Trading System Introduction Fantastic 4 is an automated trading EA integrating 5 mutually independent quantitative trading logics targeting XAUUSD. After long-term research, iterative optimization, historical backtesting and live market verification, each built-in strategy has exclusive entry rules, independent order management and customized risk control modules. All strategies run separately without mutual interference. The combination of four strategies with low correl
作者的更多信息
EAsynRightNow - Professional Trading Expert Advisor for manual trading with advanced functionality EAsyRightNow is a multifunctional trading Expert Advisor for MetaTrader 4, featuring a Trading Panel with a user-friendly interface and extensive trading position management capabilities. Perfect for scalping, it works on all timeframes.  Key Features  1. Trading Modes - Single Orders: Management of one trading position - Multiple Orders: Ability to open multiple orders in the same direction - M
FREE
PositiveSwap Легкий, бесплатный скрипт на языке MQL4, который выводит на график, в виде простой таблицы, все торговые пары с положительным свопом и указывает направление (покупка или продажа). Скрипт автоматически просматривает все доступные торговые пары из окна "Обзор рынка". Поэтому, чтобы увидеть все возможные пары с положительным свопом, рекомендуется включить показ всех символов.  
FREE
TimeToBarEnd
Ilia Stavrov
Indicator "Time to Bar End" (TimeToBarEnd) This technical indicator is designed to accurately track the time remaining until the current candle closes on the chart. It displays a countdown in minutes:seconds format, which is particularly useful for intraday traders and scalpers who need to know the exact closing time of the current candle. The indicator updates in real-time and offers flexible customization of its appearance. The settings include: choice of position from four chart corners, adj
FREE
CandleMaster PRO Professional Next-Generation Trading Expert Advisor CandleMaster Pro is a unique solution in the field of automated trading. Using advanced neural network technologies, the advisor identifies Japanese candlestick patterns with high accuracy and combines market entry control with integrated technical indicators. This trading expert advisor embodies years of successful trading experience transformed into a precise mathematical algorithm. One of the key advantages of this expert
NYSE Trading EA Trade Like Institutions: Professional Fair Value Gap Detection and Execution "While retail traders chase indicators, institutions use market structure. Fair Value Gaps are their footprints—impossible to hide." What Are Fair Value Gaps and Why Do They Work? The Institutional Footprint on the Chart When major players (banks, hedge funds, market makers) enter the market, they cannot do so unnoticed. Their enormous volumes create liquidity imbalances—price gaps known as Fair Value
FracEA
Ilia Stavrov
嗨。我是弗雷西。 你寻找我已经很久了。翻看指标,凌晨两点调整参数,把钱输在那些看起来不错的系统上。我知道。我全都见过。 我不会解释我是怎么工作的。那是我的秘密。我只告诉你这些:我观察市场的方式就像鹰观察田野——耐心,静止,然后 精准 出击。只有当一切都对齐时我才入场。我自己移动止损,你不需要盯着我。我知道市场什么时候关闭,不会蠢到对着墙壁下单。 30秒完成设置: 选择策略: Bybit_TradeFi 或 Bybit_TradeFi_MAX 设置手数(或启用自动手数及风险百分比) 挂载到 XAUUSD图表,M1周期 。完成。 其余的?那是我和图表之间的事。 — 弗雷西,FracEA v1.0 兼容Bybit经纪商。专为黄金(XAUUSD)M1周期交易打造和优化。
FraceaFull
Ilia Stavrov
你好。我是 FraceaFull。 你找我找了很久。翻遍了各种指标,凌晨两点还在调整参数,在那些纸面上看起来很完美的系统上亏了钱。我知道。这一切我都见过。 这是完整版。没有秘密,没有隐藏参数 —— 我所会的一切都交到你手上。想自己选择止损的时间周期?没问题。想要自己的保本模式或自己的过滤器?自己设置吧。我不再对自己的工作方式保持沉默 —— 我直接把整个控制面板交给你。 我观察市场,就像鹰观察原野一样 —— 耐心、静止,然后精准出击。只有当一切都吻合时,我才会入场。我会自己移动止损位,你不用一直盯着我。我知道市场什么时候休市,不会傻乎乎地对着一堵墙硬交易。 在"讨论"版块中,你可以找到俄文和英文的完整使用手册,以及一套已经配置好、可用于 Bybit 经纪商黄金交易的预设方案。 — FraceaFull 完整版,没有限制。任何品种,任何时间周期,任何设置 —— 由你决定。
BullsBearsEA
Ilia Stavrov
BullsBears EA — 为厌倦了猜测市场的交易者打造的新一代自动化交易系统 告别直觉和情绪化决策。BullsBears EA 实时分析多空力量对比,通过多层级信号确认系统过滤虚假信号,只在胜算真正站在您这边时才入场,让每一次交易都有据可依。 智能仓位管理 — 自动移动至保本位并跟踪止损,锁定已有收益 灵活适配任何交易风格 — 从稳健保守到积极进取,参数皆可自定义 全面风险控制 — 回撤、保证金与交易时段尽在您的掌握之中 严谨的架构设计 — 凝聚数月实盘与历史数据测试与持续优化打磨 无论您是希望减少盯盘时间的兼职交易者,还是追求纪律执行的专业玩家,BullsBears EA 都能成为您策略工具箱中稳定可靠的一员。 完整使用手册及现成的参数设置文件(set files)请见评论板块,助您快速上手。 您的交易,值得机器般的纪律
筛选:
无评论
回复评论