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.

レビュー 104
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
25
Suzun1982 2026.07.06 09:59 
 

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

おすすめのプロダクト
これは、ほぼ10年前に初めて公開された私の有名なスキャルパー、ゴールドフィンチEAの最新版です。短期間で起こる急激なボラティリティの拡大で市場をスキャルピングします。突然の価格上昇の後、価格変動の慣性を利用しようとします。この新しいバージョンは、トレーダーがテスターの最適化機能を簡単に使用して最適な取引パラメーターを見つけられるように簡素化されています。 [ インストールガイド | 更新ガイド | トラブルシューティング | よくある質問 | すべての製品 ] 最適化を容易にするシンプルな入力パラメーター カスタマイズ可能な取引管理設定 取引セッションの選択 平日の選択 資金管理 注意してください... 多くの要因が見返りを台無しにする可能性があるため、ダニのダフ屋は危険です。変動スプレッドとスリッページは、取引の数学的期待値を低下させ、ブローカーからの低いティック密度は幻の取引を引き起こす可能性があり、ストップレベルは利益を確保する能力を損ない、ネットワークラグはリクオートを意味します。注意が必要です。 バックテスト Expert Advisorはティックデータのみを使用します
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
この EA は、移動平均クロスオーバーを使用して取引します。完全にカスタマイズ可能な設定、柔軟なポジション管理設定に加えて、カスタマイズ可能な取引セッションやマーチンゲールおよび逆マーチンゲール モードなどの多くの便利な機能を提供します。 [ インストールガイド | 更新ガイド | トラブルシューティング | よくある質問 | すべての製品 ] 使いやすく、監視しやすい 完全にカスタマイズ可能な移動平均設定 2 つの異なる取引動作を実装します。 カスタマイズ可能な損益分岐点、SL、TP、トレーリング ストップ ECN/非ECNブローカーで機能 2-3-4-5 桁の記号に対応 取引はNFA/FIFOに準拠可能 反対のシグナルで取引を閉じることができます マーチンゲールと逆マーチンゲール機能を実装します 平日と時間帯で取引を絞り込む 組み込みの資金管理 EA は 4 つの異なる動作を実装します。 通常: 強気のクロスオーバーで買い、弱気のクロスオーバーで売る 逆:強気のクロスオーバーで売り、弱気のクロスオーバーで買う 買いのみ: 強気のクロスオーバーで購入し、弱気のクロスオーバーを無視する
FREE
Only Wif
Ivan Pochta
5 (1)
>> Announcements Channel << 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 breakout Expert A
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
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
The idea of the system is to indentify the reversal patterns using the calculation of the composite candle. The reversal patterns is similar to the "Hammer" and "Hanging Man" patterns in Japanese candlestick analysis. But it uses the composite candle instead the single candle and doesn't need the small body of the composite candle to confirm the reversal. Input parameters: Range - maximal number of bars, used in the calculation of the composite candle. Minimum - minimal size of the composite can
FREE
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 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 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)
MT4版  |  Valable ZigZagインジケーター   |   FAQ Grid HLevel   Expert Advisor は、 FX 市場で毎月安定した利益を上げたいと考えているトレーダーに最適です。この Expert Advisor は平均化戦略に従って動作するので、正しく使用することをお勧めします。 「正しく」使うというのは、相場の反転ポイントで平均化取引を行い、グローバルトレンドの方向にのみ取引を行うことです。メイントレンドの方向性については、タイムフレームH4でValable ZigZagインディケータで判断することをお勧めします。相場が変わる可能性のあるレベルは、インジケーターで判断するのは難しいので、平均化注文でより正確に相場に入るために、チャート上で手動で設定することをお勧めします。 そこで、手動で設定したサポートとレジスタンスのレベルでトレードするエキスパートアドバイザー、 Grid HLevel   Expert Advisor を紹介したいと思います。 注意 !   Grid HLevel EA は完全な自動売買ではなく、むしろ半自動売買です
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)を基盤としたトレンド整列型エキスパートアドバイザーです。3本のラインが新たに整列した瞬間を待ち——すでに長く続いている整列ではなく——そのトレンド方向にエントリーします。ポジションは単一の固定決済ではなく、価格が各ラインを順に割り込むたびに3段階に分けて徐々に決済されます。 How it works EAは直近の確定足をチェックします:Lips、Teeth、Jawが完全に整列しているか(上昇または下降)。 その整列が新しいものであることを確認します——数本前には存在していなかったこと——これにより、すでに伸びきった動きへの深追いエントリーを避けます。 価格がトレンド方向にLipsを超えて終値を付けた時点でエントリーが確定します。 Jawの外側に幅広の安全網ストップロスを設置します。 トレンドが弱まるにつれ3段階で決済します:価格がLipsを割り込んで終値を付けた時点でポジションの3分の1を決済、Teethでさらに3分の1、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)
Go Long EAは、複数の技術的確認を伴う体系的な日中取引の原則に基づいた高度なイントラデイ取引戦略を実装します。多くのトレーダーが複雑なアルゴリズムを求める中、このEAは単純かつ効果的な概念と洗練されたリスク管理、複数の技術的フィルターを組み合わせています。 このEAは毎日特定の時間にポジションを開きますが、市場条件が複数のテクニカル指標と一致する場合にのみ実行されます。このシステマティックなアプローチにより、利益を損なう可能性のある一晩の保有コストを避けながら、日中の値動きを捕捉することができます。EAは事前に設定された時間に自動的にポジションを閉じるため、一晩のエクスポージャーを避けたいトレーダーに最適です。 このEAの特徴は、適応型リスク管理システムにあります。ポジションサイズは以下の複数の要因に基づいて自動的に調整されます: - 基本資金とリスクパーセンテージの設定 - テクニカル指標の条件(MA、RSI、MACDなど) - 条件が特に有利な場合にポジションサイズを増加させる特別な乗数 この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
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
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 (19)
伝説は続く。女王は進化する。 Quantum Queen Xへようこそ。これは、Quantum Queenの実績ある成功を基盤とした、伝説的なゴールド取引システムの次世代版です。 Quantum Queen Xは、Quantum Queenと同じ実績のあるコアエンジンをベースに構築されており、トレーダーがどの戦略を有効または無効にするかを正確に選択できる強力な新しいカスタムモードが導入されています。 すべての戦略は個別にレビュー、改良、最適化され、さまざまな市場状況においてさらに優れたパフォーマンスと適応性を発揮します。デフォルトのプリセットも強化され、7つの戦略ではなく厳選された9つの戦略を組み合わせることで、より広い市場範囲とより多くの取引機会を提供すると同時に、Quantum Queen XをMQL5で最も成功したGOLDエキスパートアドバイザーにした規律ある取引哲学を維持しています。 IMPORTANT! After the purchase please send me a private message to receive the installation manual
Lizard
Marco Scherer
3.78 (23)
LIZARD とは? Lizard は、MetaTrader 5 の XAUUSD(ゴールド)専用に開発された完全自動の Expert Advisor です。マルチストラテジーのスイングブレイクアウトシステムを使用し、チャート上の重要な構造レベルを特定して、精密に計算されたエントリーポイントに逆指値の待機注文を配置します。マーチンゲールなし。グリッドなし。ナンピンなし。 すべての取引には明確な Stop Loss と Take Profit が設定され、多層的なイグジットシステムによって24時間自動的に管理されます。 ライブシグナル - 購入前に実際のパフォーマンスを確認: https://www.mql5.com/en/signals/2372821 仕組み Lizard は H1 時間足で XAUUSD チャートを継続的にスキャンし、重要なスイングハイとスイングローを探します。有効な構造が特定されると、そのレベルから調整された距離に Buy Stop または Sell Stop の待機注文を配置します。トリガーには単なる価格のタッチではなく、本物のブレイクアウトが必要です。 このア
The Gold Reaper MT5
Profalgo Limited
4.46 (102)
小道具会社準備完了!( セットファイルをダウンロード ) 警告: 現在の価格で販売できるのは残りわずかです! 最終価格:990ドル EAを1つ無料でゲット(3つの取引アカウント分)→購入後ご連絡ください 究極のコンボセット   は   こちらをクリック 公開グループに参加する: こちらをクリック   ライブシグナル クライアントシグナル YouTubeレビュー 最新マニュアル ゴールドリーパーへようこそ! 非常に成功を収めたGoldtrade Proをベースに開発されたこのEAは、複数の時間枠で同時に動作するように設計されており、取引頻度を非常に保守的なものから極めて変動の激しいものまで設定できるオプションを備えています。 このEAは、複数の確認アルゴリズムを使用して最適なエントリー価格を見つけ出し、内部で複数の戦略を実行して取引のリスクを分散します。 すべての取引にはストップロスとテイクプロフィットが設定されていますが、リスクを最小限に抑え、各取引の潜在的な利益を最大化するために、トレーリングストップロスとトレーリングテイクプロフィットも使用されます。 このシステムは、非常に人
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
重要 : このパッケージは、現在の価格で、非常に限られた数のみ販売されます。    価格はすぐに1999ドルになるだろう    100 以上の戦略が含まれており 、今後もさらに追加される予定です。 ボーナス : 1499 ドル以上の価格の場合 --> 私の他の EA を  5 つ無料で選択できます! すべてのセットファイル 完全なセットアップと最適化ガイド ビデオガイド ライブシグナル レビュー(第三者) NEW - 44-STRATEGIES LIVE SIGNAL 究極のブレイクアウトシステムへようこそ! 8 年をかけて丹念に開発された、洗練された独自のエキスパート アドバイザー (EA) である Ultimate Breakout System をご紹介します。 このシステムは、高く評価されているGold Reaper EAを含む、MQL5市場で最高のパフォーマンスを誇るいくつかのEAの基盤となっています。 7か月以上にわたって1位を維持したこのほか、Goldtrade Pro、Goldbot One、Indicement、Daytrade Proもランクインしました。
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
Smart Gold Hunter
Barbaros Bulent Kortarla
5 (20)
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 の主な考え方は、危険なナンピンではなく、管理されたロジック、保護設定、実際のトレ
Quantum iGold MT5
Yassine Mouhssine
5 (19)
Quantum iGold MT5 — 高度なAIトレーディングシステム(XAUUSD) Quantum iGold MT5 は、高度な人工知能技術を用いて構築された完全自動売買システムです。 このシステムは、LSTM と Transformer モデルを統合したハイブリッド型ニューラルアーキテクチャを採用し、XAUUSD の価格動向を分析します。 この構造により、市場パターンの検出、ボラティリティ変化への適応、そしてリアルタイムでの技術的に洗練された取引シグナルの生成が可能になります。 購入後、セットアップファイルとインストールガイドを受け取るために、MQL5のプライベートメッセージでご連絡ください Core Features Dedicated AI Engine XAUUSD 向けに開発された専用AIフレームワークにより、システムは市場の動きを理解し、構造化された取引判断を行うことができます。 Dynamic Risk Management 内蔵モジュールが現在のボラティリティに基づいてポジションサイズとエクスポージャーを自動的に調整し、バランスの取れた運用をサポートします。 P
TwisterPro Scalper
Jorge Luiz Guimaraes De Araujo Dias
4.42 (128)
取引は少なく。質は高く。一貫性がすべて。 • ライブシグナル モード1 ライブシグナル モード 2 Twister Pro EA は、XAUUSD(ゴールド)のM15タイムフレーム専用に開発された高精度スキャルピングEAです。取引回数は少なめ——しかし、取引する時は必ず目的を持って行います。 すべてのエントリーは注文が出される前に5つの独立した検証レイヤーを通過し、デフォルト設定では極めて高い勝率を実現します。 2つのモード: • モード1(推奨)— 非常に高い精度、週数回の取引。資金保護と規律ある取引のために設計。 • モード2(ショートSL)— ストップロスが大幅に短く、モード1より多くの取引。個々の損失は最小限。リスクを管理しながら市場への露出を増やしたいトレーダーに最適。 仕様: シンボル:XAUUSD | タイムフレーム:M15 最低入金:$100 | 推奨:$250 RAW SPREADアカウントは必須 VPS強く推奨 グリッドなし!すべての取引にTPとSLあり! 推奨ブローカー: Exness Raw | Vantage | Fusion Markets 購入後、以下
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 MT5 を購入すると、Quantum StarMan を無料で入手できます!*** 詳細についてはプライベートでお問い合わせください! 正確さと規律をもって取引を管理します。 Quantum King EA は、 構造化グリッドの強さと適応型マーチンゲールのインテリジェンスを 1 つのシームレスなシステムに統合します。M5 の AUDCAD 用に設計されており、安定した制御された成長を望む初心者とプロの両方のために構築されています。
Logan MT5
Thierry Ouellet
5 (11)
LIMITED TIME OFFER AT 249$ Price will go up at  499$ on August 3rd! 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—inclu
Mavrik Scalper
Vladimir Lekhovitser
4.67 (3)
リアルタイム取引シグナル 取引活動の公開リアルタイム監視: https://www.mql5.com/ja/signals/2378119 公式情報 出品者プロフィール 公式チャンネル ユーザーマニュアル セットアップ手順および使用ガイド: ユーザーマニュアルを開く Mavrik Scalper は、Hybrid Attention ニューラルネットワークアーキテクチャを基盤として開発された新世代のエキスパートアドバイザーです。 事前に定義された取引ルールに依存する従来型のアルゴリズム戦略とは異なり、Mavrik Scalper は市場行動の複数の特徴を同時に分析できる学習済みニューラルモデルを使用します。 Hybrid Attention アーキテクチャにより、システムは重要度の高い市場情報に動的に集中し、重要度の低い価格変動の影響を抑えることができます。 このモデルは、取引回数ではなく執行品質を重視して、短期的な取引機会を識別するために開発されました。 各取引判断は、単一のシグナルではなく、学習された複数の特徴の相互作用に基づいて行われます。 取引活動は意
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 の長期的な開発と実運用での検証を通じて、ゴールド市場におけるブレイクアウト戦略の有効性と、当社の自動適応パラメータシステムの実用的な価値を
Quantum Athena X
Bogdan Ion Puscasu
5 (1)
よりスマートな制御。洗練された精度。 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. 割引価格
Nexorion Initium Novum EA
Valentina Zhuchkova
4.76 (21)
NEXORION: Initium Novum — 決定論的ロジックとアルゴリズムの統合 NEXORION は、厳密な流動性処理数学アルゴリズムに基づいた機関投資家レベルの分析コンプレックスです。本プロジェクトの中核概念は「計算の透明性」にあります。このエキスパートアドバイザー(EA)は、混沌とした価格フィードを構造化された幾何学的ゾーンへと変換し、意思決定プロセスを取引チャート上に直接可視化します。 リアルタイム・モニタリング https://www.mql5.com/en/signals/2378408 https://www.mql5.com/es/signals/2372338 システム技術仕様 取引銘柄: XAUUSD (Gold) 運用タイムフレーム: H1 手法: 機関投資家流動性分析および決定論的ロジック (Institutional Liquidity Analysis & Deterministic Logic) 意思決定基盤: 流動性プールと均衡レベルの数学的算出 数学的アーキテクチャと可視化 システムの主要な革新は、Dynamic Computation M
Pulse Engine
Jimmy Peter Eriksson
3.94 (34)
最新情報 - 現在の価格で入手できるのは残りわずかです! このシステムの主な目的は、リスクの高いマルチンゲールやグリッドを使用せずに、長期的なライブパフォーマンスを実現することです。  現在の価格での販売部数は非常に限られています。 最終価格 1499ドル 【ライブシグナル】    |    【バックテスト結果】    |    【設定ガイド】    |    【FTMO結果】 取引への新たなアプローチ Pulse Engineは、インジケーターや特定の時間枠を一切使用しません。MQL5上の他のどのトレーディングシステムも採用していない、非常にユニークなアプローチを採用しています。 この手法は、日中の方向性パターンに基づいて取引を行います。これらのパターンは、私が長年開発・改良を重ねてきた独自のパターン認識ソフトウェアを用いて発見したものです。 このソフトウェアにより、市場が過去に特定の方向に強い動きを示した時間帯を特定することができます。 市場ごと、そして曜日ごとに、それぞれ独自の動きがあります。 この手法が非常に強力な理由は、市場がトレンドにあるのか、反転しているのか、あるい
Zerqon EA
Vladimir Lekhovitser
3.24 (29)
リアルタイム取引シグナル 取引活動の公開リアルタイム監視: https://www.mql5.com/ja/signals/2372719 公式情報 出品者プロフィール 公式チャンネル ユーザーマニュアル セットアップ手順および使用ガイド: ユーザーマニュアルを開く Zerqon EA は、XAUUSD 取引専用に設計された適応型エキスパートアドバイザーです。 この戦略は、ONNX を通じて統合された Deep LSTM ニューラルネットワークモデルに基づいており、市場の連続的な動きを処理し、価格変動を構造的に分析することを可能にしています。 モデルは、金価格の動き、ボラティリティ、および時間的条件における特定のパターンを識別することに重点を置いています。 固定的な従来型シグナルを使用する代わりに、EA は学習済みニューラルネットワークフレームワークを通じて市場を分析し、適切な条件が検出された場合にのみ取引を実行します。 Zerqon EA は継続的に取引を行うわけではありません。 まったく取引が行われない期間もあれば、適した XAUUSD 市場局面では短時間に
Quantum Emperor MT5
Bogdan Ion Puscasu
4.86 (507)
ご紹介     Quantum Empire EA は 、有名な GBPUSD ペアの取引方法を変革する画期的な MQL5 エキスパート アドバイザーです。 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は、1つの取引を5つの小さな取引に継続的に分割する独自の戦略を採用しています
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
Smart Gold Impulse
Barbaros Bulent Kortarla
3.82 (17)
Smart Gold Impulse の特別先行ローンチフェーズが開始されました。 これは、私が現在 Ultima Markets のリアルシグナル口座で使用し、素晴らしい成果を上げているEA(自動売買システム)です。現在のパフォーマンスは Ultima のライブシグナル実績からご確認いただけます。Smart Gold Impulse は、実際の市場環境においてすでに非常に高いポテンシャルを示しています。私の Ultima リアルシグナル口座で使用しているものと全く同じ設定ファイル(setファイル)は、Smart Gold Impulse の購入者様限定で共有されます。 一方で、本バージョンはまだローンチ段階のものであり、大々的にプロモーションを行う最終段階の製品ではありません。特別ローンチ価格に設定している理由はシンプルです。初期ユーザーの皆様にテストしていただき、結果を追跡し、フィードバックを共有してもらうことで、Smart Gold Impulse が異なるブローカーや口座環境でどのようなパフォーマンスを発揮するのかを把握したいからです。 この先行ローンチ期間中はどなたでも S
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
SixtyNine EA
Farzad Saadatinia
4 (4)
SixtyNine EA – MetaTrader 5向けのゴールド専用エキスパートアドバイザーです。6つの統合戦略レイヤーを搭載し、すべての取引に事前設定されたStop Lossを適用。マーチンゲール、リカバリーシステム、グリッドトレードを使用しない、クリーンなトレード構造を提供します。 公開ライブシグナル:$500スタート、固定0.02ロット、500%以上の成長、20週間以上の実績 公開ライブシグナルは、 SixtyNine EA の主要な実績証明です。口座は $500の残高 から開始され、各取引で 固定0.02ロット を使用し、20週間以上にわたり実際の市場環境で稼働しています。この期間中、 500%以上の総成長率 を記録しました。 また、このシグナルでは実際の市場環境におけるリスク特性も確認でき、約 20%のドローダウン も表示されています。$500という比較的小さな口座で固定0.02ロットを使用しているため、より低いリスクを希望するユーザーは、市場状況やブローカーの約定環境に応じて、より小さいロット設定や保守的なセットファイルを選択できます。 ライブシグナルはこちら 価格
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
ThunderGold Scalper
Jorge Luiz Guimaraes De Araujo Dias
5 (1)
ThunderGold Scalper ThunderGold Scalperは、MetaTrader 5でゴールドを自動売買するために開発されたエキスパートアドバイザーです。 このEAは、M15時間足のXAUUSDおよびGOLD向けに設計されています。独自の多要素意思決定エンジンを使用して、条件を満たした取引機会を検出し、ポジションを自動管理します。 市場構造、トレンド方向、ローソク足の品質、出来高、モメンタム、約定条件を組み合わせて分析します。常に取引するのではなく、適切な市場条件を待つように設計されています。 Live Signal — TMGM 主な機能 XAUUSDおよびGOLD向け 推奨時間足:M15 完全自動売買 グリッド戦略を使用しない 自動Stop LossおよびTake Profit ダイナミックトレーリングストップ リスク率または固定ロットによるポジションサイズ計算 トレンドおよびモメンタムフィルター ローソク足品質および出来高フィルター 重要経済指標ニュースフィルター 祝日および市場休場時の保護 スリッページ調整システム 1日の取引回数制限およびクールダウン 情
SomaOil
Andrii Soma
5 (2)
SomaOil は MetaTrader 5 専用のマルチストラテジー・ブレイクアウト型エキスパートアドバイザーで、WTI 原油(XTIUSD)のみに対応しています。1 枚のチャートに 1 つの EA で、20 の独立戦略が単一の分散ポートフォリオとして同時に稼働します。 ライブシグナル。 ローンチ時に手に取りやすくするため、透明性のある段階的価格モデルを採用しています: ローンチ価格:100 USD(48 時間) 月曜から価格は 10 ライセンス販売ごとに 100 USD 上がります 価格の引き上げは 1 日最大 1 回。同日に 10 ライセンスを超えて販売されても同様です 早期購入者は、製品のライフサイクル全体を通じ最安価格を確保できます。 コンセプト 単一のセットアップで狭い市場レジームに過剰適合しがちなのではなく、SomaOil は厳選された 20 のプリチューン戦略を 1 枚の WTI チャート上の単一 EA で並列実行します。 各戦略は独自のマジックナンバー、コメント、時間足、スイング検出パラメータ、決済、ニュース距離、ロット刻みを持ちます。実行エンジンは共通ですが取引は独
Gold House MT5
Chen Jia Qi
4.49 (59)
Gold House — ゴールド・スイングブレイクアウト取引システム 1つのEA、3つの取引モード。あなたのスタイルに合ったモードを選べます。ナンピンなし。マーチンゲールなし。 10件のご購入ごとに、価格は50米ドルずつ値上がりします。最終予定価格:1,999米ドル。 ライブシグナル: 利益優先モード: https://www.mql5.com/en/signals/2359124 BE(損益分岐)優先モード: https://www.mql5.com/en/signals/2372604 アダプティブモード:   https://www.mql5.com/en/signals/2379287  (高リスク設定の参考例です。利益と損失の両方が大きくなります。推奨設定ではありません。) 重要:購入後、推奨パラメータ、使用説明、注意事項、使用のヒントを受け取るために、必ずプライベートメッセージをお送りください。 (MQL5 メッセージ):   https://www.mql5.com/en/users/walter2008 最新情報をお届け — MQL5チャンネルに参加して、製品ア
Impulse MT5
Simon Reeves
5 (14)
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
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.62 (45)
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
Zoomini
Gennady Sergienko
重要情報: サポートおよび質問への回答はこちらでのみ行います:  https://www.mql5.com/en/users/zolia  ( Zolia - UTC/GMT: 台湾 ); Zoomini は、GoGoPips プロジェクトの 2026 年 7 月の最新研究から生まれた、小規模な機械学習モデルセットです。 これらのモデルは XAUUSD H1 / Gold 専用です。 シグナル: www.mql5.com/en/signals/2381994 知っておくべき重要事項: モデルは 1つの注文 のみで取引し、同じ SL/TP を使用します。 対応: Netting口座 および任意のレバレッジ。 中期的な取引スタイルのため、大口の入金にも対応しています。  100% の取引活動 。 これは、モデルが市場へのエントリーを避けず、常に取引状態にあることを意味します。 モデルは、都合のよいエントリーポイントを探すのではなく、毎分の価格方向を予測するように特別に訓練されています。 購入前の完全な透明性 。   現在、一時的に、またはこの EA の所有者が反対しなければ恒
作者のその他のプロダクト
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
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
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
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
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
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
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 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
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
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
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 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
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
フィルタ:
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
210738
開発者からの返信 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
210738
開発者からの返信 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
210738
開発者からの返信 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
210738
開発者からの返信 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
210738
開発者からの返信 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
210738
開発者からの返信 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
210738
開発者からの返信 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
210738
開発者からの返信 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
210738
開発者からの返信 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
210738
開発者からの返信 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
210738
開発者からの返信 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
210738
開発者からの返信 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
210738
開発者からの返信 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
210738
開発者からの返信 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
210738
開発者からの返信 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
210738
開発者からの返信 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
210738
開発者からの返信 Allan Munene Mutiiria 2026.05.18 09:42
Thanks for the kind review and feedback. Welcome.
ANUP Paul
16
ANUP Paul 2026.05.11 07:55 
 

plzs update multiple manual lot size =1,2,3,4,5,6,7,8,9,10,11,12........

Allan Munene Mutiiria
210738
開発者からの返信 Allan Munene Mutiiria 2026.05.11 16:17
Thanks for the kind review and feedback. Sure. We will consider that in next updates. Thanks.
レビューに返信