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.


Recommended products
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 – Expert Advisor (EA) for MetaTrader 5 Trading Strategy:   MACD Classic & Hidden Divergence |   Best Pair:   EURUSD |   Timeframe:   1H Key Features   Smart Divergence Detection   – Identifies   Classic & Hidden Divergences   for high-probability reversals.   Flexible Risk Management   – Adjustable   Stop Loss (30 pips)   &   Take Profit (30 pips) .   Martingale (Optional)   –   Lot Multiplier (2.0x)   to recover losses (use with caution).   Works B
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)
The idea of the system is to indentify the reversal patterns using the calculation of the composite candle. The reversal patterns is similar to the "Hammer" and "Hanging Man" patterns in Japanese candlestick analysis. But it uses the composite candle instead the single candle and doesn't need the small body of the composite candle to confirm the reversal. Input parameters: Range - maximal number of bars, used in the calculation of the composite candle. Minimum - minimal size of the composite can
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)
This expert advisor implements the original Dennis and Eckhardt trading system, commonly known as The Turtle Trader. It trades exactly like the original turtles did, and can be used by experienced traders to capture trends in up or down markets. [ Installation Guide | Update Guide | Troubleshooting | FAQ | All Products ] Easy to use and supervise Fully configurable strategy settings Fully configurable trading settings Works for ECN/Non-ECN brokers and 2-3-4-5 digit symbols Works for CFDs and for
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
Buyers of this product also purchase
Quantum Titan MT5
Bogdan Ion Puscasu
4.56 (9)
Bringing institutional-grade trading to the Quantum ecosystem, Quantum Titan sets a new standard for precision, discipline, and proven live-market performance. Developed for traders who expect more from a GOLD Expert Advisor, Titan represents the next evolution of Quantum trading technology. Availability is strictly limited to 1,000 lifetime licenses worldwide. Once all 1,000 copies have been claimed, Quantum Titan will no longer be available. Special launch discount price. Final price $1999
Smart Gold Hunter
Barbaros Bulent Kortarla
4.26 (46)
No Grid/No Martingale/No Recovery/No Hedging/Single Entry with SL/One Shot  Smart Gold Hunter is an Expert Advisor for XAUUSD / Gold trading on MetaTrader 5. It is designed for traders who prefer a gold EA with no grid, no martingale, real Stop Loss and Take Profit logic, and controlled risk management. You can check the live signals before making a decision: Live Signal - IC Markets: https://www.mql5.com/en/signals/2365400?source=Site +Signals+My  (Here I use Scalper Mode, To have the exact se
Quantum Queen X MT5
Bogdan Ion Puscasu
5 (34)
The Legend Continues. The Queen Evolves. Welcome to Quantum Queen X — the next generation of the legendary GOLD trading system that builds upon the proven success of Quantum Queen. Quantum Queen X is built on the same proven core engine as Quantum Queen, introducing a powerful new Custom Mode that allows traders to choose exactly which strategies to enable or disable. Every strategy has been individually reviewed, refined, and optimized to deliver even better performance and adaptability across
The Gold Reaper MT5
Profalgo Limited
4.48 (105)
PROP FIRM READY! ( download SETFILE ) WARNING: Only a few copies left at current price! Final price: 990$ Get 1 EA for free (for 3 trade accounts) -> contact me after purchase Ultimate Combo Deal   ->   click here JOIN PUBLIC GROUP:   Click here Live Signal Client Signal YouTube Reviews LATEST MANUAL Welcome to the Gold Reaper! Build on the very succesfull Goldtrade Pro, this EA has been designed to run on multiple timeframes at the same time, and has the option to set the trade frequency fro
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 (9)
ThunderGold Scalper ThunderGold Scalper is an Expert Advisor developed for automated gold trading on MetaTrader 5. The EA is designed for XAUUSD and GOLD on the M15 timeframe. It uses a proprietary multi-factor decision engine to identify qualified trading opportunities and manage positions automatically. The system combines market structure, trend direction, candle quality, volume, momentum and execution controls. It is designed to wait for suitable conditions instead of opening trades continuo
Ultimate Breakout System
Profalgo Limited
5 (47)
IMPORTANT : This package will only be sold at current price for a very limited number of copies.    Price will go to 1999$ soon!   + 300 Strategies included and more coming! BONUS : choose 5  of my other EA's for free!   ALL SET FILES + COMPLETE SETUP AND OPTIMIZATION GUIDE VIDEO GUIDE LIVE SIGNALS REVIEW (3rd party) NEW - 44-STRATEGIES LIVE SIGNAL Welcome to the ULTIMATE BREAKOUT SYSTEM! I'm pleased to present the Ultimate Breakout System, a sophisticated and proprietary Expert Advisor (EA)
TwisterPro Scalper
Jorge Luiz Guimaraes De Araujo Dias
4.43 (136)
Fewer trades. Better trades. Consistency above all. • Live Signal Mode 1  Live Signal Mode 2 Twister Pro EA is a high-precision scalping Expert Advisor developed exclusively for XAUUSD (Gold) on the M15 timeframe. It trades less — but when it does, it trades with purpose. Every entry passes through 5 independent validation layers before a single order is placed, resulting in an extremely high win rate on the Default configuration. TWO MODES: • Mode 1 (recommended) — Very high assertiveness, fe
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.16 (43)
WHAT IS LIZARD? Lizard is a fully automated Expert Advisor, developed exclusively for XAUUSD (Gold) on MetaTrader 5. It uses a multi-strategy swing breakout system that identifies key structural levels on the chart and places pending stop orders at precisely calculated entry points. No martingale. No grid. No averaging in. Every trade has a defined Stop Loss and Take Profit and is actively managed by a multi-layered exit system, automatically, around the clock. Live Signals - Track real performa
Cortex IDX
Vladimir Mametov
5 (2)
It is a fully automated Expert Advisor for MetaTrader 5, built specifically for trading the US30 index. Its trading logic is designed around the dynamic behavior of major stock indices: strong directional movements, intraday pullbacks, and periods of increased volatility. The EA automates trading in an environment where execution speed, discipline, and efficient position management are essential. The system is focused on disciplined trade management, fast reaction to market changes, and controll
Quantum King EA
Bogdan Ion Puscasu
4.96 (215)
Quantum King EA — Intelligent Power, Refined for Every Trader IMPORTANT! After the purchase please send me a private message to receive the installation manual and the setup instructions. Special Launch Price Live Signal:   CLICK HERE MT4 version : CLICK HERE Quantum King channel:   Click Here ***Buy Quantum King MT5 and you could get Quantum StarMan for free !*** Ask in private for more details! Rule your trading with precision and discipline. Quantum King EA brings the strength of
Quantum Athena X
Bogdan Ion Puscasu
5 (4)
Smarter Control. Refined Precision. Welcome to Quantum Athena X — the next generation of the focused GOLD trading system that builds upon the precision, efficiency, and disciplined execution of Quantum Athena. Quantum Athena X is built on the same streamlined core engine and the same 6 carefully selected strategies as Quantum Athena. Each strategy has been individually refined and optimized for current GOLD market conditions, while the new powerful Custom Mode allows traders to choose exactly
Smart Gold Impulse
Barbaros Bulent Kortarla
4.11 (19)
No Grid /No Martingale/ No Dca /No rocovery Smart Gold Impulse is now available in a special early launch phase. This is an EA I  am currently using with impressive results on my Live Signal  account. You can check the current performance through the Ultima live signal results, where Smart Gold Impulse has already shown very strong potential in real market conditions. The same set file used on my Ultima live signal account will be shared only with Smart Gold Impulse buyers. At the same time, thi
Zoomini
Gennady Sergienko
1.64 (14)
Important information: Support and answers to questions are available only here:  https://www.mql5.com/en/users/zolia  ( Zolia - UTC/GMT: Taiwan ); Zoomini is a small set of machine-learning models from the latest GoGoPips project research from July 2026. These models are intended only for XAUUSD H1 / Gold . Signal: www.mql5.com/en/signals/2381994 Important things to know: The models trade with only one order using equal SL/TP. Netting accounts and any leverage are supported. Large deposi
Vexora sera
Fatima Zohra Ed Dachraoui
5 (2)
Transparency We believe the best way to evaluate an Expert Advisor is through its real, live trading performance . Live Trading Signal: https://www.mql5.com/en/signals/2379635?source=Site+Signals+My Technical Support :     https://www.mql5.com/en/users/fatima-zohraed/news                                           Settings Guide     Launched at $199 Now $299 — Only 10 Copies Available Secure your copy at $299 before the next price increase to $399. VEXORA SERA  : The True Power of Professional G
Zerqon EA
Vladimir Lekhovitser
3.37 (30)
Live Trading Signal Public real-time monitoring of trading activity: https://www.mql5.com/en/signals/2372719 Official Information Seller profile Official channel User Manual Setup instructions and usage guidelines: View user manual Zerqon EA is an adaptive Expert Advisor designed specifically for XAUUSD trading. The strategy is based on a Deep LSTM neural network model integrated through ONNX, allowing the system to process sequential market behavior and evaluate price dynamics in a st
Gold Snap
Chen Jia Qi
4.5 (18)
Gold Snap — A Fast Profit Capture System for Gold Live Signal: https://www.mql5.com/en/signals/2362714 Live Signal2: https://www.mql5.com/en/signals/2372603 Live Signal v2.0: https://www.mql5.com/en/signals/2379945 Only 3 copies remaining at the current price. The price will be increased to $1199 soon. Important: After purchasing, please contact us by private message to receive the user guide, recommended settings, usage notes, and update support.  https://www.mql5.com/en/users/walter2008
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)
UPDATE - ONLY A FEW COPIES LEFT AT CURRENT PRICE! The main goal of this system is long-term live performance without using any risky martingale or grid.  VERY LIMITED COPIES AT CURRENT PRICE Final Price $1499 [Live Signal]  |  [Backtest Results]  |  [Setup Guide]  |  [FTMO Results] A Different Approach to Trading Pulse Engine does not use any indicators or specific timeframes. It has a very unique approach that is not used by any other trading system on MQL5. It trades intraday directional patt
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)
Introducing   Quantum Emperor EA , the groundbreaking MQL5 expert advisor that's transforming the way you trade the prestigious GBPUSD pair! Developed by a team of experienced traders with trading experience of over 13 years. IMPORTANT! After the purchase please send me a private message to receive the installation manual and the setup instructions. ***Buy Quantum Emperor EA and you could get Quantum StarMan for free !*** Ask in private for more details Verified Signal:   Click Here MT4 Version
Range Breakout EA with Range Filters
Jimmy Peter Eriksson
4.55 (22)
UPDATE:  Few Copies Left At Current Price! Final price: $999 If you value honesty and a real trading system built for live trading, not just a perfect-looking straight-line backtest that can end up blowing your account, then this might be for you. No Martingale / No Grid 22 Months Live Signal +290% Live Growth [Live Signal]  |  [FTMO Results]  |  [Main Portfolio]  |  [Backtest Guide] Why Range Breakout EA is so Stable ? Range Breakout EA is based on a well-known market behaviour: changes in vo
Goldwave EA MT5
Shengzu Zhong
4.58 (73)
Real Trading Account   LIVE SIGNAL IC MARKETS:  https://www.mql5.com/en/signals/2339082 This EA uses the same logic and execution rules as the verified live signal shown on MQL5.When used with the recommended, optimized settings on a reputable ECN/RAW-spread broker ( e.g., IC Markets or TMGM) , the EA's live trading behavior is designed to closely align with the trade structure and execution characteristics of the live signal. Please note that differences in broker conditions, spreads, executio
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 No gimmicks. No empty claims. Iron Stops caters to traders focused on one crucial aspect: consistency . Whether you’re working through a prop challenge or overseeing client funds, this EA keeps within set boundaries and delivers reliable results. Positions close within 36 hours. Run it on a single chart: Simply apply it to XAUUSD using the M30 timeframe. That’s all you need. One chart. One powerful tool. Proper configuration is essen
Boring Pips MT5
Thi Thu Ha Hoang
4.77 (53)
Have you ever wondered why most expert advisors are not effective in live trading, despite their perfect backtest performance? The most likely answer is  Over-fitting . Many EAs are created to ‘learn’ and adapt perfectly to the available historical data, but they fail to predict the future due to a lack of generalizability in the constructed model. Some developers simply don't know about the existence of over-fitting, or they know but don't have a way to prevent it. Others exploit it as a tool
More from author
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 Standalone - Complete Analysis & Optimization Guide Overview TrianglePatternGannEA Pro v7.0 is an advanced all-in-one Expert Advisor that combines Gann Triangle pattern detection with an intelligent anti-extreme filtering system. This EA operates completely standalone without requiring external indicators, making it efficient and reliable for automated trading. Core Features Analysis 1. Pattern Detection System Gann Triangle Recognition The EA identifies classic G
FREE
Triangle Pattern Gann EA
Nguyen Van Kien
5 (2)
Triangle Pattern Gann EA v3.4 - Trade Like the Legendary W.D. Gann Harness the Power of Geometric Price Patterns & Sacred Ratios Are you ready to trade with one of the most powerful pattern recognition systems ever developed? The Triangle Pattern Gann EA v3.4 brings the legendary wisdom of W.D. Gann into the modern algorithmic trading era. What Makes This EA Exceptional? Based on Proven Gann Methodology W.D. Gann was one of history's most successful traders, achieving over 90% accuracy u
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
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
Advanced Gann Pattern Indicator - Transform Your Trading Forever Discover the Secret Trading System with 70-95% Win Rate That Professional Traders Don't Want You to Know! Are you tired of indicators that repaint, give false signals, or leave you confused about when to enter and exit? Advanced Gann Pattern is here to change everything. Built on W.D. Gann's legendary Pattern-123 theory - the same system that helped him achieve over 90% trading accuracy - this indicator brings century-old wisdom
Triangle Pattern Gann EA Pro v5.2.5 - Expert Analysis Professional Overview After thorough source code analysis, Triangle Pattern Gann EA Pro v5.2.5 is evaluated as a professionally built Expert Advisor with solid code architecture and scientifically grounded trading logic. Outstanding Strengths 1. Intelligent Pattern Detection System Uses Swing Point algorithm to identify pivot points (P1, P2, P3). Calculates Fibonacci retracement ratios (0.382–0.786) to validate patterns. Features pattern fi
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 - 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
Filter:
No reviews
Reply to review