TrendSync MACD Pro EA

TrendSync MACD Pro EA

Multi-timeframe Zero Lag MACD trend-following Expert Advisor — transparent logic, no black box, with a full suite of built-in risk controls.

Overview

TrendSync MACD Pro EA is a rule-based trend-following Expert Advisor for MetaTrader 5. It trades crossovers of a Zero Lag MACD on a fast signal timeframe, but only in the direction confirmed by a higher timeframe trend — so entries are aligned with the dominant move instead of fighting it.

Every rule is transparent and fully configurable. There is no grid, no martingale, no averaging down, and no hidden logic. Positions are protected by a stop loss from the moment they open, and the EA exits primarily when the higher-timeframe regime changes — letting winning trends run while cutting losers at a defined level.

The EA was engineered around an anti-overfitting philosophy: a small number of robust, economically-meaningful rules, each independently switchable, so you can validate exactly what contributes to performance on your own broker, symbol and data.

Honest note: This is a trend-following tool, not a money printer. Its behavior is regime-dependent — it performs best in trending, volatile markets and can move sideways in quiet, range-bound conditions. No EA can guarantee profit. Please read the Risk Disclosure section and test on a demo account before trading live.

How it works

1. The signal — Zero Lag MACD. The EA computes a reduced-lag version of the classic MACD using the zero-lag EMA technique, which reacts faster to price than a standard MACD while remaining smooth. A BUY setup occurs when the MACD line crosses above its signal line; a SELL setup when it crosses below.

2. The filter — higher timeframe trend. Each signal is checked against a higher timeframe (the "trend" timeframe). With the trend filter enabled, the EA takes only the crosses that agree with the higher-timeframe bias — long signals in an uptrend, short signals in a downtrend. This single rule removes a large share of low-quality counter-trend entries.

3. Non-repainting entries. Signals are confirmed on the close of the signal bar and executed at the open of the following bar. The entry logic does not repaint: what you see confirmed is what the EA acts on.

4. The exit — regime change. The primary exit is the higher-timeframe trend flip: when the dominant trend reverses, the position is closed. This lets a good trend run to its natural end rather than being cut short by an arbitrary target. A fixed stop loss always protects the position, and an optional take profit, opposite-signal exit, breakeven and circuit breaker are available.

5. Two operating modes.

  • Validation (paper) mode — the EA evaluates signals and logs simulated entries/exits and running P&L without placing real orders. Ideal for watching behavior on a live chart before committing.
  • Live mode — the EA places real market orders. This is also the mode used inside the Strategy Tester.

Key features

  • Zero Lag MACD engine with fully adjustable Fast / Slow / Signal lengths (EMA or SMA).
  • Multi-timeframe trend confirmation — signal timeframe and trend timeframe are independent inputs; nothing is hard-coded.
  • Non-repainting, close-confirmed entries.
  • Regime-based exit (higher-TF trend flip) that lets winners run.
  • Flexible stop loss: fixed in account currency, in points, or volatility-based (ATR multiple).
  • Optional take profit, opposite-signal exit and breakeven.
  • Session filter (Asia / London / New York) defined in GMT with a broker-offset input, so it works correctly on any server time.
  • News filter using the native MT5 economic calendar (live/demo) — pauses new entries around high-impact events while keeping open positions untouched.
  • Circuit breaker — pauses trading after a configurable number of consecutive losses.
  • Optional pyramiding module — scale into a running trend with independent SL/TP (fixed or ATR-based) for the added positions.
  • Weak-origin filter — optionally skip crosses born from a weak opposite move on the wrong side of the MACD zero line.
  • Order comment and magic number for clean multi-EA account attribution.
  • Detailed, readable logging of every decision.

Settings reference

Every parameter is listed below by group, with its default and purpose. All feature modules default to off, so the EA starts as a clean, single-position trend follower; enable modules one at a time and validate their effect.

Timeframes

Parameter Default Description
SignalTF M4 Timeframe on which MACD crosses are detected (the entry timeframe).
TrendTF H4 Higher timeframe used for trend confirmation. Should be larger than SignalTF .

Indicator (Zero Lag MACD)

Parameter Default Description
FastLength 12 Fast length of the MACD.
SlowLength 26 Slow length of the MACD.
SignalLength 9 Length of the signal line.
useEma true Use EMA smoothing (false = SMA).
useOldAlgo false Use the legacy signal calculation (SMA signal line).

Filters

Parameter Default Description
UseTrendFilter true Trade only in the direction of the higher-TF trend. Strongly recommended on.
MinDistanceFromZero 0.0 Minimum absolute MACD value required at the cross (0 = off). Filters weak, near-zero crosses.

Weak-Origin Filter

Parameter Default Description
UseWeakOriginFilter false Skip a cross that starts on the wrong side of the MACD zero line, coming from a weak opposite move (e.g. a sell cross below zero whose preceding buy leg never lifted the MACD above zero).

Session Filter (GMT)

Parameter Default Description
UseSessionFilter false Enable session-based entry filtering.
ServerGMTOffset 3 Your broker's server offset from GMT (e.g. GMT+3 → 3). The EA prints the estimated GMT in the log at startup — verify it against a real UTC clock.
TradeAsia false Allow entries during the Asian session.
TradeLondon true Allow entries during the London session.
TradeNY true Allow entries during the New York session.

Sessions are defined internally in GMT (Asia 00–08, London 08–16, New York 13–22) and converted to your server time using the offset, so the filter behaves consistently regardless of broker time. The filter blocks only new entries; exits always run.

News Filter (demo / live only)

Parameter Default Description
UseNewsFilter false Pause new entries around high-impact news. Uses the native MT5 calendar, which does not return data in the Strategy Tester — this filter is inert during backtests and only active on demo/live.
NewsCurrencies USD Currencies to watch, comma-separated (e.g. USD,EUR ). Empty = all.
NewsHighImpactOnly true Restrict to high-impact events only.
NewsMinutesBefore 30 Block new entries this many minutes before an event.
NewsMinutesAfter 30 Block new entries this many minutes after an event.

Open positions are never force-closed by the news filter — only new entries are paused.

Exits

Parameter Default Description
ExitOnTrendFlip true Close the position when the higher-TF trend reverses (the primary exit).
ExitOnOppositeSignal false Also close on an opposite MACD cross.
StopLossMoney 50.0 Stop loss in account currency. Takes priority over points.
StopLossPoints 0.0 Stop loss in points (used if money SL = 0).
TakeProfitMoney 0.0 Take profit in account currency (0 = none; let the trend run). Priority over points.
TakeProfitPoints 0.0 Take profit in points (0 = none).

A money-based SL/TP is converted to a price distance using the current lot size, so its market distance changes if you change the lot. For a lot-independent stop, use points or the ATR stop below.

ATR Initial Stop

Parameter Default Description
UseATRStop false Set the initial stop loss as a multiple of ATR (overrides the $/points SL). Adapts the stop to current volatility.
ATRTimeframe PERIOD_CURRENT Timeframe for the ATR (PERIOD_CURRENT = the signal timeframe).
ATRPeriod 14 ATR period.
ATRStopMult 1.5 Stop distance = multiplier × ATR.

Pyramiding

Parameter Default Description
UsePyramiding false Allow additional entries on each new trend-aligned cross while a position is open.
MaxPositions 3 Maximum simultaneous positions, including the first ("core"). 1 = off.
PyramidTPMoney 0.0 Take profit for the added positions, in currency (priority over points).
PyramidTPPoints 0.0 Take profit for the added positions, in points.
PyramidSLMoney 0.0 Stop loss for the added positions, in currency (0 = same as core SL).
PyramidSLPoints 0.0 Stop loss for the added positions, in points (0 = same as core SL).
UsePyramidATR false Set the added positions' SL/TP as ATR multiples (lot-independent; overrides the $/points values).
PyramidATRSLMult 1.5 Added-position SL = multiplier × ATR.
PyramidATRTPMult 2.0 Added-position TP = multiplier × ATR.

The first position of a trend runs with the core rules (stop loss, no take profit — it rides the trend). Each additional position carries its own SL and TP. A trend flip closes all of them together.

Circuit Breaker

Parameter Default Description
MaxConsecLosses 0 Consecutive losses that trigger a trading pause (0 = off).
PauseMinutes 60 Pause duration in minutes (60 = 1h, 1440 = 1 day).

Breakeven

Parameter Default Description
BreakevenMoney 0.0 Floating profit (in currency) at which the stop is moved to entry (0 = off).
BreakevenLockPoints 0.0 Points beyond entry when moving the stop, to cover spread/cost.

Trading

Parameter Default Description
TradeEnabled false false = validation/paper (logs only), true = live orders (also the tester mode).
FixedLot 0.05 Fixed lot size per entry. Size this conservatively for your capital.
MagicNumber 20260603 Unique ID for this EA's positions. Use a different value per EA on the same account.
Slippage 20 Maximum price deviation, in points.
Comment TrendSyncMACD Text written on each order, for readable attribution in your trade history.

Calculation / Log

Parameter Default Description
Lookback 600 Number of bars used in the MACD calculation.
VerboseLog true Detailed logging of signals, filters and trades.

Recommended setup / quick start

  1. Attach the EA to a chart of the symbol you intend to trade. Set SignalTF and TrendTF (a lower timeframe for signals, a higher one for the trend — e.g. M4 / H4).
  2. Start with TradeEnabled = false (validation mode) and watch the log for a session or two to confirm signals and behavior on your broker.
  3. Keep the default risk skeleton: UseTrendFilter = on , a defined stop loss, no take profit (let the trend run), all optional modules off.
  4. Size FixedLot conservatively. A stop loss should risk a small percentage of your account per trade, not a large one. Under-sizing is survivable; over-sizing is how accounts blow up during normal losing streaks.
  5. When ready, switch to TradeEnabled = true on a demo account and run it forward for a meaningful period before considering real capital.

Backtesting & validation notes

  • Use "Every tick based on real ticks" modeling and test on the exact symbol you will trade. Lower-quality modeling flatters tight stops.
  • Because this is a trend follower, results are regime-dependent. Test across different market conditions, not only a strong trending period.
  • The most reliable check is out-of-sample: tune any parameter on one date range, freeze it, and evaluate on a different range you did not touch. A result that only looks good on the period it was tuned on is not a result.
  • The news filter is inactive in the Strategy Tester by design (the native calendar returns no tester data). Validate it on demo.
  • For the session filter, confirm the GMT offset from the startup log before drawing conclusions.

Requirements

  • MetaTrader 5.
  • A hedging account is required if you intend to use the pyramiding module (multiple simultaneous positions on one symbol). Netting accounts work for the standard single-position mode.
  • Works on any symbol; designed and tested primarily on metals/major instruments. Behavior depends on the instrument's spread, volatility and session structure.
  • A VPS is recommended for uninterrupted live operation.

Risk disclosure

Trading leveraged instruments carries a high level of risk and can result in the loss of your entire capital. This Expert Advisor is a decision-execution tool based on defined technical rules; it does not predict the market and does not guarantee any level of profit. Past performance — including any backtest — is not indicative of future results. Its edge is modest and regime-dependent, and real-world spread, slippage and swap reduce net results relative to a backtest. You are solely responsible for your configuration, position sizing and risk. Never risk money you cannot afford to lose, and always validate on a demo account first. This is not financial advice.

Support

Questions about configuration or behavior are welcome. Please include your symbol, timeframe settings and a copy of the startup log (it prints the active configuration) so any question can be answered precisely.


Recommended products
FTrend3
Sonia Tait
Este EA combina a tendência do tempo gráfico principal com mais dois tempos gráficos configuráveis. Os stops são técnicos baseados na técnica dos canais OffRoad. Ao executar otimizações, é interessante buscar as combinações de tempos gráficos que corroboram para um bom resultado para cada ativo e seu comportamento. Estudos apontam para resultados mais assertivos quando os testes são feitos nos últimos meses para operar no próximo. O período do ADX e das bandas de Bollinger também podem variar co
MACD all
Cristian Alexander Aravena Danin
MACD ALL is a project where i want to create an EA that can trade every strategy of the MACD indicator, an EA where you can customize every aspect of the trades, such as using filters for the entry signal, the stoploss placement, risk management, trail stoploss, etc. currently working on: Making a news filter. It works on any symbol , but in the developing of the EA i encountered some profitable setups that look promising, on the US100 symbol and the US500 symbol, both using the 4H timeframe, I
Ranked Zone Trader
Attapong Pintasri
Ranked Zone Trader is an Expert Advisor for MetaTrader 5. It detects non-repainting fair value gap zones on closed bars, ranks active zones by strength, and waits for a retest before placing a trade. The EA is designed around price-zone retests rather than grid or recovery logic. Each trade uses a hard stop-loss and a fixed reward-to-risk target. Position size can be fixed or calculated from a risk percentage. Main features: - Closed-bar fair value gap zone detection - Strength ranking for ac
Proteus StarMan PRO
Youssef Esseghaiar
PROTEUS StarMan PRO AI #Elite The Prop‑Firm Ready Engine – Smart, Safe, Scalable   Why This EA Stands Out |   Risk‑First Design   | Stays within   strict drawdown limits   – built for challenge rules | |   Adaptive Intelligence   | Automatically chooses between   trend‑following   &   mean‑reversion   | |   Multi‑Pair Portfolio   | Diversified exposure across   5 major FX pairs   – smooth equity curve | |   Institutional Risk Mgmt   | Equity curve protection, exposure caps, c
US500 Pulse
Md Abdul Manann
Your Automated Edge for Consistent Trading Success Tired of emotional trading decisions and inconsistent results? Master the US500 (US S&P 500 Index) with a professional-grade trading robot built for the discipline and consistency required for long-term market success. Get started for just $34/month. License: 20 Devices & Unlimited Accounts.  US500 Pulse is not just another EA. It's a comprehensive, trend-following trading system designed to navigate the fast-paced US500 market with a primary
Risk Guard Pro
Muniz Machado Thiago
RiskGuard PRO – Defesa Inteligente para Traders Sérios no EURJPY M15 O RiskGuard PRO é um Expert Advisor de alto desempenho, projetado exclusivamente para o par EURJPY no timeframe M15 , com foco total em preservação de capital, gestão de risco avançada e execução estratégica de múltiplas abordagens operacionais . Ao contrário dos EAs tradicionais, o RiskGuard PRO foi desenvolvido com tecnologia proprietária e arquitetura inteligente , capaz de operar com segurança mesmo em ambientes de merc
Ravi Gold SMC
Ravinath Parak
Product:   SMC-based automated trading robot for XAUUSD (Gold) on M1 timeframe. Core Strategy:   Enters trades using institutional Smart Money Concepts (SMC)—Liquidity Sweeps, Order Blocks, Fair Value Gaps, and Breaker Blocks—with traditional swing levels as a fallback. Key Feature – Intelligent Hedge:   Places a pending hedge order exactly at the original position’s stop loss. The hedge activates only if the stop is hit, trails profits faster (10 pips vs. 60 pips for the original), and is de
-         What it does? Opens BUY (or SELL) orders automatically every X pips you decide. Closes each trade at your personal TP .  Works on any symbol: SP500, NAS100, GOLD, EURUSD, BTC... 100 % YOUR SETTINGS   What can you enter in the settings? - Trading direction: Buy or Sell - Entry level - Entry volume - Maximum number of buy orders - Maximum number of sell orders - Pips required for each new entry - Pips to take profit per trade - Stop Loss Level - Close all trades when SL level is hit Exam
GoldGridMVP
Steven Wong Sing Seng
Gold Grid MVP is a MetaTrader 5 Expert Advisor for trend pullback trading with optional grid scaling and basket profit management. It combines higher-timeframe trend context with lower-timeframe entry timing, then manages multiple legs as one basket. Features H1 trend filter with M15 pullback entries Fixed-lot style grid scaling (configurable layers) Basket take-profit and optional basket loss exit Risk profiles: conservative, standard, aggressive Daily and total drawdown guards Optional news, s
Quantrix Apex Scalper
Donald Burne Pinnock
The Quantrix Apex Scalper is a precision-built MetaTrader 5 expert advisor engineered for traders who prioritize capital preservation over reckless aggression. Unlike conventional bots that fire indiscriminately on every signal, this system employs a rigorous four-layer trend confirmation framework—combining ADX strength analysis, dual EMA alignment, price-to-MA positioning, and directional momentum validation—to ensure every single trade is taken strictly in the direction of a confirmed market
Hunt and Ride the Trend. [ SET FILES ] PROPFIRM READY! The Naked Gold Trend Hunter is a professional-grade, trend-following EA that combines day trading precision with scalping agility . It seeks consistent, high-probability entries aligned with institutional money flow in Gold (XAUUSD) and other major markets. Built on multi-timeframe confirmation and precision trend analysis , the Trend Hunter eliminates guesswork by ensuring every trade moves WITH the dominant market direction — capturing in
FREE
HLC bar MT5 Wyckoff
Eduardo Da Costa Custodio Santos
The indicator "HLC_bar_MT5 Wyckoff" for MT5 has been created to facilitate analysis at trade time. The HLC Bar was used by Richard Wyckoff and is currently widely used in "VSA" operations. Wyckoff found that using High, Low, and Close made the graph much cleaner and easier to analyze. The Indicator "HLC_bar_MT5 Wyckoff" allows: # Change the bar width; # Leave the bar the same color; # And highlight the bar that opened and closed at the same price. Colors and width is easily modified in settings
Volatility 75 Pro Auto
RhasPro Innovatives
Volatility 75 Pro Auto (Contact for .set files) Professional Grid + Trend Expert Advisor for Deriv Synthetic Indices Volatility 75 Pro Auto (V75 Pro) is a professional Expert Advisor (EA) designed exclusively for trading Deriv Synthetic Indices on MetaTrader 5. Unlike conventional grid systems that rely solely on averaging positions, V75 Pro combines trend analysis, multi-timeframe confirmation, and multiple technical indicators to filter low-quality market entries before executing trades. The
MultiPair Genius
Dylan Alain Sylvain Philippe Broissart
I am selling this robot reluctantly because it works very well, but I need initial capital to make a living. Once my capital goal is reached, it will be priced exorbitantly to prevent purchases (9999999$). However, it will remain available and updated for previous buyers. This robot trades three currency pairs simultaneously to hedge against market fluctuations. Don't forget to send me a message to get the robot's .set file. The robot trades EURUSD and EURGBP in the same direction and GBPUSD in
Super Bollinger EA
Renato Takahashi
Super Bollinger EA is an exclusive expert advisor that uses Bollinger Bands as indicator. It´s possible to configure the EA to trade as a low frequency or high frequency one - Scalping expert advisor. A Stochastic Oscillator filter is implemented to have some specific trades on Bollinger Bands. Takeprofit and Stoploss are calculated according to Bollinger Bands width or even with fixed TP and SL ( in points ). A trail and trade out system can also be configured and optimized. A number of orders
Prop firm king
Ricky Zoltan Beznec
This Expert Advisor is a fully automated trading system designed exclusively for the   USD/CHF   currency pair on the  3 -hour (H3) chart . It identifies high-probability reversal opportunities by detecting when price reaches statistically extreme overbought or oversold conditions. When a qualifying signal is confirmed, the EA automatically enters a trade, manages position size relative to available margin, and applies a dynamic trailing stop to protect profits as the trade moves in favour. The
GoldRankers
Mohamad Mohamad Aref - Albukhari
GoldRankers - Advanced AI Grid Trading System SET FILE 6M Tagline Rank Among Gold Trading Elite With Cutting-Edge AI Technology Main Description GoldRankers is a revolutionary AI-powered Expert Advisor engineered for serious gold traders. Utilizing cutting-edge neural algorithmic analysis and machine learning-based market intelligence, this system represents the next generation of automated XAUUSD trading technology. Why GoldRankers? Our advanced AI technology processes real-time market dyna
FREE
SemisScalpel
Andriy Sydoruk
The   SemiScalpel   Expert Advisor is a semi-scalping system which analyzes the market using an oscillator. During tests use the "Every tick" mode. The expert works only with accounts like "Netting" Adjust   StopLoss ,   TakeProfit ,   TrailingStart ,   TrailingBreakeven   and   TrailingStop   to set the system operation mode: scalping or standard. Simple overbought/oversold levels are used. You can use one of the indicators (select the value of the   Signal   parameter): RSI CCI WPR DEM MOM RVI
Gold Orbit EA
Abadat Hussain
Gold Orbit EA – Gold EA for XAUUSD Scalping on MT5 Overview Gold Orbit EA is a professional Gold Expert Advisor developed exclusively for MetaTrader 5 (MT5) . Designed specifically for XAUUSD (Gold) , it uses a proprietary mathematical trading algorithm to identify high-probability scalping opportunities on the M1 (1 Minute) timeframe. Built for speed, precision, and consistency, Gold Orbit EA automatically analyzes market conditions and executes trades according to its internal trading logic. T
FREE
Blubbify SMC
Saiful Izham Bin Hassan
Blubbify Smart Money Concept is an advanced analytical engine and automated trading system designed to track institutional footprints. It uses high-probability mathematical models to identify supply and demand imbalances, track volume accumulation, and execute trades alongside market momentum. The system operates by analyzing the chart for sudden structural shifts and liquidity sweeps. Once an institutional footprint is confirmed, it projects graphical supply and demand zones onto the chart. You
Robo davi I
Lucas Silvino Da Silva
Robô Davi I by Êxodo Capital is a professional system for traders created for the MT5 platform and optimized to work with MINI FUTURE INDEX (WIN) at B3 in BRAZIL. The system uses bias algorithms. After identifying the trend, the position is opened and the robot conducts the trade through a trailing stop that will be driven by the 13-period average. Maximum GAIN of 2200 pts. Main features Our setup has the option to use martingale, the EA has the option to customize. Presentation in the grap
AlphaBreak Pro
Alex Amuyunzu Raymond
AlphaPro EA – Technical Overview 1. Introduction AlphaPro EA is an Expert Advisor for MetaTrader 4 and MetaTrader 5. It applies multiple algorithmic strategies with risk control features and supports various trade management modes. The system is designed for use on different timeframes and multiple currency pairs. 2. Core Features Algorithmic Execution – Uses multi-layered entry/exit logic combining scalping, breakout, and trend-based methods. Risk Management – Supports balance-based lot sizing
FREE
Binary MACD
Bogdan Kupinsky
Индикатор, показывающий момент преодоления нулевой отметки индикатора MACD.  Подходит для бинарной торговли, т.к. имеется возможность посчитать точность сигналов, в зависимости от времени экспирации. Входные параметры Period of SMA1  - Период 1 скользящей средней Period of SMA2 -  Период 2 скользящей средней Period of SMA3 -  Период 3 скользящей средней Price Type - Тип цены, используемый индикатором MACD Invert signals  - Возможность давать инвертированные сигналы (для работы по тренду) Inform
Maximum Infinity Pro – Advanced Grid EA for MT5 Maximum Infinity Pro is a professional-grade Expert Advisor (EA) designed for MetaTrader 5, combining advanced grid trading logic with robust risk management and adaptive entry/exit strategies. This EA is suitable for both beginners and experienced traders who want a reliable, flexible, and fully automated trading solution. Key Features Smart Grid System: Automatically manages buy/sell grids with dynamic lot sizing and grid spacing for optimal per
EMAGapCtrend
Eadvisors Software Inc.
O Robô Trader EMAGap faz operações de curto prazo no timeframe 1min buscando as pequenas variações do mercado no instrumento: Mini-índice(B3), utiliza nova tecnologia de trade, os resultados no intraday são íncríveis.    Versão exclusiva para os instrumentos WIN$ e IND$ (Mini-índice B3).  Estratégia utilizada: média móvel e volatilidade. Lote Inicial: Versão Mini-índice, a partir de 1 lote. Versão Bra50, a partir de 0.05 Mini-Lotes. StopLoss e Take Profit Ajustáveis. Gerenciamento de risco: (
WR Prop Firm
WEALTHROAD LTD
Wealth Road Bot for Passing   Prop Firm Challenges An Expert Advisor specifically designed to pass the challenge and verification phases of funded account companies, with full compliance to drawdown and daily loss rules. Why Wealth Road Bot for Funded Accounts? Very low drawdown based on our internal testing Most of our clients successfully pass the challenge when following the recommended settings and risk management rules. Automatically avoids trading during restricted hours Respects the rule
PeakFlow
Andre Cavalcante Tavares
EA PeakFlow AI Pro is an advanced Expert Advisor designed to maximize your profits based on the powerful High Low indicator. Developed with Artificial Intelligence algorithms and highly optimized parameters, this EA offers a precise and efficient approach to automated trading in the financial market. Key Features High Low Strategy: Leverage critical market levels for optimized entry and exit points. Dynamic Trailing Stop Loss: Protects profits while minimizing risks in real-time. Artificial In
Xgrid Scalper MT5
Prafull Manohar Nikam
This trading robot is strictly made for 10K Capital Trading Account and EURUSD H1. DO NOT use it on smaller accounts, because it has minimum free margin limit i.e. Free Margin > 500 (this value is in "actual money" not in "percentage"!) This is a Simple Grid Trading System which works on ADX indicator's volatility and with High Winrate. IMPORTANT: Default input settings are the bare minimum settings (not ideal) instead use the recommended settings (OR find your own best settings) provided in th
Cls PRO
Marco Aurelio Santos Costa
With CLS you WILL NOT LOSE, as long as you have a professional capital management. It is impossible to make a loss with CLS, why?  It works by buying and selling two positively correlated currency pairs. This means that when PAR 1 goes up PAR 2 also goes up, however, there is something that happens in the market that is the distortion of the price ratio. That is, when the PAR 1 rises and PAR 2 falls, that's when we enter, buying Par 2 and selling Par 1.  This seems simple but it is not, you
Buyers of this product also purchase
Quantum Queen X MT5
Bogdan Ion Puscasu
5 (2)
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
Scalping Robot Pro MT5
MQL TOOLS SL
4.56 (124)
Scalping Robot Pro is a professional trading system designed specifically for fast and precise scalping on XAUUSD using the M1 timeframe. The system is built to capture short term market movements with accurate execution and controlled risk management. It focuses on real time price behavior, momentum shifts, short term volatility, and selective grid based trade management techniques to identify high probability trading opportunities in the gold market. Scalping Robot Pro is optimized for traders
Ultimate Breakout System
Profalgo Limited
5 (46)
IMPORTANT : This package will only be sold at current price for a very limited number of copies.    Price will go to 1999$ soon!   +100 Strategies included and more coming! BONUS : At 1499$ or higher price --> 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 - VERSION 5.0 - ONECHARTSETUP NEW - 30-STRATEGIES LIVE SIGNAL Welcome to the ULTIMATE BREAKOUT SYSTEM! I'm pleased to present the Ultimate Breakout
The Gold Reaper MT5
Profalgo Limited
4.47 (103)
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
TwisterPro Scalper
Jorge Luiz Guimaraes De Araujo Dias
4.45 (120)
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
Zerqon EA
Vladimir Lekhovitser
3.6 (25)
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
5 (15)
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 $999 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 W
Goldwave EA MT5
Shengzu Zhong
4.73 (71)
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
Quantum King EA
Bogdan Ion Puscasu
5 (207)
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
Nexorion Initium Novum EA
Valentina Zhuchkova
5 (15)
NEXORION: Initium Novum — Deterministic Logic and Algorithmic Synthesis NEXORION is an institutional-grade analytical complex based on rigorous mathematical liquidity processing algorithms. The core concept of the project is "computational transparency": the expert advisor transforms chaotic price feeds into structured geometric zones, visualizing the decision-making process directly on the trading chart. Real-Time Monitoring https://www.mql5.com/es/signals/2372338 Technical System Specificatio
AXIO Gold EA
Shengzu Zhong
4.6 (10)
AXIO GOLD EA MT5 Live Signal Reference on MQL5 https://www.mql5.com/en/signals/2378982?source=Site+Signals+My AXIO GOLD EA MT5 is an automated trading system developed for XAUUSD Gold on MetaTrader 5. 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 such as TMGM , the EA's live trading behavior is designed to closely align with the trade structure and execution charac
My Last Strategy
Inrexea Limited
5 (6)
MY LAST STRATEGY One engine. Every candle. Every session. Phase 1 – Limited Release Only 25  copies left. Once all copies are sold, this product will be delisted and no longer available for purchase. All Phase 1 buyers are invited to our private Discord server , where they receive continued updates, optimizations, and direct feedback support. Contact us after purchasing the product for comprehensive instructions and guidance on how to use one of our Slap all News products. TEN YEARS, DISTILLED
Gold Neural Core
TICK STACK LTD
5 (2)
Gold Neural Core — Hyper-Scalping Grid System for XAUUSD Learn how I personally manage risk when using grid systems:  https://www.mql5.com/en/blogs/post/767250 Join my open group for questions related to any of my products:  https://www.mql5.com/en/messages/014beab2560cdc01 Read the user guide to any TickStack grid system:  https://www.mql5.com/en/blogs/post/767232 Gold Neural Core is a high-frequency grid trading system engineered specifically for gold (XAUUSD), combining momentum and trend-bas
Mavrik Scalper
Vladimir Lekhovitser
4 (1)
Live Trading Signal Public real-time monitoring of trading activity: https://www.mql5.com/en/signals/2378119 Official Information Seller profile Official channel User Manual Setup instructions and usage guidelines: View user manual Mavrik Scalper represents a new generation of AI-driven trading systems built around a Hybrid Attention neural network architecture. Unlike conventional algorithmic strategies that rely primarily on fixed technical indicators or predefined market rules, Mav
Gold House MT5
Chen Jia Qi
4.73 (56)
Gold House — Gold Swing Breakout Trading  One EA. Three Trading Modes. Choose the One That Fits Your Style. No Grid. No Martingale. The price will increase by $50 after every 10 purchases. Final planned price: $1,999. Live Signals:  Profit Priority Mode: https://www.mql5.com/en/signals/2359124 BE priority Mode :  https://www.mql5.com/en/signals/2372604 Adaptive Mode:   https://www.mql5.com/en/signals/2379287 Important: After purchasing, please remember to send us a private message to recei
Straddle
Ayush Saraf
3.67 (3)
Straddle is a fully automated Expert Advisor built on a single, disciplined idea: when the market is about to move, be ready on both sides, and let price itself pull the trigger. Developed and hardened by a team of traders whose combined experience spans decades of live gold execution, it distills that hard-won intuition into a defined, repeatable model — one that runs without hesitation, without emotion, and without waiting for permission from the news. It has 204k Lines of Code its huge backt
XG Gold Robot MT5
MQL TOOLS SL
4.26 (111)
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
Pulse Engine
Jimmy Peter Eriksson
3.94 (34)
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
Wave Rider EA MT5
Adam Hrncir
4.88 (41)
Scalper speed with sniper entries. Built for Gold. Wave Rider 5.0 is out (see  Announcement ) $499 for a limited time  before the regular $599 price kicks in. Check the Live signal  or Manual  or  Broker performance Version 5.0 upgrade notice: Close all Wave Rider positions before updating. Strategy Magic Numbers and several input names changed. Review your settings and save a new preset because older sets or templates may not restore every option. New version runs best on VT Markets, Vantage, B
Quantum Bitcoin EA
Bogdan Ion Puscasu
4.83 (126)
Quantum Bitcoin EA : There is no such thing as impossible, it's only a matter of figuring out how to do it! Step into the future of Bitcoin trading with Quantum Bitcoin EA , the latest masterpiece from one of the top MQL5 sellers. Designed for traders who demand performance, precision, and stability, Quantum Bitcoin redefines what's possible in the volatile world of cryptocurrency. IMPORTANT! After the purchase please send me a private message to receive the installation manual and the setup i
Cortex Aurex
Vladimir Mametov
5 (2)
It is a fully automated Expert Advisor for MetaTrader 5, built specifically for Gold / XAUUSD trading. Its logic is designed around the dynamic nature of the gold market: fast price movements, sharp reversals, and high volatility. The EA helps automate trading in an environment where reaction speed, discipline, and precise position management are especially important. The system is focused on disciplined trade management, fast reaction to market changes, and controlled exits. Its main idea is si
Impulse MT5
Simon Reeves
5 (13)
Are you ready to power up your Gold trading? Impulse by Starpoint Trading — A six-strategy gold EA that waits for the perfect shot. Launch offer: 30% off until 26th July   — to celebrate the v2.00 release, Impulse is available at a 30% discount. On 26th July the price reverts to $499, so grab it while the offer lasts. Impulse v2.00 is here! The biggest update in Impulse's history has arrived. Version 2.00 takes everything that made Impulse a disciplined, patient Gold trading system and elevates
SixtyNine EA
Farzad Saadatinia
5 (3)
SixtyNine EA – A Gold Expert Advisor for MetaTrader 5, featuring 6 integrated strategy layers, predefined Stop Loss on every trade, and a clean trading structure without Martingale, Recovery systems, or Grid trading. Public Live Signal: $500 Start, Fixed 0.02 Lot, 500%+ Growth, 20 Weeks Live The public live signal is the central proof point of SixtyNine EA . The account started with a $500 balance , used a fixed 0.02 lot size per trade , and has been active for more than 20 weeks of live tradin
Chiroptera
Rob Josephus Maria Janssen
4.55 (47)
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
Quantum Emperor MT5
Bogdan Ion Puscasu
4.86 (507)
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
Byrdi
William Brandon Autry
5 (19)
BYRDI - The AI Network That Trades as One Most Expert Advisors see one terminal. BYRDI sees the network. A trade opened on one account can change the risk of every other account you own. BYRDI connects separate MetaTrader 5 terminals into one coordinated mesh. Each node can keep its own account, broker, markets, AI model, strategy, and risk settings while remaining aware of the wider system. One node can trade independently. Multiple nodes can coordinate as one network. Shared markets can be di
BB Return mt5
Leonid Arkhipov
4.63 (123)
BB Return — an Expert Advisor for gold trading (XAUUSD). I previously used this trading idea in manual trading. The core of the strategy is a return of price to the Bollinger Bands range, but not blindly and not on every touch. For the gold market, bands alone are not enough, so the EA uses additional filters that eliminate weak and non-working market situations. Trades are opened only when the return logic is truly justified.   Global   update   on   June   14th   Trading principles — the strat
Golden Conqueror
Taner Altinsoy
5 (1)
Welcome to Golden Conqueror , a highly advanced, fully automated active scalping algorithmic system designed exclusively for Gold (XAUUSD) . Built with institutional logic, this EA strictly avoids dangerous grid or martingale systems. Instead, it utilizes high-precision Pivot Breakouts to exploit market momentum and volume surges. To ensure absolute risk mitigation and capital protection, the algorithm strictly limits itself to a maximum of 1 open trade at a time . Furthermore, every single exe
Precise Pair Trading Pro
Arkadii Zagorulko
3.75 (12)
Please note that I do not sell this EA through any third-party resellers, affiliates, or alternative distribution channels. Monitoring -  Live signal Public channel - Here This EA trades two symbols and looks for short-term imbalance between them. When the symbols move differently from their normal relationship, the EA can open trades and close them when the imbalance becomes smaller. This is not a grid EA. This is not martingale. The EA does not open many recovery orders. It uses only 1 positio
More from author
TrendSync Heikin Ashi — Trend, Structure & Confluence in One Indicator A color change is not a signal. Most Heikin Ashi tools flip color and call it a trade. TrendSync Heikin Ashi is built on a different idea: a signal only appears when short-term context, long-term structure and a genuine point of interest all line up. The result is a clean, low-noise chart that shows you where a setup forms, where your stop belongs, and when momentum is fading — without the clutter of generic arrows. TrendSync
FREE
Session boxes with automatic GMT offset & DST, a global world-clock panel, and a personal Trading Window that alerts you the second a trade slips outside your plan. Set it once — never adjust for daylight saving again. TrendSync Sessions — Trade the Right Hours, on Any Broker Every session indicator dies twice a year: daylight saving changes, the boxes shift, and you are left re-entering GMT offsets by hand. TrendSync Sessions was built to end that. Sessions are defined in each exchange's LOCA
FREE
TrendSync Risk Calculator
Juliano Guzlinki Pacheco
Stop guessing your lot size. Risk the same amount on every trade. Most traders blow accounts not because of bad entries, but because of inconsistent position sizing: fixed lots with variable stops means every trade risks a different — and unknown — amount of money. TrendSync Risk Calculator solves this in one drag. How it works Attach the indicator. It automatically anchors three draggable lines at the current price: Entry , SL at N×ATR and TP at your chosen R:R . Drag any line — or type a new A
FREE
TrendSync MTF Dashboard
Juliano Guzlinki Pacheco
Trend direction of up to 10 timeframes of your choice, in one panel — non-repainting, with configurable sync alerts. 100% free. TrendSync MTF Dashboard shows you the trend direction of up to 10 timeframes of your choice — from M1 to MN1 — in a single clean panel on your chart, so you always know whether the timeframes agree before you take a trade. Trading against the higher timeframe is one of the most common (and most expensive) mistakes in manual trading. This dashboard makes multi-timeframe
FREE
TrendSync MACD Pro
Juliano Guzlinki Pacheco
TrendSync MACD Pro Earlier, cleaner MACD crossovers — synchronized with the higher-timeframe trend, non-repainting, with a full alert system. For MetaTrader 5. Overview The classic MACD is a great momentum tool, but it lags — its crossovers often arrive after the move has already started. TrendSync MACD Pro rebuilds the MACD with a zero-lag smoothing technique, so crossovers are earlier and cleaner, and then synchronizes them with the higher-timeframe trend — the decision layer most traders actu
Grid Manager — Manual Multi-Basket Grid Assistant for MT5 Grid Manager is a hands-on control panel for building and managing grid "baskets" directly on your chart. You decide the direction and the moment; the tool opens the grid, manages every leg, and protects the position with money-based risk controls, on-chart breakeven/SL/TP lines, and one-click actions. It is an execution and management assistant — fast, visual, and fully under your control. What it is — and what it is not Grid Manager is
TrendSync Assistant — Prop Firm Guardian + Trade Panel ======================================================== Most prop firm challenges do not die from a bad strategy. They die from ONE bad day — a losing streak, a news spike, a moment of revenge trading that crosses the daily loss line. Once equity touches the limit, the account is gone, no matter how good the previous weeks were. TrendSync Assistant is an on-chart trade panel with an account-level risk guardian built specifically around p
Filter:
No reviews
Reply to review