EulerEdge

EulerEdge — Smart Breakout-Hedge EA with Basket TP, ATR Adaptation & Multi-Layer Safety

Platform: MT4 (Expert Advisor)
Default timeframe: H1
Instruments: XAUUSD, EURUSD, GBPUSD, USDJPY, DE40 (and other liquid FX/indices/CFDs)
Style: Two-sided pending breakout + hedge ladder + Basket Take-Profit (basket TP) + ATR-adaptive distances/trailling

Strategy Overview

  1. Series start (opening a “basket”).
    The EA places both a Buy Stop and a Sell Stop around current price. Distances can be fixed (points) or ATR-based, or anchored to a Donchian channel.

  2. Trigger & hedge.
    When one side triggers into a market position, the EA cancels/re-arms the opposite pending and creates a hedge leg either immediately or via a pending order. Hedge volume = largest open lot × smart multiplier (risk-aware).

  3. Hedge keep-alive.
    The opposite pending never “disappears.” Supports GTC pendings, auto re-placement on expiry, and OrderModify re-pricing to a chosen anchor (Initial / Donchian±ATR / pure ATR).

  4. Basket TP.
    When the basket contains ≥2 positions, the EA tracks net P/L and, once it reaches BasketTPMoney, it closes the entire basket at once.

  5. Single-leg trailing.
    If only one leg remains open, the EA applies ATR trailing (or classic trailing) to ride trends while locking profits.

  6. Safety rails.
    Hard equity drawdown stop, daily profit/loss limits (pause new series), series timeout (close at BE+ after X hours) and other watchdogs to keep risk contained.

Why It Works

  • Market-adaptive. Distances, trailing and anchors are ATR/Donchian-driven, so the EA automatically adapts to volatility.

  • Hedge is always there. Even if the broker expires pendings or price gaps, keep-alive logic re-posts or re-prices the opposite pending.

  • Rational scaling. The smart multiplier is not blind martingale: it shrinks when margin is tight or trend is weak (low ADX) and relaxes in strong trends (high ADX), always bounded by MaxLot/steps/margin rules.

  • Fast resolution. Basket TP prioritizes total basket P/L, avoiding the need for every single trade to hit its own TP.

Key Capabilities

  • Two-sided breakout: simultaneous BuyStop/SellStop.

  • ATR distance by level (L1/LN): first and subsequent steps can use different ATR factors.

  • Hedge ladder: hedge lot = largest open lot × smart multiplier, obeying MaxLot/min lot/lot step.

  • Hedge keep-alive: GTC, expiry re-post, OrderModify re-price (Initial / Donchian±ATR / ATR) and auto upsizing if the pending lot is too small.

  • Basket TP/SL: monitor basket P/L in money and close all positions together.

  • ATR trailing (single leg): ATR-based start and step; classic trailing also available.

  • Series timeout: after X hours, if P/L ≥ ExitAtBE_Money , close the basket (BE+ exit).

  • Daily limits: pause new series after daily TP/SL until next reset hour.

  • Trading sessions: per-weekday windows, supports crossing midnight.

  • Trend filter (optional): ADX + EMA(50/200); optional one-side only with trend.

  • Spread filter: hard cap or ATR-relative.

  • Failsafes: global DD stop; watchdog resets a stale series.

Practical Setup

  • Timeframe: H1 (balanced signal/noise).

  • Symbols: XAUUSD / major FX / index CFDs.

  • Broker: ECN/RAW, tight spreads, reliable pending execution.

  • VPS: Recommended for 24/5 operation.

  • Risk: Start with small Lots , MaxLevels=2–3, conservative LotMultyMax . Keep DD stop and daily caps enabled.

FAQ

Q: No trades open—why?
A: You may be outside session hours; spread too wide; trend filter says “flat”; daily limits paused new series; or OneSeriesInDay already used today.

Q: Why is the hedge lot sometimes smaller?
A: Hedge lot = largest open lot × smart multiplier, then clamped by MaxLot , MaxNetLots , MinMarginLevelPct , and lot step/min. If it looks smaller, a risk constraint or margin level likely limited the volume. The EA also auto-upsizes: if the existing opposite pending is under-sized, it will be replaced with a larger lot.

Q: The hedge “disappeared” or didn’t refresh in time.
A: Enable SeriesGTC=true and UseOrderModifyReprice=true . Keep-alive logic will re-post/re-price opposite pendings, with RepriceSeconds / RepriceMinShiftPoints controlling frequency and minimum shift.

Q: Can I use a fixed pip TP?
A: Yes ( TakeProfit>0 ). Or use ATR TP ( ATR_K_TP>0 ).

Q: Is this martingale?
A: No. The multiplier is adaptive (ADX/margin-aware) and bounded by strict risk parameters.

Parameters (grouped)

Core

  • Lots — initial lot;

  • LotMulty — base multiplier (used when smart multiplier is off);

  • Distance — fixed L1 distance (when ATR distance is off);

  • TakeProfit — fixed TP points (0 = none);

  • TrailStart , TrailDistance — classic trailing (if ATR trailing is off);

  • OneSeriesInDay — at most one new series per day;

  • MaxLot , MaxDrawdown , Magic .

Sessions

  • MondayTime … SundayTime as HH:MM-HH:MM , midnight-crossing supported.

Filters & Safety

  • UseTrendFilter , ADX_TF/Period/Threshold ;

  • EMA_TF/Fast/Slow , EMA_Slope_ATR_K , UseOneSide ;

  • MaxSpreadPoints or MaxSpread_ATR_K .

ATR Scaling

  • UseATRDistance , ATR_TF/Period ;

  • ATR_K_Distance_L1 , ATR_K_Distance_LN , Distance_LN (fallback when ATR off);

  • UseATRTrailing , ATR_K_TrailStart/Step , ATR_K_TP .

Donchian Anchor (optional)

  • UseDonchianAnchor , Donchian_TF/N , Donchian_Buffer_ATR .

Limiters

  • MaxLevels , MaxNetLots , MinMarginLevelPct .

Smart Multiplier

  • UseSmartMulty , LotMultyMin , LotMultyMax ,

  • ADX_ForMaxMulty (allow max when ADX is strong),

  • MinMarginForMulty (shrink multiplier when margin level is low).

Hedge Confirmation (optional)

  • HedgeWithConfirm , MinMoveToHedge_ATR , CooldownMin .

Keep-Alive / Reprice

  • SeriesGTC , PendingExpiryMin ;

  • HedgeAnchorMode (0=Initial, 1=Donchian±ATR, 2=ATR vs current), HedgeATR_K_Dist ;

  • UseOrderModifyReprice , RepriceSeconds , RepriceMinShiftPoints .

Basket / Daily / Timeout

  • BasketTPMoney , BasketSLMoney ;

  • DailyTPMoney , DailySLMoney , DailyResetHour ;

  • MaxSeriesHours , ExitAtBE_Money .

Backtesting & Optimization

  1. Data quality: longer is better (≥2–3 years), variable spreads.

  2. MT4 modeling: use high-quality tick data to assess pending fill/hedge behavior realistically.

  3. Risk first: begin with smaller LotMultyMax and MaxLevels=2 . Increase gradually once stable.

  4. Per-symbol tuning:

    • Gold/indices: keep ATR distances on; ATR_K_Distance_L1 ~ 0.9–1.2; stricter spread filter.

    • Major FX: let ATR_K_Distance_LN be slightly larger than L1 (e.g., 1.3–1.6) to space ladder steps.

    • If broker often expires pendings: SeriesGTC=true + UseOrderModifyReprice=true , and try RepriceSeconds=60–90 .

Risk Disclaimer

This EA is an algorithmic trading tool. All strategies can incur drawdowns. Configure risk prudently, use a VPS, and forward-test on demo/small live first to ensure compatibility with your broker’s execution and instrument specs.


Recommended products
MyTraderEA
Khayelihle Tosh
AutoTraderEA Description As the name says, this is an autotrading robot.   It trades on H1 timeframe.  It looks for clear trades, and is very accurate, yet still will take a couple of trades per week. Otherwise losses are minimised through a 130 pip StopLoss which can be modified. AutoTrader gives the user the ability to choose whether to keep trading volumes the same or change in direct proportion to the change in the account equity.   The EA has been backtested only on the EURUSD pair over a
OB PRO TRADER EA - is a high quality intraday trading system based on the price action research! This is "set and forget" Expert Adviser which is doing all trading job for you! 8 Set_files available for 6 forex pairs!   H1 t imeframe! Download EA Set_files for testing and trading: USDCHF Set_file GBPAUD Set_file GBPCAD Set_file GBPAUD v2 Set_file GBPCAD v2 Set_file EURUSD Set_file NZDUSD Set_file AUDUSD Set_file Trading idea is based on famous powerful Price Action pattern which is combined w
Gold Angel
Dmitriq Evgenoeviz Ko
The Gold Angel MT4 Expert Advisor is designed for automated gold trading on the MetaTrader 4 platform, providing traders with unique tools and strategies to achieve maximum profit. Using complex algorithms for analyzing market data, this advisor is able to identify profitable entry and exit points, which significantly reduces risks and increases the chances of successful trading. the full list for your convenience is available https://www.mql5.com/ru/users/pants-dmi/seller Gold Angel MT4 offer
The MelBar HedgeScalper FinTech RoboTrader MAXIMUM LOTSIZE : 100 Lots (US$10,000,000) per TRADE/POSITION FULLY TRIED, TESTED, PROVEN & VERIFIED ON A REAL LIVE TRADING ACCOUNT! TRY OUT THE DEMO! The Experienced Trader & Global Money Manager Version. 89% Trade Winning Percentage. 32.679% Profit Gain or ROI in 2 Trading Days. Profit Factor 3.59 Average Trade Length 1h 22m. The MelBar HedgeScalper FinTech RoboTrader is easy to use. Has the Advantage of Retiring Unnecessary "Debt" Positi
Dangal
Vitalii Zakharuk
Dangal is trend trading using indicators and levels. The expert system goes through the whole history and can work with several currency pairs (GBPUSD, USDCHF, USDJPY, EURUSD) with a single setting. If there is a commission on the account, it must be recalculated into the equivalent of the spread and fill in the MaxSpread field, taking into account the Wednesday and the commission. The Expert Advisor can be launched on any hourly period, but it works with the H1 period. You can start using it
XIRO Robot MT4
MQL TOOLS SL
5 (4)
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
Aural Net GOLD
Ignacio Agustin Mene Franco
GOLD | XAUSD | AI-Powered Trading System Overview: An algorithmic strategy designed exclusively for the gold market (XAU/USD), geared towards professional and semi-professional traders seeking high-precision trades. It combines classic technical analysis with an adaptive neural network (MLP) trained in real time on market data. Technology and Signals: The system integrates three filtering layers before executing any trade: Williams %R — Overbought and oversold zone detector for precise entry
Vortex Gold MT4
Stanislav Tomilov
5 (39)
Vortex - your investment in the future The Vortex Gold EA expert Advisor made specifically for trading gold (XAU/USD) on the Metatrader platform. Built using proprietary indicators and secret author's algorithms, this EA employs a comprehensive trading strategy designed to capture profitable movements in the gold market. Key components of its strategy include classic indicators as CCI and Parabolic Indicator, which work together to accurately signal ideal entry and exit points. At the heart of V
Black Rock EA
Evgenii Filippov
MULTI-CURRENCY Expert Advisor, the main condition for work, a broker with a minimum spread and a fast VPS server.It shows itself well on EURCHF, GBPUSD and many other pairs. The requirement for the correct operation of the adviser: VPN with minimal delay to the broker. Recommended deposit from $ 50 (per symbol) Recommended broker with an ECN account. The Expert Advisor should be installed and tested only on the M15 timeframe!!!! Before using the Expert Advisor, be sure to test it in the strateg
TPS Gold Scalper EA - High-Risk Edition: Seize Gold Trading Opportunities with Aggressive Precision Minimum Equity :- 1000 $ Trading Timeframes :- H1 Recommended pair :- XAUUSD Experience the next level of gold trading with the TPS Gold Scalper EA - High-Risk Edition. Designed for traders who thrive on high-risk, high-reward strategies, this advanced trading robot is your ticket to harnessing rapid price movements in the gold market. Aggressive Scalping Algorithm: The TPS Gold Scalper EA is p
Two Kids
Natalya Sopina
Two Kids  - high frequency EA-scalper. Two Kid s  -  uses only two standard indicators to generate signal to oder opening. Two Kids   -universal and simple. Two Kids   - trades accurately and swiftly. Two Kids   - independent on TF. Two Kids   - worsk on all currency pairs. Two Kids   - uses no martingale and no grid Two Kids   -needs 20  units of currency for lot 0.01 for each used currency pair. Two Kid s EA  Parameters : Trading  hours  HH . ММ  (server time) : trade time limit on time : tim
Dark Nova
Marco Solito
Last copy at 499$ -> next price 599$ Dark Nova is a fully automatic Expert Advisor for Scalping Trading on AUDCAD, AUDNZD and NZDCAD . This Expert Advisor is based on a sophisticated multi-indicator algorithm combining Bollinger Bands , Moving Averages , ADX , RSI and Extreme Points detection. It is highly customizable to suit your trading needs. If you Buy this Expert Advisor you can write a feedback at market and get a second EA for Free , for More info contact me The basic strategy of this EA
EA123 Snipper MACD
Jose Francisco Flores Rojas
MACD Divergence Pro is an intelligent and adaptive Forex trading robot designed to capitalize on MACD signals and detect divergence patterns that often precede major price reversals. The EA automatically places Buy and Sell trades when: Bearish divergence is detected at market highs Bullish divergence is detected at market lows MACD crossover signals confirm potential entry points Key Features: Fully automated trading using MACD and divergence logic ️ Customizable MACD settings for f
GMMA Trade X is an EA based on GMMA. GMMA parameters such as MovingAveragePeriod1-24, MovingAverageMAShift1-24, MovingAverageShift1-24 and CandlestickShift1-24 can be adjusted. GMMA Trade X applies BTN TECHNOLOGY's state-of-the-art intelligent technology to help you create optimal results for your trades. May your dreams come true through GMMA Trade X. Good luck. = == == Inquiries = == == E-Mail:support@btntechfx.com
FTMO Smart Trader EA Ragnarock
Tshivhidzo Moss Mbedzi
4 (1)
Limited purchases at $211 USD next 566 USD , For a limited time: Unlock the power of trading like an expert with FTMO Smart Trader EA. Our sophisticated algorithms will help you identify trends in the market and make smart, dynamic decisions to maximize your profits and minimize your losses. As the only algorithmic trading tool developed specifically for EURUSD markets, you can trust FTMO Smart Trader EA to help you succeed in the world of trading. With fully automated trading, the robot feature
GOLD Predator IQ7
Tjia Elisabeth Jasmine Canadi
Concrete portfolio evidence from real accounts [attached] shows that the target of >95% wins [blue] has been achieved. Download the free demo and test it yourself. Follow the instructions. Backtesting >100% per month, is it possible? Dear Colleague, if you are in search of a secure trading Expert Advisor (EA) robot that guarantees a minimum target of 5% profit per month, characterized by transparency and authenticity, I present to you the following proposal: the EA-ThinkBot IQ7 Predator, design
Infinity Gold AI
Dmitriq Evgenoeviz Ko
Infinity Gold AI is a trading robot (expert advisor) for the MetaTrader 4 (MT4) terminal, designed for automated trading of the XAUUSD (gold) currency pair. This advisor was developed by experienced traders with ten years of experience in financial markets and focuses on conservative trading methods based on clear money and risk management rules. The full list is available for your convenience at https://www.mql5.com/ru/users/pants-dmi/seller Key Features of Infinity Gold AI: Trading method : Sc
Golden Harmony
Dmitriq Evgenoeviz Ko
The Logic of Gold Trading  the full list for your convenience is available https://www.mql5.com/ru/users/pants-dmi/seller Gold trading, like any other form of investment activity, requires a deep understanding of the market, strategic planning, and close attention to numerous factors influencing its price. The logic behind gold trading is based on fundamental principles of supply and demand as well as analysis of macroeconomic indicators, geopolitical events, and investor sentiment. Gold has
Golden Cheetah
Dmitriq Evgenoeviz Ko
Golden Cheetah is not just a trading robot, but an expert in short-term trading, created to work in volatile markets with low spreads. It is based on a complex multi-component algorithm that instantly analyzes market information in real time.  Next price 1399 : The price increases depending on the number of sold licenses  the full list for your convenience is available https://www.mql5.com/ru/users/pants-dmi/seller This scalper, like a hunter, opens trades according to the Price Action strate
Scalper Tick Manager
Lucas Hernan Diedrich
Scalper Tick Manager   It serves a large number of pairs, the more movement there is in the currency pair, the better it works, recommended pairs. EURUSD, GBPUSD, GBPJPY, USDJPY. I tried it on other pairs and it works well too, but for now I recommend doing the test on the recommended ones. The EA, It is not king-size gala, It is not an unnecessary high risk system, You can see it for yourself, the DDs are very low, in normal conditions they do not exceed 10%. Recommended Spread Try testing the
Aura Superstar MT4
Stanislav Tomilov
4.78 (9)
Aura Superstar  is a fully automated EA designed to trade  currencies during rollover time .  It is based on machine learning cluster analysis and genetic scalping  algorithms. The first multi-currency scalper using deep machine learning mechanism, a multi-level perceptron and an adaptive neuro filter combined with classic indicators. Expert showed stable results since 2003 year. No dangerous methods of money management used, no martingale, no grid, or hedge. Suitable for any good ECN broker.  I
Golden Globe
Dmitriq Evgenoeviz Ko
The Golden Globe Expert Advisor is a specialized automated Forex trading tool focused on XAUUSD (gold). Created by seasoned traders with over a decade of experience, this robot is designed for scalping trades on a five-minute timeframe (M5). Key Features: Preset Stop Loss and Take Profit levels: Each trade has preset levels of protection, limiting risks and ensuring control over potential losses. Clear trading regulations: trading is conducted exclusively according to strict rules that exclude s
Desbot
Luke Joel Desmaris
Join our Newsletter to also get a copy of our Optimization Settings: https://desbot.ai/#Newsletter  Input Parameters Below are all the input options (aka: Parameters) for Desbot and how to use them. You can find the best Parameters through optimization. RiskPercentage: Enter the number that represents the percent of your account balance you want Desbot to risk per trade. For example, entering 1.5 would risk 1.5% of your Account Balance. SLTicks: Enter the number of ticks you want for your stop
Goldenclaw
Sigit Hariyono
Goldenclaw EA   is a unique scalping Trading Robot based on multi layered neural network and various default indicators. The algorithm works by calculating values from different timeframes to provide output signal for the current timeframe. This EA does not use dangerous techniques like martingale, averaging, grid or hedging. All orders are protected by stop loss and only one trade direction buy or sell depend on given algorithm. Input Parameters: Expert Name   - EA name and trades comment. M
Советник торгует EURGBP. Уникальным свойством EURGBP является снижение активности торгов на американской сессии, которое объясняется отсутствием в составе инструмента USD. Пара малоактивна с 19-00 до 9-00 – этот промежуток в три раза больше, чем у традиционных для ночной торговли азиатских валют. Кросс-пары в отличие от долларовых валютных инструментов слабо реагируют на новости США, что позволяет в разы снизить ложные срабатывания стопов и проскальзывания. Таймфрейм: M5 Минимальный депозит: $3
Introducing the AI Neural Nexus EA A state-of-the-art Expert Advisor tailored for trading Gold (XAUUSD) and GBPUSD. This advanced system leverages the power of artificial intelligence and neural networks to identify profitable trading opportunities with a focus on safety and consistency. Unlike traditional high-risk methods, AI Neural Nexus prioritizes low-risk strategies that adapt to market fluctuations in real time, ensuring a smart trading experience. Important Information Contact us immedia
Junior v4
Vitalii Zakharuk
Forex Bot Junior - Trend-Following, Reliable Trading. Forex trading is a complex and dynamic market that requires significant time, effort, and experience to successfully navigate. However, with the advent of trading bots, traders can now automate their trading strategies and take advantage of market trends without spending countless hours analyzing data. What is Forex Bot Junior? It's a trading bot that uses advanced algorithms to analyze market trends and execute trades automatically. It's
CapTaiNCAT
Nyamsuren Boldbaatar
CapTaiNCAT FullAutomated expert advisor. TimeFrame M1 M5 SET FILES;  https://www.mql5.com/en/market/product/38300#!tab=comments&comment=11565247 Recommendations Before using the EA on a real account, test it with minimal risk or on a demo account; Use VPS server with ping less 10ms; ECN account with low spreads + low commissions + quality execution;  Standard settings are optimized for EURUSD GBPUSD AUDUSD USDCAD USDJPY USDCHF XAUUSD  The settings of the EA  Trade Manager  Magic Number  Slippa
торговая система с риском 1% чем больше денег на счете тем больше лот но риск 1% Начальный депозит 50.00 Спред 10 Чистая прибыль 6.71 Общая прибыль 51.97 Общий убыток -45.26 Прибыльность 1.15 Матожидание выигрыша 0.02 Абсолютная просадка 26.79 Максимальная просадка 29.21 (55.47%) Относительная просадка 55.47% (29.21) Всего сделок 427 Короткие позиции (% выигравших) 219 (72.60%) Длинные позиции (% выигравших) 208 (72.12%) Прибыльные сделки (% от всех) 309 (72.37%) Убыточные сделки (% от все
Use our recommended broker:   https://icmarkets.com/?camp=61478 Timeframe:  M1 Base pairs:  AUDNZD, NZDCAD, AUDCAD Additional pairs:  GBPNZD Reversal smart grid uses multiple timeframe analyses to spot potential pullbacks in the market. These pullbacks have great potential to make big profit, we enter these pullbacks on the lowest timeframe ( M1 ). All backtests are performed over a 17+ years period showing stable and long term results! The goal is long term compounding profits with the reasona
Buyers of this product also purchase
The Gold Reaper MT4
Profalgo Limited
4.59 (32)
PROP FIRM READY! ( download  SETFILE ) LAUNCH PROMO: 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 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 extreme volatile
FlipDamonHFT
Allistair Kabelo Mandow
1 (3)
Ask in private for more details after purchase Discounted   price .  The price will increase by $500 with every 10 purchases. ***Buy FLIPDEMON HFT MT4 and you could get TINGA TINGA or  FLIPDEMON HFT MT5 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. FlipDamonHFT – High-Frequency Trading Robot for XAUUSD (GOLD) FlipDamonHFT is a fully automated Expert Advisor for MetaT
Trendalgo AI MT4
Stefano Frisetti
TRENDALGO is an EA that uses ARTIFICIAL INTELLIGENCE to trade 100% automatically and as the name says it is a TREND FOLLOWING EA, it works well on ASSETs that are TRENDING. AI is used to identify the moment in which volumes, volatility and momentum explode, according to a proprietary equation created by me which takes these values ​​into consideration as objective data and never uses any indicator. TRENDALGO opens a new TRADE and follows it by continuously adjusting STOP LOSS and TAKE PROFIT, f
Aura Black Edition
Stanislav Tomilov
4.62 (21)
Aura Black Edition is a fully automated EA designed to trade GOLD only. Expert showed stable results on XAUUSD in 2011-2020 period. No dangerous methods of money management used, no martingale, no grid or scalp. Suitable for any broker conditions. EA trained with a multilayer perceptron Neural Network (MLP) is a class of feedforward artificial neural network (ANN). The term MLP is used ambiguously, sometimes loosely to any feedforward ANN, sometimes strictly to refer to networks composed of mult
Quantum Emperor MT4
Bogdan Ion Puscasu
4.85 (172)
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 MT5 Versi
XG Gold Robot MT4
MQL TOOLS SL
4.32 (38)
The XG Gold Robot MT4 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
RiskShield Dragon   — Automated Multi-Currency Advisor Combining intelligent algorithms, robust protection mechanisms, and flexible configuration, **RiskShield Dragon** delivers consistent profits with minimal risk. --- ## Key Advantages * **Multi-Currency & Multi-Threaded**: Supports over 20 currency pairs (EURUSD, GBPUSD, USDJPY, AUDUSD, NZDJPY, and more) simultaneously on any timeframe. * **Minimum Deposit from 10,000**: Optimized for trading with a starting balance of 10,000 account uni
AI Forex Robot MT4
MQL TOOLS SL
4.29 (17)
AI   Forex Robot - The Future of Automated Trading. AI Forex Robot is powered by a next-generation   Artificial Intelligence   system based on a hybrid LSTM Transformer neural network, specifically designed for analyzing XAUUSD, EURUSD   and BTCUSD price movements on the Forex market. The system analyzes complex market structures, adapts its strategy in   real time   and makes data-driven decisions with a high level of precision. AI Forex Robot is a modern, fully automated system powered by   ar
Apache MHL Moving Average
Paulo Roberto Da Costa
Sinal (GOLD/XAUSD) - mais de 14 meses ativo e mais de 6 mil negociações em conta Standard (alavancagem de 1:400):   https://www.mql5.com/pt/signals/2278431 Produto para MetaTrader4:  https://www.mql5.com/pt/market/product/159627 Produto para MetaTrader5:  https://www.mql5.com/pt/market/product/160313 O Apache MHL Moving Average Expert Advisor ou simplesmente "Apache MHL" é um robô que opera no ativo GOLD/XAUUSD utilizando estratégias baseadas em médias móveis e gestão de risco com Martingale.
Big Forex Players MT4
MQL TOOLS SL
4.73 (44)
We proudly present our cutting-edge robot, the  Big Forex Players EA  designed to maximize your trading potential, minimize emotional trading, and make smarter decisions powered by cutting-edge technology. The whole system in this EA took us many months to build, and then we spent a lot of time testing it. This unique EA includes three distinct strategies that can be used independently or in together. The robot receives the positions of the  biggest Banks  (positions are sent from our database t
Aura Neuron MT4
Stanislav Tomilov
4.44 (16)
Aura Neuron is a distinctive Expert Advisor that continues the Aura series of trading systems. By leveraging advanced Neural Networks and cutting-edge classic trading strategies, Aura Neuron offers an innovative approach with excellent potential performance. Fully automated, this Expert Advisor is designed to trade currency pair XAUUSD (GOLD). It has demonstrated consistent stability across these pairs from 1999 to 2023. The system avoids dangerous money management techniques, such as martingale
Bitcoin Robot Grid MT4
MQL TOOLS SL
5 (16)
Bitcoin Robot Grid MT4 is an intelligent trading system designed to automate BTCUSD trading using the grid trading strategy. This method takes advantage of market fluctuations by placing a structured series of buy and sell orders at predefined price levels. The robot   continuously monitors market   conditions and executes trades according to its preset parameters, allowing for consistent market engagement without the need for manual intervention. Bitcoin Robot Grid is the   perfect solution  
MyGrid Scalper Ultimate
Ahmad Aan Isnain Shofwan
MyGrid Scalper Ultimate Structured Execution for Confident Traders MyGrid Scalper Ultimate is a auto and manual-entry grid manager designed for experienced traders who already have their own entry strategy. It is the paid and extended version of MyGrid Scalper Free , one of the most downloaded free EAs on the MQL5 Market (28,000+ times). If you're looking for a fully automatic EA, this may not be the right tool. But if you want a system to handle lot scaling, exit logic, and risk structure a
Gridlock Multiplier
Kyle Travis Mowery
GoE Stratagem Gridlock v2.36 is an adaptive grid trading system built for traders who want structured basket management instead of random trade stacking. This version is designed to respond differently to ranging and expanding market conditions, using internal entry filters and spacing logic to help organize entries with more control. Core features include dynamic grid operation, basket-based take profit handling, trailing basket management, and equity decompression tools intended to reduce pr
AI Prop Firms MT4
MQL TOOLS SL
5 (4)
AI Prop Firms - Intelligent Automation Built for   Prop Trading Firms . AI Prop Firms is an advanced fully automated Forex trading system powered by   Artificial Intelligence , developed specifically to operate within the strict rules and evaluation models of prop trading firms. The system is designed to trade under controlled risk conditions while   maintaining consistency , stability, and compliance with prop firm requirements. AI Prop Firms uses intelligent market analysis logic that continu
HFT Fast M1 Gold Scalper V8 EA
Martin Alejandro Bamonte
2.33 (3)
ULTRA-OPTIMIZED VERSION – MT4 HFT FAST M1 GOLD SCALPER V8.2 , in its MT4 version, is the most powerful, stable, and refined release to date. HFT is a high-frequency scalper that trades exclusively on Gold (XAUUSD) on TF: M1, executing a large number of trades daily. It supports leverage up to 1:500 and operates with very reasonable lot sizes for a true scalping strategy. Because of this, it requires dedicated scalping accounts (RAW or ECN). ICMarkets is the recommended broker, especially its RAW
Bitcoin Robot MT4
MQL TOOLS SL
4.64 (66)
The Bitcoin Robot  MT4 is engineered to execute Bitcoin trades with unparalleled   efficiency and precision . Developed by a team of experienced traders and developers, our   Bitcoin Robot   employs a sophisticated algorithmic approach (price action, trend as well as two personalized indicators) to analyze market and execute trades swiftly with   M5 timeframe , ensuring that you never miss out on lucrative opportunities.   No grid, no martingale, no hedging,   EA only open one position at the sa
KT Gold Nexus EA MT4
KEENBASE SOFTWARE SOLUTIONS
5 (2)
ICMarkets Live Signal: Click Here What You Need to Do to Succeed with KT Gold Nexus EA? Patience. Discipline. Time. KT Gold Nexus EA is based on a real-world trading approach used by professional traders and private fund managers. Its strength is not in short-term excitement, but in long-term consistency. This EA is designed to be traded over time. It is recommended to stay invested for at least one year to experience its real potential. Just like professional trading, there can be losing weeks
Blox
Cence Jk Oizeijoozzisa
5 (2)
One of the strongest automated trading systems of 2025 We have transformed one of the most powerful discretionary strategies of 2025 into a fully automated Expert Advisor based on TMA (Triangular Moving Average) with CG logic . Only one more copy is available at $550. After that, the price will increase to $650 and $750, with the final price set at $1200 Signal live  This EA is designed for precision entries, smart pending orders, and strict risk control , making it suitable for both Forex pairs
Big Hunter
Mehdi Sabbagh
5 (1)
The Multi Strategy Trading Robot This automated trading robot always uses stop loss. Big Hunter is specially designed to trade gold , but you can test it on other pairs since you have the access to the parameters. The robot uses different strategies like swing trading ,  momentum trading , position trading and more. It's backtested for the last 10 years under the harshest, simulated market conditions. Each trade has  unique SL, TP, Trailing stop, and breakeven. These parameters are variable a
Unlike most other EAs in the market, I always assure every single of my EAs are of highest quality: Real trades will match backtesting. No loss hiden techniques to hide historical losses, no manipulated backtest to make backtesting curve smooth without loss (only naive traders believe in smooth upward curve with no risk - they are most likely scamming). My EA always have multi-years verified statistical trading edge. Robust and long term stable with sensible risk management. Not sensitive to sp
Algo Capital Trader
Jimitkumar Narhari Patel
Algo Capital Advanced Market Intelligence Trader: Empowering Traders with Integrity and Insight Algo Capital proudly introduces its inaugural state-of-the-art Advanced Market Intelligence Trader - engineered to transform your trading experience through precision, adaptability, and advanced market intelligence. Powered by proprietary algorithms and deep market research, this solution is designed to deliver consistent, high-quality performance across diverse market conditions. Why Algo Capital?
SmartChoise MT4
Gabriel Costin Floricel
SmartChoise MT4 EA – Neural Network –Powered Trading System for XAU/USD (Gold) on M15 Timeframe Because many asked me for a MT4 version price is reduced for the next 24 hours User Manual: Available via the link in my profile page. For now, it matches the MT5 version — some options were removed in the MT4 version, but all current settings are explained there. A dedicated MT4 manual will be released in the future. SmartChoise MT4 is designed for long-term, controlled growth, powered by a neural ne
Gold Medalist
Dmitriq Evgenoeviz Ko
Gold Medalist is an intelligent system focused on volatile trading on the XAUUSD market. It aims to identify and effectively exploit short-term price impulses, providing traders with new profit opportunities. The full list is available for your convenience at https://www.mql5.com/ru/users/pants-dmi/seller The Gold Medalist's key advantage lies in its unique price action analysis system. By accurately measuring price movement, it can identify true market momentum signals while avoiding false si
Alfascal
Vladislav Filippov
1 (1)
For the expert to work correctly, do not forget to upload the files to the directory of the agreement (... AppData \ Roaming \ MetaQuotes \ Terminal \ Common \ Files) Alfascal is a new model of a fully automated trading neuro-system, working on short timeframes. This system, which is based on a specialized neural network, is able to provide continuous training, transform the chaotic realities of the market into a specific system that can improve the quality of open transactions and absorb most
FXbot mt4
Marek Kvarda
5 (1)
This robot uses its own built-in oscillator and other tools to measure market movements (volatility, speed, power, and direction). At an appropriate time, it places an invisible pending order on the market, which it continues to work with according to the set TradingMode. It is recommended to use a fast broker with low fees, accurate quotes and no limitation of stop loss size. You can use any timeframe. Features spread protection slippage protection no grid no martingale a small SL for every tr
Omega Code
Nguyen Hang Hai Ha
Introduction EA Omega Code is a core strategy that has been distilled over many years of research and optimization for the Forex and Gold markets. The strategy combines Scalper and Trailing to optimize performance and reduce risk. Trading orders have Stop Loss, Trailing for customization, and provide many other parameters to optimize the system to suit each user's trading plan. Promotion: with the purchase of Omega Code, users can access the source-code. If you are really interested in the sour
Exorcist Projects
Ivan Simonika
3 (1)
Exorcist Bot   is a multi-currency, multi-functional advisor that works on any time frame and in any market conditions. - The robot’s operation is based on an averaging system with a non-geometric progression of constructing a trading grid. - Built-in protection systems: special filters, spread control, internal trading time limitation. - Construction of a trading network taking into account important internal levels. - Ability to customize the aggressiveness of trading. - Working with pending
I Gold Mine I
Dmitriq Evgenoeviz Ko
Gold Mine EA (XAUUSD H1) is a gold trading expert advisor that uses a momentum scalping algorithm on the hourly timeframe. The system is designed to filter out market noise and identify confirmed price movements. Trading logic The algorithm analyzes gold volatility and opens positions based on a synthesis of two factors: Impulse analysis: identifying sharp bursts of activity that mark the entry of major market participants. Price Action: Entry confirmation using a built-in chart pattern library
Benefit EA
Vsevolod Merzlov
Benefit EA is a non-indicative flexible grid adviser with special entry points that provide a statistical advantage, revealed through the mathematical modeling of market patterns. The EA does not use stop loss. All trades are closed by take profit or trailing stop. It is possible to plan the lot increments. The "Time Filter" function is set according to the internal time of the terminal as per the displayed time of the instrument's server, not the operating system (can match). This function allo
More from author
RoyalEdge
Eduard Iutinskiy
RoyalEdge MT4 — Quantum Adaptive Hedging for XAUUSD (H1) Automated Expert Advisor for GOLD (XAUUSD) on H1 , built to operate in the highly volatile gold market using adaptive algorithms, noise filtering, and intelligent position management. Optimized for impulses, pullbacks, and liquidity “stop-hunts”. MIN deposit: from $100 (moderate risk) Symbol: XAUUSD Timeframe: H1 Key Features Quantum Dot Filter — filters market “noise” and false entries; trades only when there is enough movement “
Adaptive Signal Engine — Non-Repaint Scalping Indicator for XAUUSD (M1) Adaptive Signal Engine is a professional arrow-based scalping indicator designed specifically for Gold trading (XAUUSD) on the M1 timeframe . It generates clear BUY / SELL arrows only on closed candles , ensuring zero repainting and reliable real-time trading signals. Main Features True Non-Repaint Signals All arrows appear only after the bar is closed , so signals never disappear or change. Perfect for live trading,
XAU Edge
Eduard Iutinskiy
DESCRIPTION IN ENGLISH XAU Edge — Adaptive Signal Engine for Gold Trading (XAUUSD) Professional Non-Repaint Arrow Indicator for Scalping & Intraday Precision XAU Edge is a next-generation high-accuracy indicator designed specifically for trading GOLD (XAUUSD) on lower timeframes (M1–M15), where speed, noise filtering, and entry precision are critical. This is not a simple RSI arrow tool. It is a full adaptive signal engine combining institutional-grade filters such as: momentum analysis trend
Filter:
Michail Korolev
20
Michail Korolev 2025.10.01 18:43 
 

User didn't leave any comment to the rating

Reply to review