Whale Speed Volatility Divergence

1

This EA looks for a two-layer momentum/liquidity breakout:

Divergence detection (trigger):

  • TPS (ticks-per-second / bar tick_volume ) must be high vs. its recent average ( TPS_Multiplier ),

  • while Volatility (bar high–low) must be low vs. its recent average ( Volatility_Multiplier ).

This combo flags “flow in a quiet range” → a likely near-term breakout.

Direction & filter:

  • If the signal bar is green ( close > open ) → consider BUY; if redSELL.

  • Optional MA trend filter ( Use_TrendFilter ): bar above MA → BUY allowed; below MA → SELL allowed.

Order parameters:

  • SL = signal bar low (BUY) or high (SELL).

  • TP = SL × TakeProfit_Multiplier (risk/reward multiple).

  • Position size is computed from RiskPercentage . If margin is insufficient, size is reduced iteratively ( Reduce_On_Margin_Or_Limit , Open_Retry_* ).

Execution safeguards (broker realities):

  • Before placing orders, check spread, stop/freeze levels, tick size, and a latency buffer.

  • For SL modifications, use throttle, skip when too close to freeze, pre-modify tick refresh, and slack pips to reduce “close to market” rejections.

  • On open/modify failures, apply cooldowns to avoid spammy logs and needless retries.

Trailing stop engine:

  • As price moves in favor, move SL forward by a pip distance ( TrailingStop_Pips ),

  • enforcing a minimum step each modify ( Trailing_Min_Step_Pips ) and honoring stop/freeze + buffer distances.

Data/warmup & tester compatibility:

  • If there aren’t enough bars, the EA waits ( Require_History_Warmup ) or falls back to another timeframe.

  • In the tester, TPS can be emulated from tick_volume ( Use_TickVolume_Emulation ) and signals can be fixed to bar[1] ( Use_Closed_Bar ) for stable/reproducible backtests.

Signal flow (detail)

OnTimer (every 1s): Real-time TPS counter → tps_history[] ; average of last 5 bars’ high–low → vol_history[] .

OnTick:

  1. Warmup & symbol/TF ready? If not, wait or use fallback TF.

  2. Compute TPS_now / TPS_avg and Vol_now / Vol_avg (emulated in tester).

  3. Condition: TPS_now > TPS_avg × TPS_Multiplier AND Vol_now < Vol_avg × Volatility_Multiplier .

  4. Bar color + optional MA filter set the direction.

  5. Build SL/TP, compute size from risk, check spread & stop/freeze, run iterative margin fit → open order.

  6. If a position is open, run trailing; before modify, refresh tick + apply slack to keep SL within safe limits.

All inputs — explained

Risk & Trade Controls

  • TakeProfit_Multiplier
    Sets TP as a multiple of SL distance (RR). Example: 2.0 = 1:2 RR.

  • Max_Spread_Pips
    If current spread exceeds this, skip signals (avoid poor liquidity entries).

  • InpMagicNumber
    Magic number to tag the EA’s trades. In netting accounts, one position per symbol.

  • RiskPercentage
    % of balance risked per trade. Lot size is derived from this, SL distance, and tick value.

  • TrailingStop_Pips
    If enabled, SL trails price by this many pips (while honoring stop/freeze + buffers).

  • Max_Lots_Per_Trade
    Hard cap: even if the risk formula suggests more, size won’t exceed this.

  • Reduce_On_Margin_Or_Limit
    If opening fails due to margin/volume, shrink lot and retry.

  • Open_Retry_Attempts
    How many reduced-lot retries on open.

  • Open_Retry_Factor
    Each retry multiplies lot by this factor (e.g., 0.75 → reduce by 25%).

Trend Filter (MA)

  • Use_TrendFilter
    When on, a BUY/SELL is only allowed if it aligns with the MA side.

  • MA_Period, MA_Method, MA_Price
    MA settings for the trend filter (SMA/EMA/WMA, close/HLC3, etc.).

Signal Logic (TPS & Vol)

  • TPS_Multiplier
    Threshold for the “flow” side. Higher = more selective vs. average TPS.

  • Volatility_Multiplier
    Threshold for “quietness.” Lower = stricter requirement for low range.

  • HistorySize
    How many seconds/samples of TPS/Vol history to keep (1-second timer in live).

Backtest & Robustness

  • Use_TickVolume_Emulation
    In tester, emulate TPS from bar tick_volume instead of real tick timing.

  • Use_Closed_Bar
    Compute signals on closed bars (bar[1]) → reduces repaint/look-ahead bias.

  • TPS_Lookback_Bars / Vol_Lookback_Bars
    Bar lookbacks for TPS/Vol averages (tester path).

Execution Safeguards

  • Modify_Throttle_Sec
    Minimum seconds between SL modifications (reduces spam/rejects).

  • Trailing_Min_Step_Pips
    Minimum pip improvement required to move SL.

  • Modify_Extra_Buffer_Pips
    Extra buffer on top of broker stop and freeze levels.

  • Enable_CloseToMarket_Backoff
    On “close to market/invalid stops,” retry once with looser distance.

  • Backoff_Extra_Pips
    Extra distance used for that single retry.

  • Freeze_Skip_Pips
    If current SL is within freeze level + this buffer, skip modify (avoid rejects).

  • Modify_Latency_Margin_Pips
    Extra safety vs. live price jumps.

  • Modify_Failure_Cooldown_Sec
    Wait time after a failed modify before trying again.

  • PreModify_Refetch_Tick
    Refresh the tick just before modifying SL; recompute limits with current price.

  • PreModify_Slack_Pips
    Place SL a touch beyond the theoretical limit to reduce “close to market” errors.

  • Open_Failure_Cooldown_Sec
    If open fails (No money / volume limit), wait before retrying—cleaner logs, safer behavior.

Data & Warmup

  • Auto_Select_Symbol
    Auto-select the symbol if not already visible.

  • Require_History_Warmup
    Don’t trade until enough bars are loaded.

  • Auto_Find_Available_TF
    If the main TF lacks data, auto-fallback to the first TF with data.

  • Warmup_Min_Bars
    Minimum bars required before starting.

  • Fallback_Timeframe
    Backup timeframe used when data is insufficient.

  • Preload_Bars
    How many bars to preload at startup.

Risk management (built-in measures)
  • Position sizing: dynamic lots from RiskPercentage and SL distance.

  • Margin fit: use OrderCalcMargin vs. free margin; if it doesn’t fit, iteratively shrink size.

  • Spread filter: skip entries when Max_Spread_Pips is exceeded.

  • Broker level guards: stop/freeze levels + extra buffers + latency margin.

  • Retry policy: only shrink-and-retry on volume/money errors; don’t insist on other rejects.

  • Cooldowns: on open/modify failures to avoid over-trading and excess risk.

Practical tips
  • Tune signal first ( TPS_Multiplier , Volatility_Multiplier , lookbacks), then polish execution (trailing + pre-modify slack).

  • Majors (EURUSD H1/M30): keep Max_Spread_Pips low; start PreModify_Slack_Pips around 0.4–0.8.

  • XAUUSD (D1/H1): large point size; widen TrailingStop_Pips , nudge up Modify_Latency_Margin_Pips and Backoff_Extra_Pips .

  • Scalp (M1/M5): begin with Use_Closed_Bar = true for stability; switching it off increases risk.

Risk disclosure (important)

This EA/strategy:

  • Is not investment advice.

  • Does not guarantee profits; backtests/optimizations do not represent future performance.

  • Market conditions (news, liquidity drops, slippage, latency, broker limits) can negatively impact results.

  • Misconfiguration, low capital, high leverage, or unsuitable risk percentages can cause loss of capital.

  • Demo/forward test before going live; start RiskPercentage low (e.g., 0.1–0.5%) and scale gradually.

  • Stop/freeze levels and contract specs vary by broker—verify your broker’s conditions before using aggressive parameters.


Recommended products
EA34 Tanin Force
Nhat Tien Duong
5 (1)
[FREE EA] EA34 TANIN FORCE: MACD & STOCH ENGINE (Prop Firm Ready) Are you tired of market noise and false breakouts? Meet EA34 Tanin Force, a commercial-grade Expert Advisor designed specifically for the EURUSD on the M15 timeframe. This system combines the raw trend-following power of MACD with the precision timing of the Stochastic Oscillator. PERFORMANCE HIGHLIGHTS (6-Year Stress Test 2020 - 2026): * Symbol & Timeframe: EURUSD | M15 * Set & Forget: Hard Stop Loss and Take Profit. No
FREE
Drream Catcher FX
Michael Prescott Burney
DREAM CATCHER FX is the ultimate EURUSD H1 trading solution, built on 16 years of relentless development and precision-engineered algorithms. This game-changing EA has executed over 4,000 trades with only 99 losses, achieving an astounding win rate that sets it apart from all competitors. Designed for both aggressive and conservative traders, it features advanced exit signals that preemptively close unfavorable trades, ensuring controlled drawdowns and consistent, long-term capital growth. Key
FREE
Gold Swing Trader EA Advanced Algorithmic Trading for XAUUSD on Higher Timeframes The Gold News & Swing Trader EA is a specialized MetaTrader 5 Expert Advisor designed for trading XAUUSD (Gold). It operates on a swing trading strategy to capture medium- to long-term price movements on the H4 and Daily charts. Key Features: · Dedicated XAUUSD Strategy: Logic optimized for the unique volatility of Gold. · Swing Trading Focus: Aims to capture significant price swings over several days. · High
FREE
Gold Rush MT5 EA
Matthew Lewis Beedle
This EA was made for educational purposes.  You can find a full overview of how it was made in the YouTube video (Literally a step by step guide) We used AI and ML to create the whole thing, with no coding.  Can you trust this to make money? Possibly, but do so at your own risk.  It could be a nice addition to a large porfolio.  How to use: Add to H1 gold chart Make sure the subchart is correctly named to your broker name for Gold.  Big picture It’s a   trend + breakout system for buys , and a
FREE
SpikeBoom
Kabelo Frans Mampa
A classic buy low & sell high strategy. This Bot is specifically Designed to take advantage of the price movements of US30/Dow Jones on the 1 Hour Chart, as these Indices move based on supply and demand. The interaction between supply and demand in the US30 determines the price of the index. When demand for US30 is high, the price of the US30 will increase. Conversely, when the supply of shares is high and demand is low, the price of t US30  will decrease. Supply and demand analysis is used to i
FREE
Reversal Composite Candles
MetaQuotes Ltd.
3.69 (16)
The idea of the system is to indentify the reversal patterns using the calculation of the composite candle. The reversal patterns is similar to the "Hammer" and "Hanging Man" patterns in Japanese candlestick analysis. But it uses the composite candle instead the single candle and doesn't need the small body of the composite candle to confirm the reversal. Input parameters: Range - maximal number of bars, used in the calculation of the composite candle. Minimum - minimal size of the composite can
FREE
Budget Golden Scalper M1 — Trial Edition Built for traders who are tired of hype and ready for transparency Let’s be honest. If you have explored automated trading before, you have probably seen systems that looked perfect in backtests but behaved very differently in live markets. Many traders today are understandably cautious — and rightly so. Budget Golden Scalper M1 was created with this reality in mind. This is not marketed as a “holy grail” or a get-rich-quick robot. Instead, it is a str
FREE
Long Waiting
Aleksandr Davydov
Expert description Algorithm optimized for Nasdaq trading The Expert Advisor is based on the constant maintenance of long positions with daily profit taking, if there is any, and temporary interruption of work during the implementation of prolonged corrections The Expert Advisor's trading principle is based on the historical volatility of the traded asset. The values of the Correction Size (InpMaxMinusForMarginCallShort) and Maximum Fall (InpMaxMinusForMarginCallLong) are set manually. Recomm
FREE
Fuzzy Trend EA
Evgeniy Kornilov
1 (1)
FuzzyTrendEA - Intelligent Expert Advisor Based on Fuzzy Logic We present to you FuzzyTrendEA - a professional trading Expert Advisor designed for market trend analysis using fuzzy logic algorithms. This expert combines three classic indicators (ADX, RSI, and MACD) into a single intelligent system capable of adapting to changing market conditions. Key Features: Fuzzy logic for trend strength assessment: weak, medium, strong Combined analysis using three indicators with weighted coefficients Full
FREE
EA designed to generate pending orders based on the trend and designated take profit value. This EA designed exclusively to work best on GOLD SPOT M5 especially during up trend. User can freely decide to close the open position from this EA or wait until take profit hit. No parameters need to be set as it already set from the EA itself.  This EA do not use Stop Loss due to the applied strategy. Please do fully backtest the EA on the worst condition before use on the real account. Recommended ini
FREE
Reset Pro
Augusto Martins Lopes
RESET PRO: The Future of Algorithmic Trading Revolutionary Technology for Consistent and Intelligent Trading RESET PRO is the most advanced automated trading solution, combining cutting-edge market analysis with a dynamic position management system. Our exclusive reset-and-recover methodology ensures consistent performance, even in the most challenging market conditions. Key Technical Features PROPRIETARY RESET MECHANISM Never lose trade direction again! When the market moves against yo
FREE
Imagine a professional system that patiently weaves its web on the currency market, waiting for the perfect moment to strike. Stochastic SpiderNet is an intelligent trading robot (expert advisor) for the MetaTrader 5 platform, created for traders who understand the power of grid trading but want to secure it with powerful protection algorithms. This is not just a "grid trader." It is a symbiosis of the classic Stochastic oscillator and an adaptive grid controlled by artificial constraints. How
FREE
EAVN001 – A Simple, Effective, and Flexible Trading Solution In the world of financial trading, simplicity can often be the key to efficiency. EAVN001 is designed based on the Moving Average Single Line principle, enabling traders to quickly identify trends and make timely decisions. Its operation is straightforward: open a BUY position when the price crosses above the MA line , and open a SELL position when the price crosses below the MA line . The strength of EAVN001 lies not only in its simp
FREE
Volatility Doctor
Gamuchirai Zororo Ndawana
4.5 (2)
Volatility Doctor - Your Expert Advisor for Mastering Market Rhythms! Are you ready to unlock the power of precision trading? Meet the Volatility Doctor, your trusted companion in the dynamic world of forex markets. This multi-currency expert advisor is not just a trading tool; it's a symphony conductor, guiding your investments with unparalleled precision. Discover the Key Features: 1. Trend-Seeking Expertise: The Volatility Doctor employs tried-and-true methods to spot robust market trends
FREE
Grid Master Pro12
Sidi Mamoune Moulay Ely
3.67 (3)
GridMaster ULTRA - Adaptive Artificial Intelligence The Most Advanced Grid EA on MT5 Market GridMaster ULTRA  revolutionizes grid trading with Adaptive Artificial Intelligence that automatically adjusts to real-time market conditions. SHORT DESCRIPTION Intelligent grid Expert Advisor with adaptive AI, multi-dimensional market analysis, dynamic risk management and automatic parameter optimization. Advanced protection system and continuous adaptation for all market types. REVOLUTIONARY
FREE
EURUSD EMA–SMA Reversal Breakout (H1) is a fully automated MetaTrader 4 strategy designed to capture **confirmed reversal breakouts** on EURUSD using a simple trend + position filter with rule-based **pending STOP execution** beyond recent structure. The EA was backtested on **EURUSD on the H1 timeframe** from **April 1, 2004 to April 24, 2024** using a MetaTrader 4 backtest engine (base data: EURUSD_M1_UTC2). No parameter setup is required — the system is delivered with optimized and fine-tune
FREE
The 7 Ways
Kaloyan Ivanov
The Expert Advisor uses seven core indicators— RSI, MACD, Moving Average, Bollinger Bands, Stochastic Oscillator, ATR, and Ichimoku —to generate trading signals on customizable timeframes. It allows enabling or disabling buy and sell directions independently and supports trading restrictions based on weekdays and positive swap conditions. Risk management is handled through fixed take profit, stop loss, and lot size settings, with an option to open new trades even when existing positions are acti
FREE
Triple Indicator Pro
Ebrahim Mohamed Ahmed Maiyas
3.67 (3)
Triple Indicator Pro: ADX, BB & MA Powered Trading Expert Unlock precision trading with Triple Indicator Pro, an advanced Expert Advisor designed to maximize your market edge. Combining the power of the ADX (trend strength), Bollinger Bands (market volatility), and Moving Average (trend direction), this EA opens trades only when all three indicators align 1 - ADX (Average Directional Index) indicator – This indicator measures the strength of the trend, if the trend is weak, the expert avoids
FREE
Max Hercules
Aaron Pattni
4.13 (8)
Get it FREE while you can! Will be increased to $100 very shortly after a few downloads!! Join my Discord and Telegram Channel - Max's Strategy For any assistance and help please send me a message here.    https://t.me/Maxs_Strategy https://discord.gg/yysxRUJT&nbsp ; The Max Hercules Strategy is a part of a cross asset market making strategy (Max Cronus) built by myself over years of analysis and strategy building. It takes multiple theories and calculations to trade the market in order to cov
FREE
Max Poseidon
Aaron Pattni
3.33 (3)
Get it FREE while you can! Will be increased to $200 very shortly after a few downloads!! Join my Discord and Telegram Channel - Max's Strategy For any assistance and help please send me a message here.    https://t.me/Maxs_Strategy https://discord.gg/yysxRUJT&nbsp ; GBPUSD and EURUSD Set files can be found in the comments! (please message me if you need help with them) TimeFrames are harcoded, therefore any chart and time will work the same. The Max Poseidon Strategy is a part of a cross ass
FREE
Macd Rsi Expert
Lakshya Pandey
5 (1)
MACD RSI Optimized EA is a free, fully automated trading robot designed to capture trends using a classic combination of indicators. By merging the trend-following capabilities of the MACD (Moving Average Convergence Divergence) with the momentum filtering of the RSI (Relative Strength Index), this EA aims to filter out market noise and enter trades with higher probability. This version has been specifically optimized for the month of October on the M15 (15-minute) timeframe and performs best on
FREE
Hassila
Benjamin Gabriel Nieves Ortiz
HASSILA is a professional algorithmic trading system engineered for EURUSD on the M5 timeframe. It combines multi-timeframe support & resistance zone detection with momentum-based breakout entries, ensuring trades are only taken in the direction of the prevailing trend. Core Features: — Smart zone detection using H1 pivot highs and lows — Breakout confirmation with retest entry for precision — Triple-stage dynamic breakeven system (30% / 60% / 80% of TP) — Adaptive ATR-based stop loss and t
This Expert Advisor is a robust, trend-following system that uses a confluence of five different indicators to confirm a strong upward trend before entering a buy position. Its strategy is built on a two-step validation process: first, it confirms the overall trend using the EMA 200 and Linear Regression Slopes to ensure the price is in a clear bullish direction. Once a valid trend is established, it looks for one of three entry signals from Aroon , ADX , or MACD to trigger a buy trade. The EA i
FREE
Use this expert advisor whose strategy is essentially based on the Relative Strength Index (RSI) indicator as well as a personal touch. Other free expert advisors are available in my personal space as well as signals, do not hesitate to visit and leave a comment, it will make me happy and will make me want to offer content. Expert advisors currently available: LVL Creator LVL Creator Pro LVL Bollinger Bands   Trading is not a magic solution, so before using this expert on a live account, carry
FREE
Sovereign Hunter
Rehan Sulistyo Nugroho
Sovereign Hunter is an algorithmic trading system designed for trading Gold (XAUUSD). The EA monitors the market in real-time to identify price momentum and execute trades based on predefined technical conditions. Sovereign Hunter does not utilize Martingale, Grid, or Averaging strategies. Every opened position is equipped with a defined Stop Loss (SL) and Take Profit (TP). The risk management features are designed to be compatible with standard account types as well as Prop Firm account rules.
FREE
Xauusd 1 Minute
Anastase Byiringiro
3.5 (2)
XAUUSD 1 MINUTE EA MT5 A free early-access Gold Expert Advisor built for traders who want a cleaner, smarter, and more disciplined start with XAUUSD automation. XAUUSD 1 MINUTE EA MT5 is a MetaTrader 5 Expert Advisor created for traders who want to enter the Gold market with structure, controlled execution, and a professional automation mindset. This EA is built around the same gold-focused trading vision behind the Gold Family system: clean market structure, pending-order execution, controlled
FREE
ENGLISH DESCRIPTION (MQL5 Standard Optimized) Product Name: Golden Autonomous Architect AI (MT5) [Subtitle: Structural KAMA Beam | Foundation ATR | Sanctum Shield Safety] Introduction Golden Autonomous Architect AI is a structural engineering trading system designed to build profits with the precision of an autonomous architect. It constructs a "Structural Beam" using the Kaufman Adaptive Moving Average (KAMA) to define the load-bearing trend, verifies the "Foundation" with ATR Velocity , and ap
FREE
Donchain Grid Zone
Mr Theera Mekanand
Donchain Grid Zone is a BUY-only grid trading Expert Advisor based on the Donchian Channel. It dynamically scales into positions as price drops through grid zones, and scales out as price recovers — all governed by a Donchian midline filter. How it works: Grid zones are defined below the entry price (RedLine) Zone 1 = 1 order, Zone 2 = 2 orders... up to Zone 7 Orders are only opened when price is   above   the Donchian midline Dynamic Stop Loss trails the Donchian Lower Band Grid spacing adapts
FREE
SR Breakout EA MT4 Launch Promo: Depending on the demand, the EA may become a paid product in the future. Presets:  Click Here Key Features: Easy Installation : Ready to go in just a few steps - simply drag the EA onto any chart and load the settings. Safe Risk Management:   No martingale, grid, or other high-risk money management techniques. Risk management, stop loss, and take profit levels can be adjusted in the settings. Customizable Parameters:   Flexible configuration for individual tradin
FREE
Hedge Copier Pro — Master EA   is the control unit of a high-speed, LOCAL trade copier for MetaTrader 5. It monitors your prop firm account and instantly broadcasts every trade event to the paired Slave EA — with ZERO latency and NO internet dependency. Designed specifically for prop firm traders, it includes a unique   REVERSE HEDGE mode : the Slave (sold separately) opens the OPPOSITE direction of every Master trade, allowing you to hedge across two accounts simultaneously and protect your fu
FREE
Buyers of this product also purchase
Quantum Queen MT5
Bogdan Ion Puscasu
4.98 (587)
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 (22)
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
4.94 (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
BB Return mt5
Leonid Arkhipov
4.99 (93)
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
TwisterPro Scalper
Jorge Luiz Guimaraes De Araujo Dias
4.39 (71)
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.73 (140)
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.58 (40)
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
4.98 (179)
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
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.5 (94)
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
Gold Safe EA
Anton Zverev
5 (4)
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
Wave Rider EA MT5
Adam Hrncir
4.83 (23)
Scalper speed with sniper entries. Built for Gold. 33% OFF only  this weekend for 299 USD (ends Sunday midnight)   |   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
Gold House MT5
Chen Jia Qi
4.44 (50)
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
Akali
Yahia Mohamed Hassan Mohamed
3.27 (82)
LIVE SIGNAL: Click here to view live performance IMPORTANT: READ THE GUIDE FIRST It is critical that you read the setup guide before using this EA to understand the broker requirements, strategy modes and the smart approach. Click here to read the Official Akali EA Guide Overview Akali EA is a high-precision scalping Expert Advisor designed specifically for Gold (XAUUSD). It utilizes an extremely tight trailing stop algorithm to secure profits instantly during periods of high volatility. Thi
Wall Street Robot MT5
MQL TOOLS SL
4.33 (15)
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
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
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
AnE
Thi Ngoc Tram Le
5 (3)
ANE — Gold Grid Expert Advisor ANE is a fully automated Expert Advisor designed for trading XAUUSD (Gold) on the M15 timeframe using a grid-based averaging strategy . Important: Test the EA on a demo account first to understand the behavior of the averaging system before running it on a live account. Live Signal ANE Official Channel Trading Strategy ANE manages positions as a group. It opens additional trades to optimize the average entry price when conditions allow, then closes the entire bask
Ultimate Breakout System
Profalgo Limited
5 (35)
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
Quantum Emperor MT5
Bogdan Ion Puscasu
4.85 (504)
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
Aurum AI mt5
Leonid Arkhipov
4.86 (44)
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
The Gold Phantom
Profalgo Limited
4.57 (30)
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
Quantum Bitcoin EA
Bogdan Ion Puscasu
4.83 (120)
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
XIRO Robot MT5
MQL TOOLS SL
4.85 (26)
XIRO Robot is a professional trading system created to operate on two of the most popular and liquid instruments on the market:  GBPUSD, XAUUSD and BTCUSD . We combined two proven and well tested systems, enhanced them with multiple new improvements, optimizations and additional protective mechanisms, and integrated everything into one advanced and unified solution. As a result of this development process, XIRO Robot was created. Robot was designed for traders who are looking for a reliable and
EA Legendary Multi Strategy
Vitali Vasilenka
5 (5)
EA Legendary Multi Strategy — A professional multi-strategy advisor. One advisor — dozens of strategies. Confirmed signals. Tight risk management. Designed for traders who value entry accuracy, flexible settings, and drawdown control. This isn't just an advisor. It's a quantum leap in algorithmic trading, where the power of collective intelligence from strategies meets the precision of artificial intelligence. Collective Intelligence: More than 12 independent trading strategies work in unison.
Grabber Bot
Ihor Otkydach
5 (3)
Only 5 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
Gold Oni
Lo Thi Mai Loan
4.67 (3)
> PRICE INCREASES EVERY 24 HOURS - ACT NOW OR PAY MORE TOMORROW Current Price: $229.99 -> Final Price: $1999.99 [ Live Signal ] | [ Backtest Results ] | [ Setup Guide ] BONUS: Message us privately after purchase and receive a FREE bonus EA instantly.  Or You can choose EA Titan Breaker Follow the channel for the latest update >> Important note: After purchase, please message us privately to receive a settings file tailored to your account size. The default SL, TP, and Trailing Stop values are o
AI Gold Trading MT5
Ho Tuan Thang
3.72 (43)
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
Nexorion Initium Novum EA
Valentina Zhuchkova
5 (2)
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
Gold Zilla AI MT5
Christophe Pa Trouillas
4.77 (13)
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
More from author
Overview This Expert Advisor (EA) targets high-probability, short-term scalping opportunities by analyzing minute-based market activity (tick momentum), indecision boxes , and breakout/momentum behavior —optionally aligned with trend and session filters. Version 2.0 replaces second-based TPS with a minute (M1) window model that’s Open Prices Only compatible and more stable to optimize. Additional entry modes ( Breakout Close and Retest Entry ) help capture moves that classic momentum filters ma
FREE
Overview Anti-Spoofing Strategy (v1.0) is a live-market Expert Advisor designed to detect and counter high-frequency DOM (Depth of Market) spoofing manipulations in ECN/STP environments. The system monitors real-time Level-2 order book changes via MarketBookGet() and identifies large fake orders that appear and vanish within milliseconds — a hallmark of spoofing. Once such manipulations are detected, the algorithm opens a counter trade in the opposite direction of the spoof, anticipating the tru
FREE
Whale RSI and SMA
Mustafa Ozkurkcu
This Expert Advisor is a reversal-style system that combines a 50-centered RSI extreme filter with a 200 SMA proximity rule . It evaluates signals only on a new bar of the selected timeframe and uses closed-bar data (shift=1) to reduce noise and avoid “in-bar” flicker. How the Strategy Works On every new candle (for InpTF ), the EA follows this logic: Compute RSI thresholds around 50 A single parameter creates both buy/sell levels: BuyLevel = 50 − InpRSIThresholdDist SellLevel = 50 + InpRSIThre
FREE
Whale RSI Divergences
Mustafa Ozkurkcu
1 (1)
This EA looks for a divergence signal, which occurs when the price of a financial instrument moves in the opposite direction of the RSI indicator. This divergence can signal that the current trend is losing momentum and a reversal is likely. The EA identifies two types of divergence: Bullish (Positive) Divergence : This occurs when the price makes a new lower low , but the RSI indicator fails to confirm this by making a higher low . This discrepancy suggests that bearish momentum is weakening, a
FREE
Concept. Flash ORR is a fast-reaction scalping EA that hunts false breakouts at important swing levels. When price spikes through a recent swing high/low but fails to close with strength (long wick, weak body), the move is considered rejected . If the very next candle prints strong opposite momentum , the EA enters against the spike: Up-spike + weak close → followed by a bearish momentum bar → SELL Down-spike + weak close → followed by a bullish momentum bar → BUY Entries are placed at the open
FREE
ATR Squeeze Fade EA: Low Volatility Mean Reversion Strategy The ATR Squeeze Fade is a specialized scalping Expert Advisor designed to exploit rapid price spikes that occur after extended periods of low market volatility. Instead of following the direction of the spike, the EA trades against it, applying the principle of mean reversion . With advanced entry filters and strict risk management, it focuses on high-probability reversal setups. How the Strategy Works The strategy is based on the assu
This Expert Advisor (EA) generates trading signals by combining popular technical indicators such as   Chandelier Exit (CE) ,   RSI ,   WaveTrend , and   Heikin Ashi . The strategy opens positions based on the confirmation of specific indicator filters and closes an existing position when the color of the Heikin Ashi candlestick changes. This is interpreted as a signal that the trend may be reversing. The main purpose of this EA is to find more reliable entry points by filtering signals from var
Overview Trade Whale Supply & Demand EA   is a fully automated trading system built on   supply and demand zones, liquidity sweeps, and market structure shifts . It detects institutional footprints and high-probability trading zones, aiming for precise entries with tight stop-loss and optimized risk/reward. Works on Forex, Gold ( XAUUSD ) and Indices. Designed for   sharp entries ,   low-risk SL placement , and   dynamic profit targets . Strategy Logic The EA combines: Supply & Demand Zo
This Expert Advisor (EA) is designed to automate trading based on Fibonacci retracement levels that form after strong price movements. The main objective of the EA is to identify entry points during pullbacks within a trend. It executes trades based on a predefined risk-to-reward ratio, entering the market when the price action is confirmed by specific candlestick patterns. How the EA Works The EA automatically performs the following steps on every new bar: Trend and Volatility Detection : First
Trade Whale – Tick Compression Breakout (v1.0) is a short-term breakout scalper that filters setups via ATR-based compression . After price coils in a tight band on your chosen timeframe (e.g., H1), it opens a position when the previous candle’s high/low is broken . Risk is anchored by SL = ATR × multiplier , while TP is an R-multiple of that stop distance (e.g., 2.0R). Position size can be percent-risk or fixed lot , and is margin-clamped to broker limits for safety. A timeout can auto-close p
O verview Trend Band Strategy (v1.0) is a hybrid trend-following and mean-reversion Expert Advisor that blends Fibonacci-scaled Bollinger Bands with Parabolic SAR confirmation. It identifies stretched price moves toward the extreme Fibonacci bands, waits for a reversal signal aligned with the SAR trend switch, and opens counter-trend trades aiming for reversion toward equilibrium. The algorithm runs entirely on bar-close logic for stability and includes dynamic risk-based lot sizing, margin veri
Filter:
patrickdrew
3191
patrickdrew 2025.08.27 06:45 
 

This could be great but a lack of proven sets AND control of LS is very dangerous.

On M5 this EA took a trade with LS 2. (TWO!?!?!) despite risk % set at 0.1% of balance.

Trade ended up at -330.

This will kill accounts.

Author can improve this EA with proven sets.

jude5508
48
jude5508 2025.08.15 20:27 
 

User didn't leave any comment to the rating

Reply to review