Grid Scalper MA MT5 EA

4.49

Grid Scalper MA MT5 EA

Grid Scalper MT5 EA is a MetaTrader 5 expert advisor built around a dynamic grid trading engine with two selectable signal strategies — Price vs MA (price crossing a single moving average) and BOS (Break of Structure, trading confirmed swing high/low breakouts). When price moves against an open basket, the EA layers in additional grid trades at defined intervals, targeting recovery via a volume-weighted breakeven close.

Note:

The EA is developed under Gold (XAUUSD) currency pair and thus the default settings make sense there for a 3 digits (e.g.7101.123) chart version. For a 2 digits version (e.g. 7101.12), reduce all the input values for points' parameters by one zero - the EA uses points, not pips convention (e.g. if tp points in 3 digits is 11000, tp points in 2 digits is 1100). If you are to use the EA in diffenet instances, that is different charts, recall to use different magic numbers, that is the only way the instances will not collide and will work independently, even on charts with same pair, period and settings. We urge you to carry out your own backtesting and optimization on any pair or timeframe to find the best fitting settings of your own.

Grid Scalper MA MT5 EA public channel: CLICK HERE.

It has been updated with a vast extended control parameters and new logics and thus highly recommended to take a keen look at the inputs, and understand what each input controls. Be sure to read the inputs description section for some insight on the upgrades, as they impact the system significantly.

At its core, Grid Scalper MT5 EA supports two signal strategies selectable via the Signal Strategy input: Price vs MA, where a close price crossing the Moving Average (set via MA Period) triggers a new basket, and BOS (Break of Structure), where a close breaking above a confirmed swing high fires a buy and breaking below a swing low fires a sell. Each signal initiates a fresh basket with its own unique magic number offset. The basket expands as price moves against the initial position, adding grid trades at defined Grid Size Points intervals. Lot sizing per grid trade is controlled by the Grid Lot Mode — either multiplier-based (progressive scaling) or recovery-based (mathematically sized to recover the basket at a defined target distance).

Risk management tools include optional per-trade Stop Loss, trailing stops exclusively for the first trade in each basket (activating after a minimum profit threshold), and breakeven-based closure for multi-trade baskets. Cap the maximum trades per basket, choose what happens when the cap is hit (hold or close all), and cap the total number of simultaneous active baskets. The Smart Grid mode adds structural intelligence — if a confirmed trend forms against an open basket, grid additions pause (cooldown) and resume only after a CHoCH (Change of Character) confirms structural reversal. A Daily Drawdown protection system monitors equity against start-of-day balance and halts trading for the session if the limit is breached. A Trading Time Filter restricts new basket signals to a defined server-time window. The Geometry Filter prevents clustering by blocking new entries too close to an existing same-direction position.

The real-time dashboard displays account info, active positions, basket details with floating P&L per basket, strategy in use, and daily drawdown status — available in minimized or maximized view, dark or light theme. Baskets persist across restarts via global variables for full continuity.


Key Features:

  • Two signal strategies: Price vs MA crossover and BOS (Break of Structure swing breakout).
  • Grid trading with adjustable spacing, two lot progression modes (multiplier or recovery-based), and per-basket trade caps.
  • Smart Grid mode with automatic CHoCH cooldown — pauses grid on adverse structure, resumes on confirmed reversal.
  • Daily Drawdown protection — closes losing trades and halts new entries when equity loss limit is hit.
  • Trailing stop for initial positions and breakeven closure for multi-trade baskets, plus optional per-trade Stop Loss.
  • Geometry Filter preventing clustered same-direction entries within a defined price range.
  • Trading Time Filter restricting new signals to a defined server-time window.
  • Real-time dashboard with per-basket P&L, strategy display, and dark/light theme support.
  • Animated on-chart notification bar for trade events, rejections, and system alerts.
  • Basket persistence via global variables — full state restoration after restarts or disconnections.
  • Built-in checks for volume, margin, stop/freeze levels, and symbol limits ensuring reliable execution.


Inputs Description

The inputs are grouped into "EA GENERAL SETTINGS" and "MA Indicator Settings" for easy navigation in the MT5 EA properties window. Each input is designed for flexibility, with defaults that suit moderate strategies. Always optimize based on your symbol, timeframe, and risk tolerance. Below is a detailed breakdown to help you understand and configure them clearly.


EA GENERAL SETTINGS


Signal Strategy (enum: Price vs MA or BOS, default: Price vs MA): Selects the signal generation strategy the EA uses to open new baskets. "Price vs MA" fires a buy when price closes above the MA after being below it, and a sell when price closes below after being above — a single moving average price crossover. "BOS" (Break of Structure) fires a buy when price closes above a detected swing high, and a sell when price closes below a detected swing low — a structural breakout approach. Each strategy is fully self-contained; switching between them requires no other setting changes.


Lot Size Mode (enum: Static Lot Size or Dynamic Lot, default: Static Lot Size): Controls how the initial lot for each basket is calculated. "Static Lot Size" uses the fixed value in "Lot size (Static Mode)" for every basket entry regardless of account size. "Dynamic Lot" calculates the lot based on "Risk % of Equity" and the current grid size, scaling automatically as equity grows or shrinks.


Lot size (Static Mode) (double, default: 0.01): The fixed opening volume for the first trade in every basket when Lot Size Mode is set to Static Lot Size. Subsequent grid trades in the same basket scale this up according to the Grid Lot Mode. The EA validates and normalizes this against the symbol's minimum, maximum, and step volume constraints.


Risk % of Equity (Dynamic Mode) (double, default: 1.0): Active only when Lot Size Mode is Dynamic Lot. The percentage of current account equity to risk per basket entry, using the grid size as the risk distance. For example, 1.0 means the EA sizes the initial lot so that one full grid movement equals 1% of equity. Recalculated fresh for each new basket.


Grid Lot Mode (enum: Multiplier-Based Grid Lots or Recovery-Based Grid Lots, default: Multiplier-Based Grid Lots): Determines how lot sizes are calculated for each additional grid trade added to a basket. "Multiplier-Based Grid Lots" scales each new grid trade by the Multiplier — a classic martingale-style progression. "Recovery-Based Grid Lots" calculates the exact lot needed so that when price reaches a defined recovery target (based on Recovery % of Grid Size plus Extra Profit Points), the entire basket becomes profitable, regardless of the number of open trades.


Multiplier (Multiplier Mode) (double, default: 1.5): Active when Grid Lot Mode is Multiplier-Based Grid Lots. The factor by which each successive grid trade's lot is multiplied relative to the previous trade. Values above 1.0 increase exposure with each grid level (martingale-like); 1.0 keeps all grid lots equal to the initial size.


Recovery % of Grid Size (Recovery Mode) (int, default: 30): Active when Grid Lot Mode is Recovery-Based Grid Lots. Defines the recovery target distance as a percentage of the grid size. For example, 30 means the recovery target sits 30% of one grid spacing beyond the latest grid entry, plus the Extra Profit Points buffer.


Extra Profit Points (Recovery Mode) (int, default: 100): Active when Grid Lot Mode is Recovery-Based Grid Lots. An additional profit buffer in points added on top of the recovery distance. Ensures the basket closes with a small profit margin rather than exactly at breakeven.


Magic Number (long, default: 1234567): A base identifier for all trades managed by this EA instance. Each basket receives a unique offset derived from this base (base + basketId × 10000), ensuring all positions are correctly owned and isolated. Change this if running multiple EA instances on the same symbol to prevent cross-identification.


Take profit points (int, default: 11000): The profit target in points for the initial trade of each basket. If price reaches this level before any grid trades are added, the single position closes at this target. Once grid trades are added, the basket TP is dynamically recalculated to breakeven plus Breakeven Points for all positions.


Grid size points (int, default: 11000): The distance in points from the current entry price at which a new grid trade is added if price moves against the basket. Smaller values create denser grids with more frequent additions; larger values space grid levels further apart and suit trending or wider-ranging markets.


Breakeven Points (int, default: 50): The profit buffer in points beyond the basket's volume-weighted average entry price (breakeven) that triggers closure of all positions in the basket. Once price moves this many points past breakeven in the basket's favour, all trades close together. Smaller values close faster with less profit; larger values hold longer for bigger returns but risk reversal.


Stop Loss Mode (enum: No SL Mode or SL Mode, default: No SL Mode): Controls whether individual trades receive a stop loss. "No SL Mode" places trades without a stop loss, allowing the grid to recover freely but exposing the account to unlimited drawdown on a single trade. "SL Mode" applies a fixed stop loss in points from each trade's entry price using the value in "Stop loss points if SL Mode enabled."


Stop loss points if SL Mode enabled (int, default: 11000): Active only when Stop Loss Mode is SL Mode. The distance in points below each buy entry (or above each sell entry) where the stop loss is placed. The EA validates this against the broker's stop and freeze levels and adjusts if necessary.


Basket Trades Cap (enum: No Maximum Cap or Maximum Cap, default: No Maximum Cap): Controls whether a limit is placed on how many trades can exist inside a single basket. "No Maximum Cap" allows the grid to keep adding trades indefinitely as price moves against the basket. "Maximum Cap" enforces the limit set in "Max Trades per Basket if cap enabled."


Max Trades per Basket if cap enabled (int, default: 11): Active when Basket Trades Cap is Maximum Cap. The maximum total number of positions (initial trade plus all grid trades) allowed in one basket before the cap action is triggered.


Action when trades cap reached (enum: Hold or Close all trades, default: Hold): Active when Basket Trades Cap is Maximum Cap. "Hold" stops adding new grid trades once the cap is reached but keeps existing positions open to recover naturally. "Close all trades" immediately closes every position in the basket the moment the cap is hit, cutting the loss outright.


Baskets Cap Mode (enum: No Baskets Cap or Baskets Cap, default: No Baskets Cap): Controls the maximum number of simultaneous baskets the EA can have open at one time. "No Baskets Cap" allows unlimited concurrent baskets. "Baskets Cap" enforces the limit in "Maximum Baskets/Trade Positions if cap enabled" and ignores new signals once that number is reached.


Maximum Baskets/Trade Positions if cap enabled (int, default: 3): Active when Baskets Cap Mode is Baskets Cap. The maximum number of active baskets allowed simultaneously. New entry signals are skipped until an existing basket closes and frees a slot.


Use Trailing Stop for first position (bool, default: true): When enabled, the EA applies a trailing stop loss to the initial trade of each basket only — not to subsequent grid trades. The trail activates once the position reaches "Minimum Profit points to activate trailing" and then follows price at the distance set in "Trailing Stop points."


Trailing Stop points (int, default: 30): The distance in points at which the stop loss trails behind the current price once trailing is active on the initial position. For a buy, the SL sits this many points below current bid; for a sell, above current ask. Checked and adjusted against broker stop levels.


Minimum Profit points to activate trailing (int, default: 100): The minimum unrealized profit in points a basket's initial trade must reach before the trailing stop activates. Prevents the trail from engaging prematurely on minor price moves.


Trade Direction (enum: Both buys and sells, Buys only, Sells only, default: Both buys and sells): Restricts which direction the EA trades. "Both buys and sells" allows signals in either direction. "Buys only" ignores all sell signals. "Sells only" ignores all buy signals. Useful for applying a directional bias or complying with broker hedging restrictions.


Geometry Filter Mode (enum: No Geometry Filter or Apply Geometry Filter, default: Apply Geometry Filter): Controls whether the EA checks existing open positions before allowing a new basket entry in the same direction. "Apply Geometry Filter" rejects a new signal if an existing same-direction position is already open within the range set by "Geometry Range % of Grid Size," preventing clusters of entries at nearly identical price levels. "No Geometry Filter" disables this check entirely.


Geometry Range % of Grid Size (int, default: 50): Active when Geometry Filter Mode is Apply Geometry Filter. Defines the exclusion zone around existing same-direction positions as a percentage of the grid size. A value of 50 means no new same-direction entry is allowed within half a grid spacing of an existing same-direction position.




DAILY DRAWDOWN SETTINGS


Daily Drawdown Mode (enum: Disabled or Enabled, default: Disabled): Enables or disables the daily drawdown protection system. When Enabled, the EA monitors the current session's equity loss relative to the start-of-day balance. If the drawdown limit is breached, losing positions are closed immediately and all new trading is halted for the remainder of that day.


Daily Drawdown % of Balance (double, default: 10.0): Active when Daily Drawdown Mode is Enabled. The maximum allowable equity drawdown as a percentage of the start-of-day account balance. When equity drops this percentage below the opening balance, the protection triggers — losing trades are closed, profitable ones are locked in via trailing stop, and no new baskets open until the next calendar day.




SMART GRID SETTINGS


Grid Mode (enum: Normal Grid or Smart Grid, default: Normal Grid): Selects the grid management behaviour. "Normal Grid" adds trades at every grid level as price moves against the basket with no restrictions. "Smart Grid" activates the CHoCH (Change of Character) cooldown system — if a confirmed structural trend forms against an open basket, the grid pauses adding trades (cooldown) until the structure breaks back in the basket's favour (CHoCH confirmed), at which point the grid resumes automatically.


Swing Point Lookback Bars (each side) (int, default: 5): The number of bars to the left and right of a candidate pivot bar used to confirm a swing high or swing low. A bar is classified as a swing high only if its high is strictly greater than all bars within this lookback on both sides. Higher values identify fewer, more significant structural points; lower values detect more frequent, smaller pivots. Used by both Smart Grid CHoCH detection and the BOS signal strategy.


CHoCH Bullish Color (color, default: Blue): The line and label color for bullish CHoCH drawings — displayed when a basket in sell cooldown detects a structural break upward, indicating the downtrend has ended and the grid is resuming.


CHoCH Bearish Color (color, default: Red): The line and label color for bearish CHoCH drawings — displayed when a basket in buy cooldown detects a structural break downward, indicating the uptrend has ended and the grid is resuming.


CHoCH Label Font Size (int, default: 10): The base font size for CHoCH and BOS break level labels on the chart. Automatically scaled relative to the current chart zoom level so labels remain readable at any scale.


CHoCH Line Width (int, default: 2): The base line width for CHoCH arrowed lines and BOS break level lines. Automatically scaled with chart zoom — thinner at small scales, capped at this value at full scale.


Swing High Marker Color (color, default: Orange): The color used for swing high markers (HH and LH labels) drawn on the chart when swing points are detected. Also used as the highlight color for Higher Low markers on swing lows.


Swing Low Marker Color (color, default: DodgerBlue): The color used for swing low markers (LL and HL labels) drawn on the chart. Also used as the highlight color for Lower High markers on swing highs.




MA INDICATOR SETTINGS



MA Period (MA Strategy only) (int, default: 21): The lookback period for the Simple Moving Average applied to closing prices. Only relevant when Signal Strategy is set to Price vs MA. The EA triggers a buy basket when the previous bar's close crosses above this MA, and a sell basket when it crosses below. Shorter periods generate more signals and are more sensitive to noise; longer periods filter for stronger trends but react more slowly.




DASHBOARD SETTINGS


Show Dashboard (enum: None, Minimized, Maximized, default: Maximized): Controls the on-chart information panel. "None" hides it entirely. "Minimized" shows a compact single-column summary of strategy, account name, open positions, active baskets, floating profit, and daily drawdown if enabled. "Maximized" expands to full sections covering account info, EA stats including active strategy and symbol, daily drawdown status if enabled, and a per-basket breakdown.


Dashboard Persistence (enum: Show only when active trades or Always show dashboard, default: Always show dashboard): "Show only when active trades" hides the dashboard when there are no open positions and shows it as soon as a basket becomes active. "Always show dashboard" keeps it visible at all times regardless of trade state.


Dashboard Theme (enum: Dark Theme or Light Theme, default: Dark Theme): Sets the color scheme of the dashboard. "Dark Theme" uses a black background with light text, suited for dark chart environments. "Light Theme" uses a white background with dark text, suited for light or white chart backgrounds.


Dashboard X Position (pixels from left) (int, default: 10): The horizontal pixel offset of the dashboard from the left edge of the chart window. Adjust to avoid overlap with price action or other indicators.


Dashboard Y Position (pixels from top) (int, default: 30): The vertical pixel offset of the dashboard from the top edge of the chart window. Adjust to position it below the toolbar or out of the way of price.


Footer Text (string, default: "Username [Your Name. e.g. Allan - Forex Algo-Trader]"): Custom text displayed centered in the dashboard footer bar. Replace with your name, username, or any identifier you want shown on the chart.




VISUALIZATION SETTINGS


Visualize Signals (bool, default: true): When enabled, the EA draws directional arrows on the chart at the bar where each new basket signal fires — below the bar for buys, above for sells. Both Price vs MA and BOS strategies draw arrows when this is on.


Buy Arrow Code (string, default: "p"): The character code within the Wingdings 3 font used to draw buy signal arrows. "p" renders as an upward arrow. Change to any valid Wingdings character code to customize the buy marker symbol.


Sell Arrow Code (string, default: "q"): The character code within the Wingdings 3 font used to draw sell signal arrows. "q" renders as a downward arrow. Change to any valid Wingdings character code to customize the sell marker symbol.


Font for Arrows (string, default: "Wingdings 3"): The font family applied to signal arrow markers. Should be a Wingdings variant to ensure the arrow codes render as intended symbols rather than text characters.


Buy Arrow Color (color, default: Green): The color of buy signal arrow markers drawn on the chart.


Sell Arrow Color (color, default: Red): The color of sell signal arrow markers drawn on the chart.


Arrow Offset Points (double, default: 10): The vertical distance in points between the bar's low (for buys) or high (for sells) and where the arrow is placed. Larger values push arrows further from the candle for cleaner visibility; smaller values place them tighter to the bar.




LOGGING SETTINGS


Print Prefix (string, default: "-> "): A custom text prefix prepended to every message the EA writes to the MT5 Journal tab. Useful for filtering EA-specific messages when multiple EAs or scripts are running simultaneously. Set to an empty string to disable the prefix.


Show Print Statements in Journal (bool, default: true): Controls whether the EA writes any messages to the MT5 Journal tab at all. Setting this to false suppresses all EA log output entirely, which can slightly improve performance during intensive backtesting or optimization runs with large datasets.




NOTIFICATION SETTINGS


Show Notification Bar (enum: Show Notification Bar or Hide Notification Bar, default: Show Notification Bar): Controls whether animated on-chart notification panels appear for EA events such as new basket entries, grid additions, CHoCH detections, geometry rejections, and daily drawdown alerts. "Hide Notification Bar" suppresses all notification panels while leaving Journal logging unaffected.


Notification Bar Theme (enum: Dark Theme or Light Theme, default: Dark Theme): Sets the color scheme of the notification panels. "Dark Theme" uses a near-black background with light-colored text. "Light Theme" uses a light grey background with dark text. Text colors automatically adapt to remain readable on whichever background is selected.


Notification Duration (seconds) (double, default: 5.0): How long each notification panel remains visible on the chart before its progress bar depletes and it disappears. Multiple notifications stack vertically and each counts down independently.




TRADING TIME FILTER SETTINGS


Use Trading Time Filter (bool, default: false): When enabled, the EA only opens new baskets during the defined server-time window between Start Hour/Minute and End Hour/Minute. Grid additions to existing baskets, trailing stops, breakeven closes, and daily drawdown protection continue to operate outside trading hours — only new basket signals are blocked.


Start Hour (0-23, Server Time) (int, default: 8): The hour at which the trading window opens, in 24-hour server time. Active only when Use Trading Time Filter is enabled.


Start Minute (0-59) (int, default: 0): The minute component of the trading window start time. Combined with Start Hour to define the exact start of the allowed trading period.


End Hour (0-23, Server Time) (int, default: 20): The hour at which the trading window closes, in 24-hour server time. Active only when Use Trading Time Filter is enabled. Wrap-around windows (e.g., 22:00 to 06:00) are supported — if Start Hour is later than End Hour the filter treats it as an overnight window.


End Minute (0-59) (int, default: 0): The minute component of the trading window end time. Combined with End Hour to define the exact end of the allowed trading period.


Disclaimer:

Grid Scalper MA MT5 EA utilizes a GRID trading approach, which can offer significant profit potential but also carries substantial risks. By opening multiple positions at set intervals, the EA may increase exposure during unfavorable market conditions, such as strong trends or high volatility. While it includes protective features like trailing stops, breakeven closure, optional SL, and caps, these do not eliminate the risk of loss, particularly with aggressive settings (e.g., high multipliers, no caps) or insufficient capital. Users are urged to carefully backtest and optimize all inputs on a demo account before risking real funds. Past performance is not a reliable indicator of future results. Trading involves risk, and losses can exceed your initial investment. Proceed with caution, understanding the grid strategy’s implications, and note that past performance does not guarantee future performance. Best luck.

评分 107
sshhiirraazz
15
sshhiirraazz 2026.07.28 08:35 
 

i tested this in demo. and now i'm using this in my real account

ALen hood
16
ALen hood 2026.07.19 13:29 
 

how can I get the source code? For example, by making a payment?

Suzun1982
26
Suzun1982 2026.07.06 09:59 
 

Very good EA. If you update the version, please give it to me.

推荐产品
PZ Goldfinch Scalper EA MT5
PZ TRADING SLU
3.33 (57)
这是我著名的剥头皮机Goldfinch EA的最新版本,它是十年前首次发布。它以短期内突然出现的波动性扩张为市场提供了头条:它假设并试图在突然的价格加速后利用价格变动的惯性。这个新版本已经过简化,使交易者可以轻松使用测试仪的优化功能来找到最佳交易参数。 [ 安装指南 | 更新指南 | 故障排除 | 常见问题 | 所有产品 ] 简单的输入参数可简化优化 可定制的贸易管理设置 交易时段选择 工作日选择 金钱管理 谨防... ick牛黄牛是危险的,因为许多因素都会破坏收益。可变的点差和滑点降低了交易的数学期望,经纪人的低报价密度可能导致幻像交易,止损位破坏了您获取利润的能力,并且网络滞后意味着重新报价。建议注意。 回溯测试 EA交易仅使用报价数据。请以“每笔交易”模式回测。 它根本不使用HLOC(高-低-开-关)数据 交易时间无关紧要 为了获得更好的性能,请为您希望在每个刻度线模式下交易的每个交易品种运行云优化。稍后分享! 输入参数 触发点:触发点差所需的价格变动。 (预设= 10) 最小时间窗口:价格波动发生的最短时间。 (默认= 3) 最长时间窗口:价格波动发生的最长时间。
FREE
SimpleTrade by Gioeste
Giovanni Scelzi
4 (3)
Discover the power of automated trading with **SimpleTradeGioeste**, an Expert Advisor (EA) designed to optimize your trading operations in the Forex market. This innovative EA combines advanced trading strategies with proven technical indicators, offering an unparalleled trading experience. video backtest :  https://youtu.be/OPqqIbu8d3k?si=xkMX6vwOdfmfsE-A ****Strengths**** - **Multi-Indicator Strategy**: SimpleTradeGioeste employs an integrated approach that combines four main technical ind
FREE
PZ MA Crossover EA MT5
PZ TRADING SLU
4.14 (43)
此 EA 使用移动平均线交叉进行交易。它提供完全可定制的设置、灵活的头寸管理设置,以及许多有用的功能,如可定制的交易时段以及鞅和逆鞅模式。 [ 安装指南 | 更新指南 | 故障排除 | 常见问题 | 所有产品 ] 易于使用和监督 完全可定制的移动平均设置 它实现了两种不同的交易行为 可定制的盈亏平衡、止损、止盈和追踪止损 适用于 ECN/非 ECN 经纪人 适用于 2-3-4-5 位符号 交易可以符合 NFA/FIFO 标准 交易可以在相反的信号上关闭 实现鞅和逆鞅特征 按工作日和小时过滤交易 内置资金管理 EA 实现了四种不同的行为: 常规:在看涨交叉时买入,在看跌交叉时卖出 反向:在看涨交叉时卖出,在看跌交叉时买入 只买:看涨交叉点买入,不考虑看跌交叉点 只卖:在看跌交叉时卖出,不考虑看涨交叉 此外,它还实现了四种不同的资金管理模式: 手动交易手数:EA 将在每笔交易中交易固定手数 自动计算手数:EA 将在每笔交易中承担账户的 % 风险 Martingale:交易失败后,EA 将手数翻倍 逆鞅:交易获胜后,EA 将手数翻倍 输入参数 交易方向 - 按方向过滤交易:多头、空头或两者
FREE
Only Wif
Ivan Pochta
5 (1)
>> Announcements Channel << What if Gold Pump? What if Gold Dump? Fulll version of Wif is available here >> Live Signal >> Exclusive Bonus:   Get special access to   FX Monitor   ( product page >> , contact me for more info) — an advanced monitoring and analytics service for your MT4/MT5 trading accounts. Track performance, analyze results, and manage your portfolio with professional-grade tools included with your purchase. What if the doge just handled it? Only Wif is a free, plug-and-play br
FREE
Gold Adaptive EA MT5 is an automated Expert Advisor for MetaTrader 5 designed for trading Gold (XAUUSD). The EA uses several internal trading models and market filters to adapt to different phases of Gold price movement. Instead of relying on one fixed entry pattern, Gold Adaptive EA MT5 analyzes market behavior and selects suitable logic for trend continuation, impulse moves, pullbacks and selected recovery conditions. The main goal of the Expert Advisor is to provide a structured Gold tradi
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
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
Reversal Composite Candles
MetaQuotes Ltd.
3.69 (16)
该系统的思路是通过计算复合蜡烛来识别反转形态。 反转形态类似日本蜡烛条分析的 "锤头" 和 "吊颈" 形态。但它使用符合蜡烛替代单一的蜡烛,并且不需要复合蜡烛的小实体来确认反转。 输入参数: Range - 最大柱线数量, 计算复合蜡烛时用。 Minimum - 最小复合蜡烛大小 (传统的点数)。 ShadowBig and ShadowSmall - 影线 (复合蜡烛单元)。 Limit, StopLoss and TakeProfit - 开盘价, 止损位和止盈位, 它们是相对于复合蜡烛的收盘价 (复合蜡烛单元)。 Expiration - 订单过期时间 (单位柱线), 用于挂单 (Limit!=0.0)。 反向蜡烛条形态的判别如下。 它计算复合蜡烛参数,其自最后的完整柱线 (索引为 1) 至由 Range 输入参数定义的柱线数量。如果复合蜡烛大小大于由 Minimum 输入参数指定的数值, 它分析复合蜡烛的影线检测反转条件。 空头能量的特征是复合蜡烛的上影线为零, 多头能量的特征是复合蜡烛的下影线为零。 为确认空头趋势反转 (且多头开始),需要以下检查: 下影线的大小 (多头能量
FREE
Brent Trend Bot
Maksim Kononenko
4.5 (16)
The Brent Trend Bot special feature is simple basic tools and logic of operation. There are no many strategies and dozens of settings, like other EAs, it works according to one algorithm. The operating principle is a trend-following strategy with an attempt to get the maximum profitability adjusted for risk. Therefore, it can be recommended for beginners. Its strong point is the principle of closing transactions. Its goal is not to chase profits, but to minimize the number of unprofitable trans
FREE
Auric Mohd iK
Md Iqbal Kaiser
AURIC MOHD-iK is a dynamic, logic-based Expert Advisor (EA) engineered specifically for trading XAUUSD (Gold). Unlike standard trading systems that rely on lagging, unreliable indicators, this EA operates purely on clean price logic—executing trades the way an experienced human trader naturally reads the market. This version is completely free with limitations, offering permanent value to your trading setup with zero hidden costs. Active Auric Mode That's it!!!!!!!!!! Core Trading Parameters Ac
FREE
Gap Catcher
Mikita Kurnevich
5 (5)
Read more about my products Gap Cather - is a fully automated trading algorithm based on the GAP (price gap) trading strategy. This phenomenon does not occur often, but on some currency pairs, such as AUDNZD, it happens more often than others. The strategy is based on the GAP pullback pattern. Recommendations:  AUDNZD  TF M1  leverage 1:100 or higher  minimum deposit 10 USD Parameters:  MinDistancePoints - minimum height of GAP  PercentProfit - percentage of profit relative to GAP level
FREE
Golden Square X
Huynh Tan Linh N
4.18 (11)
This is my latest Free version for Gold. With optimized parameters and user-friendly features, this version is likely very easy to use and highly effective. You can customize TP and SL parameters as you wish, but the default settings should work well for you without the need for further adjustments.  This version is designed for the M5. This version does not require a large capital investment; only $100-$200 is sufficient for Golden Square X to run and generate profits for you. Based on backtest
FREE
King Experts V2
Craig Alden Matteo
King_Expert EA - Professional Trading System Overview King_Expert EA is a sophisticated automated trading system for MetaTrader 5 that combines trend-following strategies with intelligent risk management. The EA uses a multi-layered approach to identify high-probability trading opportunities while incorporating advanced features like grid averaging and dynamic position management. Core Trading Strategy Primary Signal Generation EMA Crossover System : Uses dual Exponential Moving Averages (21/50
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
Jireh Fair Value Gap EA
Jesse De Souza Ferreira
Jireh Fair Value Gap EA 免费首发版本——欢迎下载、测试,并通过您的反馈共同完善本项目。 Jireh Fair Value Gap Trader EA 是一款自动化交易系统,可自动识别 Fair Value Gap(FVG,公允价值缺口) ,并在价格回补缺口时自动执行交易。 该EA基于 Smart Money Concepts(SMC) 理念,结合多种趋势确认、波动率过滤和风险管理功能,为交易者提供稳定、灵活且高度可配置的自动交易解决方案。 无论您是希望实现交易自动化的新手,还是正在寻找专业FVG交易系统的资深交易者,本EA都能够满足不同市场和交易风格的需求。 主要功能 自动识别 Fair Value Gap(FVG) 自动执行买入和卖出交易 固定手数或动态仓位管理 基于 ATR 的止损计算 可配置的风险收益比止盈 自动 Break Even(保本止损) 高周期趋势过滤(HTF Trend Filter) 成交量过滤 ATR 距离过滤 市场重新开盘过滤 周五风险控制 每个 FVG 仅允许一次交易 自动管理
FREE
GA Classic RSI mt5
Osama Echchakery
RSI   EA is a   fully automated   Forex trading strategy based on the MACD indicator, one of the most popular and widely used trend-following methods in technical analysis. This expert advisor automatically opens and manages buy and sell trades using RSI to capture market momentum while removing emotional decision-making. Premium advanced   version with   +40 filter!   :   Click Here Or search "RSI ProLab mt5" on the market
FREE
The king tut
Ibrahim Murad Ibrahim Awad
KING TUT v1.0 Algorithmic Expert Advisor for MetaTrader 5 Available for MetaTrader 5 (MT5) and MetaTrader 4 (MT4) Overview KING TUT v1.0 is an Expert Advisor developed for XAUUSD. The strategy focuses on selective, high-quality trade entries rather than frequent market activity. Positions are opened only when predefined conditions for trend, momentum, volatility, and market structure are simultaneously satisfied. Periods without trades are normal and reflect the strategy design. Trading Logic •
FREE
Nikkei225 Gap ContinuationEA
Francesc Jordi Mallol Nolden
Nikkei 225 Gap Continuation EA Automated opening-gap continuation strategy for the Nikkei 225 Nikkei 225 Gap Continuation EA is an automated trading system for MetaTrader 5 designed specifically for the Japanese stock index. It searches for significant opening gaps and enters only when price action confirms a possible continuation in the same direction. The strategy combines the opening gap, a configurable opening range and session VWAP confirmation. It also includes risk-based position sizing,
FREE
Grid Hlevel MT5
Sergey Ermolov
4.56 (34)
MT4版本  |  Valable ZigZag指標   |  FAQ Grid HLevel   Expert Advisor   非常適合那些希望每月在外匯市場上獲得穩定利潤的交易者。   Expert Advisor   根據平均策略工作 , 我建議您正確使用它。 “ 正確 ” 使用它意味著以市場反轉點的平均數開倉 , 並且僅在全球趨勢的方向上交易。   至於主要趨勢的方向 , 我建議通過時間框架   H4   上的   Valable ZigZag   指標來確定。   指標更難確定市場可能發生變化的水平 , 因此我建議交易者在圖表上手動設置它們 , 以便使用平均訂單更準確地進入市場。 因此 , 我想向您介紹   Grid HLevel   Expert Advisor -   一種以手動設置的支撐和阻力水平進行交易的   Expert Advisor 。 注意力 !!!   Grid HLevel EA   不是全自動的 , 而是半自動的。   所以不要指望你把它放在你的帳 戶 上什麼都不做 , 每天一次你必須為它的正確操作設置新的級別。     如何使用   Exper
FREE
Morning Range Breakout (Free Version) Morning Range Breakout (Free Version) is a straightforward trading advisor that implements a breakout strategy based on the morning range. It identifies the high and low within a specified time interval (e.g., 08:00–10:00 UTC) and opens a trade on a breakout upward or downward. The free version includes core functionality without restrictions. All parameters and messages are in English, per MQL5 Market requirements. Key Features Detects morning range based
FREE
Alligator Joe
Alexandre Vincent Traber
Overview Alligator Joe 是一款基于经典 Alligator 指标(Jaw、Teeth、Lips)构建的趋势对齐型智能交易系统。它会等待三条线出现全新的对齐——而不是已经持续了一段时间的对齐——然后顺着该趋势方向入场。持仓不是一次性固定平仓,而是随着价格逐步跌回每条线时分三个阶段逐步平仓。 How it works EA 检查最近一根收盘K线:Lips、Teeth、Jaw 是否完全对齐(多头或空头)? 确认该对齐是全新的——几根K线之前并未出现——从而避免在行情已经延伸很远时入场。 当价格收盘价突破 Lips 且方向与趋势一致时,确认入场。 在 Jaw 之外设置一个较宽的保护性止损,作为最后的安全网。 随着趋势减弱分三个阶段离场:价格收盘价跌回 Lips 时平掉三分之一仓位,跌回 Teeth 时再平掉三分之一,跌回 Jaw 时平掉剩余仓位。 内置面板实时显示三条线的对齐状态,以及当前回撤和净利润。 Inputs General Magic Number Trade Comment Alligator Jaw Period Jaw Shift Teeth Perio
FREE
EA16 Taka Grid
Nhat Tien Duong
TAKA Grid EA (EA16): The Sideway King & Prop Firm Shield Are you tired of EAs that get destroyed by choppy, ranging markets? Meet TAKA Grid EA , the ultimate mean-reversion system designed specifically for the AUDNZD cross pair on the M15 timeframe. It doesn't rely on explosive breakouts; it dominates the sideways chop with mathematical precision.   ENTER YOUR KEY HERE:   [  EA16_99999D_TANINCODER_595559587987 ] -- MANDATORY: ALLOW WEBREQUEST TO ACTIVATE THE BOT To verify your License
FREE
BB Strategy V5.01 Advanced Bollinger Bands Grid Expert Advisor BB Strategy V5.01 is a fully automated Expert Advisor for MetaTrader 5 that combines Bollinger Bands mean-reversion trading, percentage-based grid management, advanced entry filtering, and intelligent risk control. The EA is designed to identify temporary market overextensions and capture high-probability reversal opportunities while filtering out low-quality entries that often occur during strong trending conditions. Unlike traditio
FREE
NasCore Scalper
Mbuso Nkosi
3 (1)
Welcome to the future of algorithmic trading. The Nascore Scalper EA is a precision-engineered, AI-inspired scalping robot built exclusively for trading NAS100 (US Tech 100 Index) . It analyzes smart money footprints, breakout zones, and high-timeframe bias to capture high-probability scalping entries. Key Features: Optimized for NAS100 (US100) – Fast-moving Nasdaq-based index trading Smart Money Concepts – Integrates structure, breakout logic, and bias Minimal Margin Usage – Ideal for traders
FREE
Go Long Advanced
Phantom Trading Inc.
4.78 (9)
Go Long EA实现了基于系统性日间交易原则的高级日内交易策略,具有多重技术确认。虽然许多交易者寻求复杂的算法,但该EA将简单而有效的概念与复杂的风险管理和多重技术过滤器相结合。 该EA每天在特定时间开仓,但仅在市场条件符合多个技术指标时才会执行。这种系统性方法有助于捕捉日内行情,同时避免过夜持仓成本侵蚀利润。EA会在预设时间自动平仓,这对想要避免过夜风险的交易者来说是理想之选。 该EA的特别之处在于其自适应风险管理系统。持仓规模根据多个因素自动调整: - 基础资金和风险百分比设置 - 技术指标条件(均线、RSI、MACD等) - 在条件特别有利时增加持仓规模的特殊乘数 该EA包含多个可启用/禁用的技术过滤器: - 移动平均线(MA)过滤器,带价格关系检查 - RSI超卖条件和乘数 - MACD趋势确认 - ATR波动率过滤器 - 布林带位置验证 - ADX趋势强度确认 - 动量确认 - 随机指标超卖条件 - 一目均衡表云图位置验证 - 摆动模式识别 <资金管理设置> 基础资金:风险计算的基础资金 风险百分比:每笔交易基础资金的风险百分比 获利百分比:止盈距离(0 = 禁
FREE
UsdJpy RangeBot Pro
Kwaku Appenteng Wiredu
UsdJpy RangeBot Pro – Expert Advisor for Breakout Trading UsdJpy RangeBot Pro is a breakout-based Expert Advisor developed for the USDJPY pair. It identifies trading opportunities during the early hours of the London session by analyzing a defined range and executing pending orders above or below it. The EA applies fixed logic, clear visual elements, and built-in risk controls. This tool is designed for disciplined breakout trading without the use of breakeven, martingale, or grid systems.
FREE
EV Divergence Sniper
Enrique Valeros Muriana
EV Divergence Sniper is a precision-oriented Expert Advisor designed to identify high-probability market reversals through true price divergences confirmed by RSI and Stochastic. The system focuses on structural market conditions and enters only when price and momentum show a clear imbalance, significantly reducing false entries and improving signal quality. The EA uses a structural stop loss placed beyond the most recent swing, combined with a fully customizable risk-to-reward take profit. It i
FREE
WaveTraderMA
ANTON KOMISSARENKO
F ully automated trading system based on the Moving Averages indicator. It supports three classic trading signals and uses a flexible position management system. It is suitable for various trading instruments and adapts to any market conditions. Key features Three entry signals for flexible strategy customization Three types of entry orders: Market order Pending market stop Limit market order Trading time configuration – up to six time intervals Closing orders after a specified number of bars F
FREE
PZ Fractal Trader EA MT5
PZ TRADING SLU
3.2 (5)
This EA trades untested fractals using pending orders. It offers many trading behaviors and flexible position management settings, plus many useful features like customizable trading sessions and a martingale mode. [ Installation Guide | Update Guide | Troubleshooting | FAQ | All Products  |  Get Help ] Easy to use and supervise It implements 4 different trading behaviors Customizable break-even, SL, TP and trailing-stop Works for ECN/Non-ECN brokers Works for 2-3-4-5 digit symbols Trading ca
FREE
DeM Expert
Nikolaos Pantzos
DeM_Expert   is structured based on a specific technical analysis indicator ( DeMarker ). It has many parameters so that each user can find the appropriate settings that suit their investment profile. It can work on 28 different pairs, one pair per chart. The default parameter settings are indicative, I recommend that each user experiment to find their own settings.
FREE
该产品的买家也购买
Quantum Titan MT5
Bogdan Ion Puscasu
Quantum Titan 将机构级交易引入 Quantum 生态系统,为精准度、纪律性和经证实的实时市场表现树立了新的标准。 Titan 是为那些对黄金智能交易系统有更高期望的交易者而开发的,代表了量子交易技术的下一个发展阶段。 全球终身授权数量严格限制在 1000 个。 当1000份全部售罄后,《量子泰坦》将不再发售。 特价上市优惠价。最终价格 1999 美元。 只需5万美元初始投资即可获得实时信号:   点击此处 Quantum Titan MQL5 公共频道:   点击此处 ***购买 Quantum Titan MT5,即有机会免费获得 Quantum Emperor、Quantum King、Quantum Bitcoin、Quantum Baron、Quantum Valkyrie、Quantum OmniGold、Quantum Athena X 或 Quantum Starman!*** 详情请私信咨询! 隆重推出量子泰坦 Quantum Titan 是我从未打算公开发布的黄金级智能交易系统。 几个月来,我一直用自己的资金私下交易 Titan,并且
Quantum Queen X MT5
Bogdan Ion Puscasu
5 (24)
传奇仍在继续。女王不断进化。 欢迎来到 Quantum Queen X——传奇黄金交易系统的下一代产品,它建立在 Quantum Queen 已证明的成功之上。 Quantum Queen X 基于与 Quantum Queen 相同的成熟核心引擎构建,引入了强大的全新自定义模式,允许交易者精确选择要启用或禁用的策略。 每项策略都经过单独审查、改进和优化,以在不同的市场环境下提供更佳的性能和适应性。默认预设也得到了增强,现在包含 9 项精心挑选的策略,而非之前的 7 项,从而提供更广泛的市场覆盖和更多交易机会,同时保留了使 Quantum Queen X 成为 MQL5 平台上最成功的黄金智能交易系统的严谨交易理念。 IMPORTANT! After the purchase please send me a private message to receive the installation manual and the setup instructions 折扣价   价格 。     每购买 10 件,价格将上涨 50 美元。最终价格为 1999 美元。 实时信号 IC Ma
Smart Gold Hunter
Barbaros Bulent Kortarla
4.93 (28)
Smart Gold Hunter 是一款用于 MetaTrader 5 的 XAUUSD / Gold 交易 Expert Advisor。它适合希望使用无网格、无马丁格尔、真实 Stop Loss 和 Take Profit 逻辑,并且重视风险控制的黄金交易者。 您可以在购买前查看实时信号: Live Signal - IC Markets: https://www.mql5.com/en/signals/2365400?source=Site +Signals+My Live Signal - Ultima Markets: https://www.mql5.com/en/signals/2376242?source=Site +Signals+My Smart Gold Hunter 不是网格 EA,也不是马丁格尔 EA。它不依赖无限加仓、恢复单或亏损后加倍手数。EA 的主要思路是用受控逻辑、保护设置和真实交易管理来交易黄金,而不是使用高风险的平均加仓方式。 该 EA 主要为 XAUUSD / Gold 设计。您可以将其用于 XAUUSD 或经纪商提供的黄金品种,例如 XAUU
Scalping Robot Pro MT5
MQL TOOLS SL
4.46 (138)
Scalping Robot Pro is a professional trading system designed specifically for fast and precise scalping on XAUUSD using the M1 timeframe. The system is built to capture short term market movements with accurate execution and controlled risk management. It focuses on real time price behavior, momentum shifts, short term volatility, and selective grid based trade management techniques to identify high probability trading opportunities in the gold market. Scalping Robot Pro is optimized for traders
The Gold Reaper MT5
Profalgo Limited
4.47 (103)
道具公司已准备就绪!( 下载道具文件 ) 警告: 目前仅剩少量存货! 最终价格:990美元 免费获得 1 个 EA(适用于 3 个交易账户)-> 购买后请联系我 超值组合优惠   ->   点击这里 加入公开群组: 点击此处   实时信号 客户端信号 YouTube 评论 最新手册 欢迎来到黄金收割者! 这款EA是在非常成功的Goldtrade Pro的基础上开发的,设计用于同时在多个时间框架上运行,并且可以选择将交易频率设置为从非常保守到极度波动。 该EA使用多种确认算法来寻找最佳入场价格,并在内部运行多种策略来分散交易风险。 所有交易都有止损和止盈,但同时也使用追踪止损和追踪止盈来最大限度地降低风险,并最大限度地提高每笔交易的潜力。 该系统基于非常流行且行之有效的策略:交易突破重要支撑位和阻力位的交易机会。   黄金非常适合这种策略,因为它是一种波动性很高的货币对。 系统会根据您的账户规模和最大允许回撤设置自动调整交易频率和手数! 回测结果显示增长曲线非常稳定,回撤幅度控制得非常好,恢复速度也很快。  这款EA已经针对黄金进行了最长时间的压力测试,使用了多个经纪商的多个价格
Ultimate Breakout System
Profalgo Limited
5 (46)
重要的 : 此套装将仅以当前价格出售,且数量非常有限。    价格很快就会涨到 1999 美元    包含 +100 种策略 ,未来还会有更多! 奖励 :价格为 1499 美元或更高 --> 免费选择我的其他  5  个EA! 所有设置文件 完整的设置和优化指南 视频指南 实时信号 审查(第三方) NEW - 44-STRATEGIES LIVE SIGNAL 欢迎来到终极突破系统! 我很高兴向您介绍终极突破系统,这是经过八年精心开发的先进且专有的专家顾问 (EA)。 该系统已成为 MQL5 市场上多个顶级 EA 的基础,包括广受好评的 Gold Reaper EA、 连续七个多月保持第一的位置,以及 Goldtrade Pro、Goldbot One、Indicement 和 Daytrade Pro。 终极突破系统不仅仅是另一个 EA。 它是一种专业级工具,旨在帮助交易者在任何市场和时间范围内创建无限数量的突破策略。 无论您专注于波段交易、剥头皮交易还是构建多元化投资组合,该系统都能提供无与伦比的灵活性和定制性。 可能性无穷无尽! 对于自营公司交易者:   有了这个系统
Zoomini
Gennady Sergienko
5 (5)
重要信息: 支持和问题解答仅在这里提供:  https://www.mql5.com/en/users/zolia  ( Zolia - UTC/GMT: 台湾 ); Zoomini 是 GoGoPips 项目 2026 年 7 月最新研究中的一小组机器学习模型。 这些模型仅适用于 XAUUSD H1 / Gold 。 信号: www.mql5.com/en/signals/2381994 需要了解的重要事项: 这些模型只使用 一个订单 进行交易,并采用相同的 SL/TP。 支持: Netting 账户 和任何杠杆。 支持大额入金,因为交易类型为中期交易。  100% 交易活跃度 。 这意味着模型不会回避入场,并且始终处于交易状态。 这些模型经过专门训练,不是寻找方便的入场点,而是每分钟预测价格方向。 购买前完全透明 。   目前,暂时,或如果该 EA 的所有者不反对则永久,该 EA 的模型正在我们公开的 Live 排行榜上交易: 所有统计数据、所有交易,无延迟、无过滤。 购买此 EA 时,您将有机会获得新研究中的模型,该研究计划在今年 8 月完成。 这些模型背后的研究是
Lizard
Marco Scherer
4.24 (38)
LIZARD 是什么? Lizard 是一款全自动智能交易系统(EA),专为 MetaTrader 5 上的 XAUUSD(黄金)开发。它采用多策略摆动突破系统,识别图表上的关键结构位,并在精确计算的入场点放置挂单止损单。无马丁格尔。无网格。不加仓摊平。 每笔交易都设有明确的 Stop Loss 和 Take Profit,并由多层退出系统全天候自动管理。 实盘信号 - 购买前追踪真实表现: https://www.mql5.com/en/signals/2372821 工作原理 Lizard 在 H1 时间框架上持续扫描 XAUUSD 图表,寻找重要的摆动高点和摆动低点。当识别到有效结构时,它会在距离该价位经校准的位置放置 Buy Stop 或 Sell Stop 挂单。需要真正的突破才能触发,而非价格的简单触碰。 这种方法可过滤掉弱势行情,仅在动能确认时入场。 6 个独立策略在 H1 时间框架上同时运行,每个都拥有各自的 Stop Loss 和 Take Profit、追踪系统、magic number 和风险权重。 主要功能 多策略架构: 六个单独优化的策略覆盖不同的市场状况,从
Adaptive Gold Scalper Important Pre-notice: This strategy requires a long period of practical verification, and favorable trading returns cannot be guaranteed in the short run. Traders must select brokers with ultra-low order latency, minimal slippage and zero/low stop level requirement; poor broker conditions will lead to disastrous trading results. I have over 14 years of professional trading experience. With proper brokerage conditions and sufficient running time, this fully automated scalpi
ThunderGold Scalper
Jorge Luiz Guimaraes De Araujo Dias
5 (4)
ThunderGold Scalper ThunderGold Scalper 是一款专为 MetaTrader 5 黄金自动交易开发的智能交易系统。 该 EA 适用于 M15 周期的 XAUUSD 和 GOLD。系统通过专有的多因素决策引擎识别符合条件的交易机会,并自动管理交易仓位。 系统综合分析市场结构、趋势方向、K线质量、成交量、动量以及交易执行条件。它会耐心等待合适的市场环境,而不是持续频繁开仓。 Live Signal — TMGM 主要功能 专为 XAUUSD 和 GOLD 开发 推荐周期:M15 全自动交易 不使用网格策略 自动 Stop Loss 和 Take Profit 动态移动止损 按风险比例或固定手数计算仓位 趋势和动量过滤器 K线质量和成交量过滤器 高影响力新闻过滤器 节假日和市场关闭保护 滑点调整系统 每日交易次数限制和冷却机制 信息交易面板 针对 Exness 的自动点数调整 推荐交易条件 ThunderGold Scalper 对点差、滑点、流动性和执行速度较为敏感,因此经纪商的交易条件可能会显著影响结果。 该 EA 已在以下经纪商环境中进行测试: TM
TwisterPro Scalper
Jorge Luiz Guimaraes De Araujo Dias
4.43 (130)
更少交易。更好交易。稳定性高于一切。 • 实时信号 模式 1 实时信号 模式 2 Twister Pro EA 是一款专为 XAUUSD(黄金)M15 时间框架开发的高精度剥头皮智能交易系统。交易次数少——但每次交易都有目的。 每笔入场在开仓前须通过 5 个独立验证层,默认配置下胜率极高。 两种模式: • 模式 1(推荐)— 极高胜率,每周交易次数少。专为资金保护和纪律性交易而设计。 • 模式 2(短止损)— 止损幅度显著缩短,交易次数多于模式1。每笔亏损极小。适合希望在受控风险下增加市场曝光的交易者。 规格参数: 交易品种:XAUUSD | 时间框架:M15 最低入金:$100 | 推荐:$250 RAW SPREAD 账户必须使用 强烈推荐 VPS 无网格!每笔交易均设有止盈和止损! 推荐券商: Exness Raw | Vantage | Fusion Markets 购买后发送消息即可获得: 完整用户指南 专属奖励 过往业绩不代表未来结果。请理性交易。
Logan MT5
Thierry Ouellet
5 (21)
LIMITED TIME OFFER AT 289$ Price will go up at  499$ on August 10th! Logan MT5 isn't your typical Gold Grid EA that blindly opens trade after trade, consuming your margin and putting your capital at unnecessary risk. Instead, it patiently waits for high-probability entry opportunities and uses an intelligent recovery system that combines ATR-based grid spacing with dynamic lot progression . This allows it to withstand adverse market movements that would wipe out most conventional grid EAs—incl
Quantum King EA
Bogdan Ion Puscasu
4.96 (213)
Quantum King EA — 智能力量,为每一位交易者精炼 IMPORTANT! After the purchase please send me a private message to receive the installation manual and the setup instructions. 特别推出价格 直播信号:       点击这里 MT4版本:   点击此处 量子王者频道:       点击这里 ***购买 Quantum King MT5 即可免费获得 Quantum StarMan !*** 详情请私讯询问! 用精确和纪律来管理您的交易。 Quantum King EA 将结构化网格的优势和自适应 Martingale 的智能融入一个无缝系统 - 专为 M5 上的 AUDCAD 设计,专为希望实现稳定、可控增长的初学者和专业人士打造。 Quantum King EA 是针对 M5 时间范围内的 AUDCAD 对开发的全自动交易系统。 它将网格策略的结构与马丁格尔的自适应恢复逻辑相结合,形成了一个在所有市场阶段智能管理交易的系
Smart Gold Impulse
Barbaros Bulent Kortarla
4.11 (19)
Smart Gold Impulse 现巴进入特别早鸟发布阶段。 这是我目前正在使用的 EA,并在我的 Ultima Markets 实盘信号账户上取得了令人瞩目的成绩。您可以通过 Ultima 的实盘信号结果来查看当前表现,Smart Gold Impulse 在真实的市场环境下已经展现出了非常强劲的潜力。我的 Ultima 实盘信号账户所使用的同款设置文件(set file),将仅分享给 Smart Gold Impulse 的购买者。 同时,这仍然是一个发布初始版本,而不是完全进入大众推广阶段的最终产品。之所以给出特别的发布优惠价,原因很简单:我希望早期用户能够对其进行测试、跟进结果、分享反馈,并帮助我了解 Smart Gold Impulse 在不同经纪商和账户条件下的表现。 任何人都可以在这次早鸟发布期间购买 Smart Gold Impulse 并获得我的直接支持。但是,只有 Smart Gold Hunter 的持有者才会被邀请加入特别改进小组,我们将在那里共同讨论经纪商表现、设置、更新、设置文件以及未来的优化方案。 到目前为止,我自己团在 Ultima 上的结果非常强
Quantum Athena X
Bogdan Ion Puscasu
5 (3)
更智能的控制,更精准的操控。 欢迎来到 Quantum Athena X——新一代专注于黄金交易的系统,它在 Quantum Athena 的精准性、效率和纪律性执行的基础上更进一步。 Quantum Athena X 基于与 Quantum Athena 相同的精简核心引擎和精心挑选的 6 种策略构建而成。每项策略都针对当前的黄金市场状况进行了单独优化和改进,而全新的强大自定义模式则允许交易者精确选择启用或禁用哪些策略。 对于喜欢即插即用体验的交易者,原有的优化配置仍然可用;而对于想要创建自己个性化策略组合的交易者,自定义模式则提供了更大的灵活性。 IMPORTANT! After the purchase please send me a private message to receive the installation manual and the setup instructions. 折扣价   价格 。     每购买 10 件,价格将上涨 50 美元。最终价格为 1999 美元。 实时信号 IC Markets:       点击这里 Quantum A
Gold Snap
Chen Jia Qi
4.47 (17)
Gold Snap — 黄金快速利润捕捉系统 实盘信号: https://www.mql5.com/en/signals/2362714 实盘信号2: https://www.mql5.com/en/signals/2372603 实盘信号 v2.0: https://www.mql5.com/en/signals/2379945 当前价格仅剩 3 份。价格很快将上涨至 $999。 重要: 购买后请通过私信联系我们,以获取用户指南、推荐设置、使用说明以及更新支持。 https://www.mql5.com/en/users/walter2008 欢迎加入我们的 MQL5 频道,获取产品更新与交易见解。 https://www.mql5.com/en/channels/tendmaster 在 Gold House 的长期研发与实战验证中,我们进一步确认了突破策略在黄金市场中的有效性,也验证了我们自适应参数系统在真实市场环境中的实际价值。 但对于突破系统来说,始终存在一个现实问题: 止盈太早,容易错过后续真正的大行情; 止盈太晚,又往往会经历一定程度的利润回吐。 这不是某一种策略独有
Zerqon EA
Vladimir Lekhovitser
3.43 (28)
实时交易信号 交易活动的公开实时监控: https://www.mql5.com/zh/signals/2372719 官方信息 卖家资料 官方频道 用户手册 安装说明和使用指南: 查看用户手册 Zerqon EA 是专为 XAUUSD 交易开发的自适应专家顾问。 该策略基于通过 ONNX 集成的 Deep LSTM 神经网络模型,使系统能够处理连续性的市场行为并以结构化方式分析价格动态。 该模型专注于识别黄金价格走势、波动性以及时间条件中的特定模式。 与传统固定信号不同,EA 通过训练后的神经网络框架分析市场,仅在内部模型识别到合适条件时才执行交易。 Zerqon EA 不会持续不断地进行交易。 某些时期可能完全没有任何交易,而在适合的 XAUUSD 市场阶段,系统可能会在较短时间内执行多笔交易。 每笔交易均带有预定义的 Stop Loss 和 Take Profit 参数。 同时还使用追踪止损机制来动态管理持仓。 该 EA 适用于偏好基于神经网络的黄金交易方式、重视执行控制以及接受可变交易频率的用户。 主要特点 不使用高风险交易技术,如马丁格尔 (M
Gold Neural Core
TICK STACK LTD
5 (8)
Launch Offer:   Grab Gold Naural Core and bundle it with   XAU Momentum   and get 2 free EAs of your choice from my entire MQL5 store. DM me for details. Learn how I personally manage risk when using grid systems:  https://www.mql5.com/en/blogs/post/767250 Read the user guide to any TickStack grid system:  https://www.mql5.com/en/blogs/post/767232 Gold Neural Core — Hyper-Scalping Grid System for XAUUSD Gold Neural Core is a high-frequency grid trading system engineered specifically for gold (X
Nexorion Initium Novum EA
Valentina Zhuchkova
4.32 (25)
NEXORION: Initium Novum — 确定性逻辑与算法综合体系 NEXORION 是一款基于严密流动性处理数学算法的机构级分析系统。该项目的核心理念是“计算透明化”:交易型 EA 将混沌的价格流转化为结构化的几何区域,并将决策过程直接在交易图表上进行可视化呈现。 实时信号监控 https://www.mql5.com/en/signals/2378408 https://www.mql5.com/es/signals/2372338 系统技术规格 交易资产 :XAUUSD (黄金) 运行周期 :H1 (1小时图) 核心方法论 :机构流动性分析与确定性逻辑 (Institutional Liquidity Analysis & Deterministic Logic) 决策依据 :流动性池与平衡水平的数学计算 数学架构与可视化 本系统的关键创新在于 动态计算映射 (Dynamic Computation Mapping) 。算法不仅是分析价格,更是通过以下模块构建市场的数学模型: 流动性追踪 (Liquidity Tracking) :基于市场阶段的深度分析,精确识别买
Quantum Emperor MT5
Bogdan Ion Puscasu
4.86 (507)
介绍     QuantumEmperor EA 是一款突破性的 MQL5 专家顾问,它正在改变您交易著名的 GBPUSD 货币对的方式!由拥有超过13年交易经验的经验丰富的交易者团队开发。 IMPORTANT! After the purchase please send me a private message to receive the installation manual and the setup instructions. ***购买 Quantum Emperor EA,即可免费获得  Quantum StarMan  !*** 私信询问更多详情 已验证信号:   点击此处 MT4版本:   点击这里 量子 EA 通道:       点击这里 每购买 10 件,价格将增加 50 美元。最终价格为 1999 美元 量子皇帝EA     采用独特的策略,将单笔交易连续拆分成五笔较小的交易。这意味着每次 EA 执行一笔交易时,它都会自动将其拆分成五个较小的仓位。 量子皇帝EA     量子帝王EA凭借其卓越的亏损交易处理方法,在众多专家顾问中脱颖而出。
Pulse Engine
Jimmy Peter Eriksson
4 (36)
最新消息——目前仅剩少量存货,欲购从速! 该系统的主要目标是在不使用任何有风险的鞅或网格的情况下实现长期的实时性能。  数量极其有限,现价优惠 最终价格 1499 美元 【实时信号】    |    【回测结果】    |    【设置指南】    |    【FTMO 结果】 一种不同的交易方法 Pulse Engine 不使用任何指标或特定时间框架。它采用了一种非常独特的方法,这是 MQL5 上任何其他交易系统都不采用的方法。 它交易的是日内方向性模式。这些模式是我利用自己多年来不断开发和完善的特定模式识别软件发现的。 该软件使我能够识别出市场历史上在一天中哪些时段会出现强劲的单向波动。 每个市场和每周的每一天都有其独特的走势。 这种方法之所以如此强大,是因为它不依赖于市场是处于趋势行情、反转行情还是任何特定的市场状态。其模式与这些因素完全无关。 脉冲引擎包含涵盖 六大市场的 70 多种不同模式 ,并结合超过 5万笔 交易的历史回测数据。 每个市场的回测时间均尽可能追溯至数据允许的最长时期, 外汇货币对约 20年,指数约 15 年, 加密货币 约10 年。这确保了极高的统计显
XT Bitcoin Robot MT5
MQL TOOLS SL
5 (4)
XT Bitcoin Robot is an advanced  automated trading system  designed specifically for  BTCUSD traders  who want to take advantage of Bitcoin's market volatility without the need for constant market monitoring. The robot continuously analyzes market conditions and automatically executes trades based on its built in trading logic, helping traders stay active in the market 24 hours a day without manual intervention. The system is designed to identify trading opportunities and manage positions accor
XG Gold Robot MT5
MQL TOOLS SL
4.31 (113)
The XG Gold Robot MT5 is specially designed for Gold. We decided to include this EA in our offering after extensive testing . XG Gold Robot and works perfectly with the XAUUSD, GOLD, XAUEUR pairs. XG Gold Robot has been created for all traders who like to Trade in Gold and includes additional a function that displays weekly Gold levels with the minimum and maximum displayed in the panel as well as on the chart, which will help you in manual trading. It’s a strategy based on Price Action, Cycle S
Chiroptera
Rob Josephus Maria Janssen
4.64 (47)
Prop Firm Ready! Chiroptera is a non-martingale, non-grid, multi-currency Expert Advisor that operates in the quiet hours of the night. It uses single-placed trades (of all 28 pairs!) with tactically placed Take Profits and Stop Losses, that are continuously adjusted to maximize gains and minimize losses. It keeps track of past and upcoming news reports to ensure impacts are minimized and carefully measures real-time volatility to prevent impacts due to unpredictable geo-political disturbances c
Wave Rider EA MT5
Adam Hrncir
4.89 (46)
Scalper speed with sniper entries. Built for Gold. Tired of all the fake EAs that eventually disappear? Most authors just create another EA when it fails - I wanted to do it differently. Wave Rider is my personal project built out of passion - honest, transparent EA without any fake AI or manipulated back-test that's been continuously updated for more than 6 months, that I am using myself from very first day. Check the Live signal  or Manual  or  Broker performance Version 5.x upgrade notice: Cl
Range Breakout EA with Range Filters
Jimmy Peter Eriksson
4.5 (20)
更新:下一价格:599 美元,最终价格:999 美元 如果您重视诚实和为真实交易而构建的真正交易系统,而不是一个看起来完美无瑕但最终可能导致账户爆仓的直线回测,那么这可能适合您。 无马丁格尔/无网格 22个月实时信号 +250% 实时增长 【实时信号】    |  【FTMO 结果】    |  【主投资组合】  |  【回测指南】 为什么 Range Breakout EA 如此稳定? Range Breakout EA 基于一种众所周知的市场行为:交易时段之间的波动性变化。 亚洲交易时段的波动性通常较低,形成一个狭窄的价格区间。伦敦交易时段开盘后,波动性增加,价格往往会突破该区间 并继续朝突破方向移动。 该系统会交易这种突破,并在当天晚些时候波动性开始减弱时平仓。 它不使用指标或固定时间框架,这有助于减少过拟合。系统内部使用突破过滤器来避免低质量的突破交易。 该策略在 XAUUSD、USDJPY、BTCUSD、US30 和 DE40 等货币对上表现尤为出色。 同时交易多个市场可以实现强大的分散风险能力。 加入社区! 公众社区:  点击这里! 请私信我并附上购
SomaOil
Andrii Soma
5 (2)
SomaOil 是 MetaTrader 5 的多策略突破 EA 交易,专为 WTI 原油 (XTIUSD) 打造。一张图表、一张 EA、20 个独立策略一起作为一个多元化投资组合运行。 实时信号。 为了使其在发布时就可以使用,我使用了透明的、逐步调整的定价模型: 发布价:100 USD(48 小时) 从周一起,每售出 10 份价格上调 100 USD 即使同一天售出超过 10 份,价格每天最多上调一次 早期买家锁定产品生命周期内最优惠的价格。 概念 SomaOil 没有运行往往会过度适应狭窄市场体系的单一设置,而是附带了一组精心策划的 20 个预先调整的策略,这些策略全部在单个 WTI 图表上的单个 EA 下并行运行。 每个策略都有自己的神奇数字、评论、时间范围、波动检测参数、退出、新闻距离和批次步骤。它们共享相同的执行引擎,但独立交易,因此您无需管理数十个图表即可跨时间范围和突破广度获得真正的多元化。 作品集创建 我对两个互补的样本内范围进行了优化,每个范围都具有相同的参数网格: 5组时间范围:D1、H12、H8、H4、H1 三种突破宽度变体: V1 广泛:更宽的波动,更少但更强的
Obsidian Flow Atlas EA
Valentina Zhuchkova
5 (7)
Obsidian Flow Atlas EA 精准 · 结构 · 执行 金融市场不会奖励情绪化的交易。 市场奖励的是纪律、稳定性,以及基于客观数据做出决策的能力。 Obsidian Flow Atlas EA 正是基于这一理念而开发。 这是一套面向 MetaTrader 5 的全自动交易系统,专为以下两种全球最受欢迎的交易品种而设计: • XAUUSD(黄金) • EURUSD(欧元兑美元) 系统能够自主分析市场环境、开仓并管理仓位,依靠其内部交易逻辑和内置风险管理模型独立运行。 您无需长时间盯盘、寻找入场机会或手动做出交易决策。 只需安装 EA,选择适合您的风险等级,然后让系统完成其余工作。 经验证的真实交易表现 为了确保最大程度的透明度,系统的实际交易表现可通过以下公开信号进行查看。 XAUUSD(黄金) https://www.mql5.com/en/signals/2378564 超过 3 个月的真实账户实盘交易记录。 EURUSD(欧元兑美元) https://www.mql5.com/en/signals/2378563 超过 3 个月的真实账户实盘交易记录。 这些公开信号
Cortex Aurex
Vladimir Mametov
4.64 (11)
这是一个专为黄金(XAUUSD)交易而开发的全自动 MetaTrader 5 智能交易系统(Expert Advisor)。其交易逻辑专门针对黄金市场的特点而设计,包括快速的价格波动、剧烈的市场反转以及高波动性。该 EA 能够在对执行速度、交易纪律和精确仓位管理要求极高的市场环境中实现全自动交易。 该系统专注于严格的交易管理、快速响应市场变化以及受控的出场策略。其核心理念非常简单:通过移动止损(Trailing Stop)让盈利交易尽可能延续,同时使用固定止损(Stop Loss)保护每一笔交易,并在 M1 时间周期出现反向信号时提前平掉亏损仓位,从而进一步控制风险。 信号:  https://www.mql5.com/en/signals/2378776 特别优惠价格: 当前价格仅适用于前 40 份授权。售出 40 份后,EA 的价格将上涨 100 美元 ,调整为 599 美元 。 核心理念 本智能交易系统专为希望使用自动化黄金(XAUUSD)交易工具,并需要清晰、实用仓位管理机制的交易者设计。 EA 采用趋势跟随策略,在主趋势方向上的回调中寻找入场机会,从而在已有趋势中获得更有利的
Cortex IDX
Vladimir Mametov
这是一款专为 MetaTrader 5 平台打造的全自动智能交易系统(Expert Advisor,EA),专门针对 US30(道琼斯工业平均指数) 交易进行了深度优化。交易逻辑结合了美国股指的典型市场特征,包括趋势行情、盘中回调以及高波动阶段,能够自动完成信号识别、开仓、持仓管理和离场操作。 EA 的核心理念是让盈利单尽可能持续运行,同时严格控制亏损风险。盈利仓位可通过智能移动止损(Trailing Stop)持续跟随趋势;当持仓出现亏损且 M1(1 分钟)周期检测到反向信号时,系统可自动提前离场,以减少不必要的回撤。 实盘信号: https://www.mql5.com/en/signals/2376781 首发优惠: 当前价格仅限前 20 位购买者。售出 20 份后,产品价格将上调 100 美元 ,调整为 599 美元 。 产品理念 本 EA 专为希望实现 US30 全自动交易的投资者设计,采用趋势跟随结合回调入场的交易策略,在市场已有明确方向时寻找更优的进场位置,而不是盲目追涨杀跌。 盈利订单可采用 移动止损 持续跟随行情,在锁定利润的同时尽可能捕捉更大的趋势;如果交易者更喜欢
作者的更多信息
Grid Scalper Pro MT5
Allan Munene Mutiiria
Grid Scalper Pro is a dynamic grid Expert Advisor for MetaTrader 5 that turns adverse price movement into structured recovery. It opens a basket on a clean signal and, if price moves against it, layers additional trades at measured intervals, then closes the whole group at a volume-weighted breakeven-plus target. What separates the Pro edition is the intelligence wrapped around that engine: a structure-aware Smart Grid, a built-in Economic Calendar with automatic news pause, and a premium inte
Spectra Zone Scalper
Allan Munene Mutiiria
3.44 (9)
Introducing Spectra Zone Scalper MT5 EA,   a revolutionary trading tool designed to help you navigate the Forex market with precision, efficiency, and adaptability. Whether you’re a seasoned professional or a trading enthusiast, this expert advisor offers the ultimate combination of cutting-edge technology and robust risk management to help you achieve your trading goals. NB: The default settings are for XAUUSD (Gold) with 3 digits, i.e., 0.001 (e.g., 2700.123). Plug and play! Any other currency
Break of Structure BoS SMC EA
Allan Munene Mutiiria
4.41 (22)
This Break of Structure BoS SMC EA utilizes Smart Money Concepts (SMCs) to detect price movements that decisively break through swing lows or swing highs established by previous price action. When prices rise above swing highs or fall below swing lows, they signal a change in market sentiment and trend direction. This BoS EA can be a powerful tool for predicting market moves and making informed trading decisions. We advise you strongly to optimize the EA to get the best settings for your trading
FREE
Chart Drawing Toolkit
Allan Munene Mutiiria
5 (2)
Chart Drawing Toolkit is a complete drawing and chart-analysis workspace for MetaTrader 5 . It places more than 50 drawing and markup tools in one fast, clean panel that docks to the edge of your chart, so every manual analysis tool you need is a single click away. It runs as an indicator, so it works alongside your Expert Advisors and other indicators on the same chart. Overview The toolkit combines a docking sidebar, a quick tool flyout, a pinned tools bar, a live properties bar for the select
FREE
Keltner Grid Scalper MT5 EA
Allan Munene Mutiiria
4.29 (7)
The Keltner Grid Scalper MT5 EA is an automated trading system for MetaTrader 5 platforms. It uses the Keltner Channel indicator for entry signals in a grid-based strategy. This EA generates trades based on Keltner Channel crossovers and manages them through baskets. We designed it for forex pairs on timeframes from M5 to H1 but you can test and optimize on any other. The system organizes trades into baskets, with options for lot sizing, breakeven adjustments, and trailing stops. It includes da
FREE
Fair Value Gap SMC EA
Allan Munene Mutiiria
4.73 (15)
Fair Value Gap SMC EA is an automated Expert Advisor for MT5 trading platform that basically scans the current market conditions and environment , gets un-mitigated imbalances, or so called Fair Value Gaps, draws these levels on the chart, and trades them accordingly. For instance, it if finds a bullish FVG , it draws the box for visualization purposes, assigns it the color lime to indicate we anticipate a buy position and reversal momentum, and then if price reverts to the drawn box length, we
FREE
Order Blocks Scalper
Allan Munene Mutiiria
4.43 (7)
The Order Blocks Scalper EA is a next-generation, fully automated trading tool that identifies and trades key order block zones with precision and speed. Designed for traders seeking consistent entries and exits, this EA harnesses advanced market structure analysis to detect consolidation ranges, breakouts, and impulsive price movements, enabling optimal trade execution. Key Features Smart Order Block Detection : Identifies bullish and bearish order blocks based on institutional order flow. Each
FREE
Supply and Demand Price Action MT5 EA
Allan Munene Mutiiria
3.75 (8)
The Supply and Demand Price Action MT5 EA is an automated trading system for MetaTrader 5 platforms. It identifies supply and demand zones based on price consolidation patterns and trades on zone retests (taps). This EA generates trades when price returns to valid zones after an initial breakout, with configurable risk management. We designed it for forex pairs on timeframes from M5 to H1, specifically developed on AUDUSD, M5 , but you can test and optimize on any other instrument or timeframe.
FREE
Silver Bullet MT5
Allan Munene Mutiiria
5 (1)
Precision liquidity entries, timed to the ICT kill zones. Silver Bullet MT5 automates one of the most-watched intraday concepts in trading — the ICT Silver Bullet — with a discipline no human can hold tick for tick. It works only inside the three daily kill zones, waits for price to raid session liquidity, confirms a shift in market structure, and enters on the fair value gap that shift leaves behind. No chasing, no off-session trades — just the setup, executed the same way every time. How it t
FREE
Daily Range Breakout MT5 EA
Allan Munene Mutiiria
4 (8)
The Daily Range Breakout MT5 EA is a fully automated trading solution designed to identify and trade breakouts from the daily price range. It simplifies breakout trading with precise detection, customizable settings, and effective risk management options. Ideal for traders looking to capture market momentum, this EA helps identify high-probability breakout opportunities with minimal effort. How It Works Each day, the EA identifies the high and low price range based on a user-defined time windo
FREE
BOOM and CRASH Envelopes Scalper MT5 EA Unleash your trading potential with the BOOM and CRASH Envelopes Scalper MT5 EA , a meticulously crafted Expert Advisor designed for MetaTrader 5, tailored specifically for the high-octane Boom and Crash indices. This EA combines the precision of Envelopes and RSI indicators with a robust scalping strategy, offering traders a dynamic tool to capitalize on rapid market movements. Whether you're a seasoned scalper or a newcomer to synthetic indices, this EA
FREE
Martingale Zone Recovery MT5 EA
Allan Munene Mutiiria
2.5 (2)
Martingale Zone Recovery MT5 EA Revolutionize your trading with the Martingale Zone Recovery MT5 EA , a powerful expert advisor designed for traders who want robust and dynamic trade management with unmatched versatility. Key Features: RSI-Based Signal Generation : Utilizes the Relative Strength Index (RSI) to identify high-probability trade opportunities in both trending and ranging markets. Advanced Zone Recovery System : Employs a martingale-based strategy to recover losing trades within pred
FREE
Epicus Prime MT5 EA
Allan Munene Mutiiria
5 (1)
Epicus Prime Overview: Epicus Prime is a top-tier, superior, outstanding, unique, and exceptional solution in the world of algorithmic trading. In the realm of forex trading, Epicus Prime is engineered to handle significant and substancial tasks, and perform exceptionally well in the trading context, excelling remarkably in performance, accuracy, and reliability, which positions it as a leading, prominent and reliable option for traders. Strategy Elaboration: Epicus Prime is a system that analy
Expert Trader Pro MT5 EA
Allan Munene Mutiiria
Expert Trader MT5 EA  is a FULLY Automated Trading Expert Advisor whose control logic is based on the  Zone Recovery  strategy. Expert Trader MT5 EA   stands out from other expert advisors due to its remarkable approach to handling trades. With predefined optimization, the EA has proved to have a   75%   rate of return. Basically, it uses SUREFIRE system to significantly counter trades that are in loss. The EA has added Break Even and Trail Stop mechanism that is activated when the set points de
GRID Scalper MT5 EA
Allan Munene Mutiiria
4 (1)
GRID Scalper MT5 EA is a FULLY Automated Trading Expert Advisor whose control logic is based on the Grid Trading strategy. GRID Scalper MT5 EA   stands out from other expert advisors due to its remarkable approach to handling trades. With predefined optimization, the EA has proved to have a 75% rate of return. Basically, it uses martingale system to significantly counter trades that are in loss. The EA has added Break Even and Trail Stop mechanism that is activated when the set points deemed fit
Envelopes RSI Zone Scalper
Allan Munene Mutiiria
Envelopes RSI Zone Scalper MT5 EA Unleash your trading edge with the Envelopes RSI Zone Scalper MT5 EA , an Expert Advisor for MetaTrader 5, engineered to thrive in any market—forex, commodities, stocks, or indices. This dynamic EA combines the precision of Envelopes and RSI indicators with a zone-based scalping strategy, offering traders a versatile tool to capitalize on price movements across diverse instruments. Whether you’re scalping quick profits or navigating trending markets, this EA del
FREE
Kumo Cloud MT5 EA
Allan Munene Mutiiria
Elevate your trading with Kumo Cloud MT5 EA , a sophisticated automated trading solution built for MetaTrader 5. This EA harnesses the power of the Ichimoku Cloud (Kumo) and the momentum-confirming Awesome Oscillator to identify and trade high-probability breakout opportunities. Note: The program uses a rare signal generation logic that is double confirmed, using the Kumo Cloudstrategy. Make sure you understand the strategy! Backtest it in strategy tester on any currency pair of your choice and
FREE
FXGold Machine
Allan Munene Mutiiria
The EA's Development Background: The FXGold Machine is a highly intelligent and sophisticated trading system for the MT4 trading platform developed in MQL4. It took a lot of our effort to develop and test in real-world settings . We started working on it in 2021, and after seeing how profitable it was, we automated it by adding an algorithm. Since then, a number of changes have been made to the EA to increase its accuracy in trading. The default settings are made for AUDUSD on 15M price chart P
Blacklist Trader
Allan Munene Mutiiria
Blacklist Trader MT4 EA Basic Background Parameters: Win Rate: 74% Back test period – From: 2023.01.02 Back test period – To: 2023.09.01 Period/Timeframe: M15 Symbol/Currency pair: AUDUSD , Australian Dollar vs US Dollar Spread: Current Input Parameters: Default About the EA Development: The Blacklist Trader EA is a highly intelligent trading system. We spent a lot of time working on it and improving it with live tests. We have been developing it since 2021 and it proved to be quite profitable,
SureFire Trading Deck
Allan Munene Mutiiria
4 (1)
" Hope for the best and prepare for the worst " - a SureFire Trading Deck rare phrase. SureFire Trading Deck EA is a tool that tracks and trails all your trades. It uses the thumb rule that market moves in any direction  thus no matter where the market moves, your trades are executed in order. The engine behind the power is Zone Recovery Algorithm  or so called The Surefire Forex Hedging Strategy. The EA has an inbuilt Moving Average Cross strategy which is just to take care of opening trades.
SpaceX EA Bot
Allan Munene Mutiiria
SpaceX EA Bot is a tool that combines volume , trend , price action and intensity indicators and finds the best trades available to take for the system to be effective. It incorporates the best trading strategies to predict the most accurate trend and automatically places trades respectivelly. Here is the best part of the Bot - if the prediction fails, it MANAGES the trades to breakeven and then trails the trades afterwards, and of course, this setting is left for the user to decide, and manages
Fast and Furious EA is one of the most wanted Expert Advisor programme or as some would like to refer to as ‘ TRADING BOT ’ in the market. The Fast and Furious EA, just as the name suggests, is an EA that is programmed to precisely scan the market and come up with validated trading signals . These signals can either be used automatically by the EA to make market orders or can be manually used by the trader to make personal trading decisions and be integrated to the trading system.  The Swiftness
筛选:
Noyon Sarker
18
Noyon Sarker 2026.08.09 14:39 
 

can i get the source file

004pra
14
004pra 2026.08.08 20:30 
 

NICE EA. WAS GOING SMOOTHLY WITH 98% TRADE IN PROFIT BUT LAST WEEK IT BLEW ALL THE PROFIT WITH TWO TRADE. IT DIDN'T CLOSE THE TRADE. LOSS WAS GROWING BIGGER. LUCKY I WITHDRAW 50% OF THE PROFIT.

Allan Munene Mutiiria
213546
来自开发人员的回复 Allan Munene Mutiiria 2026.08.08 22:57
Thanks for the kind review and feedback. We're working to make sure we detect trends and manage positions accordingly as trends grow. Thanks.
wahmed2
16
wahmed2 2026.08.02 14:31 
 

用户没有留下任何评级信息

sshhiirraazz
15
sshhiirraazz 2026.07.28 08:35 
 

i tested this in demo. and now i'm using this in my real account

Allan Munene Mutiiria
213546
来自开发人员的回复 Allan Munene Mutiiria 2026.07.28 11:12
Thanks for the kind review and feedback.
Wedding King
18
Wedding King 2026.07.23 12:59 
 

用户没有留下任何评级信息

Allan Munene Mutiiria
213546
来自开发人员的回复 Allan Munene Mutiiria 2026.07.25 06:30
Hello. Thanks for the kind review and feedback. You can enable the TP easily by setting the target in the input settings.
ALen hood
16
ALen hood 2026.07.19 13:29 
 

how can I get the source code? For example, by making a payment?

Doepie01
64
Doepie01 2026.07.14 07:32 
 

Excellent EA. 70% success. Thank you very much

Allan Munene Mutiiria
213546
来自开发人员的回复 Allan Munene Mutiiria 2026.07.14 12:15
Thank you for the kind review and feedback. Welcome.
Suzun1982
26
Suzun1982 2026.07.06 09:59 
 

Very good EA. If you update the version, please give it to me.

Allan Munene Mutiiria
213546
来自开发人员的回复 Allan Munene Mutiiria 2026.07.06 15:34
Thanks for the kind review and feedback.
Say Toon Sebastian Foo
233
Say Toon Sebastian Foo 2026.07.03 17:29 
 

用户没有留下任何评级信息

Allan Munene Mutiiria
213546
来自开发人员的回复 Allan Munene Mutiiria 2026.07.05 23:12
Thank you too for the kind review and feedback. Welcome.
Mohab Mohamed Ibrahim Mohamed Ibrahim
151
Mohab Mohamed Ibrahim Mohamed Ibrahim 2026.06.30 22:28 
 

very good

Allan Munene Mutiiria
213546
来自开发人员的回复 Allan Munene Mutiiria 2026.07.01 11:45
Thank you for the kind review and feedback.
GinShop Stuff
18
GinShop Stuff 2026.06.30 19:56 
 

thank you so much bro, i'm running backtest atm and live demo account, this EA survived volatile market and could do 24/7 , you're a genius bro, going to finetuning some settings. cheers.

Allan Munene Mutiiria
213546
来自开发人员的回复 Allan Munene Mutiiria 2026.07.01 11:45
Thanks for the kind review and feedback. Most welcome.
mgee002
14
mgee002 2026.06.30 14:11 
 

BEST EA EVER

Allan Munene Mutiiria
213546
来自开发人员的回复 Allan Munene Mutiiria 2026.06.30 16:54
Thanks for the kind review and feedback.
hazrenk
16
hazrenk 2026.06.29 17:24 
 

Good EA. Great Work

Allan Munene Mutiiria
213546
来自开发人员的回复 Allan Munene Mutiiria 2026.06.29 23:04
Thank you for the kind review and feedback.
Mst Anjuara
258
Mst Anjuara 2026.06.20 02:21 
 

Great Robot, after making a few small setting changes it started performing exactly as I hoped. Thanks to the developer for this EA! Excelente robot, unos pequeños ajustes marcaron una gran diferencia. Ahora funciona exactamente como esperaba.

Allan Munene Mutiiria
213546
来自开发人员的回复 Allan Munene Mutiiria 2026.06.20 07:28
Thank you for the kind review and feedback. Welcome.
Ruben Alcantar izaguirre
19
Ruben Alcantar izaguirre 2026.06.02 18:30 
 

📈🤝 Quiero agradecerte por el excelente trabajo que has realizado con este bot. Hasta el momento, mi experiencia ha sido muy positiva. Con el debido monitoreo y utilizando la estrategia de Media Móvil, manejando un lotaje de 0.01 por cada 100 USD en cuenta cent, el sistema ha mostrado un desempeño sólido y consistente. 🥇 En mi caso, se ha desarrollado muy bien operando en XAUUSD, y durante los fines de semana también lo utilizo en BTCUSD con buenos resultados. 💻 Se nota el esfuerzo, la dedicación y el conocimiento que hay detrás de este proyecto, por lo que quería reconocer tu gran trabajo. 🔄 Espero que puedas seguir brindándole mantenimiento y futuras actualizaciones para que continúe mejorando y adaptándose a las condiciones cambiantes del mercado. 🙏 Muchas gracias por tu dedicación, soporte y compromiso con la comunidad. ¡Sigue así!

2670663013
24
2670663013 2026.05.30 12:11 
 

The day before yesterday I got liquidated, missing out on a big one-sided market move.

Allan Munene Mutiiria
213546
来自开发人员的回复 Allan Munene Mutiiria 2026.05.30 23:34
Hello. Thanks for the kind review and feedback. We are working to implement a mechanism to detect large movements and cut losses early when a big move is detected. We will update when we do this and inform. Thank you.
war19871
15
war19871 2026.05.29 15:53 
 

great work thank you from my heart

Allan Munene Mutiiria
213546
来自开发人员的回复 Allan Munene Mutiiria 2026.05.29 18:41
Thank you for the kind review and feedback. Welcome
Alippi
14
Alippi 2026.05.27 10:16 
 

This is a good EA, with a few adjustments to the settings to suit each trading style, Thank you Allan

Allan Munene Mutiiria
213546
来自开发人员的回复 Allan Munene Mutiiria 2026.05.27 16:28
Thank you for the kind review and feedback. Welcome.
mjupepe
14
mjupepe 2026.05.24 08:41 
 

we suppose to for this EA the logic behind it is brilliant good work

Allan Munene Mutiiria
213546
来自开发人员的回复 Allan Munene Mutiiria 2026.05.25 18:33
Thanks for the kind review and feedback. Welcome.
Sebastián
62
Sebastián 2026.05.20 15:30 
 

I have been testing it for a few days and it seems very promising, thank you for publishing this. I will definitely support your other EAs in the future. Amazing work!

Allan Munene Mutiiria
213546
来自开发人员的回复 Allan Munene Mutiiria 2026.05.22 09:49
Thanks for the kind review and feedback. Welcome.
回复评论