Doctor Pips

 Expert Advisor designed specifically for trading gold, BTC, EURUSD. The operation is based on opening orders using the EMA/RSI indicator, thus the EA works according to the "Trend Follow" strategy, which means following the trend.

For Expert Advisor need hedge type account 

Contact me immediately after the purchase if you prefer to get commission (Rebate) up to 40$/Lot!  You can get a free copy of our Strong Support and Trend EA for unlimited account, please pm. me!

Settings, manual and .set files here
Product Support for Doctor Bullish EA. here


Please note that I do not sell my EA's or special sets on another platform, it is only available on Mql5 and my set files are only available on my blog. Be careful of scammers and do not buy any sets from anyone else!


This guide explains how to install, configure, and operate the Expert Advisor (EA) 

Table of Contents

  1. Quick Start 

  2. What the EA Does (Strategy Overview)

  3. Installation & Chart Setup

  4. Risk & Safety Features (Read First!)

  5. Dashboard & On‑Chart Behavior

  6. Input Reference (every parameter explained)

    • A. Inputs Baseline

    • B. Step‑Index Grid Inputs

    • C. EMA Auto Pause Inputs

    • D. Indicators for Gating/Flip

    • E. Opposite Pyramid

    • F. Step Trailing

    • G. Guards / Kill‑Switch

  7. Presets by Use‑Case

  8. Best Practices & Broker Notes

  9. Troubleshooting & FAQ

1) Quick Start 

  1. Attach the EA to the symbol and timeframe you want to trade (defaults work on common FX pairs and XAUUSD; verify spreads).

  2. Set MagicNumber uniquely per chart/symbol.

  3. Start with small lots ( LotStart_Buy/Sell = 0.01) and conservative multipliers ( LotMultiplier = 1.10–1.25).

  4. Keep MaxSpreadPoints realistic for your broker (e.g., 50–100 for FX; higher for gold if points are tiny).

  5. Enable EMA auto‑pause to avoid fighting the trend: keep defaults EMA 21/89, EMA_CheckOnNewBar = true.

  6. Safety: set SideMaxLossMoney (per‑side freeze) and, if needed, MaxEquityDD (global kill switch). Test in the Strategy Tester.

2) What the EA Does (Strategy Overview)

DoctorBullish v4.5 is a step‑index grid EA with protective gates:

  • Step‑Index Grid: places entries at growing distances using DistanceStart_* and DistanceMultiplier_*. Lot sizes can grow via LotMultiplier_* up to MaxLot.

  • EMA Auto Pause (21/89 by default): when fast/slow EMAs cross or trend conditions change, the EA pauses one side to trade with momentum rather than against it.

  • Same‑Side Close / Cross‑Side Netting: closes profitable pairs on the same side using MinProfitToClose_SameSide, and can net cross‑side positions using MinProfitToClose_CrossSide. You can choose to ignore magic numbers for cross‑netting if desired.

  • Trailing (optional): simple step trailing once profit exceeds TrailingStart_Points, stepping by TrailingStep_Points.

  • Guards / Kill‑Switch: spread guard, volatility guard, per‑side freeze by money loss, and global equity drawdown kill switch to close all and stop.

3) Installation & Chart Setup

  1. In MT5, open the Navigator → Expert Advisors, drag DoctorBullish v4.5 onto your chart.

  2. Allow Algo Trading. Set a unique MagicNumber per chart.

  3. Check point vs pip scale on your broker (gold often has different point size). Adjust distances and spreads accordingly.

4) Risk & Safety Features (Read First!)

  • Per‑Side Freeze ( SideMaxLossMoney): if the net P/L of one side (Buy or Sell) is ≤ − SideMaxLossMoney, that side becomes frozen (no new adds) until conditions improve.

  • Global Kill Switch ( MaxEquityDD): if Balance − Equity|MaxEquityDD|, the EA closes all positions of this symbol/magic and exits the tick loop, effectively stopping exposure.

  • Spread Guard ( MaxSpreadPoints): blocks new actions when spread exceeds the limit.

  • Volatility Guard ( VolatilitySpikeMult): optional gating during spikes (broker and symbol dependent).

Tip: Always dry‑run in Strategy Tester and forward demo before live. Start with tiny lots.

5) Dashboard & On‑Chart Behavior

  • The EA draws a simple overlay showing state (pause flags, counts, etc.) if present. In backtests, heavy UI may be reduced to keep the tester fast.

  • Logs/Debug: CrossSide_DebugLevel controls verbose messages for cross‑side logic (0 = silent, 1 = basic, 2 = verbose). Recommend keep it 0.

6) Input Reference

Below are all inputs detected in the current source, grouped as in the file. Each description includes what the parameter does and practical guidance.

A) Inputs Baseline

  • Close_All_Profit_Target ($): If account/scope target profit reaches this threshold, close all positions (see CloseAll_Target_UseAccountScope).

  • CloseAll_Target_UseAccountScope : If true, evaluate the close‑all profit target using account scope; if false, limit to this symbol/magic.

  • CloseAll_MaxPositionsPerTick : Caps how many positions may be closed in one tick (prevents overload/requotes loops).

  • OnlySameMagic : When true, EA manages only positions with its MagicNumber. Keep true unless you explicitly want cross‑magic interactions.

  • MagicNumber : Unique ID to distinguish this chart’s trades. Set a different value per chart.

  • MinProfitToClose_SameSide ($): Minimum net profit per same‑side pair/group to trigger closure.

  • MaxSameSidePairsPerTick : Max count of same‑side pairs/groups to close per tick.

  • MinProfitToClose_CrossSide ($): Minimum net profit to close cross‑side pairs (one Buy vs one Sell pairing logic).

  • MaxCrossPairsPerTick : Max count of cross‑side pairs to close per tick.

  • CrossSide_IgnoreMagic : If true, cross‑side netting can pair positions across different magics. If you run multiple EAs, consider setting to false.

  • SideCloseDeviationPoints : Slippage (in points) allowed when closing positions.

  • CrossSide_DebugLevel : 0=silent, 1=basic, 2=verbose. Use 0 for validation Cross side, recommended 0

  • BaseTP_Pips_Buy / BaseTP_Pips_Sell : Take‑Profit (in pips) for the first/seed entry on each side (0 disables).

  • Close_All_Profit_Target_Buy / ..._Sell ($): Optional side‑specific close‑all profit thresholds.

  • GapFactor (2.0): Internal spacing multiplier for some dashboard/logic components. Leave default unless you know what you are doing.

B) Step‑Index Grid Inputs

Controls how lots and distances grow per side.

  • LotStart_Buy / LotStart_Sell : Starting lot size for the seed order.

  • LotMultiplier_Buy / LotMultiplier_Sell : Multiplier applied to subsequent adds. Lower for conservative risk (1.05–1.20).

  • MaxLot : Hard cap for a single order’s lot size. Safety against runaway growth.

  • DistanceStart_Buy / DistanceStart_Sell : Initial gap (in points) from previous entry before the next add.

  • DistanceMultiplier_Buy / ..._Sell : Growth factor for the next distance. Example: 100 → 110 → 121 → …

  • CooldownSeconds_Buy / ..._Sell : Minimum seconds between new entries on each side.

C) EMA Auto Pause Input Parameters

  • UseEMACrossoverPause : Enables the EMA‑based auto‑pause controller.

  • EMA_Fast_Period / EMA_Slow_Period (21 / 89): Fast/slow EMA periods.

  • EMA_TF : Timeframe for EMA calculations. Keep PERIOD_CURRENT unless you understand multi‑TF implications.

  • EMA_CheckOnNewBar : If true, evaluate EMA logic only on new bars, reducing noise.

  • EMA_RequireSlope : Require minimum EMA slope before pausing/unpausing.

  • EMA_MinSlopeAbs : Minimum absolute slope (points/bar). Set >0 to filter flat markets.

  • EMA_AntiFlipCooldown_s : Prevents rapid flip‑flop of pause state after a cross (seconds).

  • EMA_AutoPauseMode (default EMA_PAUSE_FOLLOW_STATE): Mode for how the pause flags respond to EMA direction. Default tracks the most recent valid state.

  • PauseBuy / PauseSell (false): Manual override toggles. If true, that side won’t open new positions (existing positions still managed/closed).

D) Indicators for Gating/Flip

Supplemental gates beyond EMA.

  • UseRSIFilter : If true, EMA signals require RSI confirmation; if false, EMA‑only mode.

  • (Additional indicator sub‑inputs as present in file): Keep defaults unless you explicitly test confirmation filters; they reduce trades but may improve quality.

E) Opposite Pyramid

Controls opposite‑direction adds logic.

  • OppPyra_AddEveryATR (0.6): Add a layer every k×ATR distance (lower = more frequent). Use cautiously; increases exposure.

  • Other OppPyra inputs: Present for frequency/limit/scope of opposite adds. If unsure, disable or keep conservative defaults.

F) Step Trailing

  • UseTrailing : Enables trailing stop management.

  • TrailingStart_Points : Begin trailing after this profit (points).

  • TrailingStep_Points : Trail step size (points). Larger = looser trail.

  • MagicFilter : −1 = apply to all magics on this chart; otherwise restrict trailing to a specific magic.

G) Guards / Kill‑Switch

  • SideATRStopMult (0.0): If >0, per‑side ATR‑based stop logic multiplier. Leave 0 if you don’t use ATR‑stops.

  • SideMaxLossMoney ($): When a side’s net P/L ≤ −this value, the side freezes (no new entries). Tune to your risk.

  • MaxEquityDD ($): If >0 and Balance − Equity ≥ |MaxEquityDD| → close all positions for this symbol/magic and stop processing the tick.

  • MaxSpreadPoints : Blocks entries/management when spread is too high.

  • VolatilitySpikeMult (0.0): Optional volatility spike guard. Keep 0 to disable if unsure.

Note: Some groups in the source contain placeholders or advanced hooks. If you don’t explicitly need them, keep the defaults.

7) Presets by Use‑Case

Conservative (Demo/First Live)

  • LotStart_* = 0.01, LotMultiplier_* = 1.10, MaxLot = 0.05

  • DistanceStart_* = 150–250, DistanceMultiplier_* = 1.20

  • UseEMACrossoverPause = true, EMA_CheckOnNewBar = true

  • SideMaxLossMoney = 200–400, MaxEquityDD = 0 (off)

  • MaxSpreadPoints tuned to symbol

Trend‑Following Bias

  • Keep EMA 21/89, turn on EMA_RequireSlope with small EMA_MinSlopeAbs

  • Consider UseRSIFilter = true to reduce counter‑trend adds

High‑Volatility Symbols (e.g., XAUUSD)

  • Increase DistanceStart_* and TrailingStart_Points

  • Keep LotMultiplier_* ≤ 1.15 and a tight MaxLot cap

  • Raise MaxSpreadPoints to match broker point scale

8) Best Practices & Broker Notes

  • Magic Numbers: Always unique per chart. Avoid mixing EAs with the same magic on the same symbol.

  • Point vs Pip: MT5 uses points; 1 pip can be 10 points on 5‑digit FX. Gold has its own scale. Verify in Market Watch → Specifications.

  • Tester Timeouts: If your broker’s tester times out on certain symbols, reduce log verbosity ( CrossSide_DebugLevel = 0), avoid UI‑heavy options, and cap per‑tick loops ( Max*PerTick).

9) Troubleshooting & FAQ

Q: The EA doesn’t open trades.

  • Check PauseBuy/ PauseSell flags and EMA auto‑pause state. Spread guard may also be blocking (see MaxSpreadPoints).

Q: Cross‑side closing doesn’t trigger.

  • Ensure MinProfitToClose_CrossSide > 0, and set CrossSide_IgnoreMagic = true if you expect pairing across different magics.

Q: Risk feels too high.

  • Lower LotMultiplier_*, raise DistanceStart_*, and cap MaxLot. Use SideMaxLossMoney to freeze sides sooner.

Q: Too many logs / slow tester.

  • Keep CrossSide_DebugLevel = 0, and avoid enabling verbose/debug modes. Limit per‑tick close counts with Max*PerTick inputs.

Q: Which timeframe?

  • Default is flexible; EMA TF is PERIOD_CURRENT. Many users test on M15–H1. Match to your preference and volatility.

Final Notes

  • Always test on demo first, then go live with the smallest lot size.


Recommended products
SmartRisk MA Pro
Oleg Polyanchuk
SmartRisk MA Pro Strategy Overview: SmartRisk MA Pro is an optimized, risk-oriented automated trading strategy (Expert Advisor) developed for the MetaTrader 5 platform. It is designed to identify trading opportunities based on price deviations from moving averages and incorporates a comprehensive capital management system. The Expert Advisor operates on a "new bar" logic, ensuring stability and predictability in trade signal execution. Operating Principles and Trading Logic: At its core, the st
Classic SNR MetaTrader 5 Expert Advisor | Multi-Symbol Support & Resistance Trading with Trend-Based Logic Overview Classic SNR Breakout EA is a professional trading robot that identifies structural Support & Resistance levels using daily swing points and executes trades based on H1 price action relative to these levels. The EA applies   dual logic : in an uptrend, it sells on H1 rejection below an SNR level; in a downtrend, it buys on H1 rejection above an SNR level. Breakout confirmations are
SolarTrade Suite Financial Robot: LaunchPad Market Expert - designed to open trades! This is a trading robot that uses special innovative and advanced algorithms to calculate its values, Your Assistant in the World of Financial Markets. Use our set of indicators from the SolarTrade Suite series to better choose the moment to launch this robot. Check out our other products from the SolarTrade Suite series at the bottom of the description. Do you want to confidently navigate the world of inves
This robot operates based on the Parabolic SAR indicator. Verion for MetaTrader4 here . The advanced EA version includes the following changes and improvements: The EA behavior has been monitored on various account types and in different conditions (fixed/floating spread, ECN/cent accounts, etc.) The EA functionality has been expanded. Features better flexibility and efficiency, better monitoring of open positions. Works on both 4 and 5 digits brokers. The EA does not use martingale, grid or arb
Bear vs Bull EA MT5
Nguyen Nghiem Duy
Bear vs Bull EA Is a automated adviser for daily operation of the FOREX currency market in a volatile and calm market. Suitable for both experienced traders and beginners. It works with any brokers, including American brokers, requiring FIFO to close primarily previously opened transactions. *In order to enable the panel, it is necessary to set the parameter DRAW_INFORMATION = true in the settings; - Recommendations Before using on real money, test the adviser with minimal risk on a cent tradi
Max ScalperSpeed MT5   is a fully automated expert advisor. This system has been developed to improve the efficiency of generating more returns. Rely on scalping trading strategies and recovery strategies with appropriate trading frequencies, and also able to work well in all market conditions, whether trend or sideways, able to trade full time in all conditions. Enable or disable news filtering according to user needs. Added a proportional lot size adjustment function, where users can choose t
BB King
Khima Gorania
BB King EA for MT5 BB King Expert Advisor uses a simple reversal strategy using Bollinger Bands and trend detection. It is designed to be easily used by newbies with very few parameters. Please try the demo and leave feedback.You will need to optimize it for the pair you wish to trade. Minimum deposit: $100 per lot size of 0.01 per currency pair. Risk Management There is NO Stop Loss or Take Profit set for each order placed. Stop Loss and Take Profit are controlled by the Input Variables. Stop
Hamster Scalping mt5
Ramil Minniakhmetov
4.71 (238)
Hamster Scalping is a fully automated Expert Advisor. Night scalping strategy. The RSI indicator and an ATR-based filter are used for entries. The advisor needs a hedging account type Be careful i not sell EA or sets at telegram it scam. All settings free here at   blog .  IMPORTANT! Contact me immediately after the purchase to get instructions and a bonus! Real operation monitoring as well as my other products can be found here: https://www.mql5.com/en/users/mechanic/seller General Recommendati
Expert Smart Trend
Ruslan Pishun
3 (6)
The trading system operates on seven pairs and one timeframe. The Expert Advisor uses trading systems for trend-based entries with the help of the Envelopes and CCI indicators. Each indicator uses up to five periods for calculating the trends. The EA uses economic news to calculate the prolonged price movements. The EA has the built-in smart adaptive profit taking filter. The robot has been optimized for each currency and timeframe simultaneously. Attention! This EA is only for "hedging" account
Fundamental Robot MT5
Kyra Nickaline Watson-gordon
Fundamental Robot is an Expert Advisor based on Fundamental Signals Indicator. The Fundamental Signals Indicator has a powerful calculation engine that can predict market movement over 30000 points. The indicator is named fundamental because it can predict trends with large movements, no complicated inputs and low risk.  The EA works with low margin levels and thus has low risk. Using EA : The EA is very simple and without complicated input parameters. These are main parameters must be set
Yellowstone FX
Michael Prescott Burney
4 (5)
Yellowstone FX – Safest Gold Trading Robot MT5 for XAUUSD H1 Yellowstone FX is a precision-engineered safest gold trading robot MT5 solution designed for traders who prioritize capital protection, disciplined execution, and controlled exposure in the XAUUSD market . Built specifically for MetaTrader 5 and optimized for the XAUUSD H1 timeframe , this advanced expert advisor focuses on stability and structured automation rather than aggressive and unpredictable trading behavior. For traders search
Universal MT5 MACD
Volodymyr Hrybachov
Trading robot on the MACD indicator This is a simplified version of the   trading robot , it uses only one entry strategy (the extended version has more than 10 strategies) Expert Benefits: Scalping, Martingale, grid trading. You can set up trading with only one order or a grid of orders. A highly customizable grid of orders with a dynamic, fixed or multiplier step and trading lot will allow you to adapt the Expert Advisor to almost any trading instrument. Drawdown Recovery System, Overl
Universal MT5 MA
Volodymyr Hrybachov
Trading robot on the Moving Average indicator This is a simplified version of the trading robot , it uses only one entry strategy (the extended version has more than 10 strategies) Expert Benefits: Scalping, Martingale, grid trading. You can set up trading with only one order or a grid of orders. A highly customizable grid of orders with a dynamic, fixed or multiplier step and trading lot will allow you to adapt the Expert Advisor to almost any trading instrument. Drawdown Recovery Syste
Gold Smc Recovery Matrix
Chaibadee Dechtanankul
Here is the explanation of the Gold Smc Recovery Matrix V10.0 trading logic for the H1 timeframe in English: Trading Strategy Overview: H1 Wick Liquidity & Matrix Recovery The system is designed specifically for Gold (XAUUSD) on the H1 (1-hour) timeframe. It combines Smart Money Concepts (SMC) regarding "Liquidity Sweeps" with a high-efficiency "Matrix Grid" recovery system. 1. Entry Logic: H1 Support Wick Detection The "Engine" scans the historical data of the last 48 hours (adjustable via InpW
Aurum Intraday EA
Rodrigo Leonardo Favreau Giuliodoro
Aurum Intraday EA – Advanced Gold Trading Algorithm The Aurum Intraday EA is a powerful automated trading system designed specifically for Gold (XAUUSD) traders who want to capture strong intraday movements while maintaining full control over risk and strategy configuration. Built with a robust algorithm and optimized for H1 and H4 timeframes (H4 recommended) , this Expert Advisor is capable of identifying high-probability opportunities in the gold market and executing trades with precision and
Scalping bot for the gold/dollar pair (XAU/USD) — a powerful and versatile solution for traders, designed to deliver maximum efficiency in a dynamic market. This bot is specifically engineered for scalping: it analyzes price changes and places trades even before significant market movements begin. This allows it to secure advantageous positions early and capitalize on even the smallest market fluctuations. Key Features: Flexibility: Adapts to any market conditions and suits your trading strategy
Cash Drop MT5
Volodymyr Hrybachov
3 (2)
This advisor is the result of many years of development. I specialize mainly in grid and hedging strategies, I transferred all my experience and knowledge to this expert. As a result, we have a highly customizable expert template and several good strategies for choosing a trader, trading strategies will be constantly added, and the expert will remain relevant and will be in the top even after 10 years. In other words, when purchasing this product, you get a highly customizable advisor with const
| Fully-automated Smart Money Concept (ICT) inspired trading solution with multi-strategy capabilities | Built by a grid trader >> for grid traders.  This is MT5 version, click  here  for  Blue CARA MT4  (settings and logics are same in both versions)     Real monitoring signal  -->  Cara Gold Intro Blue CARA EA   ('CARA') - short for  C omprehensive  A lgorithmic   R esponsive   A dvisor is a next-gen  multi-currency    multi-timeframe  EA base on the widely known (and perhaps the most popul
ThanosAlgotrade
Irina Manikeeva
1 (1)
ThanosAlgotrade is an automatic trading advisor for obtaining stable profits over a long period of time. Does not require manual intervention. Designed to work in the MT5 terminal on "hedge" type accounts , the Adviser needs to be installed on the EURUSD currency pair chart on the M1 time frame and enable auto trading. Monitoring of the adviser's work can be viewed here
Gifted FX
Michael Prescott Burney
Gifted FX for GBPUSD H1 Chart Overview: Gifted FX for GBPUSD on the H1 chart is an advanced trading system designed for precision and profitability. It is engineered to adapt to various market conditions, ensuring consistent performance. Key Features: 100 Strategy Index: Leveraging a robust index of 100 unique strategies to cover a wide range of market scenarios. High Win Rate: Boasts an exceptionally high win rate, ensuring frequent successful trades. Super Low Drawdown (DD): Designed to mainta
Layer Grid
Dominic Mbothu
Layer Grid Expert Advisor – Full Product Description  SECTION 1: Executive Overview A System Built on Structure, Intelligence, and Adaptability Layer Grid is a next-generation Expert Advisor engineered for traders who demand more than just automation—they seek systems rooted in structure, refined through intelligence, and proven through real-world consistency. Unlike mass-market EAs built on rigid, outdated templates, Layer Grid is a living algorithm, designed to evolve with the markets it enga
Smart Gold Hunter
Barbaros Bulent Kortarla
5 (2)
No Grid, No Martingale, One Shot EA wilh SL and TP, High Win Rate, Consistent, Live Signal [ Click Here ] : Smart Gold Hunter is  designed for consistent results in live trading. It captures fast market movements using precise price-based logic  while maintaining full control over risk. Key Advantages No Grid No Martingale No Dangerous Averaging Strict Risk Control Prop Firm Friendly (daily profit/loss targets, equity protection, news filter, session & Friday close protection) Optimized speci
Ultra KZM
Nattapat Jiaranaikarn
Ultra KZM is an Expert Advisor that using the unique trading operation. It's strategy is based on the combination of grid and correlation system which is the new method that I invented and developed for a long time. You can see Live Signal from these links : (delete space) 1.  https: //www .myfxbook.com/portfolio/ultra-kzm-eurjpyeurchf/10224608 2.  https: //www .myfxbook.com/portfolio/ea-ultra-kzm-real-account/10374382 Note that this EA should run in ECN swap-free account. When you backtest yo
Astra Ea
Muhammad Huraira
5 (1)
Astra EA – Precision. Power. Perfection. Astra EA is a modular trading engine built for robust performance across major FX pairs and XAUUSD. It merges multiple independent entry frameworks with disciplined exit and risk controls. All components are price-driven and fully automated. Core Strategies:  • Grid / Overlap Engine – Adaptive step sizing, controlled lot progression, and overlap protection to avoid excessive exposure across correlated levels.  • Support & Resistance Logic – Institutio
Basic working principles of EA will have 2 main systems. 1. Timed order opening means that at the specified time the EA will open 1 Buy order and 1 Sell order. 2. When the graph is strong, the EA will remember the speed of the graph. is the number of points per second which can be determined You can set the number of orders in the function ( Loop Order ). The order closing system uses the trailling moneym Loss system, but I set it as a percentage to make it easier to calculate when the capital
Kefren Bot Gold
Sergio Villar Leon
Expert Advisor Breakout for XAUUSD Price: 89  USD Next Price: 145 USD The price will increase progressively with each new update and as the number of buyers grows. Current buyers keep the price they paid. General Description Kefren Bot Gold is an Expert Advisor designed exclusively to trade XAUUSD. Its logic is based on the automatic detection of support and resistance level breakouts, with equity-based risk management and automatic execution. The system does not use grid, martingale or lot m
BASTET19z
Sorakrit Lueangtipayajun
This EA is based on a Bollinger Bands reversal strategy. It automatically detects price reversals at the upper or lower Bollinger Band and opens trades in the direction of the expected bounce. The system dynamically calculates optimal take-profit (TP) levels based on recent market volatility and structure, ensuring efficient profit capture without manual intervention. Live Results (6 months): +125.52% profit, 20.75% max drawdown Myfxbook proved please Copy and paste URL's: ( myfxbook.com/me
Manofgold
Eakkarach Wikeng
Trend & Grid V36 Instant Trend & Grid V36 Instant is a high-performance hybrid Expert Advisor (EA) designed to combine Trend-Following logic with an intelligent Grid Management system. It utilizes EMA 25 and 50 on the M5 timeframe to identify market direction while employing a sophisticated recovery mechanism to handle market retracements. SPECIAL PROMO & PRICE UPDATE: To maintain the exclusivity and quality of support, the price will DOUBLE after every 5 copies sold. Get your copy now at the
Infinite Gold Grid
I Kadek Yogasiana
Infinite Gold Grid – Adaptive Buy-Only Grid EA for XAUUSD Unlock the power of intelligent compounding on Gold (XAUUSD) with Infinite Gold Grid – the adaptive grid trading robot designed for long-term growth in bullish and ranging markets. Why Infinite Gold Grid Stands Out: Buy-Only Strategy – Focuses exclusively on long positions, perfectly suited for Gold's strong upward bias over time. Adaptive Multiplier System – Automatically scales lot size and grid depth based on your account balance using
Buyers of this product also purchase
Quantum Queen MT5
Bogdan Ion Puscasu
4.97 (573)
Hello, traders! I am Quantum Queen , the crown jewel of the entire Quantum ecosystem and the highest-rated, best-selling Expert Advisor in the history of MQL5. With a proven track record of over 20 months of live trading, I’ve earned my place as the undisputed Queen of XAUUSD. My specialty? GOLD. My mission? Deliver consistent, precise, intelligent trading results — over and over again. IMPORTANT! After the purchase please send me a private message to receive the installation manual and the set
Quantum Athena
Bogdan Ion Puscasu
5 (10)
Quantum Athena — Precision Forged from Experience Hello, traders! I am Quantum Athena — the light version of the legendary Quantum Queen, refined and re-engineered for today’s market conditions. I don’t try to be everything. I focus on what works now. My specialty? GOLD.My mission? Deliver sharp, efficient, and intelligently optimized trading performance — with precision at its core. IMPORTANT! After the purchase please send me a private message to receive the installation manual and the s
Pulse Engine
Jimmy Peter Eriksson
5 (17)
LAUNCH PRICE – ONLY A FEW COPIES LEFT! 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 patterns. Thes
TwisterPro Scalper
Jorge Luiz Guimaraes De Araujo Dias
4.43 (65)
Fewer trades. Better trades. Consistency above all. • Live Signal Mode 1 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. THREE MODES: Mode 1 (recommended) — Very high assertiveness, few trades per week. Bu
Quantum Valkyrie
Bogdan Ion Puscasu
4.87 (133)
Quantum Valkyrie  - Precision.Discipline.Execution Discounted   price .  The price will increase by $50 with every 10 purchases. Live Signal: CLICK HERE Quantum Valkyrie MQL5 public channel: CLICK HERE ***Buy Quantum Valkyrie MT5 and you could get Quantum Emperor or Quantum Baron for free !*** Ask in private for more details! IMPORTANT! After the purchase please send me a private message to receive the installation manual and the setup instructions.      Hello, traders. I am Quantum Val
Goldwave EA MT5
Shengzu Zhong
4.76 (38)
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
BB Return mt5
Leonid Arkhipov
5 (73)
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.   Trading principles — the strategy does not use grid trading, martin
Quantum King EA
Bogdan Ion Puscasu
4.98 (177)
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
AXIO Gold EA
Shengzu Zhong
5 (4)
AXIO GOLD EA MT5 Real Trading Account LIVE SIGNAL EC MARKETS: https://www.mql5.com/en/signals/2366982?source=Site+Signals+My#!tab=account This EA uses the same logic and execution rules as the verified live signal shown on MQL5. When used with the recommended and optimized settings on a reputable ECN/RAW-spread broker such as IC Markets or TMGM , the EA's live trading behavior is designed to closely reflect the trade structure and execution characteristics of the live signal. Please note that ac
Chiroptera
Rob Josephus Maria Janssen
4.76 (25)
Prop Firm Ready! Chiroptera is a multi-currency, single trade Expert Advisor that operates in the quiet hours of the night. It uses single-placed trades 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 caused by Tweets and other ad-ho
The Gold Reaper MT5
Profalgo Limited
4.53 (93)
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 YouTube Reviews 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 from very conservative to extre
Wall Street Robot MT5
MQL TOOLS SL
4.67 (12)
Wall Street Robot is a professional trading system developed exclusively for US stock indices, focused on S&P500 and Dow Jones. These markets are known for their high liquidity, structured movements and strong reaction to global economic flows, making them ideal for algorithmic trading strategies based on precision and discipline. By concentrating only on these indices, the system is able to adapt closely to their behavior, volatility patterns and intraday dynamics, instead of trying to operate
Gold House MT5
Chen Jia Qi
4.43 (51)
Gold House — Gold Swing Breakout Trading  Price increase coming soon. Only a few licenses remain at the current price (3/100) . Next target price: $999. Live signals: Profit Priority mode : https://www.mql5.com/en/signals/2359124 BE priority mode :  https://www.mql5.com/en/signals/2372604 Important: After purchasing, please remember to send us a private message to receive the recommended parameters, instructions, precautions, and usage tips. (MQL5 messaging):   https://www.mql5.com/en/users/wa
Gold Safe EA
Anton Zverev
5 (3)
Live Signal:   https://www.mql5.com/en/signals/2360479 Timeframe:   M1 Currency pair:   XAUUSD Varko Technologies   is not a business, it is a philosophy of freedom. I am interested in long-term cooperation and building a reputation. My goal is to continuously improve and optimize the product to meet changing market conditions. Gold Safe EA   - the algorithm uses several strategies simultaneously, the main philosophy is an emphasis on controlling losing trades and risk. Several levels of clos
The Gold Phantom
Profalgo Limited
4.58 (31)
PROP FIRM READY!  --> DOWNLOAD ALL SET FILES WARNING: Only a few copies left at current price! Final price: 990$ NEW (from 399$ only) : Choose 1 EA for Free! (limited to 2 trade accounts numbers, any of my EAs except UBS) Ultimate Combo Deal   ->   click here JOIN PUBLIC GROUP:   Click here Live Signal Live Signal 2 !! THE GOLD PHANTOM IS HERE !! After the massive success of The Gold Reaper, I'm extremely proud to introduce its powerful brother: The Gold Phantom , a pure, no-nonsense breako
Ultimate Breakout System
Profalgo Limited
5 (34)
IMPORTANT : This package will only be sold at current price for a very limited number of copies.    Price will go to 1499$ very fast    +100 Strategies included and more coming! BONUS : At 999$ 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 Welcome to the ULTIMATE BREAKOUT SYSTEM! I'm pleased to present the Ultimate Breakout System, a sophisticated and
Full Throttle DMX
Stanislav Tomilov
5 (9)
Full Throttle DMX - Real strategy  Real results   Full Throttle DMX is a multi-currency trading expert advisor designed to operate with EURUSD, AUDUSD, NZDUSD, EURGBP, and AUDNZD currency pairs. The system is built on a classical trading approach, using well-known technical indicators and proven market logic. The EA contains 10 independent strategies, each designed to identify different market conditions and opportunities. Unlike many modern automated systems, Full Throttle DMX does not use ris
Wave Rider EA MT5
Adam Hrncir
5 (20)
Scalper speed with sniper entries. Built for Gold. Last (10) copies at  449 USD  |   final   price  599  USD Check the Live signal  or Manual Hybrid scalper combining scalping speed with single position or intelligent recovery for XAUUSD. 4 trading strategies | Triple timeframe confirmation | 3 layers of account protection. Most trades close in under 30 minutes — minimal market exposure, maximum control. Wave Rider uses triple timeframe analysis (H1 trend + M15/M30 entry confirmation) to only e
Gold Snap
Chen Jia Qi
3 (2)
Gold Snap — A Fast Profit Capture System for Gold Launch Promotion — Limited Intro Stage Gold Snap is currently available at a special introductory price. The price will continue to rise in later stages, with $999 as the next major target. Early buyers will have the best price advantage Live Signal: https://www.mql5.com/en/signals/2362714 To avoid affecting actual performance due to differences in usage instructions, configuration understanding, or running environment, please make sure to contac
Quantum Bitcoin EA
Bogdan Ion Puscasu
4.79 (121)
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
Bonnitta EA MT5
Ugochukwu Mobi
3.38 (21)
Bonnitta EA  is based on Pending Position strategy ( PPS ) and a very advanced secretive trading algorithm. The strategy of  Bonnitta EA  is a combination of a secretive custom indicator, Trendlines, Support & Resistance levels ( Price Action ) and most important secretive trading algorithm mentioned above. DON'T BUY AN EA WITHOUT ANY REAL MONEY TEST OF MORE THAN 3 MONTHS, IT TOOK ME MORE THAN 100 WEEKS(MORE THAN 2 YEARS) TO TEST BONNITTA EA ON REAL MONEY AND SEE THE RESULT ON THE LINK BELOW. B
Grabber Bot
Ihor Otkydach
5 (3)
Only 8 copies left at $399. Next price: $499 Grabber Bot is a fully automated Expert Advisor built on the proven logic of the Grabber System, which has already gained recognition and positive feedback from traders on the MQL5 Market. The idea behind this EA is based on real trading experience and user feedback. Many traders using the manual version of the Grabber System faced the same problems: signals appear when the trader is sleeping or busy (resulting in missing about 50% of high-quality tr
Quantum Emperor MT5
Bogdan Ion Puscasu
4.85 (503)
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
Gold Zilla AI MT5
Christophe Pa Trouillas
4.86 (14)
Generate controlled returns with an  AI-assisted , risk-diversified and Gold-optimized EA . GoldZILLA AI is a multi-strategy algorithm detecting market regimes to dynamically select from five distinct strategies, optimizing returns while minimizing drawdown on XAUUSD. [ Live Signal ] - [  Dedicated group | Version MT5 - MT4 ] After the purchase, please send me a private message to receive the user manual and the AI setup instructions. Why choose this EA? Dynamic multi-strategy approach Advanced
Aurum AI mt5
Leonid Arkhipov
4.85 (39)
UPDATE — DECEMBER 2025 At the end of November 2024, the Aurum expert advisor was released for sale. Throughout this time, it traded in real market conditions without a news filter, without additional protective restrictions, and without complex limitations — while confidently remaining profitable and stable. Live Signal (launch April 14, 2026) This full year of real trading clearly demonstrated the reliability of the trading system. Only after that, based on real experience and statistics, a m
Smart Owl FX
Ivan Bebikov
5 (8)
This is a sophisticated multicurrency trading algorithm designed to operate with surgical precision during the quiet hours of the Asian session. While the market sleeps, the "Smart Owl" hunts for opportunities using advanced mean-reversion logic tailored for low-volatility periods. This Expert Advisor relies on market structure analysis rather than dangerous strategies like martingale or grid. Every trade is calculated to maximize statistical probability. Set File IC/Vantage/Tickmil..set -----
AI Gold Trading MT5
Ho Tuan Thang
3.79 (42)
WANT THE SAME RESULTS AS MY LIVE SIGNAL?   Use the exact same brokers I do:   IC MARKETS , IC TRADING   .  Unlike the centralized stock market, Forex has no single, unified price feed.  Every broker sources liquidity from different providers, creating unique data streams. Other brokers can only achieve trading performance equivalent to 60-80%. LIVE SIGNAL IC MARKETS ( My live signal on IC Markets is still on the old MT4 1.0 – I need to update new live signal to the newest version on MT5 platform
AI Gold Scalp Pro
Ho Tuan Thang
4 (11)
WANT THE SAME RESULTS AS MY LIVE SIGNAL?   LIVE SIGNAL:  https://www.mql5.com/en/signals/2366724 Use the exact same brokers I do:   IC MARKETS  &  I C TRADING .  Unlike the centralized stock market, Forex has no single, unified price feed.  Every broker sources liquidity from different providers, creating unique data streams. Other brokers can only achieve trading performance equivalent to 60-80%. Forex EA Trading Channel on MQL5:  Join my MQL5 channel to update the latest news from me.  My com
Gold Trade Pro MT5
Profalgo Limited
4.32 (38)
LAUNCH PROMO: Only a few copies left at current price! Final price: 990$ Get 1 EA for free (for 2 trade accounts) -> contact me after purchase Ultimate Combo Deal   ->   click here Live signal:   https://www.mql5.com/en/signals/2084890 Live Signal high risk :  https://www.mql5.com/en/signals/2242498 Live Signal Set Prop Firm Set File JOIN PUBLIC GROUP:   Click here Parameter overview Gold Trade Pro joins the club of Gold trading EA's, but with one big difference: this is a real trading strate
Golden Hen EA
Taner Altinsoy
4.35 (49)
Overview Golden Hen EA is an Expert Advisor designed specifically for XAUUSD . It operates by combining nine independent trading strategies, each triggered by different market conditions and timeframes (M5, M30, H2, H4, H6, H12, W1). The EA is designed to manage its entries and filters automatically. The core logic of the EA focuses on identifying specific signals. Golden Hen EA does not use grid, martingale, or averaging techniques . All trades opened by the EA use a predefined Stop Loss and T
More from author
Doctor Bullish
Hamdee Hayeealee
EA Doctor Bullish mt5 is an Expert Advisor designed specifically for trading gold, BTC, EURUSD. The operation is based on opening orders using the EMA/RSI indicator, thus the EA works according to the "Trend Follow" strategy, which means following the trend. For Expert Advisor need hedge type account  Contact me immediately after the purchase if you prefer to get commission (Rebate) up to 40$/Lot!  You can get a free copy of our Strong Support and Trend EA for unlimited account, please pm. me!
StrangerDoc
Hamdee Hayeealee
Trade smarter, not harder. StrangerDoc is a fully automated MT5 Expert Advisor engineered to find opportunity in both trending and ranging markets — while actively defending your account at every step. StrangerDoc EA, designed to generate **consistent cash flow** through a combination of  trend-following, step-index grid, and intelligent opposite-direction hedging. for trading Gold, BTC, EURUSD. For Expert Advisor need hedge type account  Contact me immediately after the purchase if you prefer
Filter:
No reviews
Reply to review