ScalpEA v2 preview

5

Hi, I would like to show you limited version of my EA which I am selling here in full version.
But this system might have less features but is still working well, again, try it on demo first!
Difference between full and preview is almost only in machine learning part. If you have any question visit my channel.

How does it work?:

  1. EA waits until there are 3 candles (H1) after each other and between (candle 1 top wick) and (candle 3 bottom wick) is gap
  2. After that EA places pending order below candle 3 bottom wick and waits if market returns to the gap.
  3. Thats all it does.

Some additonal info about full version and configs here
Channel where to discuss and share your ideas

Graph at the screensots is from backtest with default settings on XAUUSD.
Backtest it and test it on demo first, this version does not have all the protection that full version does. Simply test it first, no profit is guaranteed!
FYI, I am using full version on VT Markets, Vantage and Purple trading.
Also make sure to enable Algoritmic trading in your Metatrader settings or it will not weork! (Tools - Options - Expert advisors)

You can find full ScalpEA v2 here: https://www.mql5.com/en/market/product/167553

AI generated description:

ScalpEA V2 Preview — FVG Scalping Expert Advisor

AI generated description:

FVG Scalping Expert Advisor for MetaTrader 5

Version 2.650 | © Martin Vrlik 2026

━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━


OVERVIEW

────────

ScalpEA v2 is an automated Expert Advisor for MetaTrader 5 that detects and trades Fair Value Gap (FVG) zones. A Fair Value Gap is a price inefficiency that forms when three consecutive candles leave an uncovered gap between the high of the first candle and the low of the third candle (bullish FVG), or vice versa (bearish FVG). The EA places pending limit or stop orders at these zones and manages them through a complete set of filters, safety checks and risk controls.

The EA is primarily designed for XAUUSD (Gold) but works on any instrument and timeframe combination supported by MetaTrader 5.


HOW IT WORKS

────────────

On every new bar of the detection timeframe (sourceTF), the EA scans recent price history for valid FVG zones and stores them in an internal cache. On every new bar of the placement timeframe (placementTF), it reads that cache, applies all active filters, and places pending orders for zones that pass every check. The two timeframes can be set independently, allowing combinations such as detecting FVGs on H1 while evaluating placement conditions on M30.

Before placing any order the EA runs the following checks in sequence: duplicate detection (no two orders for the same FVG zone), candle direction filters, EMA trend filter, gap size filters, distance from current price, zone age, spread limit, margin and volume validation, and STOPS_LEVEL compliance. Only zones that pass all active filters receive a pending order.

If an order placement fails because the market is closed (for example at session open), the EA saves the order to a retry queue and attempts to place it again every tick for up to five minutes.


SIGNAL FILTERS

──────────────

Third candle confirmation — the candle that closes the FVG gap must move in the direction of the signal: green (close > open) for bullish FVG, red for bearish FVG.

All-three-candles confirmation — all three candles forming the FVG must be the same color. This is a stricter version of the above filter and ensures the FVG is backed by a consistent directional impulse rather than a mixed sequence.

Middle candle wick check — the wick of the middle candle (the one between the two gap candles) is inspected. If its counter-directional wick is more than wickMultiplier times longer than its directional wick, the signal is rejected. This filters out candles with strong rejection shadows that suggest weak momentum.

EMA(200) trend filter — before placing any pending order, the EA checks whether the last N closed H1 candles all lie entirely above (for BUY) or entirely below (for SELL) the 200-period Exponential Moving Average on the H1 chart. For a BUY order to be allowed, the Low of every one of those candles must be greater than the EMA value at that bar. For a SELL order, the High of every candle must be below the EMA. This filter always uses the H1 timeframe regardless of the sourceTF and placementTF settings. If not enough historical data is available at EA startup, the filter is skipped for that bar to prevent false blocking.

SELL-specific gap filters — SELL signals require a larger minimum gap size than BUY signals (controlled by a multiplier), and optionally a maximum gap size cap to avoid trading exhaustion moves.


PENDING ORDER MANAGEMENT

────────────────────────

The EA enforces a configurable maximum number of pending orders per direction (BUY and SELL are counted separately). When the FIFO system is enabled and the limit is reached, the oldest pending order is automatically removed to make room for the newest FVG signal. When FIFO is disabled, new signals are skipped until an existing pending order is filled or expires.

Pending orders are automatically removed when the FVG zone that generated them reaches its maximum age (maxFVGDurationMinutes). The age is measured from the time the FVG zone was formed, not from the time the order was placed.


RISK AND MONEY MANAGEMENT

──────────────────────────

The EA supports two lot sizing modes. In fixed mode, every trade uses the same lot size defined by the lotSize parameter. In dynamic mode, the lot size is calculated automatically for each trade based on the account balance, the configured risk percentage per trade, and the Stop Loss distance, ensuring that each trade risks no more than the specified percentage of the account balance.

SELL trades support independent TP, SL, risk percentage and pending order limit settings, because gold tends to behave differently during price drops versus rallies.

Every order is validated before sending: free margin is checked against the required margin, volume is verified against the symbol's minimum, maximum and step values, the number of pending orders is checked against the broker's account limit, and SL/TP distances are verified against the symbol's STOPS_LEVEL.


VISUALIZATION

─────────────

Active FVG zones are drawn as colored rectangles directly on the chart. Bullish zones use one color and bearish zones another, both fully configurable. Transparency, maximum number of visible zones and optional size labels can all be adjusted. Zones are automatically removed from the chart when they expire.


A dashboard panel in the top-left corner of the chart shows current account balance, equity, floating P/L, total EA profit since the start, number of closed trades, win rate, and the current number of pending orders per direction.


INPUT PARAMETERS

────────────────


Basic Settings
allowLong — enables BUY pending orders from bullish FVG zones. When set to false, no BUY orders are placed regardless of detected signals.
allowShort — enables SELL pending orders from bearish FVG zones. When set to false, no SELL orders are placed.
magicNumber — unique identifier assigned to all orders and positions opened by this EA. Change this value if you run multiple EAs on the same account to avoid conflicts.
configName — a text label displayed in the on-chart dashboard. Useful for identifying different parameter sets during optimization or testing.
tradeComment — comment string attached to every order and visible in the MT5 trade history.
sourceTF — the timeframe on which FVG zones are detected. The EA scans candle history on this timeframe to find valid gaps. Recommended values are H1 or H4.
placementTF — the timeframe that controls when pending orders are evaluated and placed. A new evaluation runs only at the open of each new bar on this timeframe. Must be equal to or smaller than sourceTF.

Money Management
lotSize — fixed lot size used for every trade when dynamic lot sizing is disabled.
useDynamicLotSizing — when true, the lot size is calculated automatically based on account balance, risk percentage and Stop Loss distance. When false, the fixed lotSize value is used.
riskPerTradePercent — maximum risk per trade expressed as a percentage of account balance. Active only when useDynamicLotSizing is true.

FVG Detection
maxFVGPerSide — maximum number of pending orders allowed simultaneously in one direction. BUY and SELL are counted separately.
minGapPoints_global — minimum FVG gap size in points. Gaps smaller than this value are ignored as noise. For XAUUSD, 30 points equals 3 pips.
maxFVGDurationMinutes — maximum age of an FVG zone in minutes, measured from the time the zone was formed. Zones older than this are removed from the cache and any pending orders generated by them are cancelled.
maxFVGDetectionWindow — how far back in history (in minutes) the EA searches for FVG zones during each detection pass.
entryOffsetPoints — offset added to the FVG boundary to set the entry price. For BUY orders: entry = FVG top + offset. For SELL orders: entry = FVG bottom - offset.
requireThirdCandleConfirmation — when true, the candle that closes the FVG must be in the direction of the signal (green for bullish, red for bearish).
requireAllThreeCandlesConfirmation — when true, all three candles forming the FVG must be the same color. Provides stronger directional confirmation than the single-candle check above.
enableMiddleWickCheck — when true, the EA inspects the wick of the middle candle of the FVG formation and rejects signals where the counter-directional wick is disproportionately large.
wickMultiplier — the maximum allowed ratio of the counter-directional wick to the directional wick of the middle candle. A value of 2.0 means the counter-directional wick may be at most twice as long as the directional wick.
useFIFOPendingSystem — when true and the pending order limit is reached, the oldest pending order is removed to make room for the new  signal. When false, new signals are skipped while the limit is full.

Take Profit and Stop Loss
takeProfitType — selects the TP mode. In this version only TP_FIXED (fixed take profit) is available.
takeProfitPips — distance from entry price to Take Profit in points. For XAUUSD: 500 points = 50 pips.
stopLossPips — distance from entry price to Stop Loss in points for BUY trades. The default is intentionally high and acts as a safety net; primary exits rely on the Take Profit.

SELL Trade Settings
useSellSpecificSettings — when true, SELL trades use the parameters defined in this group instead of the global BUY parameters. Recommended for XAUUSD due to asymmetric volatility between upward and downward moves.
sellTakeProfitPips — Take Profit distance for SELL trades in points, independent of takeProfitPips.
sellStopLossPips — Stop Loss distance for SELL trades in points.
sellRiskPercentOverride — overrides the risk percentage for SELL trades when dynamic lot sizing is active. Set to 0.0 to use the global riskPerTradePercent.
sellMaxPendingsOverride — overrides the maximum number of SELL pending orders. Set to 0 to use the global maxFVGPerSide.

SELL FVG Filters
sellRequireBiggerGap — when true, SELL signals require a larger minimum gap than BUY signals, multiplied by sellGapMultiplier.
sellGapMultiplier — multiplier applied to minGapPoints_global to calculate the effective minimum gap for SELL signals. Ignored when sellMinGapPointsFixed is greater than zero.
sellMaxGapPoints — maximum allowed SELL FVG size in points. Gaps larger than this are rejected as potential exhaustion moves. Set to 0 to disable this cap.
sellMinGapPointsFixed — fixed minimum gap size for SELL signals in points. When greater than zero, this value is used directly and sellGapMultiplier is ignored.

Safety Limits
maxSpreadPoints — maximum allowed spread in points. When the current spread exceeds this value, no new pending orders are placed. Position management (trailing, cleanup) continues regardless of spread.
maxDistanceFromPrice — maximum allowed distance between the pending order entry price and the current market price, in points. FVG zones whose entry price is too far from the current price are skipped.
countOpenPositionsInLimit — when true, open positions are counted together with pending orders toward the maxFVGPerSide limit. When false, only pending orders are counted.

EMA Trend Filter
enableEMATrendFilter — enables the EMA(200) trend filter. When active, a pending order is placed only if the last N closed H1 candles all lie entirely on the correct side of the 200-period EMA. BUY orders require all candles above EMA (Low > EMA), SELL orders require all candles below EMA (High < EMA). The filter always uses H1 regardless of sourceTF and placementTF.
emaTrendCandleCount — number of recently closed H1 candles that must satisfy the EMA condition. Higher values produce a stricter trend requirement. A value of 10 means all ten of the last closed H1 candles must fully clear the EMA line.

Visual Settings
showFVGOnChart — draws active FVG zones as filled rectangles on the chart.
bullFVGColor — fill color for bullish (BUY) FVG rectangles.
bearFVGColor — fill color for bearish (SELL) FVG rectangles.
fvgTransparency — transparency of the FVG rectangle fill. Range 0 (opaque) to 255 (fully transparent). A value of 90 produces a light, non-intrusive tint.
showOnlyActiveFVG — when true, only FVG zones relevant to the current allowLong/allowShort configuration are displayed. When false, all detected zones are shown regardless of trade direction settings.
maxFVGToShow — maximum number of FVG rectangles drawn on the chart per direction. Limits visual clutter when many zones are detected.
showFVGLabels — when true, a text label showing the gap size in points is displayed at the center of each FVG rectangle.

Debug and Testing
debug — enables verbose logging to the MT5 Journal tab. Outputs detailed information about FVG detection, filter decisions, lot calculations, EMA trend checks, SL/TP modifications, and order management. Disable in live trading to reduce log volume.


    レビュー 2
    Samuel Henrique Almeida Ferreira
    548
    Samuel Henrique Almeida Ferreira 2026.05.14 00:54 
     

    Hello. I’m testing the EA and I would like to better understand the FVG identification logic used in it. I really liked the robot, and during my backtests it has shown very promising and impressive results. What criteria does the EA use to detect, validate, and invalidate FVGs? Is mitigation considered by candle close, wick touch, or another method? Does it use any additional filters for entries, trend, or confirmation? Thank you.

    おすすめのプロダクト
    Fibomathe
    Almaquio Ferreira De Souza Junior
    Fibomathe Indicator: Support and Resistance Tool for MT5 The Fibomathe Indicator is a technical analysis tool designed for MetaTrader 5 (MT5) that assists traders in identifying support and resistance levels, take-profit zones, and additional price projection areas. It is suitable for traders who use structured approaches to analyze price action and manage trades. Key Features Support and Resistance Levels: Allows users to define and adjust support and resistance levels directly on the chart.
    FREE
    Bneu Vortex Pro
    Marvinson Salavia Caballero
    Bneu Vortex Pro v2.03 — AMD Phase Engine + 30 Strategies + Adjustable Cloud AI Gate Bneu Vortex Pro v2.03 is the upgraded MetaTrader 5 Expert Advisor built around an Accumulation / Manipulation / Distribution (AMD) phase engine. Instead of using one fixed signal, the EA first classifies market phase, then only enables the strategies designed for that phase. Every potential trade is also passed through an adjustable Cloud AI quality gate. CORE UPGRADE The previous simple scorer has been repla
    FREE
    Crimson FX
    Michael Prescott Burney
    Crimson EA emerges as a force to be reckoned with on the USDJPY M15 chart, embodying the perfect fusion of 50 meticulously crafted strategies that span across trend analysis, hedging, and scalping disciplines. This powerhouse operates beyond the confines of conventional stop-loss and take-profit mechanisms, relying instead on precise entry and exit signals generated from its strategic arsenal. Coupled with an advanced reversal function, Crimson EA offers a protective shield to safeguard invest
    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
    Easy GOLD MT5
    Franck Martin
    3.91 (43)
    Easy Gold is the latest addition to the BotGPT family. It is surprising and very powerful. It is ideal for beginners due to its simplicity.  There is absolutely nothing to do, it's 100% automated, simply indicate the percentage of risk you want to take per trade and the EA is ready. Whatever your capital, the EA takes care of everything. Optimized on (XAUUSD).  Unleash all the power with the professional version (AGI Gold) and its connection to the neural network, available in my store. My othe
    FREE
    Description Quantum Gold Pro EA is a TRIAL Expert Advisor for MetaTrader 5, specially designed for Gold (XAUUSD) automated trading. This EA uses smart market entry logic, basket profit management, and built-in risk protection to support traders who want to test automated strategies before using the full version. Features Optimized for Gold (XAUUSD) Automatic Buy / Sell trading system Basket Take Profit control Spread and margin protection Dashboard display on chart Smart risk management Easy se
    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
    MultiTrend Commander
    Джованни Орсани
    MultiTrend Commander - Automated Trading System What is it? An automated trading software that: Intelligently identifies market trends Makes decisions based on multiple timeframes Automatically manages risk What does it do? Identify Trends Analyze the market in real time Combine signals from different time frames (15 min, 1 hr, 4 hr) Confirm the trend direction before entering Protect Your Capital Automatically calculates stop losses Adjusts trade size to your risk Stops trading if
    FREE
    !! THE FIRST FREE NEURAL NETWORK EA WITH EXCELLENT AND REALISTIC RESULTS.!! Another beautiful work of art, guys you don't know the powerful creations that are created by my developer Nardus Van Staden. Check him out guys and gals, he is the real deal, an amazing person and a professional when it comes to coding and business, if you want work done!, hit him up! you can get in contact with him HERE . THE FOLLOWING PRODUCT IS A FREE VERSION OF A PAID VERSION THAT IS TO COME, PROFITS ARE GOING TO B
    FREE
    Free automatic Fibonacci is an indicator that automatically plots a Fibonacci retracement based on the number of bars you select on the BarsToScan setting in the indicator. The Fibonacci is automatically updated in real time as new highest and lowest values appears amongst the selected bars. You can select which level values to be displayed in the indicator settings. You can also select the color of the levels thus enabling the trader to be able to attach the indicator several times with differe
    FREE
    The Dual MACD & Stochastic Expert Advisor (EA)  is a fully automated trading system that utilizes two  MACD (Moving Average Convergence Divergence) indicators along with the  Stochastic Oscillator  to identify high-probability trading opportunities. By combining trend confirmation from MACD with momentum analysis from Stochastic, this EA provides precise entry and exit points for optimized trading performance. Key Features: • Dual MACD Strategy – Uses two MACD indicators with different setting
    FREE
    Break Asian Range
    Damaso Perez Moneo Suarez
    イントロダクション Break Asian Range は、よく知られている「アジアの高値・安値」戦略を自動化するトレーディングボットです。EURUSD、GBPJPYなどのボラティリティの高い通貨ペアにおいて、アジアセッションのブレイクアウトを検出・取引するように設計されています。 カスタマイズ可能なテクニカル確認と、高度なリスク管理(SL、TP、トレーリングストップ、可変リスク、再エントリーなど)を組み合わせて、保守的なスタイルにも攻撃的なスタイルにも対応可能です。 複数のタイムフレームに対応しており、ドージ、ハンマー、包み足などの主要なローソク足パターンを認識してエントリーを検証します(トレーダーの設定次第)。 主な特徴 よく知られた反復的な市場行動に基づいた戦略。 柔軟性:確認、取引時間、リスクなどをカスタマイズ可能。 あらゆる通貨ペアや資産に対応。 ユーザーの取引スタイルに応じて、保守的または積極的に運用可能。 再エントリー、動的リスク管理、トレードフィルタリングをサポート。 2025年4月に複数のペアで良好な結果を得てテスト済み(下記の画像をご参照ください)。 コメント
    FREE
    Ideal for scalpers, day traders and swing trades. Automatically identifies key support and resistance levels based on historical price data. It displays real-time trading zones and a precise countdown timer for each candle, helping traders make faster and more confident decisions. Fully customizable for multiple timeframes and instruments. The indicator analyzes historical price data to draw horizontal levels that represent key trading areas. It also displays, in real time, the current zone whe
    FREE
    この情報インジケーターは、アカウントの現在の状況を常に把握したい人にとって役立ちます。 VERSION MT 4 -   More useful indicators このインジケーターには、ポイント、パーセンテージ、通貨での利益、現在のペアのスプレッド、現在の時間枠でバーが閉じるまでの時間などのデータが表示されます。 チャート上に情報線を配置するには、いくつかのオプションがあります。 価格の右側 (価格の後ろにあります)。 コメントとして (グラフの左上隅に); 画面の選択した隅。 情報区切り記号を選択することもできます。 | / \ # このインジケーターは使いやすく、非常に有益です。設定で不要な情報項目を無効にすることも可能です。 設定 外観の種類     - 情報行の表示タイプ。次の 3 つのオプションがあります。 価格に従ってください     - 価格に従う。 コメントとして     - コメントとして; 画面の選択した隅に     - 画面の選択した隅にあります。 添付用グラフコーナー     - 表示タイプを選択した場合 画面の選択されたコーナーでは、この項目を使用して
    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
    Trading Sessions by Mahefa R is an indicator for MetaTrader 5 that visually identifies the four main trading sessions: New York, London, Tokyo, and Sydney . Designed to provide a clean, intuitive, and professional market view, it highlights the most active periods of the Forex market using smart visualization of session ranges , session-specific candle colors , and daily separators . Main Features: Automatic detection of the 4 major sessions New York London Tokyo Sydney Each session is fully c
    FREE
    VolumeBasedColorsBars — Free Powerful Volume Analysis for All Traders Unlock the hidden story behind every price bar! VolumeBasedColorsBars is a professional-grade, 100% FREE indicator that colorizes your chart candles based on real, adaptive volume analysis. Instantly spot surges in market activity, identify exhaustion, and catch the moves that matter. This indicator gives you:    • Dynamic color-coded bars for instant volume context    • Adaptive thresholds based on historical, session-awar
    FREE
    CommunityPower MT5
    Andrey Khatimlianskii
    4.69 (90)
    CommunityPower EA   — is the Expert Advisor for MetaTrader 4/5, created by community and for community. It is free, versatile and very powerful, and allows to trade a wide range of strategies. The idea is simple Your suggestions + my code = a win-win for everyone! Is it a ready-to-use money-making machine? No, it is definitely not. It is a tool, which allows you to create and run your own trading strategy, and it is up to you to find profitable settings and take the responsibility for your tra
    FREE
    ToolBot Probabilistic Analysis - FREE   An effective indicator for your negotiations The toolbot indicator brings the calculation of candles and a probabilistic analysis so that you have more security on your own. Also test our  FREE tops and bottoms indicator: :   https://www.mql5.com/pt/market/product/52385#description Also test our  FREE (RSI, ATR, ADX, OBV) indicator:   https://www.mql5.com/pt/market/product/53448#description Try our EA ToolBot for free:   https://www.mql5.com/market/prod
    FREE
    Clock Trades – 時間通りの精密取引! Clock Trades EURUSD は、 Clock Trades の 無料の限定版 です。これは、 時間に基づいて取引を自動化 できるスマートで信頼性の高いEAです。 この無料版は EURUSD のみで動作し、世界で最も人気のある取引商品の一つで、無料で完全な体験を提供します。 Clock Trades は、 時間に基づいて取引を自動化 できるスマートで信頼性の高いEAです。 正確な時と分 を設定して買いまたは売り注文を開き、パラメータを選択すれば、EAが精密かつ制御された方法ですべてを処理します。 サーバー時間またはローカル時間 で取引をスケジュール 任意のシンボルまたはカスタムリスト で動作 買いと売りの例外 を完全に制御 柔軟なリスク管理のために ピップ、ポイント、または金額 でTP/SLを選択 一般的なエラー に対する自動リトライシステム(例:マーケットオープンに近すぎる取引やネットワーク接続の問題によるもの) すべてのアクションまたはエラーのみに対してカスタマイズ可能な アラー
    FREE
    Statistical Arbitrage Spread Generator for Cointegration [MT5] What is Pair Trading? Pair trading is a market-neutral strategy that looks to exploit the relative price movement between two correlated assets — instead of betting on the direction of the market. The idea? When two assets that usually move together diverge beyond a statistically significant threshold, one is likely mispriced. You sell the expensive one, buy the cheap one , and profit when they converge again. It’s a statistica
    FREE
    BTC Scalper - Automated RSI Breakout Strategy for BTCUSD Unlock the power of automated trading with BTC Scalper! This expert advisor is a fully autonomous trading strategy, designed to capitalize on fast-moving BTCUSD markets. It leverages a potent combination of RSI Breakouts and two Exponential Moving Averages (EMA) to find high-probability trade entries, ensuring optimal confluence for success. Key Features: Fully Automated Trading : Set it, forget it, and let BTC Scalper handle your trades 2
    FREE
    EasyTrading Panel Basic by Vexo EasyTrading Panel Basic is a free manual trade execution panel for MetaTrader 5. It provides a streamlined workflow for placing market orders with automatic risk-based lot sizing, stop loss, and take profit calculation. The panel works on any symbol and any timeframe. How It Works The panel displays on-chart with your account balance, current lot size, risk percentage, reward-to-risk ratio, and calculated stop loss. All values update in real time as you adjust par
    FREE
    Zigzag star
    Ahmed Mohammed Bakr Bakr
    ZigZag Expert Advisor – Strategy Description The ZigZag Expert Advisor (EA) is an advanced price-action trading system designed to identify significant market swings , trend structure , and high-probability reversal zones using the ZigZag algorithm. The EA filters market noise by focusing only on meaningful highs and lows, allowing it to trade in harmony with market structure rather than reacting to random price fluctuations. Core Strategy Logic Detects higher highs, higher lows, lower highs, an
    FREE
    Short Description GoldEdge Bollinger Bounce Scalper is a precision mean reversion EA designed to capture bounce entries when price stretches to the outer Bollinger Bands and shows signs of reversal. Full Description GoldEdge Bollinger Bounce Scalper is built for traders who want a structured and disciplined bounce trading system. This Expert Advisor is designed to identify short-term overextended price conditions and react when the market shows potential to return back toward balance. Instead of
    FREE
    USDJPY Keltner Range M15 Strategy is a fully automated MetaTrader 5 strategy designed to capture structured breakout opportunities on USDJPY using daily directional confirmation, Keltner Channel reference levels, volatility-buffered pending STOP entries and simple fixed-risk management. The strategy is designed for USDJPY on the M15 timeframe. Its goal is to participate when the market shows directional intent through daily high or daily low behavior, while using Keltner Channel structure and
    FREE
    Fibo Trader is an expert advisor that allows you to create automated presets for oscillation patterns in reference to Fibonacci retracements values using fully automated and dynamically created grid. The process is achieved by first optimizing the EA, then running it on automated mode. EA allows you to switch between automatic and manual mode. When in manual mode the user will use a graphical panel that allows to manage the current trading conditions, or to take control in any moment to trade ma
    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
    CRESPIN V16.1 MARKET - Système de Trading Automatisé Nouvelle Génération Découvrez le système de trading automatisé le plus abouti de la série CRESPIN. Version 16.1 - Une révolution dans la gestion automatisée pour comptes CENT. Des années de développement concentrées dans un seul outil professionnel. LIRE ABSOLUMENT TOUT LE DESCRIPTIF (Après achat ,M'écrire via la messagerie pour  recevoir la configuration  optimale  pour backtesting , demo , et réel ) POURQUOI V16.1 CHANGE TOUT pour XAUUSD Arc
    FREE
    TrendView — Clear Trend Visualization for Confident Trading TrendView is a free trend indicator designed to give traders a clean and reliable view of market direction. It displays clear trendlines in three colors, making it easy to identify bullish, bearish, and neutral phases without cluttering the chart with unnecessary elements. Whether you are monitoring long-term market structure or short-term price action, TrendView helps you keep your focus on the bigger picture. For traders who also w
    FREE
    このプロダクトを購入した人は以下も購入しています
    Quantum Queen MT5
    Bogdan Ion Puscasu
    4.97 (587)
    トレーダーの皆さん、こんにちは!私は 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 Athena
    Bogdan Ion Puscasu
    5 (22)
    クォンタム・アテナ ― 経験から生まれた精密さ トレーダーの皆さん、こんにちは!私は クォンタム・アテナ です。伝説のクォンタム・クイーンの軽量版で、今日の市場環境に合わせて改良・再設計されました。 私は何でもできる人間になろうとはしない。 私は今、うまくいっていることに集中します。 私の専門分野は?金です。私の使命は?正確さを核とした、鋭く効率的で、インテリジェントに最適化された取引パフォーマンスを提供することです。 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 Athenaのmql5公開チャンネル:       ここ
    Pulse Engine
    Jimmy Peter Eriksson
    4.94 (17)
    発売記念価格 – 残りわずか! このシステムの主な目的は、リスクの高いマルチンゲールやグリッドを使用せずに、長期的なライブパフォーマンスを実現することです。 現在の価格での販売部数は非常に限られています。 最終価格: 1499ドル 【ライブシグナル】    |    【バックテスト結果】    |    【設定ガイド】    |    【FTMO結果】 取引への新たなアプローチ Pulse Engineは、インジケーターや特定の時間枠を一切使用しません。MQL5上の他のどのトレーディングシステムも採用していない、非常にユニークなアプローチを採用しています。 この手法は、日中の方向性パターンに基づいて取引を行います。これらのパターンは、私が長年開発・改良を重ねてきた独自のパターン認識ソフトウェアを用いて発見したものです。 このソフトウェアにより、市場が過去に特定の方向に強い動きを示した時間帯を特定することができます。 市場ごと、そして曜日ごとに、それぞれ独自の動きがあります。 この手法が非常に強力な理由は、市場がトレンドにあるのか、反転しているのか、あるいは特定の市場局面にあるのか
    BB Return mt5
    Leonid Arkhipov
    4.99 (94)
    BB Return — ゴールド(XAUUSD)取引のためのエキスパートアドバイザー(EA)です。このトレードアイデアは、以前に 裁量トレード で使用していたものを基にしています。戦略の中核は Bollinger Bands(ボリンジャーバンド) のレンジへの価格回帰ですが、機械的でも毎回のタッチでもありません。ゴールド市場ではバンドだけでは不十分なため、EA には弱い・機能しない相場状況を排除する追加フィルターが組み込まれています。回帰のロジックが本当に妥当な場合にのみ取引が行われます。   取引原則 — 本戦略ではグリッド、マーチンゲール、ナンピン(平均化)を使用しません。EA は 固定ロット または AutoRisk モードで動作します。BB Return はスプレッド、スリッページ、ブローカーの価格配信の違いに影響されにくく、 Standard、ECN、Pro、Raw、Razor など、あらゆるブローカー・口座タイプで使用できます。取引セッションに依存せず、 24時間稼働 します。   $ 359   は最終価格ではありません。 現在の価格で残りは5~7ライセンスのみです。
    TwisterPro Scalper
    Jorge Luiz Guimaraes De Araujo Dias
    4.37 (71)
    取引は少なく。質は高く。一貫性がすべて。 • ライブシグナル モード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 Valkyrie
    Bogdan Ion Puscasu
    4.73 (139)
    クォンタムヴァルキリー - 精密、規律、実行 割引   価格。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.58 (40)
    リアルトレード口座   LIVE SIGNAL(IC MARKETS): https://www.mql5.com/en/signals/2339082 本 EA は、MQL5 上で検証済みのリアルトレードシグナルと、完全に同一の取引ロジックおよび執行ルールを使用しています。推奨された最適化済み設定を使用し、信頼性の高い ECN / RAW スプレッドのブローカー (例:IC Markets または TMGM) で運用した場合、本 EA のリアルトレード挙動は、当該ライブシグナルの取引構造および執行特性に極めて近い形で設計されています。ただし、ブローカーごとの取引条件、スプレッド、約定品質、ならびに VPS 環境の違いにより、個々の結果が異なる可能性がある点にご注意ください。 本 EA は数量限定で販売されています。現在、残りのライセンスは 2 件のみで、価格は USD 999 です。購入後は、プライベートメッセージにてご連絡ください。ユーザーマニュアルおよび推奨設定をお渡しします。 過度なグリッド手法は使用せず、危険なマーチンゲールも行わず、ナンピン(平均取得単価の引き下げ)も使用
    Quantum King EA
    Bogdan Ion Puscasu
    4.98 (179)
    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 用に設計されており、安定した制御された成長を望む初心者とプロの両方のために構築されています。
    Chiroptera
    Rob Josephus Maria Janssen
    4.76 (25)
    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
    The Gold Reaper MT5
    Profalgo Limited
    4.5 (94)
    プロップしっかり準備完了!   (   SETFILEをダウンロード ) WARNING : 現在の価格で残りわずかです! 最終価格: 990ドル EA を 1 つ無料で入手 (2 取引アカウント用) -> 購入後に連絡してください Ultimate Combo Deal   ->   click here JOIN PUBLIC GROUP:   Click here Live Signal YouTube Reviews ゴールドリーパーへようこそ! 非常に成功した Goldtrade Pro を基にして構築されたこの EA は、複数の時間枠で同時に実行できるように設計されており、取引頻度を非常に保守的なものから非常に不安定なものまで設定するオプションがあります。 EA は複数の確認アルゴリズムを使用して最適なエントリー価格を見つけ、内部で複数の戦略を実行して取引のリスクを分散します。 すべての取引にはストップロスとテイクプロフィットがありますが、リスクを最小限に抑え、各取引の可能性を最大化するために、トレーリングストップロスとトレーリングテイプロフィットも使用します。 こ
    ライブシグナル:   https://www.mql5.com/en/signals/2360479 時間枠:   M1 通貨ペア:   XAUUSD Varko Technologiesは 企業ではなく、自由という哲学そのものです。 私は長期的な協力関係を築き、評判を高めることに興味があります。 私の目標は、変化する市場状況に対応するために、製品を継続的に改善・最適化することです。 Gold Safe EA   - このアルゴリズムは複数の戦略を同時に使用し、損失トレードとリスクのコントロールを重視することを基本理念としています。 取引の決済および管理には、複数の段階が用いられている。 Expertのインストール方法 EAからXAUUSD M1通貨ペアチャートにファイルを転送する必要があります。SETファイルは不要です。時間シフト値を設定するだけで済みます。 IC MarketsやRoboForexのようなブローカーを利用するなど、時間軸を活用することをお勧めします。 時刻設定でお困りの場合は、遠慮なくプライベートメッセージを送ってください。 実際の口座で使用する前に、必ずブ
    Scalper speed with sniper entries. Built for Gold. 33% OFF only  this weekend for 299 USD (ends Sunday midnight)   |  regular price 499 USD  |   final   price  599  USD Check the Live signal  or Manual Hybrid scalper combining scalping speed with single position or intelligent recovery for XAUUSD. 4 trading strategies | Triple timeframe confirmation | 3 layers of account protection. Most trades close in under 30 minutes — minimal market exposure, maximum control. Wave Rider uses triple timefram
    Gold House MT5
    Chen Jia Qi
    4.44 (50)
    Gold House — ゴールド・スイングブレイクアウト取引システム まもなく価格が上がります。現在の価格で購入できるライセンスは残りわずかです (3/100) 。次の目標価格:$999。 ライブシグナル: Profit Priority モード: https://www.mql5.com/en/signals/2359124 BE Priority モード: https://www.mql5.com/en/signals/2372604 重要:購入後、推奨パラメータ、使用説明、注意事項、使用のヒントを受け取るために、必ずプライベートメッセージをお送りください。 (MQL5 メッセージ): https://www.mql5.com/en/users/walter2008 最新情報をお届け — MQL5チャンネルに参加して、製品アップデートやトレードのヒントを受け取りましょう。 リンクを開き、ページ上部の「購読」ボタンをクリックしてください: Click to Join このEAは、私たちのチームの内部リアル取引口座から生まれました。7年間のヒストリカルデータで開発・検証し、実際の
    Akali
    Yahia Mohamed Hassan Mohamed
    3.24 (82)
    LIVE SIGNAL: ライブパフォーマンスを見るにはここをクリック 重要:最初にガイドをお読みください このEAを使用する前に、ブローカーの要件、戦略モード、およびスマートアプローチを理解するために、設定ガイドを読むことが重要です。 ここをクリックして公式Akali EAガイドを読む 概要 Akali EAは、ゴールド(XAUUSD)専用に設計された高精度スキャルピングエキスパートアドバイザー(EA)です。非常にタイトなトレーリングストップアルゴリズムを利用して、ボラティリティの高い期間に瞬時に利益を確保します。 このシステムは精度を重視して構築されており、市場の急速な動きを利用し、市場が反転する前に利益を確定することで、高い勝率を目指しています。 設定要件 通貨ペア: XAUUSD(ゴールド) 時間足: M1(1分足) 口座タイプ: Raw ECN / 低スプレッドが必須です。 推奨ブローカー: ガイドを参照してください 注意: このEAはタイトなトレーリングストップに依存しています。スプレッドの広い口座ではパフォーマンスに悪影響を及ぼします。サーバー時間とブローカーの選択の詳細
    Wall Street Robot is a professional trading system developed exclusively for US stock indices, focused on S&P500 and Dow Jones. These markets are known for their high liquidity, structured movements and strong reaction to global economic flows, making them ideal for algorithmic trading strategies based on precision and discipline. By concentrating only on these indices, the system is able to adapt closely to their behavior, volatility patterns and intraday dynamics, instead of trying to operate
    Full Throttle DMX
    Stanislav Tomilov
    5 (9)
    フルスロットルDMX - リアルな戦略 , とリアルな結果   Full Throttle DMXは、EURUSD、AUDUSD、NZDUSD、EURGBP、AUDNZDの通貨ペアで動作するように設計された、マルチ通貨取引エキスパートアドバイザーです。このシステムは、よく知られたテクニカル指標と実績のある市場ロジックを用いた、古典的な取引アプローチに基づいて構築されています。EAには10種類の独立した戦略が含まれており、それぞれが異なる市場状況と機会を特定するように設計されています。多くの現代の自動システムとは異なり、Full Throttle DMXは、グリッド、平均化、マーチンゲール、その他の積極的な回復手法といったリスクの高い資金管理手法は使用しません。このシステムは、長年にわたりテストされてきた、規律正しく保守的な取引哲学に従っています。EAは、H1時間枠で動作するデイトレードシステムを使用し、影響力の大きい経済イベント時の取引を回避するためのニュースフィルターを内蔵しています。取引は5つの通貨ペアに分散されているため、単一市場への依存を軽減できます。この戦略は透明性の高い取引
    Aurum AI mt5
    Leonid Arkhipov
    4.86 (44)
    アップデート — 2025年12月 2024年11月末、Aurumは正式に販売開始されました。 それ以来、ニュースフィルターや追加の防御条件、複雑な制限なしで、実際の相場環境にて継続的に稼働してきましたが、安定して利益を維持してきました。 Live Signal (launch April 14, 2026) この1年間のリアル運用により、トレーディングシステムとしての信頼性が明確に証明されました。 そしてその実績と統計データを基に、2025年12月に大規模アップデートを実施しました: プレミアムパネルを全面刷新、すべての画面解像度に最適化 取引保護システムを大幅に強化 Forex Factoryを基にした高性能ニュースフィルターを追加 シグナル精度を向上させる2つの追加フィルター 最適化の強化、動作速度と安定性の向上 損失後に安全に回復するRecovery機能を搭載 プレミアムスタイルの新しいチャートテーマを採用 AURUMについて Aurum — ゴールド(XAU/USD)専用プレミアム自動売買EA Aurumはゴールド市場において、安定性と安全性を重視して開発されたプロ
    AnE
    Thi Ngoc Tram Le
    5 (3)
    ANE — Gold Grid Expert Advisor ANEは、M15時間枠で XAUUSD(金) を取引するために設計された完全自動化されたExpert Advisorで、 グリッド平均化戦略 を採用しています。 重要: ライブ口座で使用する前に、まずデモ口座でEAをテストし、平均化システムの動作を十分に理解してください。 ライブシグナル ANE Official Channel 取引戦略 ANEはポジションをグループとして管理します。条件が許す場合、平均入場価格を最適化するために追加の取引を開き、合計利益目標に達した時点でバスケット全体をクローズします。 グリッドが稼働中は、浮動ドローダウンの期間が発生する可能性があります。この動作は正常かつ予想されるものです。一時的なドローダウンに対処するためには、適切なロットサイズと十分な口座資金が不可欠です。 口座保護機能 最大ドローダウン回路遮断器 — 設定されたドローダウン閾値(デフォルト80%)に達した場合、全取引を停止します。 スプレッドフィルター — スプレッドが許容最大値(デフォルト70ポイント)を超えた場合、新規エン
    重要 : このパッケージは、現在の価格で、非常に限られた数のみ販売されます。    価格はすぐに1499ドルになるだろう    100 以上の戦略が含まれており 、今後もさらに追加される予定です。 ボーナス : 999 ドル以上の価格の場合 --> 私の他の EA を  5 つ無料で選択できます! すべてのセットファイル 完全なセットアップと最適化ガイド ビデオガイド ライブシグナル レビュー(第三者) NEW - VERSION 5.0 - ONECHARTSETUP 究極のブレイクアウトシステムへようこそ! 8 年をかけて丹念に開発された、洗練された独自のエキスパート アドバイザー (EA) である Ultimate Breakout System をご紹介します。 このシステムは、高く評価されているGold Reaper EAを含む、MQL5市場で最高のパフォーマンスを誇るいくつかのEAの基盤となっています。 7か月以上にわたって1位を維持したこのほか、Goldtrade Pro、Goldbot One、Indicement、Daytrade Proもランクインしました。
    Quantum Emperor MT5
    Bogdan Ion Puscasu
    4.85 (504)
    ご紹介     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つの小さな取引に継続的に分割する独自の戦略を採用しています
    NEXORION: Initium Novum — 決定論的ロジックとアルゴリズムの統合 NEXORION は、厳密な流動性処理数学アルゴリズムに基づいた機関投資家レベルの分析コンプレックスです。本プロジェクトの中核概念は「計算の透明性」にあります。このエキスパートアドバイザー(EA)は、混沌とした価格フィードを構造化された幾何学的ゾーンへと変換し、意思決定プロセスを取引チャート上に直接可視化します。 リアルタイム・モニタリング https://www.mql5.com/es/signals/2372338 システム技術仕様 取引銘柄: XAUUSD (Gold) 運用タイムフレーム: H1 手法: 機関投資家流動性分析および決定論的ロジック (Institutional Liquidity Analysis & Deterministic Logic) 意思決定基盤: 流動性プールと均衡レベルの数学的算出 数学的アーキテクチャと可視化 システムの主要な革新は、Dynamic Computation Mapping(動的計算マッピング)にあります。アルゴリズムは単に価格を分析するので
    Quantum Bitcoin EA
    Bogdan Ion Puscasu
    4.83 (120)
    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 時間枠で成功し、市場の勢いの本質を捉える トレンドフォロー戦略 を
    Price Action Robot is a professional trading system built entirely on real market behavior without indicators, grid strategies, or martingale systems. It analyzes pure price action , focusing on structure, trend dynamics, and key market movements to identify high probability trading opportunities. The system is designed to read the market the same way experienced traders do, using logic based on real price movement rather than lagging indicators. It reacts dynamically to changing market conditio
    EA Legendary Multi Strategy ― プロフェッショナルなマルチストラテジーアドバイザー。 1つのアドバイザーで数十種類のストラテジーを活用。確実なシグナルと厳格なリスク管理を実現。 エントリー精度、柔軟な設定、そしてドローダウンコントロールを重視するトレーダーのために設計されています。 これは単なるアドバイザーではありません。ストラテジーの集合知と人工知能の精度が融合した、アルゴリズム取引における飛躍的な進化です。 集合知:12種類以上の独立したトレーディングストラテジーが連携して動作します。それぞれのストラテジーは、複数の時間軸にわたる市場状況を分析することで、専門家ならではの視点を提供します。互いに矛盾することなく、補完し合い、多次元的な確率像を形成します。 ライブシグナル - https://www.mql5.com/en/signals/2341254?source=Site +Profile+Seller トレーダーの皆様へ:アドバイザーをテストするには、正しい設定をご使用ください。設定は無料でこちらから入手できます。 割引価格。10ユニット購入
    The Gold Phantom
    Profalgo Limited
    4.58 (31)
    プロップファーム準備完了! --> すべてのセットファイルをダウンロード 警告: 現在の価格では残りわずかです! 最終価格: 990ドル 新着(399ドルから) :EAを1つ無料でお選びください!(取引口座番号は2つまで、UBSを除く私のEAのいずれか) 究極のコンボディール   ->   こちらをクリック 公開グループに参加する: ここをクリック   ライブシグナル ライブシグナル2 !! ゴールドファントム登場!! The Gold Reaper の大成功に続き、その強力な兄弟機、 The Gold Phantom を ご紹介できることを大変誇りに思います。これは、同じ実戦テスト済みのエンジンをベースに構築された、純粋で無駄のないブレイクアウト システムですが、まったく新しい一連の戦略が盛り込まれています。 The Gold Reaper の非常に成功した基盤の上に構築された The Gold Phantom は 、 自動化された金取引をスムーズに実行します。 このEAは複数の時間枠で同時に動作するように設計されており、取引頻度を完全に制御できます。 非常に保守的な設定
    XIRO Robot MT5
    MQL TOOLS SL
    4.85 (26)
    XIRO Robot is a professional trading system created to operate on two of the most popular and liquid instruments on the market:  GBPUSD, XAUUSD and BTCUSD . We combined two proven and well tested systems, enhanced them with multiple new improvements, optimizations and additional protective mechanisms, and integrated everything into one advanced and unified solution. As a result of this development process, XIRO Robot was created. Robot was designed for traders who are looking for a reliable and
    Grabber Bot
    Ihor Otkydach
    5 (3)
    残り5 部、価格は399ドルです。次の価格は499ドルとなります。 Grabber Bot — は、MQL5 Market プラットフォームにおいて既にトレーダーから高い評価と認知を得ている Grabber System の実績あるロジックに基づいて構築された、完全自動のエキスパートアドバイザーです。このEAは、実際のトレード経験とユーザーからのフィードバックをもとに開発されました。 Grabber System の手動バージョンを使用していた多くのトレーダーは、同じ問題に直面していました: シグナルがトレーダーが寝ている時や忙しい時に発生する(優れたトレードシグナルの約50%を逃す) トレーダーが戦略ルールを守らない:過剰なナンピン、ルール外のエントリー、早すぎる決済(これにより収益性が低下、または損失につながる) その結果、これらの問題を完全に排除し、より快適にトレードできるように、GRABBER を完全自動化することを決定しました。 LIVE SIGNAL (3 deals trading) LIVE SIGNAL (1 deal trading) USER MANUAL G
    Gold Oni
    Lo Thi Mai Loan
    4.67 (3)
    > 価格は24時間ごとに上昇します - 今すぐ行動しなければ明日はもっと高くなります 現在の価格:$229.99 -> 最終価格:$1999.99 待つ日が増えるほど価格は上がります。価格履歴を確認してください。 [ ライブシグナル ] | [ バックテスト結果 ] | [ セットアップガイド ] ボーナス:購入後にプライベートメッセージを送ってください。無料のボーナスEAをすぐにお届けします。 >> 重要なお知らせ:購入後、プライベートメッセージでご連絡いただくと、お客様の口座残高に合わせた設定ファイルをお送りします。デフォルトのSL・TP・トレーリングストップの値は、$3,000以上の口座向けに最適化されています。口座残高がそれ以下の場合は、カスタム設定ファイルのご使用を強くお勧めします。 AI Aurum Pivot と AI Gold Prime の作者から AI Aurum Pivot や AI Gold Prime をご存知の方なら、すでに水準はご存知のはずです。一貫したロジック。すべての取引に対するハードなストップロス。マーチンゲールなし。隠されたトリックなし。
    私のライブシグナルと同じ結果を求めていますか?   私と同じブローカーを使用してください:   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(ゴールド)市場で洗練されたトレンドフォロー戦略を実行します。システムはマルチタ
    Gold Zilla AI MT5
    Christophe Pa Trouillas
    4.77 (13)
    Grok AI支援 、リスク分散、 ゴールド最適化EA で制御されたリターンを生成。 GoldZILLA AIは、市場体制を検出して5つの異なる戦略から動的に選択するマルチストラテジーアルゴリズムであり、XAUUSDでのドローダウンを最小限に抑えながらリターンを最適化します。 [   Live Signal   ] - [  Dedicated group   | Version   MT5   -   MT4   ] 購入後、ユーザーマニュアルとAIセットアップ手順を受け取るために、私にプライベートメッセージを送信してください。 このEAを選ぶ理由 動的マルチストラテジーアプローチ 最適なストラテジー選択のための高度な市場体制検出 5つの異なる、相関のない取引ストラテジー 買いシグナルと売りシグナルの対称的なアルゴリズムルール リスク分散 複数時間足分析(M5からH1) 5つの非相関ストラテジーが全体のポートフォリオリスクを低減 市場状況に基づく動的リスク調整 すべてのポジションにストップロス保護 高度なAIリスク管理 ライブWeb検索機能を備えたGrok大規模言語モデル搭載 リア
    作者のその他のプロダクト
    I am happy that you are here, let me introduce my small miracle. How it started: At first, bot was created for XAUUSD pair. It could be used / trained for whatever you like, but at your own risk!  For your info, I am not a marketing guy so nothing here will look so fancy, my bot just simply works, and decision is only on you if you would like to buy it based on your tests. It all started as an experiment after one developer here told me that doing these modifications would be too complicated. So
    フィルタ:
    Samuel Henrique Almeida Ferreira
    548
    Samuel Henrique Almeida Ferreira 2026.05.14 00:54 
     

    Hello. I’m testing the EA and I would like to better understand the FVG identification logic used in it. I really liked the robot, and during my backtests it has shown very promising and impressive results. What criteria does the EA use to detect, validate, and invalidate FVGs? Is mitigation considered by candle close, wick touch, or another method? Does it use any additional filters for entries, trend, or confirmation? Thank you.

    Martin Vrlik
    404
    開発者からの返信 Martin Vrlik 2026.05.14 15:33
    I will create indicator which will contain all the filters used in my EA. Will let you know when finished.
    sancai
    34
    sancai 2026.05.12 03:41 
     

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

    Martin Vrlik
    404
    開発者からの返信 Martin Vrlik 2026.05.14 15:28
    Hi, as I wrote in the DM, config for XAUUSD is the default one.
    レビューに返信