Grid Scalper MA MT5 EA

4.44

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.

レビュー 75
evans munene
18
evans munene 2026.04.10 11:18 
 

how can I get source code/

C4four C4Four
28
C4four C4Four 2026.04.08 11:06 
 

thanks alot , after some tweak i cant blieve you gave this for free so far good result

ErlankCronje1
15
ErlankCronje1 2026.04.02 13:39 
 

Great Bot On A large Account Thanx for the feedback and clarity developer interaction also 5 Star

おすすめのプロダクト
これは、ほぼ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
Golden Mind EA
Leszek Aleksander Mroczek
FREE FOR LIMITED TIME Golden Mind EA – Adaptive Grid Trading for GOLD Description Golden Mind EA is a fully automated Expert Advisor for MetaTrader 5 that utilizes a dynamic BUY-only grid strategy, designed exclusively for GOLD (XAU/USD) trading. What sets this EA apart from traditional grid trading systems is its intelligent pair-based position closure logic. Instead of relying on fixed take-profit levels, Golden Mind EA calculates the profit difference between pairs of trades and closes them
FREE
この EA は、移動平均クロスオーバーを使用して取引します。完全にカスタマイズ可能な設定、柔軟なポジション管理設定に加えて、カスタマイズ可能な取引セッションやマーチンゲールおよび逆マーチンゲール モードなどの多くの便利な機能を提供します。 [ インストールガイド | 更新ガイド | トラブルシューティング | よくある質問 | すべての製品 ] 使いやすく、監視しやすい 完全にカスタマイズ可能な移動平均設定 2 つの異なる取引動作を実装します。 カスタマイズ可能な損益分岐点、SL、TP、トレーリング ストップ ECN/非ECNブローカーで機能 2-3-4-5 桁の記号に対応 取引はNFA/FIFOに準拠可能 反対のシグナルで取引を閉じることができます マーチンゲールと逆マーチンゲール機能を実装します 平日と時間帯で取引を絞り込む 組み込みの資金管理 EA は 4 つの異なる動作を実装します。 通常: 強気のクロスオーバーで買い、弱気のクロスオーバーで売る 逆:強気のクロスオーバーで売り、弱気のクロスオーバーで買う 買いのみ: 強気のクロスオーバーで購入し、弱気のクロスオーバーを無視する
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
Budget Golden Scalper M1 — Trial Edition Built for traders who are tired of hype and ready for transparency Let’s be honest. If you have explored automated trading before, you have probably seen systems that looked perfect in backtests but behaved very differently in live markets. Many traders today are understandably cautious — and rightly so. Budget Golden Scalper M1 was created with this reality in mind. This is not marketed as a “holy grail” or a get-rich-quick robot. Instead, it is a str
FREE
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.47 (15)
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
Gap Catcher
Mikita Kurnevich
5 (4)
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 (9)
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
Drream Catcher FX
Michael Prescott Burney
DREAM CATCHER FX is the ultimate EURUSD H1 trading solution, built on 16 years of relentless development and precision-engineered algorithms. This game-changing EA has executed over 4,000 trades with only 99 losses, achieving an astounding win rate that sets it apart from all competitors. Designed for both aggressive and conservative traders, it features advanced exit signals that preemptively close unfavorable trades, ensuring controlled drawdowns and consistent, long-term capital growth. Key
FREE
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
30-DAY FULLY FUNCTIONAL TRIAL – EXPERIENCE THE POWER OF BITBOT V6 ULTIMATE GRID & NEURAL MODEL BRAIN! Bitbot V6 Ultimate Grid is the most advanced and flexible grid trading system for MetaTrader 5, now enhanced with our AI-driven Neural Model Brain for truly adaptive and intelligent trading decisions. Whether you’re a professional algorithmic trader or an ambitious newcomer, Bitbot V6 gives you the performance, safety and transparency you need to scale your results to the next level. Key Featur
FREE
News Scalper EA is an Expert Advisor for trading EURUSD - GBPUSD - XAUUSD pairs, positioning your positions during the news. Developed by an experienced trader with over 17 years of trading experience. News Scalper EA uses a news calendar from MQL5 and trades according to them. With sophisticated strategy and risk management, the EA protects your positions from larger losses! News Scalper EA lets you close the SL after the set time (1 minute, planned) when the position is in minus, which proves
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
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
GridWeaverFX
Watcharapon Sangkaew
4 (1)
Introducing GridWeaverFX  - A Grid/Martingale EA for XAUUSD | Free Download! Hello, fellow traders of the MQL5 community! I am excited to share an Expert Advisor (EA) that I have developed and refined, and I'm making it available for everyone to use and build upon. It's called GridWeaverFX , and most importantly, it is completely FREE! This EA was designed to manage volatile market conditions using a well-known strategy, but with enhanced and clear safety features. It is particularly suited fo
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
EA Infinity Grid Trader – Moving Averages Edition is a complete and versatile Expert Advisor designed for Forex and Exchange markets. It combines high-precision grid trading strategies with moving average analysis and a powerful institutional risk management layer. Ideal for traders looking to automate their operations with total control over exposure , daily targets, intelligent quantitative filters, and a fully customizable on-chart panel. Key Features Flexible Grid Trading: Choose between
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 ] 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 can be NFA/FIFO C
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
Neuro Edge
Agus Wahyu Pratomo
5 (4)
Please give review to support development of this Expert Advisor NeuroEdge EA is an advanced trend-following scalper designed to adapt dynamically to market behavior. Built with precision algorithms and smart averaging logic, it maintains minimal drawdown while capturing high-probability setups in trending conditions. NeuroEdge continuously analyzes market flow to ensure optimal entries and exits — giving traders the edge they need in volatile markets. ️ Core Features: Adaptive Trend Detection
FREE
Babel Assistant
Iurii Bazhanov
4.33 (9)
Babel assistant 1     The MT5 netting “Babel_assistant_1” robot uses the ZigZag indicator to generate Fibonacci levels on M1, M5, M15, H1, H4, D1, W1  periods of the charts , calculates the strength of trends for buying and selling. It opens a position with "Lot for open a position" if the specified trend level 4.925 is exceeded. Then Babel places pending orders at the some Fibonacci levels and places specified Stop Loss , Take Profit. The screen displays current results of work on the position
FREE
このプロダクトを購入した人は以下も購入しています
Quantum Queen MT5
Bogdan Ion Puscasu
4.97 (525)
トレーダーの皆さん、こんにちは!私は Quantum Queen です。Quantumエコシステム全体の至宝であり、MQL5史上最高評価とベストセラーを誇るエキスパートアドバイザーです。20ヶ月以上のライブトレード実績により、XAUUSDの揺るぎない女王としての地位を確立しました。 私の専門は?ゴールドです。 私の使命は?一貫性があり、正確で、インテリジェントな取引結果を繰り返し提供することです。 IMPORTANT! After the purchase please send me a private message to receive the installation manual and the setup instructions. 割引 価格。10 点購入ごとに50ドルずつ値上がりします。最終価格1999ドル ライブシグナルICマーケット:   こちらをクリック ライブシグナルVTマーケット:   こちらをクリック Quantum Queen mql5 パブリックチャンネル:   こちらをクリック ***Quantum Queen MT5 を購入すると、Q
Gold House MT5
Chen Jia Qi
4.88 (32)
Gold House — ゴールド・スイングブレイクアウト取引システム バージョン2.0が大幅な改善を伴ってリリースされました。 近日中に価格調整が予定されています。早めの導入をおすすめします。 93   本販売済み — 残り7本のみ。最安値で手に入れるチャンスをお見逃しなく。 Live signal: https://www.mql5.com/en/signals/2359124 最新情報をお届け — MQL5チャンネルに参加して、製品アップデートやトレードのヒントを受け取りましょう。 リンクを開き、ページ上部の「購読」ボタンをクリックしてください: Click to Join このEAは、私たちのチームの内部リアル取引口座から生まれました。7年間のヒストリカルデータで開発・検証し、実際の市場パフォーマンスで確認した後に公開を決定しました。出品のためにバックテスト曲線を特別に最適化してはいません。ご覧いただいているのは、私たち自身がずっと使用してきたバージョンそのものです。 固定時刻のエントリーやインジケーターのクロスに依存しません。代わりに、ゴールド市場で最も根本的な価格構造である
TwisterPro Scalper
Jorge Luiz Guimaraes De Araujo Dias
5 (33)
取引は少なく。質は高く。一貫性がすべて。 • ライブシグナル モード1 Twister Pro EA は、XAUUSD(ゴールド)のM15タイムフレーム専用に開発された高精度スキャルピングEAです。取引回数は少なめ——しかし、取引する時は必ず目的を持って行います。 すべてのエントリーは注文が出される前に5つの独立した検証レイヤーを通過し、デフォルト設定では極めて高い勝率を実現します。 3つのモード: モード1(推奨)— 非常に高い精度、週あたりの取引数が少ない。資本保全と規律ある取引のために設計。 モード2 — 取引頻度が高く、精度はやや低い。より多くの市場参加を好むトレーダー向け。 モード3(ワイドトレール)— モード1と同じエントリー品質ですが、より広いトレーリングストップでポジションを長く保持し、大きな値動きを捉えます。モード1より取引頻度がやや高め。 仕様: シンボル:XAUUSD | タイムフレーム:M15 最低入金:$100 | 推奨:$250 RAW SPREADアカウントは必須 VPS強く推奨 グリッドなし!すべての取引にTPとSLあり! 推奨ブローカー: Exne
Quantum King EA
Bogdan Ion Puscasu
4.98 (165)
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 用に設計されており、安定した制御された成長を望む初心者とプロの両方のために構築されています。
Gold Snap — ゴールド向け高速利益獲得システム ローンチプロモーション — 限定初期ステージ Gold Snap は現在、特別な初期プロモーション価格で提供されています。 今後の段階では価格は引き続き上昇し、次の大きな目標価格は 999 ドルです。 早期購入者が最も大きな価格優位を得られます。 ライブシグナル: https://www.mql5.com/zh/signals/2362714 MQL5チャンネルに参加して、製品アップデートやトレード情報を受け取りましょう。 リンクを開いた後、ページ上部の「登録」ボタンをクリックしてください: https://www.mql5.com/en/channels/tendmaster Gold House の長期的な開発と実運用での検証を通じて、ゴールド市場におけるブレイクアウト戦略の有効性と、当社の自動適応パラメータシステムの実用的な価値を改めて確認しました。 しかし、どのブレイクアウト戦略にも共通する課題があります: 利益確定が早すぎると、その後の本格的なトレンドを逃してしまう可能性があり、 遅すぎると、含み益の一部を市場に戻して
Quantum Valkyrie
Bogdan Ion Puscasu
4.83 (131)
クォンタムヴァルキリー - 精密、規律、実行 割引   価格。10 回購入するごとに価格が 50 ドルずつ上がります。 ライブシグナル:   こちらをクリック Quantum Valkyrie MQL5 パブリックチャンネル:   こちらをクリック ***Quantum Valkyrie MT5 を購入すると、Quantum Emperor または Quantum Baron を無料で入手できます!*** 詳細については、プライベートでお問い合わせください! IMPORTANT! After the purchase please send me a private message to receive the installation manual and the setup instructions.      こんにちは、トレーダーの皆さん。 私は Quantum Valkyrie です。正確さ、規律、そして制御された実行で XAUUSD にアプローチできるように構築されています。 数ヶ月間、私のアーキテクチャは舞台裏で洗練され続けました。変動の激しいセッシ
Goldwave EA MT5
Shengzu Zhong
4.71 (31)
リアルトレード口座   LIVE SIGNAL(IC MARKETS): https://www.mql5.com/en/signals/2339082 本 EA は、MQL5 上で検証済みのリアルトレードシグナルと、完全に同一の取引ロジックおよび執行ルールを使用しています。推奨された最適化済み設定を使用し、信頼性の高い ECN / RAW スプレッドのブローカー (例:IC Markets または TMGM) で運用した場合、本 EA のリアルトレード挙動は、当該ライブシグナルの取引構造および執行特性に極めて近い形で設計されています。ただし、ブローカーごとの取引条件、スプレッド、約定品質、ならびに VPS 環境の違いにより、個々の結果が異なる可能性がある点にご注意ください。 本 EA は数量限定で販売されています。現在、残りのライセンスは 2 件のみで、価格は USD 999 です。購入後は、プライベートメッセージにてご連絡ください。ユーザーマニュアルおよび推奨設定をお渡しします。 過度なグリッド手法は使用せず、危険なマーチンゲールも行わず、ナンピン(平均取得単価の引き下げ)も使用
The Gold Reaper MT5
Profalgo Limited
4.51 (90)
プロップしっかり準備完了!   (   SETFILEをダウンロード ) WARNING : 現在の価格で残りわずかです! 最終価格: 990ドル EA を 1 つ無料で入手 (2 取引アカウント用) -> 購入後に連絡してください Ultimate Combo Deal   ->   click here JOIN PUBLIC GROUP:   Click here Live Signal ゴールドリーパーへようこそ! 非常に成功した Goldtrade Pro を基にして構築されたこの EA は、複数の時間枠で同時に実行できるように設計されており、取引頻度を非常に保守的なものから非常に不安定なものまで設定するオプションがあります。 EA は複数の確認アルゴリズムを使用して最適なエントリー価格を見つけ、内部で複数の戦略を実行して取引のリスクを分散します。 すべての取引にはストップロスとテイクプロフィットがありますが、リスクを最小限に抑え、各取引の可能性を最大化するために、トレーリングストップロスとトレーリングテイプロフィットも使用します。 このシステムは、重要なサポートとレ
Akali
Yahia Mohamed Hassan Mohamed
4.05 (58)
LIVE SIGNAL: ライブパフォーマンスを見るにはここをクリック 重要:最初にガイドをお読みください このEAを使用する前に、ブローカーの要件、戦略モード、およびスマートアプローチを理解するために、設定ガイドを読むことが重要です。 ここをクリックして公式Akali EAガイドを読む 概要 Akali EAは、ゴールド(XAUUSD)専用に設計された高精度スキャルピングエキスパートアドバイザー(EA)です。非常にタイトなトレーリングストップアルゴリズムを利用して、ボラティリティの高い期間に瞬時に利益を確保します。 このシステムは精度を重視して構築されており、市場の急速な動きを利用し、市場が反転する前に利益を確定することで、高い勝率を目指しています。 設定要件 通貨ペア: XAUUSD(ゴールド) 時間足: M1(1分足) 口座タイプ: Raw ECN / 低スプレッドが必須です。 推奨ブローカー: ガイドを参照してください 注意: このEAはタイトなトレーリングストップに依存しています。スプレッドの広い口座ではパフォーマンスに悪影響を及ぼします。サーバー時間とブローカーの選択の詳細
Chiroptera
Rob Josephus Maria Janssen
5 (13)
Prop Firm Ready! Chiroptera is a multi-currency, single trade Expert Advisor that operates in the quiet hours of the night. It uses single-placed trades with tactically placed Take Profits and Stop Losses, that are continuously adjusted to maximize gains and minimize losses. It keeps track of past and upcoming news reports to ensure impacts are minimized and carefully measures real-time volatility to prevent impacts due to unpredictable geo-political disturbances caused by Tweets and other ad-ho
重要 : このパッケージは、現在の価格で、非常に限られた数のみ販売されます。    価格はすぐに1499ドルになるだろう    100 以上の戦略が含まれており 、今後もさらに追加される予定です。 ボーナス : 999 ドル以上の価格の場合 --> 私の他の EA を  5 つ無料で選択できます! すべてのセットファイル 完全なセットアップと最適化ガイド ビデオガイド ライブシグナル レビュー(第三者) 究極のブレイクアウトシステムへようこそ! 8 年をかけて丹念に開発された、洗練された独自のエキスパート アドバイザー (EA) である Ultimate Breakout System をご紹介します。 このシステムは、高く評価されているGold Reaper EAを含む、MQL5市場で最高のパフォーマンスを誇るいくつかのEAの基盤となっています。 7か月以上にわたって1位を維持したこのほか、Goldtrade Pro、Goldbot One、Indicement、Daytrade Proもランクインしました。 Ultimate Breakout System は単なる EA
The Gold Phantom
Profalgo Limited
4.54 (28)
プロップファーム準備完了! --> すべてのセットファイルをダウンロード 警告: 現在の価格では残りわずかです! 最終価格: 990ドル 新着(399ドルから) :EAを1つ無料でお選びください!(取引口座番号は2つまで、UBSを除く私のEAのいずれか) 究極のコンボディール   ->   こちらをクリック 公開グループに参加する: ここをクリック   ライブシグナル ライブシグナル2 !! ゴールドファントム登場!! The Gold Reaper の大成功に続き、その強力な兄弟機、 The Gold Phantom を ご紹介できることを大変誇りに思います。これは、同じ実戦テスト済みのエンジンをベースに構築された、純粋で無駄のないブレイクアウト システムですが、まったく新しい一連の戦略が盛り込まれています。 The Gold Reaper の非常に成功した基盤の上に構築された The Gold Phantom は 、 自動化された金取引をスムーズに実行します。 このEAは複数の時間枠で同時に動作するように設計されており、取引頻度を完全に制御できます。 非常に保守的な設定
Full Throttle DMX
Stanislav Tomilov
5 (6)
フルスロットルDMX - リアルな戦略 , とリアルな結果   Full Throttle DMXは、EURUSD、AUDUSD、NZDUSD、EURGBP、AUDNZDの通貨ペアで動作するように設計された、マルチ通貨取引エキスパートアドバイザーです。このシステムは、よく知られたテクニカル指標と実績のある市場ロジックを用いた、古典的な取引アプローチに基づいて構築されています。EAには10種類の独立した戦略が含まれており、それぞれが異なる市場状況と機会を特定するように設計されています。多くの現代の自動システムとは異なり、Full Throttle DMXは、グリッド、平均化、マーチンゲール、その他の積極的な回復手法といったリスクの高い資金管理手法は使用しません。このシステムは、長年にわたりテストされてきた、規律正しく保守的な取引哲学に従っています。EAは、H1時間枠で動作するデイトレードシステムを使用し、影響力の大きい経済イベント時の取引を回避するためのニュースフィルターを内蔵しています。取引は5つの通貨ペアに分散されているため、単一市場への依存を軽減できます。この戦略は透明性の高い取引
Agera
Anton Kondratev
3.75 (8)
AGERA は 、金市場の脆弱性を特定するための、完全に自動化された多面的なオープン EA です。 Not        Grid       , Not        Martingale    ,    Not      "   AI"         , Not      "   Neural Network" ,    Not      "   Machine Learning"    ,     Not     "ChatGPT"   ,     Not       Unrealistically Perfect Backtests  AGERA    Community :       www.mql5.com/en/messages/01e0964ee3a9dc01 Vantage Real :    https://www.mql5.com/en/signals/2363787 Tickmill Real :     https://www.mql5.com/en/signals/2361808 Default       Settings for One Сhart 
私のライブシグナルと同じ結果をお望みですか?   私が使っているのと同じブローカーを使用してください:   IC MARKETS  &  I C TRADING .  中央集権化された株式市場とは異なり、外国為替には単一の統合された価格フィードがありません。  各ブローカーは異なるプロバイダーから流動性を調達し、独自のデータストリームを作成しています。 他のブローカーでは、60〜80%に相当する取引パフォーマンスしか達成できません。 ライブシグナル MQL5のForex EA Tradingチャンネル:  私のMQL5チャンネルに参加して、最新情報を入手してください。  MQL5上の14,000人以上のメンバーからなる私のコミュニティ . 10個中残り3個のみ、$499で提供中! その後、価格は$599に引き上げられます。 EAは、購入されたすべてのお客様の権利を確実にするため、数量限定で販売されます。 AI Gold Scalp Proのご紹介:損失を教訓に変える自己学習型スキャルパー。  ほとんどのスキャルピングEAは自分のミスを隠します。AI Gold Scalp Pro
私のライブシグナルと同じ結果を求めていますか?   私と同じブローカーを使用してください:   IC MARKETS  および  I C TRADING .  中央集権的な株式市場とは異なり、FXには単一の統一された価格フィードは存在しません。 各ブローカーは異なるプロバイダーから流動性を調達しているため、独自のデータストリームが生成されます。他のブローカーでは、私の取引パフォーマンスの60〜80%程度しか再現できない可能性があります。     MQL5 Forex EA Trading チャンネル:  MQL5チャンネルに参加して最新ニュースを受け取ってください。  MQL5にて15,000人以上のメンバーが参加するコミュニティ . 499ドルでの販売は残り10本中3本のみです! それ以降、価格は599ドルに引き上げられます。 本EAは、購入されたすべてのお客様の権利を保護するため、限定数のみ販売されます。     AI Gold Tradingは、高度な GPT-4oモデルを活用し、XAU/USD(ゴールド)市場で洗練されたトレンドフォロー戦略を実行します。システムはマルチタ
Quantum Bitcoin EA
Bogdan Ion Puscasu
4.72 (123)
Quantum Bitcoin EA   : 不可能なことは何もありません。やり方を見つけ出すだけの問題です。 トップ MQL5 販売業者の 1 つによる最新の傑作、   Quantum Bitcoin EA で ビットコイン 取引の未来に足を踏み入れましょう。パフォーマンス、精度、安定性を求めるトレーダー向けに設計された Quantum Bitcoin は、不安定な暗号通貨の世界で何が可能かを再定義します。 重要! 購入後、インストールマニュアルとセットアップ手順を受け取るために私にプライベートメッセージを送信してください。 10 回購入するごとに価格が 50 ドル上がります。最終価格 1999 ドル Quantum Bitcoin/Queen チャンネル:       ここをクリック ***Quantum Bitcoin EA を購入すると、Quantum StarMan を無料で入手できます!*** 詳細についてはプライベートでお問い合わせください! Quantum Bitcoin EA は H1 時間枠で成功し、市場の勢いの本質を捉える トレンドフォロー戦略 を
Gold Trade Pro MT5
Profalgo Limited
4.3 (37)
プロモーションを開始します! 449ドルで残りわずかです! 次の価格: 599ドル 最終価格: 999ドル EA を 1 つ無料で入手 (2 取引アカウント用) -> 購入後に連絡してください Ultimate Combo Deal   ->   click here Live signal:   https://www.mql5.com/en/signals/2084890 Live Signal high risk :  https://www.mql5.com/en/signals/2242498 Live Signal Set Prop Firm Set File JOIN PUBLIC GROUP:   Click here Parameter overview Gold Trade Pro はゴールド取引 EA の仲間入りですが、大きな違いが 1 つあります。それは、これが本物の取引戦略であるということです。 「実際の取引戦略」とは何を意味しますか?   おそらくお気づきかと思いますが、市場に出回っているほぼすべてのゴールド EA は単純なグリッド/マーチンゲー
Smart Owl FX is a sophisticated multicurrency trading algorithm designed to operate with surgical precision during the quiet hours of the Asian session. While the market sleeps, the "Smart Owl" hunts for opportunities using advanced mean-reversion logic tailored for low-volatility periods. This Expert Advisor relies on market structure analysis rather than dangerous strategies like martingale or grid. Every trade is calculated to maximize statistical probability. Set File IC/Vantage/Tickmil..se
Golden Hen EA
Taner Altinsoy
4.51 (49)
概要 Golden Hen EA は、 XAUUSD 専用に設計されたエキスパートアドバイザー(EA)です。異なる市場状況や時間枠(M5、M30、H2、H4、H6、H12、W1)でトリガーされる 9つ の独立した取引戦略を組み合わせて動作します。 EAは、エントリーとフィルターを自動的に管理するように設計されています。EAの中核となるロジックは、特定のシグナルを識別することに重点を置いています。Golden Hen EAは、 グリッド、マーチンゲール、またはナンピン(averaging)手法を使用しません 。 EAによって開かれるすべてのトレードは、事前に定義された ストップロス(Stop Loss) と テイクプロフィット(Take Profit) を使用します。 ライブシグナル   |   アナウンスチャンネル  | セットファイルをダウンロード v4.4 9つの戦略の概要 EAは複数の時間枠で同時にXAUUSDチャートを分析します: 戦略 1 (M30):   この戦略は、定義された弱気パターンの後に、潜在的な強気(bullish)反転シグナルを識別するために、直近のバーの特
PrizmaL Gravity
Vladimir Lekhovitser
5 (1)
リアルタイム取引シグナル 取引活動の公開リアルタイム監視: https://www.mql5.com/ja/signals/2364406 公式情報 出品者プロフィール 公式チャンネル ユーザーマニュアル セットアップ手順および使用ガイド: ユーザーマニュアルを開く PrizmaL Gravity は、構造化されたシンプルなスキャルピング環境において、ニューラルネットワークの学習によって開発された次世代のエキスパートアドバイザーです。 本システムは2020年から現在に至るまでの市場データでトレーニングされ、異なるボラティリティ環境や市場挙動に適応できるよう設計されています。 最新のアップデートにより、戦略は買いと売りの両方の取引を完全に統合しました。 システムは特定の方向に偏ることなく、モデル条件に基づいて両方向を活用します。 PrizmaL Gravity は継続的な市場参加ではなく、選択的な参加モデルを採用しています。 現在は週5日間の全取引期間にわたって稼働し、内部フィルタリングロジックを維持しながら、より多くの市場フェーズに対応します。 市場条件が整っ
Gold Neuron
Vasiliy Strukov
5 (9)
Gold Neuron XAUUSD向け高度マルチストラテジー取引システム ご注意ください:EAが現在の状況で最適な戦略を市場から自動的に抽出するため、設定で「すべての戦略」を有効にしてください。 推奨最低残高:0.01ロットにつき300ドル 例:0.02ロットにつき600ドルの残高など Gold Neuron EAは、M15時間足での金(XAUUSD)取引に特化して設計された、プロフェッショナルなマルチストラテジーEAです。 このシステムは、10種類の独立した取引戦略を統合し、様々な市場環境下で高確率の取引機会を検出します。 単一戦略のロボットとは異なり、Gold Neuron EAは複数の取引手法を組み合わせることで、市場に動的に適応します。 • トレンド取引 • ブレイクアウト検出 • 反転機会 これにより、EAは様々な市場局面において常にアクティブかつ効率的に機能します。 このシステムは、広範なバックテストとフォワードテストを含む、3ヶ月以上にわたる開発、最適化、テストを経て完成しました。 コア戦略エンジン Gold Neuron EAは、価格変動分析とテクニカル指標を組み合わ
Aot
Thi Ngoc Tram Le
4.8 (108)
AOT 多通貨エキスパートアドバイザー(AIセンチメント分析搭載) 相関通貨ペア間のポートフォリオ分散のためのマルチペア平均回帰戦略。 AOTを初めてテストする場合:     固定ロットサイズ設定 から開始してください。固定ロット0.01 | ペアあたり単一ポジション | 高度な機能オフ。システムの動作を理解するための純粋な取引ロジック。 トラックレコードシグナル 詳細 設定ファイル名 説明 DarwinexZero 口座規模 $100k 設定ファイル AOT MR モジュール: リカバリー機能有効 (-500ポイント) ICMarketsSC 口座規模 $20,000 設定ファイル AOT SWING モジュール + AOT MR モジュール: リカバリー機能有効 (+500ポイント)。BE、SPS有効 重要! 購入後、インストールマニュアルと設定手順をお受け取りいただくため、プライベートメッセージをお送りください。 リソースとドキュメント リソース 説明 AOT公式チャンネル このチャンネルにより、ユーザーは最新情報を確実に受け取ることができます AOTの取引頻度について なぜボッ
BB Return mt5
Leonid Arkhipov
5 (28)
BB Return — ゴールド(XAUUSD)取引のためのエキスパートアドバイザー(EA)です。このトレードアイデアは、以前に 裁量トレード で使用していたものを基にしています。戦略の中核は Bollinger Bands(ボリンジャーバンド) のレンジへの価格回帰ですが、機械的でも毎回のタッチでもありません。ゴールド市場ではバンドだけでは不十分なため、EA には弱い・機能しない相場状況を排除する追加フィルターが組み込まれています。回帰のロジックが本当に妥当な場合にのみ取引が行われます。   取引原則 — 本戦略ではグリッド、マーチンゲール、ナンピン(平均化)を使用しません。EA は 固定ロット または AutoRisk モードで動作します。BB Return はスプレッド、スリッページ、ブローカーの価格配信の違いに影響されにくく、 Standard、ECN、Pro、Raw、Razor など、あらゆるブローカー・口座タイプで使用できます。取引セッションに依存せず、 24時間稼働 します。   $ 359   は最終価格ではありません。 現在の価格で残りは5~7ライセンスのみです。
クイーンストラテジーズエンパイア – エキスパートアドバイザー 概要 Queen Strategies Empireは、異なる取引コンセプトに基づいて構築された7つの独立したモードを備えたマルチ戦略エキスパートアドバイザーです。 各モードは独自のエントリーロジック、取引管理、SLとTPの構造を備えており、1つのシステム内で複数のアルゴリズムアプローチを可能にします。 警告: 複数の戦略を同時に使用する場合、全体のバランスを保つためにロットサイズはすべて同じにしてください。1つの戦略がストップロスに達した場合、その戦略のロットサイズが大きいと、全体の回復が遅れる可能性があります。 **ストラテジー5(自動ロット有効)**では、ロットサイズが適切なドローダウン設定を決定します: ロットサイズを増やす場合、少なくとも1つのグリッドレベルを許可するために、より大きなドローダウンが必要です。 ロットサイズを減らす場合、それに応じてドローダウンも減らす必要があります。 詳細はユーザーマニュアルをご参照ください。この調整は将来のアップデートで自動化される可能性があります。 Queen Stra
Karat Killer
BLODSALGO LIMITED
4.58 (31)
純金の知性。徹底的に検証済み。 Karat Killer   は、使い回しのインジケーターと水増しされたバックテストを持つ、ありふれたゴールドEAではありません——XAUUSD専用に構築された   次世代機械学習システム   であり、機関投資家レベルの方法論で検証され、見せかけよりも実質を重視するトレーダーのために設計されています。 LAUNCH PROMOTION - LIMITED TIME OFFER   Price increases every 24 hours at 10:30 AM Cyprus time.   Secure the lowest price today before the next increase. 詳細なバックテストレポート、検証方法論、ポートフォリオ相関研究 BLODSALGO Analyticsサブスクリプション——無料プロフェッショナルダッシュボード(購入に含まれます) LIVE IC TRADING SIGNAL   すべてのブローカーで動作します。推奨ブローカーについては   こちらのガイドをご確認ください。 ほとんどのEAが固定ルール、
AI Quantum Scalper — インテリジェント実行の進化 精度。知性。マルチマーケットの支配。 SETファイルをダウンロード  | 入力ガイド | セットアップガイド Promotion: 割引価格:プロモーション期間中、価格は**毎日50ドルずつ上昇**します。 段階的価格設定:最初の100名の顧客の後、価格は**999.99ドル**に上昇し、その後**4999.99ドル**まで段階的に上昇します。 特別オファー:今すぐAI Quantum Scalperを購入すると、**EA Titan Breaker**を受け取るチャンスがあります(詳細はプライベートメッセージでお問い合わせください)。 Live Signal: [ CLICK HERE ] 重要:購入後、最適化されたsetファイルおよびインストール手順を受け取るために、必ずプライベートメッセージを送信してください。 紹介 私はAI Quantum Scalperです。 私は一般的なエキスパートアドバイザーではなく、高頻度または無制御なスキャルピングのために設計されたものでもありません。私は、精度、規律、そ
Optimize your trading environment: To get the best results matching the live signal, it is highly recommended to use a reliable True ECN broker with low latency and tight spreads. Because Forex liquidity varies, choosing a robust broker ensures the algorithm can execute trades with maximum precision. LIVE SIGNAL & COMMUNITY Live Performance (More than 7 months):  View AI Gold Sniper Live Signal Forex EA Trading Channel:  Join my community of over 15,000 members for the latest updates and support
Nano Machine
William Brandon Autry
5 (10)
Nano Machine GPT Version 2 (Generation 2) – 持続的プルバック・インテリジェンス 私たちは2024年末にMean Machineでこの変革を始めました。リアルな最先端AIをライブのリテール外国為替取引に導入した最初期のシステムの一つです。 Nano Machine GPT Version 2はそのラインにおける次の進化です。 ほとんどのAIツールは一度回答すると、すべてを忘れます。 Nano Machine GPT Version 2は違います。 分析したすべてのプルバックセットアップ、すべてのエントリー、すべての見送り、各判断の背後にある推論、市場の反応、そして各Machine Symmetryバスケットの実際のパフォーマンスを記憶しています。毎セッションの完全なコンテキスト。時間とともに蓄積される集中したインテリジェンス。 これはマーケティングのためにAIを付け足しただけのEAではありません。 これはプルバックトレーディングのために構築された持続的な専門インテリジェンスです。 従来のEAは固定されたルールの中に閉じ込められたままです。Na
Zenox
PETER OMER M DESCHEPPER
4.16 (32)
フラッシュセール:10冊限定で50%オフ!通常価格:1349.99米ドル。最新情報を入手するには、無料の公開チャンネル こちら にご参加ください! ライブシグナルが10%増加するごとに、Zenoxの独占権を維持し、戦略を保護するために価格が引き上げられます。最終価格は2,999ドルとなります。 ライブシグナル IC Markets口座、証明としてライブパフォーマンスをあなた自身の目でお確かめください! ユーザーマニュアルをダウンロード(英語) Zenoxは、最先端のAI搭載マルチペアスイングトレードロボットで、トレンドを追跡し、13種類の通貨ペアにわたってリスクを分散します。長年にわたる献身的な開発により、強力な取引アルゴリズムが実現しました。 2000年から今日までの高品質なデータセットを使用しました。AIは最新の機械学習技術を用いてサーバー上でトレーニングされ、その後強化学習が行われました。このプロセスには数週間かかりましたが、結果は非常に印象的です。トレーニング期間は2000年から2020年までです。2020年から今日までのデータはOut Of Sampleです。複数年にわた
作者のその他のプロダクト
Spectra Zone Scalper
Allan Munene Mutiiria
3.17 (6)
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.44 (18)
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
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.71 (14)
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
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
Order Blocks Scalper
Allan Munene Mutiiria
4.33 (6)
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 Daily Range Breakout MT5 EA is a fully automated trading solution designed to identify and trade breakouts from the daily price range. It simplifies breakout trading with precise detection, customizable settings, and effective risk management options. Ideal for traders looking to capture market momentum, this EA helps identify high-probability breakout opportunities with minimal effort. How It Works Each day, the EA identifies the high and low price range based on a user-defined time windo
FREE
BOOM and CRASH Envelopes Scalper MT5 EA Unleash your trading potential with the BOOM and CRASH Envelopes Scalper MT5 EA , a meticulously crafted Expert Advisor designed for MetaTrader 5, tailored specifically for the high-octane Boom and Crash indices. This EA combines the precision of Envelopes and RSI indicators with a robust scalping strategy, offering traders a dynamic tool to capitalize on rapid market movements. Whether you're a seasoned scalper or a newcomer to synthetic indices, this EA
FREE
Martingale Zone Recovery MT5 EA 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
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
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
This MA ADX Market analyzer Expert Advisor is an advanced EA that continuously scans the market and finds the best trading opportunities for the trader. It uses a combination of Moving Average (MA) and ADX indicators to generate the trading signals. It is a fully automated EA that sends buy and sell orders to the market so that the trader does not have to be at the computer interface each time and gives his or her time to do his own activities.  This is a free EA that you can download Straight A
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
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
One of the most sought-after Expert Advisor programs, or as some prefer to call it, "trading bots," on the market is FX TradeCZAR EA . The FX TradeCZAR EA is a programmed EA that carefully scans the market and generates  trading signals , as the name suggests. These signals can either be manually used by the trader to make individual trading decisions and be included into the trading system, or they can be automatically used by the EA to make market orders. The EA's ability to execute quick tran
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
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
フィルタ:
evans munene
18
evans munene 2026.04.10 11:18 
 

how can I get source code/

C4four C4Four
28
C4four C4Four 2026.04.08 11:06 
 

thanks alot , after some tweak i cant blieve you gave this for free so far good result

Allan Munene Mutiiria
174377
開発者からの返信 Allan Munene Mutiiria 2026.04.08 16:45
Hello. Thanks for the kind review and feedback. It was made better by user reviews and suggestions. Still making it better. Appreciated.
ErlankCronje1
15
ErlankCronje1 2026.04.02 13:39 
 

Great Bot On A large Account Thanx for the feedback and clarity developer interaction also 5 Star

Allan Munene Mutiiria
174377
開発者からの返信 Allan Munene Mutiiria 2026.04.02 14:54
Hello. Thanks for the feedback. You could just have asked what changed. The new version did not touch anything in the last version. New inputs were added for better risk control for all traders. We explained these changes in the updated description and in the EA channel as well. What do you feel has changed? A couple of things did. Signals generation now uses market structure; the moving average was kept as the default, market structure cooldown was added, and the earlier version was preserved as the default. Added trading sessions; no session filter kept as the default. And a lot more things for risk control. The earlier version was perfectly preserved. The settings might seem confusing, but take time to read the description. Everything will be clear, or you can also clarify in comments. You can ask anything. We always respond as soon as possible. Thanks.
developer1181
14
developer1181 2026.03.30 12:12 
 

ユーザーは評価に対して何もコメントを残しませんでした

Allan Munene Mutiiria
174377
開発者からの返信 Allan Munene Mutiiria 2026.03.30 23:24
Thanks for the kind review and feedback. Any timeframe. Just use the one that suits your trading style. Thanks.
Jose Howard
55
Jose Howard 2026.03.28 17:26 
 

Powerful grid EA with smart cooldown and solid risk tools. Tons of settings—best if you understand grid trading. Not for beginners.

Allan Munene Mutiiria
174377
開発者からの返信 Allan Munene Mutiiria 2026.03.29 01:03
Thanks for the kind review and feedback. Sure. Thanks
Leo Lay
18
Leo Lay 2026.03.27 22:35 
 

This EA is amazing i have been using this few versions ago and as long as you get the settings you desire, it works great! Back test first and get to know it! Once you get it right its awesome but not leave and go EA, but i wouldnt do it with any EAs. This is amazing mate thank you for sharing.

Allan Munene Mutiiria
174377
開発者からの返信 Allan Munene Mutiiria 2026.03.28 10:59
Hello. Thanks for the kind review and feedback. Welcome.
Harsh Singh
18
Harsh Singh 2026.03.19 20:09 
 

Your EA keeps opening trades it does not give a F of floating pnl please review and also please provide a best set file for XAUUSD thnx

Allan Munene Mutiiria
174377
開発者からの返信 Allan Munene Mutiiria 2026.03.19 23:24
Hello. Thanks for the kind review and feedback. Sure. We're working to upgrade it, and any suggestion is welcomed. Currently, we are working on identifying consolidation and trending markets to add cooldown so it does not keep adding positions. What is currently there is a cap mechanism, so after some grids, it stops adding positions, but the cooldown will be much better. Thanks.
Jun Yi Lin
139
Jun Yi Lin 2026.03.18 15:53 
 

Sometimes the trades didn't add to the basket, so I need to close it manually if the trend goes to the opposite direction. Could you fix it? Thanks!

-> Removing inactive basket ID: XX

But the situation is: XX is still on trade (active, not closed). So this trade won't be monitored by EA, causing EA open another trade near that level and lead to continuous of floating losses.

This situation happened at initial basket frequently.

By the way, congrats for flipping the account! ^ ^

Allan Munene Mutiiria
174377
開発者からの返信 Allan Munene Mutiiria 2026.03.18 21:37
Hello. Thanks for the kind review and feedback. The issue you are describing was solved in the latest version already. Unmonitored positions are considered on every bar. But it's noted. We'll check and reinforce the lone positions in the next version. Welcome.
chuakai9
39
chuakai9 2026.03.16 09:16 
 

I tested it with XAU and it works really great! I got 10-20% everyday but some order I have to manually close if I think that order go to a wrong way. If you have any trade setup for XAU, please share.

Muhib Rakhman
18
Muhib Rakhman 2026.02.26 18:20 
 

thank you for the good bot

Allan Munene Mutiiria
174377
開発者からの返信 Allan Munene Mutiiria 2026.02.27 09:34
Thanks for the kind review and feedback. Welcome.
josefx28
34
josefx28 2026.02.18 22:55 
 

How can I reverse the grid operations so that buy orders become sell orders and vice versa, but only within the grid?

Allan Munene Mutiiria
174377
開発者からの返信 Allan Munene Mutiiria 2026.02.19 09:02
Hello. Thanks for the kind review and feedback. Currently, that is not possible, but we can include it in the next updates. Thanks.
Alavin Nderitu
18
Alavin Nderitu 2026.02.14 06:10 
 

Perfect if you want to up your profit.Thank you very much for this EA.

Allan Munene Mutiiria
174377
開発者からの返信 Allan Munene Mutiiria 2026.02.14 08:50
Thanks for the kind review and feedback. Much appreciated.
dipaulagalvao
42
dipaulagalvao 2026.02.11 14:06 
 

Congratulations, great work on this EA! The update to version 9 made it much more accurate. Thank you for your time and work on this development.

Allan Munene Mutiiria
174377
開発者からの返信 Allan Munene Mutiiria 2026.02.11 20:50
Thanks for the kind review and feedback. You're most welcome.
Evgeny Belyaev
91906
Evgeny Belyaev 2026.01.22 11:46 
 

ユーザーは評価に対して何もコメントを残しませんでした

Allan Munene Mutiiria
174377
開発者からの返信 Allan Munene Mutiiria 2026.01.22 13:45
Thanks for the kind review and feedback. Welcome.
LeeMartin911
19
LeeMartin911 2026.01.18 07:07 
 

This bot is really well made, thank you to the developer. Just one question, is there a set file to trade gold and bitcoin, please or someone on the forum is using it for the two pairs that can share their settings?

Allan Munene Mutiiria
174377
開発者からの返信 Allan Munene Mutiiria 2026.01.18 11:46
Hello. Thanks for the kind review and feedback, and welcome. We currently don't have any set file. We strongly advise you just backtest and optimize on your own to get the best settings that favour your trading style, because what favours someone can be a nightmare to you. Like a lot of things matter. Trading style, trading sessions, risk tolerance, and a couple of many more things. We made as many inputs as possible so that you can control the program dynamically. In case of any suggestion, you can just leave a comment. Thanks.
Ir Moh Zainal Arifin
293
Ir Moh Zainal Arifin 2026.01.16 01:43 
 

great EA... but no grid.. activate only 1 layer per basket...great result..

Allan Munene Mutiiria
174377
開発者からの返信 Allan Munene Mutiiria 2026.01.16 09:31
Hello. Thanks for the kind review and feedback. By no grid you mean? Maybe share the screenshot in the comments section. Thanks.
truongtri12345678
24
truongtri12345678 2026.01.15 13:49 
 

This is simply a bot that holds losing positions; I don't think it's suitable for anyone with an account balance below 10K

Allan Munene Mutiiria
174377
開発者からの返信 Allan Munene Mutiiria 2026.01.15 14:23
Okay. Thanks
imsandeep051
14
imsandeep051 2026.01.12 18:26 
 

ユーザーは評価に対して何もコメントを残しませんでした

ambighen
682
ambighen 2026.01.06 19:32 
 

Seems promising, but could use a few options to increase flexibility. Could you please send me the source code? I would like to add some features to it, such as alternative entry indicators (EMA, SMA, etc.)

Allan Munene Mutiiria
174377
開発者からの返信 Allan Munene Mutiiria 2026.01.07 12:15
Thanks for the kind review and feedback.
Ren Bugnot
43
Ren Bugnot 2025.12.19 14:54 
 

good but lack of features like stop trading and news filtering options. it might be helpful to the EA since it uses grid system it will trash the account if there's a big movement in the market. but overall its good.

Allan Munene Mutiiria
174377
開発者からの返信 Allan Munene Mutiiria 2025.12.20 17:14
Thanks for the kind review and feedback. We'll consider that in the next updates. Thanks.
レビューに返信