Grid Scalper MA MT5 EA

4.53

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.

Отзывы 105
scalping89
4
scalping89 2026.07.30 16:51 
 

tengo MT5 y no me deja instalarlo, lo estoy usando en la demo (version 11.44) y quiero usarlo en la real y esta version no me deja instarlarlo, me podrias decir xq? gracias

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?

Рекомендуем также
Это последняя итерация моего известного скальпера, Goldfinch EA, впервые опубликованная почти десять лет назад. Он скальпирует рынок при внезапном увеличении волатильности, которое происходит в короткие промежутки времени: он предполагает и пытается извлечь выгоду из инерции движения цены после внезапного ускорения цены. Эта новая версия была упрощена, чтобы позволить трейдеру легко использовать функцию оптимизации тестера, чтобы найти лучшие торговые параметры. [ Руководство по установке | Руко
FREE
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
Этот советник торгует с использованием пересечения скользящих средних. Он предлагает полностью настраиваемые параметры, гибкие настройки управления позициями, а также множество полезных функций, таких как настраиваемые торговые сессии и режим мартингейла и обратного мартингейла. [ Руководство по установке | Руководство по обновлению | Устранение неполадок | Часто задаваемые вопросы | Все продукты ] Простота использования и контроля Полностью настраиваемые параметры скользящей средней Он реализуе
FREE
Only Wif
Ivan Pochta
5 (1)
>> Announcements Channel << Live Signal What if Gold Pump? What if Gold Dump? Fulll version of Wif is available here >> 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 brea
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
Описание эксперта Алгоритм оптимизирован для торговли Nasdaq Торговый эксперт основан на постоянном ведении длинных позиций с ежедневной фиксации прибыли, если такова имеется и временном прекращении работы при осуществлении длительных коррекций. Принцип торговли эксперта, основан на исторической волатильности, торгуемого актива. Значения Размера коррекции (InpMaxMinusForMarginCallShort) и Максимального падения (InpMaxMinusForMarginCallLong), задаются вручную. Рекомендации по эксплуатации Р
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
Суть системы заключается в идентификации момента формирования "разворотной" композитной свечи с заданными характеристиками (размер свечи в пунктах, структура теней). В анализе японских свечей аналогами подобных разворотных моделей являются "Молот" (Hammer) и "Повешенный" (Hanging Man), но в данной системе тело свечи не обязательно должно быть маленьким, а результирующая свеча строится из нескольких свечей. Входные параметры системы: Range - задает максимальное количество баров, которые будут уча
FREE
Brent Trend Bot
Maksim Kononenko
4.5 (16)
Особенность советника — простые базовые инструменты и логика работы. Здесь нет множества стратегий и десятков настроек, как у другого EA, он работает по одному алгоритму. Принцип работы — стратегия следования за трендом с попыткой получить максимальную доходность с поправкой на риск. Поэтому его можно рекомендовать начинающим. Его сильная сторона — принцип закрытия сделок. Его цель — не погоня за прибылью, а минимизация количества убыточных сделок. Советник не может похвастаться высокой доходнос
FREE
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_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 Free Introductory Release — Download, test and help shape the future of this project through your feedback. The Jireh Fair Value Gap Trader EA is an automated trading system that identifies Fair Value Gaps (FVGs) and executes trades when price returns to mitigate the imbalance. Designed around Smart Money Concepts (SMC), the EA combines multiple confirmation filters and advanced risk management tools to help traders automate a disciplined FVG trading strategy. Whether
FREE
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 Professional Algorithmic EA | XAUUSD | MetaTrader 5 ️ READ THIS BEFORE USING This EA is not designed to trade every day, and it is certainly not designed to open multiple positions simply because the market is moving. If you believe a professional trading system should produce dozens of trades every session, remain active around the clock, or react to every market fluctuation, then this EA is probably not the right choice for you. KING TUT v1 .0 follows a completely different
FREE
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)
Версия МТ4 |  Индикатор   Valable ZigZag   |   FAQ Советник   Grid HLevel   идеально подходит для тех трейдеров, которые хотят получать стабильную прибыль на рынке Forex каждый месяц. Советник работает по стратегии усреднения, и я предлагаю Вам использовать ее правильно.   Использовать «правильно» это значит открывать сделки усреднения нужно в точке разворота рынка, а торговать только в сторону направления глобального тренда. Что касается направления основного тренда, то я предлагаю определять
FREE
Morning Range Breakout (Бесплатная версия) Morning Range Breakout (Free Version) — это простой торговый советник, реализующий стратегию входа по пробою утреннего диапазона. Советник определяет максимум и минимум за заданный интервал времени (например, 08:00–10:00 UTC) и открывает сделку при пробое вверх или вниз. Бесплатная версия включает базовую логику без ограничений. Все параметры и сообщения на английском языке, согласно требованиям MQL5 Market. Основные возможности Определение утреннего д
FREE
Alligator Joe
Alexandre Vincent Traber
Overview Alligator Joe — это трендовый советник, построенный на классическом индикаторе Alligator (Jaw, Teeth, Lips). Он ждет свежего выравнивания трех линий — не выравнивания, которое длится уже давно — и входит в сделку по направлению этого тренда. Позиции закрываются постепенно в три этапа по мере отката цены через каждую линию, вместо единого фиксированного выхода. How it works Советник проверяет последнюю закрытую свечу: полностью ли выровнены Lips, Teeth и Jaw (бычье или медвежье выравнив
FREE
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
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)
EA Go Long реализует продвинутую внутридневную торговую стратегию, основанную на принципе систематической ежедневной торговли с множественными техническими подтверждениями. В то время как многие трейдеры ищут сложные алгоритмы, этот EA сочетает простые, но эффективные концепты с продвинутым управлением рисками и множественными техническими фильтрами. EA открывает позиции в определенное время каждый день, но только когда рыночные условия соответствуют множественным техническим индикаторам. Этот
FREE
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 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
П олностью автоматизированная торговая система, использующая классические сигналы на основе индикатора скользящих средних Moving Averages. Разработанная нами система поддержки позиций с гибкими настройками позволяет адаптировать стратегию под различные рыночные условия и инструменты. Ключевые особенности Три входных сигнала для гибкой настройки стратегий Три типа ордеров на вход (рыночный ордер, отложенный стоп и лимитный ордер, что дает гибкость при открытии позиций) Установка времени торговли
FREE
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   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 Queen X MT5
Bogdan Ion Puscasu
5 (18)
Легенда продолжается. Королева эволюционирует. Добро пожаловать в Quantum Queen X — новое поколение легендарной торговой системы GOLD, основанной на проверенном успехе Quantum Queen. Quantum Queen X построена на том же проверенном движке, что и Quantum Queen, и представляет собой новый мощный пользовательский режим, который позволяет трейдерам выбирать, какие именно стратегии включать или отключать. Каждая стратегия была индивидуально проверена, доработана и оптимизирована для обеспечения еще лу
Lizard
Marco Scherer
3.5 (16)
ЧТО ТАКОЕ LIZARD? Lizard - это полностью автоматический советник (Expert Advisor), разработанный исключительно для XAUUSD (золото) на MetaTrader 5. Он использует мультистратегическую систему пробоя на основе свингов, которая определяет ключевые структурные уровни на графике и размещает отложенные стоп-ордера в точно рассчитанных точках входа. Без мартингейла. Без сетки. Без усреднения. Каждая сделка имеет заданный Stop Loss и Take Profit и активно управляется многоуровневой системой выхода, авто
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.46 (102)
ГОТОВНОСТЬ К ИСПОЛЬЗОВАНИЮ ПРОПОРЦИИ! (   скачать SETFILE   ) ПРЕДУПРЕЖДЕНИЕ: Осталось всего несколько экземпляров по текущей цене! Окончательная цена: 990$ Получите 1 советника бесплатно (на 3 торговых аккаунта) -> свяжитесь со мной после покупки Выгодное комплексное предложение     ->     нажмите здесь ПРИСОЕДИНИТЬСЯ К ОБЩЕСТВЕННОЙ ГРУППЕ:   Нажмите здесь   Сигнал в реальном времени Сигнал клиента Обзоры YouTube ПОСЛЕДНЕЕ РУКОВОДСТВО Добро пожаловать в «Золотого Жнеца»! Созданный на основе
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
TwisterPro Scalper
Jorge Luiz Guimaraes De Araujo Dias
4.42 (127)
Меньше сделок. Лучшие сделки. Стабильность прежде всего. • Живой сигнал Режим 1   Живой сигнал Режим 2 Twister Pro EA — это высокоточный скальпинговый советник, разработанный исключительно для XAUUSD (Золото) на таймфрейме M15. Торгует реже — но каждая сделка имеет смысл. Каждый вход проходит через 5 независимых уровней проверки перед открытием ордера, что обеспечивает чрезвычайно высокую точность на стандартной конфигурации. ДВА РЕЖИМА: • Режим 1 (рекомендуется) — Очень высокая точность, ма
ВАЖНЫЙ   : Этот пакет будет продаваться по текущей цене только в очень ограниченном количестве экземпляров.    Цена очень быстро вырастет до 1999$    Включено более 100 стратегий   , и их будет еще больше! БОНУС   : При цене 1499$ или выше — выберите  5     моих других советника бесплатно!  ВСЕ ФАЙЛЫ НАБОРА ПОЛНОЕ РУКОВОДСТВО ПО НАСТРОЙКЕ И ОПТИМИЗАЦИИ ВИДЕО РУКОВОДСТВО ЖИВЫЕ СИГНАЛЫ ОБЗОР (третья сторона) NEW - 44-STRATEGIES LIVE SIGNAL L Добро пожаловать в ИДЕАЛЬНУЮ СИСТЕМУ ПРОРЫВА! Я рад
Smart Gold Hunter
Barbaros Bulent Kortarla
5 (20)
Smart Gold Hunter — это Expert Advisor для торговли XAUUSD / Gold на MetaTrader 5. Он создан для трейдеров, которые предпочитают советник по золоту без сетки, без мартингейла, с реальными Stop Loss и Take Profit, а также с контролируемым управлением риском. Вы можете проверить live-сигналы перед покупкой: 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 Go
Quantum King EA
Bogdan Ion Puscasu
4.96 (211)
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:       Кликните сюда ***Купите Quantum King MT5 и получите Quantum StarMan бесплатно!*** За подробностями обращайтесь в личном сообщении! Управляйте   своей торговлей точно и
Quantum iGold MT5
Yassine Mouhssine
5 (16)
Quantum iGold MT5 — Продвинутая система ИИ-трейдинга (XAUUSD) Quantum iGold MT5 — это полностью автоматизированная торговая система, созданная с использованием передовых технологий искусственного интеллекта. Она использует гибридную нейронную архитектуру, объединяющую модели LSTM и Transformer для анализа поведения цены на XAUUSD. Такая структура позволяет системе выявлять рыночные паттерны, адаптироваться к изменениям волатильности и генерировать технически точные торговые сигналы в реальном вр
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. Важно: После покупки, пожалуйста, свяжитесь с нами через личные сообщения, чтобы получить руководство пользователя, рекомендуемые настройки, примечания по использованию и поддержку обновлений. ht
Mavrik Scalper
Vladimir Lekhovitser
4.5 (2)
Торговый сигнал в реальном времени Публичный мониторинг торговой активности в режиме реального времени: https://www.mql5.com/ru/signals/2378119 Официальная информация Профиль продавца Официальный канал Руководство пользователя Инструкции по установке и использованию: Открыть руководство пользователя Mavrik Scalper представляет новое поколение торговых советников, разработанных на основе архитектуры нейронной сети Hybrid Attention. В отличие от традиционных алгоритмических стратегий, к
Logan MT5
Thierry Ouellet
5 (10)
LIMITED TIME OFFER AT 249$ Price will go up at  499$ on July 31st! 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—includ
Goldwave EA MT5
Shengzu Zhong
4.68 (72)
Реальный торговый счёт   LIVE SIGNAL (IC MARKETS): https://www.mql5.com/en/signals/2339082 Данный EA использует абсолютно ту же торговую логику и те же правила исполнения, что и верифицированный сигнал реальной торговли, представленный на MQL5.При использовании рекомендованных и оптимизированных настроек, а также при работе с надёжным ECN / RAW-spread брокером (например, IC Markets или TMGM) , поведение EA в реальной торговле спроектировано таким образом, чтобы максимально соответствовать струк
Nexorion Initium Novum EA
Valentina Zhuchkova
4.75 (20)
NEXORION: Initium Novum — Детерминированная логика и алгоритмический синтез NEXORION — это аналитический комплекс институционального уровня, базирующийся на строгих математических алгоритмах обработки ликвидности. В основу проекта заложена концепция прозрачности вычислений: советник преобразует хаотичные котировки в структурированные геометрические зоны, визуализируя процесс принятия решений непосредственно на торговом графике. Мониторинг в реальном времени https://www.mql5.com/es/signals/237233
Zerqon EA
Vladimir Lekhovitser
3.18 (28)
Торговый сигнал в реальном времени Публичный мониторинг торговой активности в режиме реального времени: https://www.mql5.com/ru/signals/2372719 Официальная информация Профиль продавца Официальный канал Руководство пользователя Инструкции по установке и использованию: Открыть руководство пользователя Zerqon EA — это адаптивный экспертный советник, разработанный специально для торговли XAUUSD. Стратегия основана на модели нейронной сети Deep LSTM, интегрированной через ONNX, что позволяе
AXIO Gold EA
Shengzu Zhong
4.6 (10)
AXIO GOLD EA MT5 Ссылка на реальный торговый сигнал MQL5 https://www.mql5.com/en/signals/2378982?source=Site+Signals+My AXIO GOLD EA MT5 — это автоматическая торговая система, разработанная специально для торговли золотом XAUUSD на платформе MetaTrader 5. Этот советник использует ту же логику и те же правила исполнения, что и проверенный реальный сигнал, представленный на MQL5. При использовании рекомендованных оптимизированных настроек у надежного брокера с ECN/RAW-спредом, например TMGM , пове
Quantum Athena X
Bogdan Ion Puscasu
5 (1)
Более интеллектуальное управление. Повышенная точность. Добро пожаловать в Quantum Athena X — торговую систему для сфокусированной торговли золотом нового поколения, которая развивает точность, эффективность и дисциплинированность исполнения Quantum Athena. Quantum Athena X построена на том же оптимизированном базовом движке и использует те же 6 тщательно отобранных стратегий, что и Quantum Athena. Каждая стратегия была индивидуально доработана и оптимизирована для текущих рыночных условий GO
Quantum Emperor MT5
Bogdan Ion Puscasu
4.86 (507)
Представляем       Quantum Emperor 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   бесплатно!*** За подробностями обращайтесь в личном сообщении Подтвержденный сигнал:   нажмите здесь В
Fantastic 4 Four-in-One Trading System Introduction Fantastic 4 is an automated trading EA integrating four mutually independent quantitative trading logics targeting XAUUSD. After long-term research, iterative optimization, historical backtesting and live market verification, each built-in strategy has exclusive entry rules, independent order management and customized risk control modules. All strategies run separately without mutual interference. The combination of four strategies with low cor
Pulse Engine
Jimmy Peter Eriksson
3.94 (34)
ОБНОВЛЕНИЕ - ОСТАЛОСЬ ВСЕГО НЕСКОЛЬКО ЭКЗЕМПЛЯРОВ ПО ТЕКУЩЕЙ ЦЕНЕ! Главная цель этой системы — долговременная работа в режиме реального времени без использования каких-либо рискованных мартингейлов или сеток.  ОЧЕНЬ ОГРАНИЧЕННОЕ КОЛИЧЕСТВО ЭКЗЕМПЛЯРОВ ПО ТЕКУЩЕЙ ЦЕНЕ Окончательная цена: 1499 долларов США [Сигнал в реальном времени]    |    [Результаты тестирования]    |    [Руководство по настройке]    |    [Результаты FTMO] Другой подход к торговле Торговая система Pulse Engine не использует н
SomaOil
Andrii Soma
5 (2)
SomaOil — мультистратегийный пробойный советник для MetaTrader 5, созданный исключительно для сырой нефти WTI (XTIUSD). Один график, один советник, 20 независимых стратегий, работающих вместе как единый диверсифицированный портфель. Живой сигнал. Чтобы сделать его доступным на старте, я использую прозрачную модель поэтапного роста цены: Стартовая цена: 100 USD (48 часов) Начиная с понедельника цена увеличивается на 100 USD за каждые 10 проданных копий Цена повышается не чаще одного раза в день,
Gold Neural Core — Hyper-Scalping Grid System for XAUUSD Limited-Time Offer: Buy Gold Neural Core, Get Any Other EA Free — For Life For a limited time, every purchase of Gold Neural Core includes a lifetime license to any other EA in my MQL5 Market lineup — your choice, no strings attached. Learn how I personally manage risk when using grid systems:  https://www.mql5.com/en/blogs/post/767250 Join my open group for questions related to any of my products:  https://www.mql5.com/en/messages/014beab
Cortex Aurex
Vladimir Mametov
4.56 (9)
Это полностью автоматический советник (Expert Advisor) для MetaTrader 5, разработанный специально для торговли золотом (XAUUSD). Его торговая логика построена с учетом особенностей рынка золота: высокой волатильности, резких ценовых движений и быстрых разворотов. Советник автоматизирует торговлю в условиях, где особенно важны скорость реакции, дисциплина и точное управление позициями. Основное внимание уделено грамотному сопровождению сделок, быстрому реагированию на изменения рынка и контролиру
SixtyNine EA
Farzad Saadatinia
4 (4)
SixtyNine EA – Экспертный советник для торговли золотом на MetaTrader 5, оснащённый 6 интегрированными стратегическими слоями, предустановленным Stop Loss в каждой сделке и чистой торговой структурой без Martingale, Recovery-систем и Grid-торговли. Публичный Live Signal: старт $500, фиксированный 0.02 лота, рост 500%+, более 20 недель работы Публичный Live Signal является главным доказательством работы SixtyNine EA . Счёт был запущен с балансом $500 , использовался фиксированный размер лота 0.0
Smart Gold Impulse
Barbaros Bulent Kortarla
3.82 (17)
Smart Gold Impulse теперь доступен на этапе специального раннего запуска. Это советник (EA), который я сейчас использую с впечатляющими результатами на своем реальном сигнальном счете в Ultima Markets. Вы можете проверить текущую доходность в результатах живых сигналов Ultima, где Smart Gold Impulse уже продемонстрировал очень сильный потенциал в реальных рыночных условиях. Тот же сет-файл (set file), который используется на моем реальном счете в Ultima, будет предоставлен исключительно поку''
Gold House MT5
Chen Jia Qi
4.53 (59)
Gold House — Система торговли на пробоях свинг-структуры золота Один советник. Три торговых режима. Выберите тот, который подходит именно вам. Без сетки. Без мартингейла. Цена будет увеличиваться на 50 долларов после каждых 10 покупок. Окончательная запланированная цена: 1 999 долларов. Торговые сигналы в реальном времени: Режим Profit Priority: https://www.mql5.com/en/signals/2359124 Режим BE Priority:  https://www.mql5.com/en/signals/2372604 Адаптивный режим:   https://www.mql5.com/en/sign
Impulse MT5
Simon Reeves
5 (13)
Are you ready to power up your Gold trading? Impulse by Starpoint Trading — A six-strategy gold EA that waits for the perfect shot. Come chat with us in our public MQL5 channel!  https://www.mql5.com/en/channels/starpoint Impulse v2.00 is here! The biggest update in Impulse's history has arrived. Version 2.00 takes everything that made Impulse a disciplined, patient Gold trading system and elevates it across the board: A brand-new sixth strategy — Conviction Momentum joins the squad, hunting de
Scalper speed with sniper entries. Built for Gold. Tired of all the fake EAs that eventually disappear?  Wave Rider  is honest, transparent EA without any fake AI or manipulated back-test that's being continuously developed $499  until Signal reaches 150% - then 599 USD Check the Live signal  or Manual  or  Broker performance Version 5.0 upgrade notice: Close all Wave Rider positions before updating. Strategy Magic Numbers and several input names changed. Review your settings and save a new pre
Bypass Generator
Connor Michael Woodson
4.33 (3)
Bypass Generator — это детерминированная скальпинговая система для XAUUSD, основанная на алгоритмах институционального уровня. Текущий сигнал: НАЖМИТЕ ЗДЕСЬ Это не типичный советник (EA), который бездумно открывает сделку за сделкой, уничтожая вашу маржу и подвергая депозит ненужному риску. Каждая точка входа проходит через 16 независимых уровней проверки перед открытием единственной позиции. Здесь нет сеток, и каждая сделка имеет виртуальные Take Profit и Stop Loss. Кривая результатов бэктеста
Другие продукты этого автора
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.38 (21)
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
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
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
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
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
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
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
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 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
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
Epicus Prime MT5 EA
Allan Munene Mutiiria
5 (1)
Обзор Epicus Prime: Epicus Prime - это первоклассное, усовершенствованное, выдающееся, уникальное и исключительное решение в мире алгоритмической торговли. В сфере торговли на рынке Форекс Epicus Prime спроектирован таким образом, чтобы справляться со значительными задачами и исключительно хорошо работать в контексте торговли, отличаясь высокой производительностью, точностью и надежностью, что позиционирует его как ведущий, заметный и надежный вариант для трейдеров.
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
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
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
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
Фильтр:
scalping89
4
scalping89 2026.07.30 16:51 
 

tengo MT5 y no me deja instalarlo, lo estoy usando en la demo (version 11.44) y quiero usarlo en la real y esta version no me deja instarlarlo, me podrias decir xq? gracias

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
210099
Ответ разработчика 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
210099
Ответ разработчика 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
210099
Ответ разработчика Allan Munene Mutiiria 2026.07.14 12:15
Thank you for the kind review and feedback. Welcome.
Suzun1982
25
Suzun1982 2026.07.06 09:59 
 

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

Allan Munene Mutiiria
210099
Ответ разработчика 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
210099
Ответ разработчика 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
210099
Ответ разработчика 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
210099
Ответ разработчика 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
210099
Ответ разработчика 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
210099
Ответ разработчика 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
210099
Ответ разработчика 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
210099
Ответ разработчика 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
210099
Ответ разработчика 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
210099
Ответ разработчика 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
210099
Ответ разработчика Allan Munene Mutiiria 2026.05.25 18:33
Thanks for the kind review and feedback. Welcome.
Sebastián
57
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
210099
Ответ разработчика Allan Munene Mutiiria 2026.05.22 09:49
Thanks for the kind review and feedback. Welcome.
Amit1819
21
Amit1819 2026.05.19 18:00 
 

i need your help so how can i install it back bot vps

Allan Munene Mutiiria
210099
Ответ разработчика Allan Munene Mutiiria 2026.05.22 09:49
Thanks for the kind review and feedback.
Jong Wingchu
41
Jong Wingchu 2026.05.18 06:46 
 

Ea is working fine but in terms of profits it's not that too stable. But according to it's pricing because it's free it's a good EA. Appreciated the work.

Allan Munene Mutiiria
210099
Ответ разработчика Allan Munene Mutiiria 2026.05.18 09:42
Thanks for the kind review and feedback. Welcome.
Ответ на отзыв