Harmonacci Pattern AI

Harmonacci Pattern EA — Review & Parameter Guide

Overview

Harmonacci Pattern EA is a rule-based Expert Advisor for MetaTrader 5 that automates harmonic (XABCD) price pattern trading. It scans price swings using a faithful port of MetaQuotes’ own ZigZag indicator, matches the swing points against 19 harmonic pattern templates (Fibonacci ratio tables), constructs a Potential Reversal Zone (PRZ) for each candidate, and only opens a trade after price breaks out of that zone in the expected direction — not on the first touch.

An optional AI confirmation layer (powered by Grok / xAI) can be enabled to let a large language model review recent candles before every entry. However, the EA is fully self-contained and works perfectly with this feature disabled.

This article explains what the EA does well, its real limitations, and provides a detailed guide to every input parameter so you can configure it correctly for your account and instruments.

Strengths

  • No external indicator dependency: The ZigZag calculation is embedded directly in the EA (ported line-for-line from the official MetaQuotes ZigZag.mq5). No iCustom() calls, no missing indicator errors, and no extra files to install.
  • Broad pattern coverage: Supports 19 harmonic templates (Gartley, Cypher, Barracuda, and 16 trademark-safe variants including Flying Fox, Lobster, Dragonfly, White/Black Swan, Max and A- extended families). Each pattern can be enabled or disabled independently.
  • Confluence-based PRZ: The reversal zone for point D is built from two independent Fibonacci projections (BC→D extension and XA→D retracement) and is only accepted where they overlap. This significantly filters out low-quality matches.
  • Breakout confirmation: The EA waits for a confirmed directional breakout after price enters the PRZ, avoiding entries at the first touch of a level that may not hold.
  • Clear invalidation and timeout logic: A setup is cancelled the moment price closes beyond point X, or after a configurable number of bars without confirmation.
  • Margin-aware position sizing: Lot size is calculated based on account risk percentage, then verified with real free margin using OrderCalcMargin. The EA automatically reduces size or skips the trade if margin is insufficient.
  • Staged exits: Each signal can be split into three separate tickets with independent take-profit levels anchored to the pattern structure (point C, Fibonacci retracement of C–A, and point A).
  • Optional AI second opinion: When enabled, the EA sends pattern structure and recent candles to an LLM and requires approval before entering. Disabled by default — no internet dependency for core operation.
  • Excellent visual transparency: Real-time drawing of X-A-B-C labels, trend lines, PRZ rectangle, and ratio values on the chart.

Limitations & Honest Caveats

  • Single active setup at a time: The EA tracks and manages only one candidate pattern simultaneously. It does not evaluate multiple overlapping patterns in parallel like a manual trader might.
  • No trend or multi-timeframe filter: Purely price and ratio-based on a single timeframe. Counter-trend setups can and will be taken.
  • Wide-tolerance patterns create noise: Templates with very broad ratios (especially White Swan and Sea Pony) generate frequent matches and invalidations. Disable them first if you see too many “Candidate invalidated” messages.
  • ZigZag repaint behavior: Like any ZigZag system, the most recent swing can repaint. Patterns lock only after C is confirmed, but recent D projections can still shift slightly.
  • No trailing stop or breakeven: SL/TP are fixed at entry. Trade management relies on the three staged take-profits.
  • AI confirmation adds latency and cost: Requires internet and API billing. Not recommended for long-term backtesting.
  • Backtest quality depends on broker data: Results vary significantly between “Every tick based on real ticks” and lower-quality modeling.
  • Not a guaranteed profit system: Harmonic patterns are probabilistic. Thorough backtesting on your specific symbol, timeframe, and broker is essential.

Complete Parameter Reference

1. ZigZag / Swing Detection

These parameters define how the EA detects swing highs and lows, forming the foundation of XABCD pattern recognition.

  • InpZZDepth (Default: 12): Number of bars to look on each side for a swing high/low. Higher values detect major swings, lower values catch minor swings and wicks (increases signal frequency but adds noise).
  • InpZZDeviation (Default: 50): Minimum price movement in points required to confirm a new swing in the opposite direction.
  • InpZZBackstep (Default: 3): Minimum number of bars between two consecutive opposite swings to reduce clutter.
  • InpMaxHistoryBars (Default: 3000): Maximum historical bars used to reconstruct the ZigZag indicator.

2. Pattern Matching

  • InpRatioTolerance (Default: 0.04): Tolerance added to standard Fibonacci ratios (e.g., 0.618 becomes 0.578 – 0.658).
  • InpMaxBarsInZone (Default: 40): Maximum bars the EA will wait for breakout confirmation after price enters the Potential Reversal Zone (PRZ).
  • InpInvalidateBufferPt (Default: 150): Extra buffer in points beyond pattern invalidation level (protects against wicks and spread spikes).

3. Breakout Confirmation Entry

  • InpBreakoutPeriod (Default: 8): Donchian Channel period for entry confirmation. The EA waits for a candle close beyond the highest high (Buy) or lowest low (Sell) of the last N bars.

4. Risk Management

  • InpUseRiskPercent (Default: true): If true, lot size is calculated based on account balance percentage. If false, fixed lot is used.
  • InpRiskPercent (Default: 1.0): Risk percentage per trade.
  • InpFixedLot (Default: 0.10): Fixed lot size when risk percent is disabled.
  • InpSL_BufferPoints (Default: 150): Additional Stop Loss buffer in points.
  • InpTP2_CDRetrace (Default: 0.618): Fibonacci retracement level of CD leg for TP2.
  • InpMaxSpreadPoints (Default: 350): Maximum allowed spread (in points) to open a trade.
  • InpSlippagePoints (Default: 30): Maximum allowed slippage.
  • InpMagicNumber (Default: 20260703): Unique identifier for the EA’s trades.

5. Pattern Activation Toggles

The EA includes 19 independently switchable harmonic patterns (all enabled by default):

FlyingFox, Gartley, Lobster, Dragonfly, Cypher, Barracuda, AltFlyingFox, DeepLobster, WhiteSwan, BlackSwan, MaxBat, MaxGartley, MaxDragonfly, AltBarracuda, ALobster, ADragonfly, AFlyingFox, AGartley, SeaPony

6. Chart Display

  • InpDisplayPoints (Default: true): Show X-A-B-C-D labels and swing lines.
  • InpDisplayRatios (Default: true): Display calculated Fibonacci ratios on chart.
  • InpDisplayPRZ (Default: true): Draw Potential Reversal Zone as a shaded rectangle.
  • InpDisplaySLTP (Default: true): Show SL and TP levels on chart.
  • InpColorBullish / InpColorBearish / InpColorPRZ: Colors for bullish, bearish, and PRZ zones.

7. AI Confirmation (Grok / xAI) – Simple Mode

  • InpUseAIConfirmation (Default: false): Master switch for basic AI confirmation.
  • InpGrokApiKey (Default: ""): Your xAI API key (keep private).
  • InpGrokApiUrl (Default: https://api.x.ai/v1/chat/completions)
  • InpGrokModel (Default: grok-4.3)
  • InpGrokReasoningEffort (Default: none): Thinking effort (none/low/high).
  • InpAIMinConfidence (Default: 0.60): Minimum AI confidence score required.
  • InpAICacheEnabled (Default: true): Enable caching to reduce API calls.

8. Deep AI Pattern Analysis (Grok Analyst Layer)

  • InpUseDeepAIAnalysis (Default: false): Master switch for advanced multi-factor AI analysis.
  • InpAIMinConvictionScore (Default: 75.0): Minimum conviction score (0-100) to allow a trade.
  • InpDeepAICandleCount (Default: 60): Number of recent candles sent for analysis.
  • InpAIIncludeChartDesc (Default: true): Automatically generate candle pattern descriptions for the AI.
  • InpAIMultiPatternEval (Default: false): When multiple patterns form on the same swings, let Grok choose the best one.
  • InpDisplayAIVerdict (Default: true): Display Grok’s conviction score and reasoning directly on the chart.
  • InpAIApplySLAdjustment (Default: false): Allow AI to suggest Stop Loss adjustment.

Recommended Settings for Gold (XAUUSD)

Gold is highly volatile with frequent fakeouts and liquidity sweeps. The following settings are optimized for stable performance.

Recommended Environment:

  • Timeframe: H1 or H4 (M15 and lower are too noisy)
  • Broker: ECN/Raw Spread
  • WebRequest: Allow https://api.x.ai in MT5 (Tools → Options → Expert Advisors)
  • In Tools → Options → Expert Advisors → Allow WebRequest for listed URL: Add URL:  https://script.google.com

Suggested Parameters for XAUUSD:

Parameter Group Parameter Recommended Value Rationale
ZigZag Settings InpZZDepth 15 Filters minor wicks
InpZZDeviation 100 $1.00 minimum move
InpZZBackstep 5 Cleaner swing structure
Pattern Matching InpInvalidateBufferPt 200 Better protection against sweeps
Risk Management InpSL_BufferPoints 200 $2.00 safety buffer
InpMaxSpreadPoints 300 Avoid high spread periods
Deep AI Analyst InpUseDeepAIAnalysis true Full AI power enabled
InpAIMinConvictionScore 75.0 High-quality setups only
InpDeepAICandleCount 60 Rich market context
InpAIMultiPatternEval true AI selects best pattern
InpAIAnalyzeAtDetection false Analyze at breakout (recommended)

Quick AI Setup Guide:

  1. Get your API Key from x.ai
  2. In MT5: Tools → Options → Expert Advisors → Check "Allow WebRequest for listed URL" → Add https://api.x.ai
  3. Attach EA to XAUUSD H1 or H4 chart
  4. Paste your API key into InpGrokApiKey
  5. Set InpUseDeepAIAnalysis = true
  6. Apply the recommended settings above

After loading, check the Experts tab for connection confirmation and license status. When a valid breakout occurs, Grok’s conviction score and detailed reasoning will appear on the chart.

Alerts

Popup, Push notification, Sound, and Email alerts.

Suggested Starting Points

  • Conservative / Swing Trading (H1–H4, Gold, Majors): Keep defaults, disable White Swan & Sea Pony, set RiskPercent to 0.5–1.0.
  • More Signals: Slightly increase InpRatioTolerance and reduce InpBreakoutPeriod.
  • Small Accounts: Keep risk-based sizing at 1% or lower.

Disclaimer

Harmonacci Pattern EA is a rule-based tool for identifying and trading harmonic price patterns. It is not a guaranteed profit system. Past performance does not guarantee future results. Always test thoroughly on a demo account with your broker’s real conditions before using real capital. Never risk money you cannot afford to lose.

This is the clean, professional English version optimized for posting on MQL5. You can copy and paste it directly. Let me know if you want any adjustments, such as adding images placeholders, shortening sections, or changing the tone.


推荐产品
Use this expert advisor whose strategy is essentially based on the Relative Strength Index (RSI) indicator as well as a personal touch. Other free expert advisors are available in my personal space as well as signals, do not hesitate to visit and leave a comment, it will make me happy and will make me want to offer content. Expert advisors currently available: LVL Creator LVL Creator Pro LVL Bollinger Bands   Trading is not a magic solution, so before using this expert on a live account, carry
FREE
EV Divergence Sniper
Enrique Valeros Muriana
EV Divergence Sniper is a precision-oriented Expert Advisor designed to identify high-probability market reversals through true price divergences confirmed by RSI and Stochastic. The system focuses on structural market conditions and enters only when price and momentum show a clear imbalance, significantly reducing false entries and improving signal quality. The EA uses a structural stop loss placed beyond the most recent swing, combined with a fully customizable risk-to-reward take profit. It i
FREE
PZ Fractal Trader EA MT5
PZ TRADING SLU
3.2 (5)
This EA trades untested fractals using pending orders. It offers many trading behaviors and flexible position management settings, plus many useful features like customizable trading sessions and a martingale mode. [ Installation Guide | Update Guide | Troubleshooting | FAQ | All Products  |  Get Help ] Easy to use and supervise It implements 4 different trading behaviors Customizable break-even, SL, TP and trailing-stop Works for ECN/Non-ECN brokers Works for 2-3-4-5 digit symbols Trading ca
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
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
Astin
Novateq Pty. Ltd
Use Stochastic with oversold and overbought to find trading opportunities. Use RSI to identify strength of trend anf confirm the trend matches the stochastic overbought and oversold. Trade on MACD cross matching the trend identified by Stochastic and RSI. Set stop loss at a recent swing high or swing low. Set take profit as a ratio of stop loss. Exits are on take profit and stop loss only, there is no exit signal.
FREE
Polar Bear MACD Divergence – MetaTrader 5 智能交易顾问 (EA) 交易策略:MACD 经典 & 隐藏背离 | 最佳交易对:EURUSD | 时间周期:1H 主要特点 智能背离检测 – 识别经典 & 隐藏背离,高概率反转信号。 灵活风险管理 – 可调节止损 (30 点) & 止盈 (30 点)。 马丁格尔(可选)– 手数倍增器 (2.0x) 用于弥补亏损(谨慎使用)。 EURUSD 1H 表现最佳 – 针对趋势和回调行情优化。 易于回测 – 完全兼容 MT5 策略测试器。 推荐设置 账户资金:1000 美元以上(以确保安全的风险管理)。 交易对:EURUSD(最佳表现),但同样适用于其他主要货币对。 时间周期:1H(信号准确率与频率的理想平衡)。 使用前请先回测!– 在 MT5 测试器中验证性能后再进行实盘交易。 输入参数(可自定义) mql5 //+------------------------------------------------------------------+ //|
FREE
EA16 Taka Grid
Nhat Tien Duong
TAKA Grid EA (EA16): The Sideway King & Prop Firm Shield Are you tired of EAs that get destroyed by choppy, ranging markets? Meet TAKA Grid EA , the ultimate mean-reversion system designed specifically for the AUDNZD cross pair on the M15 timeframe. It doesn't rely on explosive breakouts; it dominates the sideways chop with mathematical precision.   ENTER YOUR KEY HERE:   [  EA16_99999D_TANINCODER_595559587987 ] -- MANDATORY: ALLOW WEBREQUEST TO ACTIVATE THE BOT To verify your License
FREE
Pump Liquidity Refueling
Konstantin Meshcheriakov
PUMP V3_0 Liquidity Refueling — Refueling Your BalanceWhat is "Liquidity Refueling"? Think of the Forex market as a highway and liquidity as the fuel.  When institutional players "pour" massive volume into the market, the price makes a sharp surge — an impulse or a "pump."  The PUMP V3_0 EA acts as a smart fueling station: it identifies moments of maximum market energy and "pumps" that momentum directly into your trading account.   Performance Metrics (Strategy Tester Data):Net Profit "Pumped"
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
TRDR Bot3
Musa Mampondo
Momentum-Driven MT5 Expert Advisor Using MACD & Bulls Power TRDR Bot-3 is a structured, momentum-focused Expert Advisor developed by TRADEWYZE, designed for traders who want a clean trend-confirmation system with disciplined exits and strong capital protection. The EA combines MACD, Bulls Power, and Momentum indicators to identify directional strength and exit trades when momentum begins to fade—making it ideal for sustained market moves in Forex, Indices and Commodities. This EA is not a Black
FREE
Zigzag star
Ahmed Mohammed Bakr Bakr
ZigZag Expert Advisor – Strategy Description The ZigZag Expert Advisor (EA) is an advanced price-action trading system designed to identify significant market swings , trend structure , and high-probability reversal zones using the ZigZag algorithm. The EA filters market noise by focusing only on meaningful highs and lows, allowing it to trade in harmony with market structure rather than reacting to random price fluctuations. Core Strategy Logic Detects higher highs, higher lows, lower highs, an
FREE
NexusXAUPro
Dian Mahardika
NexusXAUPro is an automated Expert Advisor designed specifically for XAUUSD trading on MetaTrader 5. The system combines multiple market conditions to identify potential trading opportunities, including trend direction, trend strength, volatility, Bollinger Band context, pullback behavior, price location, candle confirmation, probability analysis, and risk management . NexusXAUPro is designed to avoid relying on a single indicator. Instead, it evaluates several conditions before allowing a trade
Fully autonomous neural network Expert Advisor for Gold (XAUUSD) trading. Features real-time dynamic Self-Learning based on closed trades and a unique interactive AI training progress bar directly on your chart! Aurum AI Evolution XAUUSD is a next-generation, high-tech trading robot engineered specifically for the highly volatile Gold market. The core of the EA utilizes a single-layer perceptron mathematical model paired with a Hyperbolic Tangent (MathTanh) activation function. The network is co
FREE
Golden Square X
Huynh Tan Linh N
4.18 (11)
This is my latest Free version for Gold. With optimized parameters and user-friendly features, this version is likely very easy to use and highly effective. You can customize TP and SL parameters as you wish, but the default settings should work well for you without the need for further adjustments.  This version is designed for the M5. This version does not require a large capital investment; only $100-$200 is sufficient for Golden Square X to run and generate profits for you. Based on backtest
FREE
WaveTraderMA
ANTON KOMISSARENKO
F ully automated trading system based on the Moving Averages indicator. It supports three classic trading signals and uses a flexible position management system. It is suitable for various trading instruments and adapts to any market conditions. Key features Three entry signals for flexible strategy customization Three types of entry orders: Market order Pending market stop Limit market order Trading time configuration – up to six time intervals Closing orders after a specified number of bars F
FREE
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
The Dual MACD & Stochastic Expert Advisor (EA)  is a fully automated trading system that utilizes two  MACD (Moving Average Convergence Divergence) indicators along with the  Stochastic Oscillator  to identify high-probability trading opportunities. By combining trend confirmation from MACD with momentum analysis from Stochastic, this EA provides precise entry and exit points for optimized trading performance. Key Features: • Dual MACD Strategy – Uses two MACD indicators with different setting
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
Fibo Trader FREE MT5
Grzegorz Korycki
3 (3)
Fibo Trader is an expert advisor that allows you to create automated presets for oscillation patterns in reference to Fibonacci retracements values using fully automated and dynamically created grid. The process is achieved by first optimizing the EA, then running it on automated mode. EA allows you to switch between automatic and manual mode. When in manual mode the user will use a graphical panel that allows to manage the current trading conditions, or to take control in any moment to trade ma
FREE
Long Waiting
Aleksandr Davydov
Expert description Algorithm optimized for Nasdaq trading The Expert Advisor is based on the constant maintenance of long positions with daily profit taking, if there is any, and temporary interruption of work during the implementation of prolonged corrections The Expert Advisor's trading principle is based on the historical volatility of the traded asset. The values of the Correction Size (InpMaxMinusForMarginCallShort) and Maximum Fall (InpMaxMinusForMarginCallLong) are set manually. Recomm
FREE
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
PZ Stochastic EA MT5
PZ TRADING SLU
2.6 (5)
This EA trades using the Stochastic Indicator. It offers many trading scenarios and flexible position management settings, plus many useful features like customizable trading sessions, a martingale and inverse martingale mode. [ Installation Guide | Update Guide | Troubleshooting | FAQ | All Products  |  Get Help ] Easy to use and supervise It implements three different entry strategies Customizable break-even, SL, TP and trailing-stop Works for ECN/Non-ECN brokers Works for 2-3-4-5 digit symb
FREE
PZ Ichimoku EA MT5
PZ TRADING SLU
4.05 (19)
Trade the Ichimoku Kinko Hyo Indicator with complete freedom using a powerful and flexible EA. It implements many entry strategies and useful features, like customizable trading sessions and a martingale mode. [ Installation Guide | Update Guide | Troubleshooting | FAQ | All Products  |  Get Help ] Easy to use and supervise It implements several entry conditions Customizable break-even, SL, TP and trailing-stop settings Works for ECN/Non-ECN brokers Works for 2-3-4-5 digit symbols Implements a
FREE
PZ Turtle Trading EA MT5
PZ TRADING SLU
2 (4)
该专家顾问实施了最初的丹尼斯和埃克哈特交易系统,通常被称为“乌龟交易者”。它的交易方式与原始海龟完全一样,并且可以由经验丰富的交易者使用以捕获向上或向下市场中的趋势。 [ 安装指南 | 更新指南 | 故障排除 | 常见问题 | 所有产品 ] 易于使用和监督 完全可配置的策略设置 完全可配置的交易设置 适用于ECN /非ECN经纪人和2-3-4-5数字符号 适用于差价合约和外汇工具 该策略交易两个互补系统,一个主系统和一个故障安全系统: 系统一交易20天突破,并在10天突破完成交易 系统2交易55天突破,并在20天突破完成交易 该策略的基本原则如下: 根据最后一个信号的结果过滤交易 交易以ATR(30)/ 2的时间间隔最多可进行4笔交易 跟踪止损适用于所有使用卖/买+/- ATR(30)* 2的交易 每减少20%,每笔交易的风险就会降低10% 该EA实现了原始乌龟交易者的默认设置,但此后在金融市场发生了很大变化。为了获得利润,交易者将必须对交易内容做出最佳判断,并优化策略测试器中的设置。 设置 将EA交易程序加载到任何图表时,将为您提供一组选项作为输入参数。如果您认为它们太多,请不
FREE
Triple Indicator Pro
Ebrahim Mohamed Ahmed Maiyas
3.67 (3)
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
Triangle Hunter Pro
Mansoor Ali P Cheriaottayil
Triangle Hunter Pro  is a cutting-edge algorithmic trading system designed to capitalize on one of the most reliable chart patterns in technical analysis:  triangle consolidations . By combining triangle pattern detection, candlestick confirmation, and an optional adaptive grid system, this EA identifies high-probability breakout trades while prioritizing risk management. Perfect for volatile forex pair EURUSD on 30 -minute or higher timeframes, it balances aggressive profit potential with robus
FREE
[FREE EA] EA23 TANIN HEIKEN CCI: THE PULLBACK ASSASSIN & PROP FIRM SHIELD Are you tired of entering trends too late and getting caught in drawdowns? Meet EA23 Tanin Heiken CCI , a commercial-grade automated trading system designed to catch the perfect pullback entries in a strong trend. THE BIG UPDATE: NO MORE .SET FILES! For the first time, you don't need to download or load messy .set files. EA23 comes with Built-in Presets . Just select your mode from the dropdown menu (Prop Firm Safe M
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
PZ Flexible Breakout EA MT5
PZ TRADING SLU
3.5 (2)
Trade donchian breakouts with complete freedom. This EA can trade any breakout period, any timeframe, with pending or market orders- as desired- and implements many other useful features for the exigent trader, like customizable trading sessions and week days, a martingale mode and inverse martingale mode.  [ Installation Guide | Update Guide | Troubleshooting | FAQ | All Products  |  Get Help ] Easy to use and supervise Customizable trading direction Customizable donchian breakout period It
FREE
该产品的买家也购买
Quantum Titan MT5
Bogdan Ion Puscasu
4.56 (9)
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,并且
Smart Gold Hunter
Barbaros Bulent Kortarla
4.28 (47)
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
Quantum Queen X MT5
Bogdan Ion Puscasu
5 (36)
传奇仍在继续。女王不断进化。 欢迎来到 Quantum Queen X——传奇黄金交易系统的下一代产品,它建立在 Quantum Queen 已证明的成功之上。 Quantum Queen X 基于与 Quantum Queen 相同的成熟核心引擎构建,引入了强大的全新自定义模式,允许交易者精确选择要启用或禁用的策略。 每项策略都经过单独审查、改进和优化,以在不同的市场环境下提供更佳的性能和适应性。默认预设也得到了增强,现在包含 9 项精心挑选的策略,而非之前的 7 项,从而提供更广泛的市场覆盖和更多交易机会,同时保留了使 Quantum Queen X 成为 MQL5 平台上最成功的黄金智能交易系统的严谨交易理念。 IMPORTANT! After the purchase please send me a private message to receive the installation manual and the setup instructions 折扣价   价格 。     每购买 10 件,价格将上涨 50 美元。最终价格为 1999 美元。 实时信号 IC Ma
The Gold Reaper MT5
Profalgo Limited
4.48 (105)
道具公司已准备就绪!( 下载道具文件 ) 警告: 目前仅剩少量存货! 最终价格:990美元 免费获得 1 个 EA(适用于 3 个交易账户)-> 购买后请联系我 超值组合优惠   ->   点击这里 加入公开群组: 点击此处   实时信号 客户端信号 YouTube 评论 最新手册 欢迎来到黄金收割者! 这款EA是在非常成功的Goldtrade Pro的基础上开发的,设计用于同时在多个时间框架上运行,并且可以选择将交易频率设置为从非常保守到极度波动。 该EA使用多种确认算法来寻找最佳入场价格,并在内部运行多种策略来分散交易风险。 所有交易都有止损和止盈,但同时也使用追踪止损和追踪止盈来最大限度地降低风险,并最大限度地提高每笔交易的潜力。 该系统基于非常流行且行之有效的策略:交易突破重要支撑位和阻力位的交易机会。   黄金非常适合这种策略,因为它是一种波动性很高的货币对。 系统会根据您的账户规模和最大允许回撤设置自动调整交易频率和手数! 回测结果显示增长曲线非常稳定,回撤幅度控制得非常好,恢复速度也很快。  这款EA已经针对黄金进行了最长时间的压力测试,使用了多个经纪商的多个价格
Scalping Robot Pro MT5
MQL TOOLS SL
4.42 (149)
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
ThunderGold Scalper
Jorge Luiz Guimaraes De Araujo Dias
5 (10)
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
Ultimate Breakout System
Profalgo Limited
5 (47)
重要的 : 此套装仅以当前价格限量发售。    价格很快就会涨到1999美元!   已包含 300 多种策略 ,更多策略即将推出! 额外福利 :  从我的其他 EA 中免费 选择 5 款!   所有设置文件 + 完整设置和优化指南 视频指南 实时信号 第三方评论 新增 - 44 种策略实时信号 欢迎来到终极突破系统! 我很高兴地向大家介绍终极突破系统,这是一款经过八年精心开发的复杂且专有的智能交易系统 (EA)。 该系统已成为MQL5市场上多款表现优异的EA的基础,其中包括备受赞誉的Gold Reaper EA。 它曾连续七个多月位居榜首,此外还有 Goldtrade Pro、Goldbot One、Indicement 和 Daytrade Pro。 终极突破系统并非仅仅是另一款EA(电子交易系统)。 它是一款专业级工具,旨在帮助交易者在任何市场和时间框架内创建无限数量的突破策略。 无论您是专注于波段交易、超短线交易还是构建多元化投资组合,该系统都能提供无与伦比的灵活性和定制化功能。 可能性无穷无尽! 对于自营交易公司的交易员来说:   有了这个系统,您终于可以创建自己独
TwisterPro Scalper
Jorge Luiz Guimaraes De Araujo Dias
4.43 (136)
更少交易。更好交易。稳定性高于一切。 • 实时信号 模式 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
Lizard
Marco Scherer
4.11 (44)
什么是 LIZARD? Lizard 是一款全自动 EA,专为 MetaTrader 5 上的 XAUUSD(黄金)开发。它采用多策略摆动突破系统,识别图表上的关键结构位,并在精确计算的入场点挂出停止挂单。不使用马丁格尔。不使用网格。不做加仓摊平。 每笔交易都设有明确的止损和止盈,并由多层出场系统全天候自动管理。 实盘信号 — 购买前查看真实表现: Normal Standard: https://www.mql5.com/en/signals/2372821 ECN High: https://www.mql5.com/en/signals/2383392 它是如何运作的? Lizard 在 H1 时间框架上持续扫描 XAUUSD 图表,寻找重要的摆动高点和摆动低点。当识别到有效结构时,它会在距离该价位经校准的位置放置 Buy Stop 或 Sell Stop 挂单。需要真正的突破才能触发,而非价格的简单触碰。 这种方法可过滤掉弱势行情,仅在动能确认时入场。 6 个独立策略在 H1 时间框架上同时运行,每个都拥有各自的 Stop Loss 和 Take Profit、追踪系统、m
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 全自动交易的投资者设计,采用趋势跟随结合回调入场的交易策略,在市场已有明确方向时寻找更优的进场位置,而不是盲目追涨杀跌。 盈利订单可采用 移动止损 持续跟随行情,在锁定利润的同时尽可能捕捉更大的趋势;如果交易者更喜欢
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 对开发的全自动交易系统。 它将网格策略的结构与马丁格尔的自适应恢复逻辑相结合,形成了一个在所有市场阶段智能管理交易的系
Quantum Athena X
Bogdan Ion Puscasu
5 (4)
更智能的控制,更精准的操控。 欢迎来到 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
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 上的结果非常强
Zoomini
Gennady Sergienko
1.64 (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 月完成。 这些模型背后的研究是
Vexora sera
Fatima Zohra Ed Dachraoui
5 (2)
透明度 我们相信,评估一款 Expert Advisor(智能交易系统)最好的方式,就是查看它在真实账户上的实际实时交易表现。 实时交易信号: https://www.mql5.com/en/signals/2379635?source=Site+Signals+My 技术支持: https://www.mql5.com/en/users/fatima-zohraed/news                                        设置指南 首发价格为 $199 现价 $299 — 仅限 10 份 请在下一次涨价至 $399 之前,以 $299 的价格购买。 VEXORA SERA :专业黄金交易的真正力量 为新时代的市场波动而打造 黄金交易已经不再是过去的样子。 在过去两年中,黄金市场经历了异常剧烈的波动以及非常强劲的价格走势,使许多传统交易系统无法适应新的市场环境。 正因如此, VEXORA SERA  并不是基于过时的交易理念打造的。它是专门为适应当今黄金市场而开发的,重点关注 精准度、纪律性以及高质量的交易机会 ,而不是交易频率。 它并不是一款持续不断
Zerqon EA
Vladimir Lekhovitser
3.37 (30)
实时交易信号 交易活动的公开实时监控: 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.5 (18)
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 份。价格很快将上涨至 $1199。 重要: 购买后请通过私信联系我们,以获取用户指南、推荐设置、使用说明以及更新支持。 https://www.mql5.com/en/users/walter2008 欢迎加入我们的 MQL5 频道,获取产品更新与交易见解。 https://www.mql5.com/en/channels/tendmaster 在 Gold House 的长期研发与实战验证中,我们进一步确认了突破策略在黄金市场中的有效性,也验证了我们自适应参数系统在真实市场环境中的实际价值。 但对于突破系统来说,始终存在一个现实问题: 止盈太早,容易错过后续真正的大行情; 止盈太晚,又往往会经历一定程度的利润回吐。 这不是某一种策略独
Logan MT5
Thierry Ouellet
4.4 (30)
LIMITED TIME OFFER AT 289$ Price will go up at  499$ on August 21th! 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
Pulse Engine
Jimmy Peter Eriksson
4.08 (37)
最新消息——目前仅剩少量存货,欲购从速! 该系统的主要目标是在不使用任何有风险的鞅或网格的情况下实现长期的实时性能。  数量极其有限,现价优惠 最终价格 1499 美元 【实时信号】    |    【回测结果】    |    【设置指南】    |    【FTMO 结果】 一种不同的交易方法 Pulse Engine 不使用任何指标或特定时间框架。它采用了一种非常独特的方法,这是 MQL5 上任何其他交易系统都不采用的方法。 它交易的是日内方向性模式。这些模式是我利用自己多年来不断开发和完善的特定模式识别软件发现的。 该软件使我能够识别出市场历史上在一天中哪些时段会出现强劲的单向波动。 每个市场和每周的每一天都有其独特的走势。 这种方法之所以如此强大,是因为它不依赖于市场是处于趋势行情、反转行情还是任何特定的市场状态。其模式与这些因素完全无关。 脉冲引擎包含涵盖 六大市场的 70 多种不同模式 ,并结合超过 5万笔 交易的历史回测数据。 每个市场的回测时间均尽可能追溯至数据允许的最长时期, 外汇货币对约 20年,指数约 15 年, 加密货币 约10 年。这确保了极高的统计显
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
Quantum Emperor MT5
Bogdan Ion Puscasu
4.85 (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凭借其卓越的亏损交易处理方法,在众多专家顾问中脱颖而出。
Range Breakout EA with Range Filters
Jimmy Peter Eriksson
4.55 (22)
更新:下一价格:599 美元,最终价格:999 美元 如果您重视诚实和为真实交易而构建的真正交易系统,而不是一个看起来完美无瑕但最终可能导致账户爆仓的直线回测,那么这可能适合您。 无马丁格尔/无网格 22个月实时信号 +250% 实时增长 【实时信号】    |  【FTMO 结果】    |  【主投资组合】  |  【回测指南】 为什么 Range Breakout EA 如此稳定? Range Breakout EA 基于一种众所周知的市场行为:交易时段之间的波动性变化。 亚洲交易时段的波动性通常较低,形成一个狭窄的价格区间。伦敦交易时段开盘后,波动性增加,价格往往会突破该区间 并继续朝突破方向移动。 该系统会交易这种突破,并在当天晚些时候波动性开始减弱时平仓。 它不使用指标或固定时间框架,这有助于减少过拟合。系统内部使用突破过滤器来避免低质量的突破交易。 该策略在 XAUUSD、USDJPY、BTCUSD、US30 和 DE40 等货币对上表现尤为出色。 同时交易多个市场可以实现强大的分散风险能力。 加入社区! 公众社区:  点击这里! 请私信我并附上购
Goldwave EA MT5
Shengzu Zhong
4.58 (73)
真實交易帳戶   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 輔助的自適應邏
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
The Gold Space
Ayush V Jain
5 (3)
Price Increases on monday. 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 eliminate
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
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
Iron Stops
Fajar Dicky Firmansyah
5 (7)
100K Real Signal:  https://www.mql5.com/en/signals/2386516 没有噱头。没有空洞的承诺。 Iron Stops 迎合关注一个关键方面的交易者: 一致性 。无论您是正在进行 道具挑战 还是管理客户资金,这款 EA 都能保持在设定的界限内并提供可靠的结果。 仓位在 36 小时 内平仓。 在单一图表上运行: 只需将其应用于 XAUUSD ,使用 M30 时间框架。这就是您所需要的。一个图表。一个强大的工具。 正确的配置对准确回测至关重要! 请联系我获取我的 .ini 文件 和详细说明。 注意: 这款 EA 目前的价格是 179 。一旦购买 10 个许可证,价格将提高到 235 。目前,已有 4 份已售出。在价格变动之前不要错过。 博客 链接 =  https://www.mql5.com/en/blogs/post/763583 频道 链接 =  https://www.mql5.com/en/channels/mqltradingfajar 给我发消息,我会给您发送一份  试用  包,供您在模拟账户中使用。 主要优点 免费赠品
Boring Pips MT5
Thi Thu Ha Hoang
4.77 (53)
你是否曾 经想过为什么大多数专家顾问在实盘交易中并不有效,尽管它们在回测中表现完美? 最有可能的答案是过拟合。许多专家顾问被创建为对现有的历史数据进行“学习”和完美适应,但由于构建模型的泛化能力不足,它们无法预测未来。 一些开 发者可能根本不知道过拟合的存在,或者他们知道但没有办法防止它。其他人则将其作为美化回测结果的工具,他们添加了数十个输入参数,而不考虑统计学意义,使交易策略过度依赖历史数据,并试图说服他人他们的专家顾问未来能够实现类似的表现。 如果你 对这个迷人的主题感兴趣,并想更深入地了解过拟合,请参考我的这些文章: Avoiding Over-fitting in Trading Strategy (Part 1): Identifying the Signs and Causes Avoiding Over-fitting in Trading Strategy (Part 2): A Guide to Building Optimization Processes 有几种方法可以避免在 仅仅依赖读取过去数据的专家顾问上亏钱。而最简单的方法是,在没有至少 5 个月或 30
作者的更多信息
REVERSAL DETECTION EA v1.2 - PROFESSIONAL MARKET REVERSAL TRADING SYSTEM CAPTURE MARKET TURNING POINTS WITH PRECISION AND CONFIDENCE In the dynamic world of financial markets, identifying reversal points before they fully develop can be the difference between consistent profitability and missed opportunities. The Reversal Detection EA v1.2 represents a sophisticated algorithmic trading solution engineered to detect, confirm, and execute trades at critical market reversal zones with institutio
TrianglePatternGannEA Pro v7.0 独立版 - 完整分析与优化指南 概述 TrianglePatternGannEA Pro v7.0 是一款先进的全方位专家顾问,它结合了甘氏三角形模式检测与智能反极端过滤系统。该EA完全独立运行,无需外部指标,使其成为自动化交易的效率和可靠性之选。 核心功能分析 1. 模式检测系统 甘氏三角形识别 EA识别由三个枢轴点(P1-P2-P3)形成的经典甘氏三角形模式: 看涨模式:低-高-低形态 看跌模式:高-低-高形态 关键检测参数: 左柱和右柱:定义枢轴点敏感度 点之间的最小柱数:确保模式有效性 P3 回撤范围:验证模式结构(38.2%至78.6%) 最小三角形高度:过滤不重要的模式 信号质量评分(1-5星): EA根据以下因素评估每个信号: 趋势对齐确认 成交量激增检测 RSI定位 最佳P3回撤比率(50-61.8%) 多时间框架确认 2. 智能反极端过滤器 v7.0 这是EA最具创新性的功能,旨在防止在危险的市场极端点进行交易。 基于结构的顶部/底部检测: 使用可配置的强度参数识别真实的摆动高/低 计算到最近极端点的距离百
FREE
Triangle Pattern Gann EA
Nguyen Van Kien
5 (2)
三角形态甘氏EA v3.4 - 像传奇交易大师W.D. Gann一样交易 驾驭几何价格形态和神圣比例的力量 准备好使用有史以来最强大的模式识别系统之一进行交易了吗?三角形态甘氏EA v3.4将W.D. Gann的传奇智慧带入现代算法交易时代。 这款EA的卓越之处是什么? 基于久经考验的甘氏方法论 W.D. Gann是历史上最成功的交易员之一,他运用几何形态和自然比例实现了超过90%的准确率。这款EA精准地自动执行三角形形态策略: 自动三角形检测 - 识别推动(看涨)和回调(看跌)形态 黄金分割目标 - 使用斐波那契比例(61.8%、100%、161.8%)进行最佳入场和出场 摆动点分析 - 先进的枢轴点检测算法,找到关键的市场转折点 实时形态识别 - 扫描每根K线,寻找高概率的交易设置 高级资金管理 - v3.4 的优势 以美元计价的智能仓位管理 与使用点数或点数的基本EA不同,v3.4以美元为单位进行计算——这才是对您的账户至关重要的货币: 盈亏平衡系统 当仓位盈利达到10美元时激活(可自定义) 自动锁定1美元盈
FREE
Radar Signals
Nguyen Van Kien
RadarSignal XAUUSD — Multi-Timeframe Radar Dashboard for Gold Trading Stop guessing where Gold is heading. Let the Radar scan it for you. RadarSignal XAUUSD is a multi-timeframe technical dashboard built specifically for XAUUSD (Gold) traders who want a single, clean, visual answer to three questions every trade requires: Where do I enter? Where is my safe invalidation zone? Where is my realistic target? Instead of flipping between five indicators on three charts, RadarSignal fuses ADX, RSI, CCI
FREE
Radar Signal EA
Nguyen Van Kien
RadarSignal EA — Multi-Timeframe S/R Breakout & Range Engine with Grok AI Co-Pilot RadarSignal EA is a fully automated trading system built around a multi-timeframe Support/Resistance zone engine. Instead of firing market orders on a simple crossover, it maps out real S/R zones across three chained timeframes (e.g. M15 → M30 → H1, or higher, depending on your chart period), waits for price to approach those zones at the right distance — not too early, not too late — and then chooses between a Li
FREE
X AI Gold
Nguyen Van Kien
(X AI Gold) Grok Gold EA: Revolutionary XAUUSD Trading with xAI Artificial Intelligence & Real-Time Macroeconomic Calendar Greetings to traders and developers on MQL5, The gold market (XAUUSD) has always been one of the most fiercely contested battlefields in the Forex world. Extreme volatility, high liquidity, and absolute sensitivity to macroeconomic news make traditional Expert Advisors (EAs) based on rigid technical rules (if-else) very susceptible to Stop Loss triggers when the market cha
FREE
Supper Trend
Nguyen Van Kien
Supertrend Hybrid EA — Trend Following + Sideway Scalping (AI-Assisted Regime Filter) A multi-strategy EA that automatically switches between trend-following via Supertrend and scalping during sideways markets, with an optional AI confirmation layer. Overview Most trend-following EAs (including the original Supertrend) share the same weakness: they perform great in a clear trending market but bleed losses repeatedly during sideways conditions , because reversal signals get whipsawed back and fo
FREE
Legacy of Gann Multi-AI Pro v6.7 - Professional Gold Trading Expert Advisor Revolutionary AI-Powered Trading System for MT5 Transform your XAUUSD (Gold) trading with the most advanced multi-AI Expert Advisor available. Legacy of Gann Multi-AI Pro v6.7 combines classical Gann pattern recognition with cutting-edge artificial intelligence from multiple providers, creating a powerful automated trading solution that adapts to market conditions in real-time. CORE FEATURES Multi-AI Integration with A
FREE
Radar Signal MT4
Nguyen Van Kien
RadarSignal XAUUSD — Multi-Timeframe Radar Dashboard for Gold Trading Stop guessing where Gold is heading. Let the Radar scan it for you. RadarSignal XAUUSD is a multi-timeframe technical dashboard built specifically for XAUUSD (Gold) traders who want a single, clean, visual answer to three questions every trade requires: Where do I enter? Where is my safe invalidation zone? Where is my realistic target? Instead of flipping between five indicators on three charts, RadarSignal fuses ADX, RSI, CCI
FREE
GoldEasy MT5 - Professional DCA & Hedging Expert Advisor for XAUUSD Overview GoldEasy MT5 is a sophisticated automated trading system designed specifically for gold trading (XAUUSD). This Expert Advisor combines intelligent entry signals with advanced Dollar Cost Averaging (DCA) and optional hedging strategies to manage risk while maximizing profit potential in the volatile gold market. Key Features Smart Entry System Fibonacci Bollinger Bands (FBB) with 1.618 extension for precise overbought/ov
FREE
# CopyTele WebRequest EA - The Ultimate Telegram Signal Copier Are you looking for a reliable, ultra-fast, and secure way to copy signals directly from Telegram to your MetaTrader 5 terminal without installing complex software, extensions, or risky external DLLs?  **CopyTele WebRequest EA** is a professional and fully automated utility that fetches trading signals from PUBLIC Telegram channels using standard HTTP requests (WebRequest) directly from t.me/s/ websites. It is engineered with robu
FREE
Reversal Detection Pro - Professional Trading Indicator REVERSAL DETECTION PRO Advanced Market Turning Point Indicator for MetaTrader 5 EXECUTIVE SUMMARY Reversal Detection Pro is a sophisticated algorithmic trading indicator designed for MetaTrader 5 that identifies high-probability market reversal points with exceptional precision. Built on advanced ZigZag methodology combined with dynamic ATR-based calculations and multiple EMA filters, this professional-grade tool provides traders with acti
PatternZoneAutoTrading DCA Pro - Complete Analysis & Marketing Guide Professional EA Analysis Core Functionality Overview PatternZoneAutoTrading DCA Pro v3.00 is a sophisticated MetaTrader 5 Expert Advisor that combines advanced candlestick pattern recognition with dynamic support/resistance zone analysis and an intelligent Dollar-Cost Averaging (DCA) strategy. This EA represents a comprehensive automated trading solution designed for both novice and experienced traders. Key Technical Features 1
FREE
高级甘氏形态指标 - 彻底改变您的交易方式 揭秘胜率高达 70-95% 的专业交易员不愿让您知道的秘密交易系统! 您是否厌倦了那些会重绘、发出错误信号或让您对入场和出场时机感到困惑的指标?高级甘氏形态指标将彻底改变这一切。该指标基于 W.D. Gann 传奇的 123 形态理论——正是这套系统帮助他实现了超过 90% 的交易准确率——将百年智慧融入现代自动化交易。 为什么高级甘氏形态指标能彻底改变交易格局 大多数指标的问题: 错误信号过多 没有清晰的入场/出场点 目标位模糊不清 频繁重绘 没有真实的胜率数据 使用复杂 高级甘氏形态指标的解决方案: 初步目标位准确率高达 95% 主要盈利区域胜率高达 70-80% 清晰的买入/卖出箭头 自动计算精准的止盈/止损位 实时绩效统计 设置后即可自动运行 颠覆性功能 1. 自动识别 123 形态 无需手动绘制!该指标可自动识别图表上 W.D. Gann 强大的 123 形态。当出现高概率交易机会时,您将立即知晓。 您将获得: 自动
三角形形态加恩EA专业版 v5.2.5 - 专家分析 专业概述 经过彻底的源代码分析,三角形形态加恩EA专业版 v5.2.5 被评估为一款专业构建的专家顾问(Expert Advisor),具有坚实的代码架构和科学严谨的交易逻辑。 显著优势 1. 智能形态识别系统 使用摆动点(Swing Point)算法识别枢轴点(P1, P2, P3)。 计算斐波那契回撤比率(0.382–0.786)以验证形态。 具备基于最小高度和柱状图数量的形态过滤功能。 2. 多重过滤系统 - 防止买在顶部/卖在底部 EA集成了8个关键过滤层: 趋势过滤器:EMA、多时间框架(Multi-Timeframe)、ADX - 确保趋势跟随交易。 RSI过滤器:当RSI超过65(超买)时避免买入,或当RSI低于35(超卖)时避免卖出。 极端距离过滤器:检查当前价格与近期高点/低点在M15、H1、H4时间框架上的距离。 成交量确认:仅当成交量超过平均值时才入场。 价格行为质量:检测拒绝影线和反转蜡烛图。 动量过滤器:在入场前验证价格动量。 风险回报比:最小1.5:1(可自定义)。 动态点差过滤器:根据波动性自动调
GANN TRIANGLE PRO v4.0 - OPTIMIZATION ANALYSIS REPORT CURRENT VERSION ASSESSMENT (v3.8) Strengths Feature Evaluation Swing Point Detection Clear logic using Left/Right bars Fibonacci/Gann Ratios Properly applied 61.8%, 100%, 161.8% Dashboard Real-time updates with visual indicators Code Structure Clean, maintainable architecture Critical Limitations Issue Impact Win Rate Effect No Trend Filter Signals against major trend -20% to -30% Missing Volume Confirmation False breakouts not filt
FREE
Professional Analysis: QuantumPriceAdvancedEA - A Critical Evaluation Executive Summary The QuantumPriceAdvancedEA represents an attempt to integrate quantum computing concepts into forex trading automation. While the implementation demonstrates technical competence in MQL5 programming, this analysis reveals significant discrepancies between the marketed quantum computing features and the actual algorithmic implementation. This review provides an objective assessment from both technical and prac
FREE
SmartRecoveryEA Ultimate: Revolutionizing Forex Gold Trading with Intelligent Recovery and Risk Mastery Introduction: Elevate Your Gold Trading Game in the Volatile Forex Arena In the fast-paced world of Forex trading, particularly on the gold market (XAUUSD), where volatility reigns supreme and price swings can make or break fortunes in minutes, having a robust Expert Advisor (EA) is not just an advantage—it's a necessity. Enter SmartRecoveryEA Ultimate v1.0 , a cutting-edge MT5 EA meticulously
FREE
Legacy of Gann EA
Nguyen Van Kien
LEGACY OF GANN EA - PROFESSIONAL TRADING SYSTEM Unlock the Power of W.D. Gann's Trading Secrets Legacy of Gann EA is a professional automated trading system that brings the legendary Pattern 1-2-3 strategy to MetaTrader 5. Based on the time-tested principles of W.D. Gann, this EA identifies high-probability trading opportunities with mathematical precision. KEY FEATURES Advanced Pattern Recognition Automatic Pattern 1-2-3 Detection using ZigZag indicator Identifies impulse moves and co
FREE
Legacy of Gann Enhanced EA v4.0 AI-Powered Trading System with Groq Integration Overview Legacy of Gann Enhanced EA is a sophisticated MetaTrader 5 Expert Advisor that combines classical Gann trading principles with cutting-edge artificial intelligence. This revolutionary trading system uses the proven Pattern 123 methodology enhanced with Groq AI analysis and economic news filtering to identify high-probability trade setups. What Makes This EA Special? AI-Powered Decision Making - Integ
FREE
Triangle Pattern Gann v3.1 - Complete Feature Documentation Core Functionality OverviewTriangle Pattern Gann v3.1 is a sophisticated MetaTrader 5 indicator that combines W.D. Gann's geometric trading principles with advanced triangle pattern recognition to deliver actionable trading signals. Primary Features1. Triangle Pattern Detection SystemAscending Triangle Recognition Function: Automatically identifies bullish continuation patterns Detection Criteria: Flat horizontal resistance line
Professional Analysis: AI Smart Trader v6.0 EA - A Comprehensive Technical Review Executive Summary After extensive evaluation of the AI Smart Trader v6.0 Expert Advisor, I can confidently say this represents a sophisticated approach to automated forex trading that addresses one of the most critical challenges traders face: recovery from drawdown situations. Having analyzed hundreds of trading systems over my career, this EA stands out for its intelligent state machine architecture and multi-lay
PZ PENTA-O PRO EA AUTOTRADER - PROFESSIONAL HARMONIC PATTERN TRADING SYSTEM PRODUCT OVERVIEW PZ Penta-O Pro EA AutoTrader is an advanced automated trading Expert Advisor engineered for MetaTrader 5 platform, specializing in the detection and execution of six classical harmonic pattern formations. This sophisticated system combines advanced pattern recognition algorithms with professional-grade money management and comprehensive position management capabilities to deliver consistent trading oppo
Pattern123
Nguyen Van Kien
Pattern123 EA — Reversal Trading on the Classic "1-2-3" Price Formation Introduction The "1-2-3" pattern is one of the oldest and most reliable reversal formations in technical analysis: it marks the point where an existing trend runs out of steam and a new one begins. Pattern123 EA automates the detection of this formation and manages the full trade lifecycle around it — from signal recognition to entry, stop-loss placement, take-profit, and an optional loss-recovery mechanism for advanced tra
筛选:
无评论
回复评论