ScalpEA v2 preview

5

Hi, I would like to introduce you version of my EA for FVG scalping.

Difference between full and preview version is only in machine learning part. If you have any question visit my channel.

How does it work?:

  1. EA waits until there are 3 candles (H1) after each other and between (candle 1 top wick) and (candle 3 bottom wick) is gap
  2. After that EA places pending order below candle 3 bottom wick and waits if market returns to the gap.
  3. Thats all it does.

Some additonal info about full version and configs here
Channel where to discuss and share your ideas

Graph at the screensots is from backtest with default settings on XAUUSD.
Backtest it and test it on demo first, this version does not have all the protection that full version does. Simply test it first, no profit is guaranteed!
FYI, I am using this and full version on VT Markets, Vantage and Purple trading you can see them on myfxbook.
Also make sure to enable Algoritmic trading in your Metatrader settings or it will not work! (Tools - Options - Expert advisors)

MODES of TP:

MODE 1: FIXED TAKE PROFIT
- Parameter: TP distance (points) 
- Default: 500 points
- Advantage: Simple, predictable
- Use case: Scalping strategies

MODE 2: TRAILING TAKE PROFIT
- Trailing activation (points): Profit needed before activation (default 50)
- Trailing distance (points): Distance maintained from current price (default 200)
- Behavior: Moves only in profit direction
- Benefit: Captures extended moves
- Update trigger: 2+ points price movement

MODE 3: EXPERIMENTAL (TRAILING STOP LOSS)
- Experimental activation (points): Distance from TP (default 50)
- Experimental trailing SL (points): Distance from price (default 200)
- Minimal profit lock (points): Minimum profit guarantee (default 20)
- Purpose: Capital protection near TP
- Mechanism: Progressive SL tightening


You can find full ScalpEA v2 with machine learning functions here: https://www.mql5.com/en/market/product/167553

AI generated full system description:

ScalpEA V2 Preview — FVG Scalping Expert Advisor

AI generated description:

FVG Scalping Expert Advisor for MetaTrader 5

Version 2.650 | © Martin Vrlik 2026

━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━

OVERVIEW

────────

ScalpEA v2 is an automated Expert Advisor for MetaTrader 5 that detects and trades Fair Value Gap (FVG) zones. A Fair Value Gap is a price inefficiency that forms when three consecutive candles leave an uncovered gap between the high of the first candle and the low of the third candle (bullish FVG), or vice versa (bearish FVG). The EA places pending limit or stop orders at these zones and manages them through a complete set of filters, safety checks and risk controls.

The EA is primarily designed for XAUUSD (Gold) but works on any instrument and timeframe combination supported by MetaTrader 5.


HOW IT WORKS

────────────

On every new bar of the detection timeframe (sourceTF), the EA scans recent price history for valid FVG zones and stores them in an internal cache. On every new bar of the placement timeframe (placementTF), it reads that cache, applies all active filters, and places pending orders for zones that pass every check. The two timeframes can be set independently, allowing combinations such as detecting FVGs on H1 while evaluating placement conditions on M30.

Before placing any order the EA runs the following checks in sequence: duplicate detection (no two orders for the same FVG zone), candle direction filters, EMA trend filter, gap size filters, distance from current price, zone age, spread limit, margin and volume validation, and STOPS_LEVEL compliance. Only zones that pass all active filters receive a pending order.

If an order placement fails because the market is closed (for example at session open), the EA saves the order to a retry queue and attempts to place it again every tick for up to five minutes.


SIGNAL FILTERS

──────────────

Third candle confirmation — the candle that closes the FVG gap must move in the direction of the signal: green (close > open) for bullish FVG, red for bearish FVG.

All-three-candles confirmation — all three candles forming the FVG must be the same color. This is a stricter version of the above filter and ensures the FVG is backed by a consistent directional impulse rather than a mixed sequence.

Middle candle wick check — the wick of the middle candle (the one between the two gap candles) is inspected. If its counter-directional wick is more than wickMultiplier times longer than its directional wick, the signal is rejected. This filters out candles with strong rejection shadows that suggest weak momentum.

EMA(200) trend filter — before placing any pending order, the EA checks whether the last N closed H1 candles all lie entirely above (for BUY) or entirely below (for SELL) the 200-period Exponential Moving Average on the H1 chart. For a BUY order to be allowed, the Low of every one of those candles must be greater than the EMA value at that bar. For a SELL order, the High of every candle must be below the EMA. This filter always uses the H1 timeframe regardless of the sourceTF and placementTF settings. If not enough historical data is available at EA startup, the filter is skipped for that bar to prevent false blocking.

SELL-specific gap filters — SELL signals require a larger minimum gap size than BUY signals (controlled by a multiplier), and optionally a maximum gap size cap to avoid trading exhaustion moves.


PENDING ORDER MANAGEMENT

────────────────────────

The EA enforces a configurable maximum number of pending orders per direction (BUY and SELL are counted separately). When the FIFO system is enabled and the limit is reached, the oldest pending order is automatically removed to make room for the newest FVG signal. When FIFO is disabled, new signals are skipped until an existing pending order is filled or expires.

Pending orders are automatically removed when the FVG zone that generated them reaches its maximum age (maxFVGDurationMinutes). The age is measured from the time the FVG zone was formed, not from the time the order was placed.


RISK AND MONEY MANAGEMENT

──────────────────────────

The EA supports two lot sizing modes. In fixed mode, every trade uses the same lot size defined by the lotSize parameter. In dynamic mode, the lot size is calculated automatically for each trade based on the account balance, the configured risk percentage per trade, and the Stop Loss distance, ensuring that each trade risks no more than the specified percentage of the account balance.

SELL trades support independent TP, SL, risk percentage and pending order limit settings, because gold tends to behave differently during price drops versus rallies.

Every order is validated before sending: free margin is checked against the required margin, volume is verified against the symbol's minimum, maximum and step values, the number of pending orders is checked against the broker's account limit, and SL/TP distances are verified against the symbol's STOPS_LEVEL.


VISUALIZATION

─────────────

Active FVG zones are drawn as colored rectangles directly on the chart. Bullish zones use one color and bearish zones another, both fully configurable. Transparency, maximum number of visible zones and optional size labels can all be adjusted. Zones are automatically removed from the chart when they expire.


A dashboard panel in the top-left corner of the chart shows current account balance, equity, floating P/L, total EA profit since the start, number of closed trades, win rate, and the current number of pending orders per direction.


INPUT PARAMETERS

────────────────


Basic Settings
allowLong — enables BUY pending orders from bullish FVG zones. When set to false, no BUY orders are placed regardless of detected signals.
allowShort — enables SELL pending orders from bearish FVG zones. When set to false, no SELL orders are placed.
magicNumber — unique identifier assigned to all orders and positions opened by this EA. Change this value if you run multiple EAs on the same account to avoid conflicts.
configName — a text label displayed in the on-chart dashboard. Useful for identifying different parameter sets during optimization or testing.
tradeComment — comment string attached to every order and visible in the MT5 trade history.
sourceTF — the timeframe on which FVG zones are detected. The EA scans candle history on this timeframe to find valid gaps. Recommended values are H1 or H4.
placementTF — the timeframe that controls when pending orders are evaluated and placed. A new evaluation runs only at the open of each new bar on this timeframe. Must be equal to or smaller than sourceTF.

Money Management
lotSize — fixed lot size used for every trade when dynamic lot sizing is disabled.
useDynamicLotSizing — when true, the lot size is calculated automatically based on account balance, risk percentage and Stop Loss distance. When false, the fixed lotSize value is used.
riskPerTradePercent — maximum risk per trade expressed as a percentage of account balance. Active only when useDynamicLotSizing is true.

FVG Detection
maxFVGPerSide — maximum number of pending orders allowed simultaneously in one direction. BUY and SELL are counted separately.
minGapPoints_global — minimum FVG gap size in points. Gaps smaller than this value are ignored as noise. For XAUUSD, 30 points equals 3 pips.
maxFVGDurationMinutes — maximum age of an FVG zone in minutes, measured from the time the zone was formed. Zones older than this are removed from the cache and any pending orders generated by them are cancelled.
maxFVGDetectionWindow — how far back in history (in minutes) the EA searches for FVG zones during each detection pass.
entryOffsetPoints — offset added to the FVG boundary to set the entry price. For BUY orders: entry = FVG top + offset. For SELL orders: entry = FVG bottom - offset.
requireThirdCandleConfirmation — when true, the candle that closes the FVG must be in the direction of the signal (green for bullish, red for bearish).
requireAllThreeCandlesConfirmation — when true, all three candles forming the FVG must be the same color. Provides stronger directional confirmation than the single-candle check above.
enableMiddleWickCheck — when true, the EA inspects the wick of the middle candle of the FVG formation and rejects signals where the counter-directional wick is disproportionately large.
wickMultiplier — the maximum allowed ratio of the counter-directional wick to the directional wick of the middle candle. A value of 2.0 means the counter-directional wick may be at most twice as long as the directional wick.
useFIFOPendingSystem — when true and the pending order limit is reached, the oldest pending order is removed to make room for the new  signal. When false, new signals are skipped while the limit is full.

Take Profit and Stop Loss
takeProfitType — selects the TP mode. In this version only TP_FIXED (fixed take profit) is available.
takeProfitPips — distance from entry price to Take Profit in points. For XAUUSD: 500 points = 50 pips.
stopLossPips — distance from entry price to Stop Loss in points for BUY trades. The default is intentionally high and acts as a safety net; primary exits rely on the Take Profit.

SELL Trade Settings
useSellSpecificSettings — when true, SELL trades use the parameters defined in this group instead of the global BUY parameters. Recommended for XAUUSD due to asymmetric volatility between upward and downward moves.
sellTakeProfitPips — Take Profit distance for SELL trades in points, independent of takeProfitPips.
sellStopLossPips — Stop Loss distance for SELL trades in points.
sellRiskPercentOverride — overrides the risk percentage for SELL trades when dynamic lot sizing is active. Set to 0.0 to use the global riskPerTradePercent.
sellMaxPendingsOverride — overrides the maximum number of SELL pending orders. Set to 0 to use the global maxFVGPerSide.

SELL FVG Filters
sellRequireBiggerGap — when true, SELL signals require a larger minimum gap than BUY signals, multiplied by sellGapMultiplier.
sellGapMultiplier — multiplier applied to minGapPoints_global to calculate the effective minimum gap for SELL signals. Ignored when sellMinGapPointsFixed is greater than zero.
sellMaxGapPoints — maximum allowed SELL FVG size in points. Gaps larger than this are rejected as potential exhaustion moves. Set to 0 to disable this cap.
sellMinGapPointsFixed — fixed minimum gap size for SELL signals in points. When greater than zero, this value is used directly and sellGapMultiplier is ignored.

Safety Limits
maxSpreadPoints — maximum allowed spread in points. When the current spread exceeds this value, no new pending orders are placed. Position management (trailing, cleanup) continues regardless of spread.
maxDistanceFromPrice — maximum allowed distance between the pending order entry price and the current market price, in points. FVG zones whose entry price is too far from the current price are skipped.
countOpenPositionsInLimit — when true, open positions are counted together with pending orders toward the maxFVGPerSide limit. When false, only pending orders are counted.

EMA Trend Filter
enableEMATrendFilter — enables the EMA(200) trend filter. When active, a pending order is placed only if the last N closed H1 candles all lie entirely on the correct side of the 200-period EMA. BUY orders require all candles above EMA (Low > EMA), SELL orders require all candles below EMA (High < EMA). The filter always uses H1 regardless of sourceTF and placementTF.
emaTrendCandleCount — number of recently closed H1 candles that must satisfy the EMA condition. Higher values produce a stricter trend requirement. A value of 10 means all ten of the last closed H1 candles must fully clear the EMA line.

Visual Settings
showFVGOnChart — draws active FVG zones as filled rectangles on the chart.
bullFVGColor — fill color for bullish (BUY) FVG rectangles.
bearFVGColor — fill color for bearish (SELL) FVG rectangles.
fvgTransparency — transparency of the FVG rectangle fill. Range 0 (opaque) to 255 (fully transparent). A value of 90 produces a light, non-intrusive tint.
showOnlyActiveFVG — when true, only FVG zones relevant to the current allowLong/allowShort configuration are displayed. When false, all detected zones are shown regardless of trade direction settings.
maxFVGToShow — maximum number of FVG rectangles drawn on the chart per direction. Limits visual clutter when many zones are detected.
showFVGLabels — when true, a text label showing the gap size in points is displayed at the center of each FVG rectangle.

Debug and Testing
debug — enables verbose logging to the MT5 Journal tab. Outputs detailed information about FVG detection, filter decisions, lot calculations, EMA trend checks, SL/TP modifications, and order management. Disable in live trading to reduce log volume.


    评分 2
    Samuel Henrique Almeida Ferreira
    844
    Samuel Henrique Almeida Ferreira 2026.05.14 00:54 
     

    Hello. I’m testing the EA and I would like to better understand the FVG identification logic used in it. I really liked the robot, and during my backtests it has shown very promising and impressive results. What criteria does the EA use to detect, validate, and invalidate FVGs? Is mitigation considered by candle close, wick touch, or another method? Does it use any additional filters for entries, trend, or confirmation? Thank you.

    推荐产品
    Reversal Composite Candles
    MetaQuotes Ltd.
    3.69 (16)
    该系统的思路是通过计算复合蜡烛来识别反转形态。 反转形态类似日本蜡烛条分析的 "锤头" 和 "吊颈" 形态。但它使用符合蜡烛替代单一的蜡烛,并且不需要复合蜡烛的小实体来确认反转。 输入参数: Range - 最大柱线数量, 计算复合蜡烛时用。 Minimum - 最小复合蜡烛大小 (传统的点数)。 ShadowBig and ShadowSmall - 影线 (复合蜡烛单元)。 Limit, StopLoss and TakeProfit - 开盘价, 止损位和止盈位, 它们是相对于复合蜡烛的收盘价 (复合蜡烛单元)。 Expiration - 订单过期时间 (单位柱线), 用于挂单 (Limit!=0.0)。 反向蜡烛条形态的判别如下。 它计算复合蜡烛参数,其自最后的完整柱线 (索引为 1) 至由 Range 输入参数定义的柱线数量。如果复合蜡烛大小大于由 Minimum 输入参数指定的数值, 它分析复合蜡烛的影线检测反转条件。 空头能量的特征是复合蜡烛的上影线为零, 多头能量的特征是复合蜡烛的下影线为零。 为确认空头趋势反转 (且多头开始),需要以下检查: 下影线的大小 (多头能量
    FREE
    Pin Bars MT5
    Yury Emeliyanov
    Main purpose:   "Pin Bars"   is designed to automatically detect pin bars on financial market charts. A pin bar is a candle with a characteristic body and a long tail, which can signal a trend reversal or correction. How it works:   The indicator analyzes each candle on the chart, determining the size of the body, tail and nose of the candle. When a pin bar corresponding to predefined parameters is detected, the indicator marks it on the chart with an up or down arrow, depending on the directi
    FREE
    SpikeBoom
    Kabelo Frans Mampa
    A classic buy low & sell high strategy. This Bot is specifically Designed to take advantage of the price movements of US30/Dow Jones on the 1 Hour Chart, as these Indices move based on supply and demand. The interaction between supply and demand in the US30 determines the price of the index. When demand for US30 is high, the price of the US30 will increase. Conversely, when the supply of shares is high and demand is low, the price of t US30  will decrease. Supply and demand analysis is used to i
    FREE
    Range Auto TP SL
    Dilwyn Tng
    4.57 (46)
    Range Auto TP SL  is for you, 100% free for now, download it and give me a good review and you are free to use it for lifetime !!!! Range Auto TP SL is a EA to set Stop Loss and Take Profit level based on range using Average True Range (ATR). It works on both manually opened positions via PC MT5 Teriminals or MT5 Mobiles and EA/robots opened position. You can specify magic number for it to work on or it can work on all the positions. Many EA does not good Stop Loss and Take Profit function and
    FREE
    Exact Neuron Genuine Algo Genius Engaged
    Toha Arekaatera Akutina Gage
    3.8 (5)
    !! THE FIRST FREE NEURAL NETWORK EA WITH EXCELLENT AND REALISTIC RESULTS.!! Another beautiful work of art, guys you don't know the powerful creations that are created by my developer Nardus Van Staden. Check him out guys and gals, he is the real deal, an amazing person and a professional when it comes to coding and business, if you want work done!, hit him up! you can get in contact with him HERE . THE FOLLOWING PRODUCT IS A FREE VERSION OF A PAID VERSION THAT IS TO COME, PROFITS ARE GOING TO B
    FREE
    Silent Wave
    Murtadha Majid Jeyad Al-Khuzaie
    Silent Wave EA – Free Expert Advisor for MetaTrader 5 Designed specifically for USDJPY on the 15‑minute timeframe, Silent Wave EA is a unique trading system that captures hidden market rhythms when volume fades. Unlike conventional strategies that rely on heavy filters or lagging indicators, Silent Wave listens to the “quiet moments” of the market. When trading activity contracts, the market often prepares for its next decisive move. This EA is engineered to detect those silent pulses and turn
    FREE
    Smart Super Trend
    Kokou Sodjine Aziagbedo
    Smart Super Trend Indicator (Free) Turn volatility into opportunity — Catch trends early and trade smarter The Supertrend Indicator is one of the most trusted tools in technical analysis, designed to help traders quickly identify the prevailing market trend and spot potential entry and exit points with precision. Built on price action and volatility, this trend-following indicator adapts dynamically to market conditions, making it a powerful companion for both beginners and experienced traders.
    FREE
    Gives you a trading environment where you can do forward testing without the use of a live trading account. You will be able to trade the same Market without having to wait for the next day, but by just fast forwarding  on the strategy tester and going straight to that session. You can trade it over and over again without having to just look at the charts and have a bias analysis when  back testing on a chart that is not moving
    FREE
    Aegis Meridian
    Joshua Dunnink
    上市优惠 — 前 名用户免费 (以换取真实评价与反馈)。之后价格随售出份数分阶段上调: $49 → $69 → $99 → $129 ,直至上市价 $149 。早期用户锁定最低价。始终提供 $30/月 租用及免费演示(策略测试器)。 Aegis Meridian 是一款用于 MetaTrader 5 的全自动 AUDCAD 自适应均值回归网格 EA,配备单一风险旋钮以及可选的高信心 TURBO 档位。以下所有数据均为策略测试器(回测)在真实 tick 上的结果,并非真实交易结果。过往表现不代表未来收益。 概述 Aegis Meridian 在 M15 周期交易 AUDCAD。它对统计上过度伸展的价格进行反向布局(基于线性回归通道的 z 值),用等手数的小型篮子对逆向走势进行均摊,并在价格回归均值时平掉整个篮子。内置的实时市场状态识别器会针对震荡、高波动和趋势三种状态重新调整选择性、网格间距和获利目标——在趋势中减少交易并加大间距,正是网格本会受损之时。 运行原理 入场:仅在伦敦/纽约时段对严重过度伸展的价格反向入场——高选择性是核心优势。 恢复:等手数篮子(非马丁——每一层手数相
    Triple Indicator Pro
    Ebrahim Mohamed Ahmed Maiyas
    4 (4)
    Triple Indicator Pro: ADX, BB & MA Powered Trading Expert Unlock precision trading with Triple Indicator Pro, an advanced Expert Advisor designed to maximize your market edge. Combining the power of the ADX (trend strength), Bollinger Bands (market volatility), and Moving Average (trend direction), this EA opens trades only when all three indicators align 1 - ADX (Average Directional Index) indicator – This indicator measures the strength of the trend, if the trend is weak, the expert avoids
    FREE
    MT Monster
    MASSINISSA AINOUZ
    This EA has been backtested with real ticks since January 2012 untill March 2025, with no delay in execution, and then with a delay of 1000ms, the backtest showed a drawdown of 30% with a 10k USD backtest account. The EA default parameters are optimised to work best on EURUSD pair, but can work on other currencies and metals like XAUUSD. Before using this EA and in order to not lose all your money make sure you have at least 5000USD in your account. Do not use another EA with this one on the sam
    Trade Anomalo BTC Multi Grid
    Alessandro Virgilio
    5 (3)
    Trade Anomalo BTC Multi Grid EA   Trade Anomalo  BTC Multi Grid  is an advanced, fully automated Multi-Grid Expert Advisor meticulously designed to navigate the volatility of BTC and other major pairs. Introduces highly requested features, including Multi-Window Time Management and an interactive, upgraded on-chart dashboard. Unlike traditional grids that get trapped in one direction,   Parallel Pro   utilizes a dual-engine architecture (Grid A and an optional inverted mirror Grid B) to simultan
    FREE
    Free automatic Fibonacci is an indicator that automatically plots a Fibonacci retracement based on the number of bars you select on the BarsToScan setting in the indicator. The Fibonacci is automatically updated in real time as new highest and lowest values appears amongst the selected bars. You can select which level values to be displayed in the indicator settings. You can also select the color of the levels thus enabling the trader to be able to attach the indicator several times with differe
    FREE
    THE>>>>>>___IIIREX_CLAW_vs_CLUSTER_EAIII___<<<<<< Set1: Price Offset 100, Stopp Loss 100-1000, Take Profit 2000  Set2: Price Offset 200, Stopp Loss 100-1000, Take Profit 2000 Set3: Price Offset 100, Stopp Loss 100-1000, Take Profit 1000 Set4: Price Offset 200-500, Stopp Loss 100-1000,  TakeProfit 1000 Set5: PriceOffset 100-1000 (Recomment 200) higher is lower Risk,   Stopp Loss  500  Take Profit  1000, 2000,  3000 it is the same Target Set it to your Moneymanagement  Indize: DE40  “IC Market” R
    FREE
    TradeVision Pro
    Ian Nganga Comba
    TradeVisonPro Forex Analyzer Pro MT5 交易账户分析与监控仪表板 TradeVisonPro Forex Analyzer Pro 是一款专为 MetaTrader 5 用户设计的交易分析和账户监控解决方案。 本产品将 MT5 交易数据整理到结构化的网页仪表板中,使交易者能够查看账户信息、监控未平仓头寸、分析交易历史、跟踪策略、记录交易日志以及查看绩效统计数据。 TradeVisonPro Forex Analyzer Pro 旨在帮助交易者整理交易信息,并通过受支持的桌面和移动网页浏览器访问这些数据。 主要功能 • MT5 账户仪表板 • 未平仓头寸监控 • 交易历史分析 • 交易日历 • 策略跟踪 • 交易日志 • 账户绩效统计 • 绩效报告 • 交易通知 • 多账户支持 • 可分享的只读报告 MT5 账户仪表板 在一个结构化的仪表板中查看 MetaTrader 5 交易账户的重要信息。 可显示的信息包括: • 账户余额 • 净值 • 可用保证金 • 保证金水平 • 未平仓头寸 • 浮动盈亏 • 交易量 • 经纪商信息 • 账户信息 仪表板集中显示
    FREE
    Alpha Trade Master
    Mohamed Hashem Mohamed Hashem
    您所期望的一切,以及您从未预料到的一切,都在这个机器人中。Alpha Trade Master – 终极图表SMC交易操作系统。欢迎使用 Alpha Trade Master,这是一款专为严肃的交易员、投资者和自营交易公司(Prop-Firm)挑战者设计的机构级算法交易套件。 与依赖滞后指标(如RSI或MACD)和笨拙输入设置的传统零售机器人不同,Alpha Trade Master 是一个完整的聪明钱概念(SMC)操作系统。它像专业的对冲基金交易员一样,精准绘制市场地图、寻找流动性并执行交易。 真正让 Alpha Trade Master 脱颖而出的是其令人惊叹的图表交互式UI。您再也不必打开复杂的MetaTrader设置窗口。从风险管理到视觉指标的所有内容,都通过图表上时尚的交互式面板进行控制。 以下是 Alpha Trade Master 内部庞大生态系统的详细分析: ️ 1. 主仪表板(实时监控与市场脉搏) 这是您的指挥中心,一目了然地提供关键的账户和市场数据。 账户状态:实时监控您的余额、净值、已用保证金、可用保证金和保证金比例,完美居中,最大化可见性。
    PZ Goldfinch Scalper EA MT5
    PZ TRADING SLU
    3.33 (57)
    这是我著名的剥头皮机Goldfinch EA的最新版本,它是十年前首次发布。它以短期内突然出现的波动性扩张为市场提供了头条:它假设并试图在突然的价格加速后利用价格变动的惯性。这个新版本已经过简化,使交易者可以轻松使用测试仪的优化功能来找到最佳交易参数。 [ 安装指南 | 更新指南 | 故障排除 | 常见问题 | 所有产品 ] 简单的输入参数可简化优化 可定制的贸易管理设置 交易时段选择 工作日选择 金钱管理 谨防... ick牛黄牛是危险的,因为许多因素都会破坏收益。可变的点差和滑点降低了交易的数学期望,经纪人的低报价密度可能导致幻像交易,止损位破坏了您获取利润的能力,并且网络滞后意味着重新报价。建议注意。 回溯测试 EA交易仅使用报价数据。请以“每笔交易”模式回测。 它根本不使用HLOC(高-低-开-关)数据 交易时间无关紧要 为了获得更好的性能,请为您希望在每个刻度线模式下交易的每个交易品种运行云优化。稍后分享! 输入参数 触发点:触发点差所需的价格变动。 (预设= 10) 最小时间窗口:价格波动发生的最短时间。 (默认= 3) 最长时间窗口:价格波动发生的最长时间。
    FREE
    Chameleon Trader
    Choawana Malaikitsanachalee
    2 (1)
    Chameleon Hybrid Pro v2.14 - Professional Gold Trading Solution English Description Chameleon Hybrid Pro v2.14 is a professional-grade Expert Advisor (EA) specifically engineered for the Gold (XAUUSD) market. It features a proprietary "Hybrid Intelligence" strategy that merges long-term trend analysis with precision short-term execution. The "Hybrid Pro" Advantage Unlike standard EAs, Chameleon Hybrid Pro utilizes a dual-layer filtering system: Trend Guard (H1): Analyzes the primary mar
    FREE
    AureliusQuantum
    Nicola Biacca Notari
    VERSIONE INGLESE (ENGLISH VERSION) ️ ATTENTION: IMPORTANT NOTE ABOUT THE VERSION AND STRATEGY TESTER RESULTS Due to the strict restrictions and memory limitations imposed by the MQL5 automatic validator, which often rejects algorithms with highly complex protection logics, the version downloadable directly here from the Market serves as a validation/demo setup. To download the FULL, UNRESTRICTED, and REAL production version of the algorithm (.ex5 file), please connect to our official GitHub re
    FREE
    Pricewerk Turtle Soup EA is an automated Expert Advisor for MetaTrader 5. It is based on a rule-based Turtle Soup sweep-and-reclaim approach and is designed to trade only after price sweeps a relevant reference level and then returns back into the prior range. The EA is intended for traders who want to test and automate this setup with configurable entries, exits, filters, position sizing, and chart feedback. It does not trade every breakout and should be verified in the MetaTrader 5 Strategy Te
    Brent Trend Bot
    Maksim Kononenko
    4.5 (16)
    The Brent Trend Bot special feature is simple basic tools and logic of operation. There are no many strategies and dozens of settings, like other EAs, it works according to one algorithm. The operating principle is a trend-following strategy with an attempt to get the maximum profitability adjusted for risk. Therefore, it can be recommended for beginners. Its strong point is the principle of closing transactions. Its goal is not to chase profits, but to minimize the number of unprofitable trans
    FREE
    NeuroExt
    Dmytryi Voitukhov
    4 (11)
    https://t.me/mql5_neuroExt 當前版本和討論。 您可以使用任何工具。基礎將在訓練開始時自動創建。如果您需要從 0 開始訓練 - 只需刪除數據庫文件。 一般條款。 可以訓練 EA 交易在任何工具上工作。 不要試圖在沒有神經網絡訓練的情況下進行測試! 訓練後的平衡圖是水平的就足夠了。 生成訓練基地非常簡單。 美元兌瑞郎可進行準備培訓。 為了正確操作,必須只有一對一帳戶!顧問,只有一個!工具。否則,平衡控制將不起作用。 初始存款 - 200 美元起。 選項: - OrderComm:在訂單中會補充一個操作方式和分析深度的標誌。 - 工作類型:學習\工作\市場。 “學習”——在這種模式下,你需要達到一個至少有輕微增加的時間表。沒有洞。此模式也可用於工作,但市場上一次只會有 1 個訂單。 “工作” - 定期加載數據庫。在測試人員同時進行培訓並不斷提高培訓質量的情況下。 “市場” - 僅供市場接收。需要切換。 - 我的百分比:... - SL:如果你在訓練模式下設置=0,40到110的值會被自動分配,會導致交易過多、學習緩慢和圖像失真。當 MaxOrders>1 且 Wor
    FREE
    Algo Edge EA  This EA only SELL download the second EA for BUY and Run it both. -DE40/ Tec100 Self learning EA just set the EA on the Chart and Start no Settings optimization.  AUD/USD, EUR/USD, DE40, US30, Tec100 and much more.  Multifunctional Expert Advisor can trade with every Forex Pair or Indize. EA can Trade with every Broker. M1 high, M30 medium, H1 low Risk. Functions: For other Indize example US30: Change the Robot Worktime in Europe to 16:30-21:30. -inp1_ =Robot Worktime inp_2 and in
    FREE
    Widow FX
    Michael Prescott Burney
    Widow FX for GER30 - H1 Chart Dominate the Market with Unmatched Precision Widow FX for GER30 is a groundbreaking trading system, specifically designed for the H1 chart, that stands out in the MQL market for its exceptional performance. This elite system features an impressive array of 100 strategies, each meticulously tailored to achieve an excessive win rate. Key Highlights: Superior Win Rate: Boasting a phenomenal 98% win rate in both out-of-sample and in-sample testing cycles since 2021. Min
    FREE
    Gap Catcher
    Mikita Kurnevich
    5 (5)
    Read more about my products Gap Cather - is a fully automated trading algorithm based on the GAP (price gap) trading strategy. This phenomenon does not occur often, but on some currency pairs, such as AUDNZD, it happens more often than others. The strategy is based on the GAP pullback pattern. Recommendations:  AUDNZD  TF M1  leverage 1:100 or higher  minimum deposit 10 USD Parameters:  MinDistancePoints - minimum height of GAP  PercentProfit - percentage of profit relative to GAP level
    FREE
    MSX Plug And Play Scalper EA Overview MSX Plug And Play Scalper EA is a MetaTrader 5 Expert Advisor based on a Triple EMA alignment methodology. The Expert Advisor evaluates trend direction using three Exponential Moving Averages and can optionally apply a higher-timeframe trend filter before opening positions. The EA is intended for users who wish to study and evaluate an EMA-based trend-following approach under live or demo market conditions. Trading Logic The trading engine monitors three Ex
    FREE
    Babel Assistant
    Iurii Bazhanov
    4.33 (9)
    Babel assistant 1     The MT5 netting “Babel_assistant_1” robot uses the ZigZag indicator to generate Fibonacci levels on M1, M5, M15, H1, H4, D1, W1  periods of the charts , calculates the strength of trends for buying and selling. It opens a position with "Lot for open a position" if the specified trend level 4.925 is exceeded. Then Babel places pending orders at the some Fibonacci levels and places specified Stop Loss , Take Profit. The screen displays current results of work on the position
    FREE
    Introducing TRAD-E- LITE : Your Ultimate Trading Assistant! Are you tired of manually analysing the markets and executing trades? TRAD-E- LITE is here to assist you! Developed by Gold Lion XI, this expert adviser utilizes advanced algorithms to identify profitable trading opportunities and execute trades automatically, saving you time and effort. Key Features: Trading Time Management: Take control of your trading schedule. With TRAD-E- LITE , you can define specific trading hours based on your p
    FREE
    Stribrobot
    Lubos Terynger
    3 (2)
    Stribrobot — Silver Trading Bot Automated EA for XAGUSD running on H1 timeframe. Uses trend following with RSI, EMA and ADX signals combined with Bollinger Band based take profit targeting. Built in market regime detection automatically adjusts behavior based on current conditions. Position sizing adapts to volatility in real time — reduces risk during high volatility spikes, increases it during calm periods. Session filters focus trading during the most active silver hours, skipping low liquidi
    FREE
    SimpleTrade by Gioeste
    Giovanni Scelzi
    4 (3)
    Discover the power of automated trading with **SimpleTradeGioeste**, an Expert Advisor (EA) designed to optimize your trading operations in the Forex market. This innovative EA combines advanced trading strategies with proven technical indicators, offering an unparalleled trading experience. video backtest :  https://youtu.be/OPqqIbu8d3k?si=xkMX6vwOdfmfsE-A ****Strengths**** - **Multi-Indicator Strategy**: SimpleTradeGioeste employs an integrated approach that combines four main technical ind
    FREE
    该产品的买家也购买
    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
    Lizard
    Marco Scherer
    4.9 (30)
    LIZARD 是什么? Lizard 是一款全自动智能交易系统(EA),专为 MetaTrader 5 上的 XAUUSD(黄金)开发。它采用多策略摆动突破系统,识别图表上的关键结构位,并在精确计算的入场点放置挂单止损单。无马丁格尔。无网格。不加仓摊平。 每笔交易都设有明确的 Stop Loss 和 Take Profit,并由多层退出系统全天候自动管理。 实盘信号 - 购买前追踪真实表现: https://www.mql5.com/en/signals/2372821 工作原理 Lizard 在 H1 时间框架上持续扫描 XAUUSD 图表,寻找重要的摆动高点和摆动低点。当识别到有效结构时,它会在距离该价位经校准的位置放置 Buy Stop 或 Sell Stop 挂单。需要真正的突破才能触发,而非价格的简单触碰。 这种方法可过滤掉弱势行情,仅在动能确认时入场。 6 个独立策略在 H1 时间框架上同时运行,每个都拥有各自的 Stop Loss 和 Take Profit、追踪系统、magic number 和风险权重。 主要功能 多策略架构: 六个单独优化的策略覆盖不同的市场状况,从
    Scalping Robot Pro MT5
    MQL TOOLS SL
    4.54 (127)
    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.47 (103)
    道具公司已准备就绪!( 下载道具文件 ) 警告: 目前仅剩少量存货! 最终价格:990美元 免费获得 1 个 EA(适用于 3 个交易账户)-> 购买后请联系我 超值组合优惠   ->   点击这里 加入公开群组: 点击此处   实时信号 客户端信号 YouTube 评论 最新手册 欢迎来到黄金收割者! 这款EA是在非常成功的Goldtrade Pro的基础上开发的,设计用于同时在多个时间框架上运行,并且可以选择将交易频率设置为从非常保守到极度波动。 该EA使用多种确认算法来寻找最佳入场价格,并在内部运行多种策略来分散交易风险。 所有交易都有止损和止盈,但同时也使用追踪止损和追踪止盈来最大限度地降低风险,并最大限度地提高每笔交易的潜力。 该系统基于非常流行且行之有效的策略:交易突破重要支撑位和阻力位的交易机会。   黄金非常适合这种策略,因为它是一种波动性很高的货币对。 系统会根据您的账户规模和最大允许回撤设置自动调整交易频率和手数! 回测结果显示增长曲线非常稳定,回撤幅度控制得非常好,恢复速度也很快。  这款EA已经针对黄金进行了最长时间的压力测试,使用了多个经纪商的多个价格
    TwisterPro Scalper
    Jorge Luiz Guimaraes De Araujo Dias
    4.45 (120)
    更少交易。更好交易。稳定性高于一切。 • 实时信号 模式 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。 它是一种专业级工具,旨在帮助交易者在任何市场和时间范围内创建无限数量的突破策略。 无论您专注于波段交易、剥头皮交易还是构建多元化投资组合,该系统都能提供无与伦比的灵活性和
    Smart Gold Hunter
    Barbaros Bulent Kortarla
    5 (19)
    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
    Zerqon EA
    Vladimir Lekhovitser
    3.33 (27)
    实时交易信号 交易活动的公开实时监控: https://www.mql5.com/zh/signals/2372719 官方信息 卖家资料 官方频道 用户手册 安装说明和使用指南: 查看用户手册 Zerqon EA 是专为 XAUUSD 交易开发的自适应专家顾问。 该策略基于通过 ONNX 集成的 Deep LSTM 神经网络模型,使系统能够处理连续性的市场行为并以结构化方式分析价格动态。 该模型专注于识别黄金价格走势、波动性以及时间条件中的特定模式。 与传统固定信号不同,EA 通过训练后的神经网络框架分析市场,仅在内部模型识别到合适条件时才执行交易。 Zerqon EA 不会持续不断地进行交易。 某些时期可能完全没有任何交易,而在适合的 XAUUSD 市场阶段,系统可能会在较短时间内执行多笔交易。 每笔交易均带有预定义的 Stop Loss 和 Take Profit 参数。 同时还使用追踪止损机制来动态管理持仓。 该 EA 适用于偏好基于神经网络的黄金交易方式、重视执行控制以及接受可变交易频率的用户。 主要特点 不使用高风险交易技术,如马丁格尔 (M
    Gold Snap
    Chen Jia Qi
    4.69 (16)
    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
    Gold Neural Core
    TICK STACK LTD
    5 (3)
    Gold Neural Core — Hyper-Scalping Grid System for XAUUSD Learn how I personally manage risk when using grid systems:  https://www.mql5.com/en/blogs/post/767250 Join my open group for questions related to any of my products:  https://www.mql5.com/en/messages/014beab2560cdc01 Read the user guide to any TickStack grid system:  https://www.mql5.com/en/blogs/post/767232 Gold Neural Core is a high-frequency grid trading system engineered specifically for gold (XAUUSD), combining momentum and trend-bas
    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
    Mavrik Scalper
    Vladimir Lekhovitser
    4.5 (2)
    实时交易信号 交易活动的公开实时监控: https://www.mql5.com/zh/signals/2378119 官方信息 卖家资料 官方频道 用户手册 安装说明和使用指南: 查看用户手册 Mavrik Scalper 是基于 Hybrid Attention 神经网络架构开发的新一代专家顾问。 与依赖预定义交易规则的传统算法策略不同,Mavrik Scalper 使用经过训练的神经网络模型,能够同时分析市场行为的多个特征。 Hybrid Attention 架构使系统能够动态关注最重要的市场信息,同时降低次要价格波动的影响。 该模型旨在识别短期交易机会,并更加注重执行质量,而不是交易数量。 每一个交易决策都基于模型学习到的多个特征之间的综合关系,而不是单一信号。 交易活动具有自适应特性。 某些交易时段可能完全没有开仓。 而在市场条件有利时,系统可能会在较短时间内执行多笔交易。 这种行为是策略决策过程的组成部分,应被视为正常特性,而不是缺乏交易机会。 风险管理已集成到执行框架之中。 每笔交易均设置预定义的 Stop Loss 和 Take Profi
    Gold House MT5
    Chen Jia Qi
    4.59 (58)
    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 年历史数据开发验证,并经过实盘确认后才决定公开。我们没有为了上架专门优
    Logan MT5
    Thierry Ouellet
    5 (6)
    LIMITED TIME OFFER AT 249$ Price will go up at  499$ on July 24th! 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—includ
    SomaOil
    Andrii Soma
    5 (2)
    SomaOil 是一款专为 MetaTrader 5 打造的多策略突破型智能交易系统(EA),仅适用于 WTI 原油(XTIUSD)。一张图表、一个 EA,20 套独立策略并行运行,构成单一、分散化的组合。 实时信号。 为在上线时让更多人能够入手,我采用透明的阶梯定价模式: 首发价:100 USD(48 小时) 自周一起,每售出 10 份拷贝,价格上涨 100 USD 价格每天最多上涨一次,即使同一天售出超过 10 份亦然 早期购买者在产品生命周期内锁定最低价格。 理念 与其运行单一、容易过度拟合某一狭窄市况的设置,SomaOil 自带一套精选的 20 套预调策略,全部在同一 WTI 图表上的单个 EA 中并行运行。 每套策略拥有各自的 magic number、注释、时间周期、摆动识别参数、出场规则、新闻距离与手数步长。它们共享同一执行引擎但独立交易,因此您可在多个时间周期与突破宽度上获得真正的分散化,而无需管理大量图表。 组合构建 我在两个互补的样本内区间上进行了优化,每个区间使用相同的参数网格: 时间周期分为 5 组:D1、H12、H8、H4、H1 突破宽度有三种变体: V1 B
    Smart Gold Impulse
    Barbaros Bulent Kortarla
    4 (6)
    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 上的结果非常强
    Pulse Engine
    Jimmy Peter Eriksson
    3.94 (34)
    最新消息——目前仅剩少量存货,欲购从速! 该系统的主要目标是在不使用任何有风险的鞅或网格的情况下实现长期的实时性能。  数量极其有限,现价优惠 最终价格 1499 美元 【实时信号】    |    【回测结果】    |    【设置指南】    |    【FTMO 结果】 一种不同的交易方法 Pulse Engine 不使用任何指标或特定时间框架。它采用了一种非常独特的方法,这是 MQL5 上任何其他交易系统都不采用的方法。 它交易的是日内方向性模式。这些模式是我利用自己多年来不断开发和完善的特定模式识别软件发现的。 该软件使我能够识别出市场历史上在一天中哪些时段会出现强劲的单向波动。 每个市场和每周的每一天都有其独特的走势。 这种方法之所以如此强大,是因为它不依赖于市场是处于趋势行情、反转行情还是任何特定的市场状态。其模式与这些因素完全无关。 脉冲引擎包含涵盖 六大市场的 70 多种不同模式 ,并结合超过 5万笔 交易的历史回测数据。 每个市场的回测时间均尽可能追溯至数据允许的最长时期, 外汇货币对约 20年,指数约 15 年, 加密货币 约10 年。这确保了极高的统计显
    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
    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凭借其卓越的亏损交易处理方法,在众多专家顾问中脱颖而出。
    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 模式。系统平均每年约执行
    SixtyNine EA
    Farzad Saadatinia
    5 (3)
    SixtyNine EA – 一款适用于 MetaTrader 5 的黄金交易专家顾问,具备 6 个集成策略层、每笔交易预设 Stop Loss,以及不使用马丁格尔、Recovery 系统或网格交易的清晰交易结构。 公开实盘信号:$500 初始资金,固定 0.02 手,500%+ 增长,实盘运行超过 20 周 公开实盘信号是 SixtyNine EA 最重要的运行证明。该账户以 $500 余额 开始交易,采用 每笔交易固定 0.02 手 ,并已持续进行超过 20 周 的真实交易。在此期间,实现了超过 500% 的总增长 。 该信号同时展示了系统在真实市场环境中的风险表现,包括约 20% 的回撤 。由于该信号是在较小的 $500 账户中使用固定 0.02 手交易,偏好更低风险的用户可以根据市场情况和经纪商执行条件选择更小的手数设置以及更保守的 set 文件。 LIVE SIGNAL HERE 价格: $299 → 下一阶段: $499 → 最终: $999 SixtyNine EA 专为 MetaTrader 5 平台上的黄金(XAUUSD)交易 设计。它结合了 6 个集成策略层
    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 经过优化,可以捕捉每个周期中发生的模式,确保它始终以有利的方式结束交易 为什么选择量子比
    Impulse MT5
    Simon Reeves
    5 (13)
    Are you ready to power up your Gold trading? Impulse by Starpoint Trading — A six-strategy gold EA that waits for the perfect shot. Launch offer: 30% off until 26th July   — to celebrate the v2.00 release, Impulse is available at a 30% discount. On 26th July the price reverts to $499, so grab it while the offer lasts. Impulse v2.00 is here! The biggest update in Impulse's history has arrived. Version 2.00 takes everything that made Impulse a disciplined, patient Gold trading system and elevates
    Quantum iGold MT5
    Yassine Mouhssine
    5 (2)
    Quantum iGold MT5 — 高级 AI 交易系统(XAUUSD) Quantum iGold MT5 是一套完全自动化的交易系统,采用先进的人工智能技术构建。 该系统使用混合神经网络架构,结合 LSTM 和 Transformer 模型,用于分析 XAUUSD 的价格行为。 这种结构使系统能够识别市场形态,适应波动率变化,并实时生成技术性更精细的交易信号。 购买后,请通过 MQL5 私信联系我,以获取设置文件和安装指南。 Core Features Dedicated AI Engine 专为 XAUUSD 开发的专用 AI 框架,使系统能够理解市场行为并做出结构化交易决策。 Dynamic Risk Management 内置模块会根据当前波动率自动调整仓位大小和风险敞口,帮助维持平衡运行。 Plug-and-Play Operation 系统包含优化后的默认设置,启动前只需配置少量基础参数。 Universal Compatibility 兼容主要经纪商账户类型,包括 ECN、Standard 和 Raw Spread。 Supported Markets XAUUSD
    XG Gold Robot MT5
    MQL TOOLS SL
    4.27 (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
    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
    作者的更多信息
    ScalpEA v2
    Martin Vrlik
    I am happy that you are here, let me introduce my small miracle. How it started: At first, bot was created for XAUUSD pair. It could be used / trained for whatever you like, but at your own risk!  For your info, I am not a marketing guy so nothing here will look so fancy, my bot just simply works, and decision is only on you if you would like to buy it based on your tests. It all started as an experiment after one developer here told me that doing these modifications would be too complicated. So
    筛选:
    Samuel Henrique Almeida Ferreira
    844
    Samuel Henrique Almeida Ferreira 2026.05.14 00:54 
     

    Hello. I’m testing the EA and I would like to better understand the FVG identification logic used in it. I really liked the robot, and during my backtests it has shown very promising and impressive results. What criteria does the EA use to detect, validate, and invalidate FVGs? Is mitigation considered by candle close, wick touch, or another method? Does it use any additional filters for entries, trend, or confirmation? Thank you.

    Martin Vrlik
    621
    来自开发人员的回复 Martin Vrlik 2026.05.14 15:33
    I will create indicator which will contain all the filters used in my EA. Will let you know when finished.
    sancai
    47
    sancai 2026.05.12 03:41 
     

    用户没有留下任何评级信息

    Martin Vrlik
    621
    来自开发人员的回复 Martin Vrlik 2026.05.14 15:28
    Hi, as I wrote in the DM, config for XAUUSD is the default one.
    回复评论