Breakout News

Breakout News EA is an automated scalping Expert Advisor for MetaTrader 5 specifically designed to capitalise on price volatility during scheduled high-impact news events. Unlike traditional breakout systems, this EA places both a Buy Stop and a Sell Stop order around the pre-news range, allowing it to catch directional moves immediately after the release. The EA is built for single‑pair trading with a strong focus on dynamic risk management, trailing stops, broker integrity monitoring, and daily protection mechanisms.

The system uses a manual news schedule – you specify exact event times (e.g.,  13:30,14:00,15:30 ) and a time window around each event. During that window, the EA scans the last N bars (default 10) to determine the highest high and lowest low, then places stop‑orders at a configurable distance above/below that range. Once one order fills, the opposite pending order is automatically cancelled, ensuring only one direction is taken per news event.

This EA is ideal for traders who want a disciplined, rules‑based approach to trading news releases without emotional interference. It combines simplicity (only two pending orders per event) with sophisticated protection features, making it suitable for both novice and experienced traders.

Core Features

Feature Description
News Breakout Mode Places Buy Stop & Sell Stop around the pre‑news high/low range with ATR‑based SL/TP.
Manual News Schedule User‑defined news times (HH:MM) and avoidance window (minutes before/after).
Dual Pending Orders Only one Buy Stop and one Sell Stop active at a time; opposite order cancelled on fill.
ATR‑Based SL/TP Stop‑loss and take‑profit dynamically sized using ATR multipliers (default 1.5× / 2.0×).
Trailing Stop Two modes: Static (fixed pips) or ATR‑Dynamic (adapts to volatility). Active in backtest.
Daily Protection Daily profit target, daily loss limit, consecutive loss limit, and drawdown circuit breaker.
Broker Spy Monitors average slippage and spread to detect broker irregularities.
Time Filter Optionally restrict trading to specific hours of the day.
Spread Management Dynamic spread limits based on ATR or fixed pips; rejects trades when spread exceeds threshold.
Position Sizing Fixed lot, static compounding, or adaptive ATR‑based compounding.
Currency Converter Automatic exchange rate detection for multi‑currency accounts.
Notifications Mobile push and email alerts for news events, target/loss hits, and circuit breaker triggers.

News Breakout Logic

  1. News Window Detection – The EA checks the current time against your  ManualNewsTimes  list (comma‑separated). If the current minute is within  NewsAvoidMinutes  of any listed time, news mode is activated.

  2. Range Calculation – During an active news window, the EA fetches the highest high and lowest low from the last  NewsBreakoutBars  bars on the selected  TradeTimeframe .

  3. Pending Order Placement – It places:

    • Buy Stop at  High + NewsBreakoutDistancePips  with SL =  BuyStop - (ATR × SL_Multiplier)  and TP =  BuyStop + (ATR × TP_Multiplier)

    • Sell Stop at  Low - NewsBreakoutDistancePips  with SL =  SellStop + (ATR × SL_Multiplier)  and TP =  SellStop - (ATR × TP_Multiplier)

  4. Order Management – If either pending order is filled, the opposite pending order is immediately cancelled to avoid double exposure.

  5. Post‑News Cleanup – When the news window ends, all remaining pending orders are deleted to avoid hanging orders.

Manual News Schedule

The EA uses a manual schedule rather than an economic calendar, giving you full control over which events to trade. You provide a comma‑separated list of times in HH:MM format (24‑hour). A time window ( NewsAvoidMinutes ) defines how many minutes before and after each event are considered “news‑active”. This allows you to tailor trading to specific releases (e.g., NFP, FOMC, CPI).

Example:

  • ManualNewsTimes = "13:30,14:00,15:30"

  • NewsAvoidMinutes = 15  → active windows: 13:15‑13:45, 13:45‑14:15, 15:15‑15:45

Trailing Stop System

The EA supports two trailing modes, and trailing is now fully active in backtest (the previous tester‑skip logic has been removed).

  1. TRAILING_STATIC

    • Activation: profit reaches  TrailingStart  pips

    • Step:  TrailingStep  pips (SL moves by this amount)

  2. TRAILING_ATR_DYNAMIC

    • Activation:  ATR × TrailATRMultiplierStart

    • Step:  ATR × TrailATRMultiplierStep

    • Adapts to market volatility – wider trails in high volatility, tighter in low.

The trailing stop only moves in the direction of trade (tightens SL, never loosens) and is applied to all positions with the EA’s magic number.

Risk Management Features

Feature Description
Daily Target Stops new trades and closes all positions when daily profit reaches  DailyTargetPercent .
Daily Loss Limit Closes all positions and halts trading when daily loss exceeds  MaxDailyLossPercent .
Circuit Breaker Activates if drawdown from peak equity exceeds  MaxDrawdownPercent ; closes all positions and stops further trading.
Consecutive Loss Limit Pauses trading after  MaxConsecutiveLosses  losing trades in a row.
Spread Protection Rejects trades if spread exceeds dynamic (ATR‑based) or fixed pips limit.
Margin Check Verifies available margin before placing any order.
Slippage Tolerance Configurable slippage (default 30 points) to avoid excessive deviation.
Position Limits MaxConcurrentPositions  ensures only one position at a time (news mode respects this).

Broker Spy

The Broker Spy module monitors slippage and spread to detect broker irregularities:

  • Tracks average slippage over the last  BrokerSpyPeriod  trades.

  • If average slippage exceeds  MaxAllowedSlippage , trading is halted.

  • Also checks a recent 5‑trade spike in slippage; if it exceeds 1.5× the max allowed, trading stops.

  • Spread at open is recorded for each trade to monitor broker spread consistency.

This feature provides an extra layer of protection against unfavourable broker execution.

Currency Converter Integration

The EA includes a built‑in currency converter to handle accounts denominated in currencies other than USD:

  • Automatic Detection – Reads  ACCOUNT_CURRENCY .

  • Exchange Rate Discovery – Searches Market Watch for symbols like  EURUSD ,  EURUSDfx ,  EURUSD.pro , etc., both direct and inverted pairs.

  • Caching – Rates are cached and refreshed every 3600 seconds.

  • Manual Override – You can set a fixed exchange rate via  ManualExchangeRate .

This ensures that compounding and position sizing calculations based on USD‑denominated bases work correctly regardless of your account currency.

Requirements

Requirement Details
Platform MetaTrader 5
Minimum Deposit $100 (cent accounts) / $500 (standard accounts)
Recommended TF M5, M15 (for short‑term breakout)
Supported Pairs All forex, metals, indices, crypto
Account Type Hedge or Netting
Broker Any MT5 broker (ECN recommended for tighter spreads)

Setup Instructions

  1. Attach the EA to a single chart (e.g., EURUSD M5). Only one instrument per EA instance.

  2. Configure News Settings

    • Enable  UseNewsBreakout .

    • Set  ManualNewsTimes  with your desired event times (comma‑separated, HH:MM).

    • Adjust  NewsBreakoutBars  (default 10) for range calculation.

    • Set  NewsBreakoutDistancePips  (default 2) and SL/TP multipliers.

  3. Set Risk & Money Management

    • Choose  UseFixedLot  or auto‑compounding ( AutoCompoundMode ).

    • For dynamic SL/TP, enable  UseDynamicSLTP  and adjust ATR multipliers.

    • Set  RiskPercent  or use compounding based on  CompoundingBalanceBase .

  4. Configure Trailing Stop

    • Select  TrailingMode  (Static or ATR‑Dynamic).

    • Set activation and step values (pips or ATR multipliers).

    • Ensure  UseTrailing  is  true .

  5. Define Daily & Drawdown Protection

    • Set  UseDailyTarget ,  DailyTargetPercent ,  MaxDailyLossPercent .

    • Set  MaxConsecutiveLosses  and  MaxDrawdownPercent .

  6. Optional Filters

    • Enable  UseTimeFilter  to restrict trading hours.

    • Enable  UseBrokerSpy  to monitor broker execution.

    • Configure notifications (mobile/email).

  7. Test on Demo – Always run extensive backtesting and forward testing on a demo account before live deployment.

Important Notes

  • Single‑Pair Operation – One EA instance = one trading instrument. Use separate charts for multiple pairs.

  • No Hedging – Only one direction (BUY or SELL) is taken per news event; the opposite order is cancelled upon fill.

  • Pending Order Exclusivity – At most one Buy Stop and one Sell Stop are maintained simultaneously.

  • Trailing Active in Backtest – The EA now applies trailing stop logic even in the Strategy Tester.

  • News Times are Manual – The EA does not use an external economic calendar; you must enter event times manually.

  • ATR Caching – ATR values are cached for performance; indicators are refreshed on new bars.

  • Spread Checking – Dynamic spread limits reduce trading in volatile conditions.

  • Currency Conversion – Handles accounts in EUR, GBP, JPY, etc., automatically.

  • Manual Exchange Rate – If automatic detection fails, you can set a fixed rate.

Frequently Asked Questions

Q: What is the minimum deposit?
A: $100 for cent accounts, $500 for standard accounts. Risk settings can be adjusted accordingly.

Q: Which timeframe should I use?
A: M5 or M15 for short‑term breakout scalping. Higher timeframes may produce wider ranges.

Q: How are SL and TP calculated?
A: They are based on the current ATR value multiplied by  NewsBreakoutSLMultiplier  and  NewsBreakoutTPMultiplier  (defaults 1.5× and 2.0×). You can also use  UseDynamicSLTP  for separate risk/reward ratios.

Q: Can I use this EA with multiple news events in a day?
A: Yes – simply list all desired times in  ManualNewsTimes  (e.g.,  "13:30,15:00,18:00" ). The EA will activate for each event window.

Q: Does this EA work with crypto or indices?
A: Yes, as long as the symbol is available and point/pip sizes are correctly detected (the EA adjusts for instruments with different digit counts).

Q: What happens if both pending orders are filled?
A: This is prevented – as soon as one fills, the other is cancelled via the  OnTradeTransaction  handler.

Q: How does trailing stop work in backtest?
A: Trailing is now fully active in the Strategy Tester (the earlier  if(g_isTester) return;  line was removed).

Q: Why is my pending order not placed during news time?
A: Check if the spread is too high, margin is insufficient, or the entry level is too far from current price (the EA filters levels >100 pips away to avoid unrealistic orders).

Q: How does the currency converter help?
A: It ensures that lot size calculations and compounding work correctly regardless of your account currency (e.g., EUR, GBP, JPY) by converting USD‑based base amounts to the account currency.

Disclaimer

Trading forex, cryptocurrencies, and indices carries a high level of risk. You may lose all of your invested capital.

Breakout News EA is a trading tool and does not guarantee profits. Users are advised to:

  • Perform backtesting and forward testing on demo accounts

  • Apply appropriate risk management strategies

  • Understand the system’s functionality before live trading

  • Avoid using emergency funds or borrowed capital

Past performance does not guarantee future results. Settings should be adjusted to current market conditions and broker execution quality. By using this product, you acknowledge and accept these risks.


おすすめのプロダクト
Classic SNR MetaTrader 5 Expert Advisor | Multi-Symbol Support & Resistance Trading with Trend-Based Logic Overview Classic SNR Breakout EA is a professional trading robot that identifies structural Support & Resistance levels using daily swing points and executes trades based on H1 price action relative to these levels. The EA applies   dual logic : in an uptrend, it sells on H1 rejection below an SNR level; in a downtrend, it buys on H1 rejection above an SNR level. Breakout confirmations are
SmartRisk MA Pro Strategy Overview: SmartRisk MA Pro is an optimized, risk-oriented automated trading strategy (Expert Advisor) developed for the MetaTrader 5 platform. It is designed to identify trading opportunities based on price deviations from moving averages and incorporates a comprehensive capital management system. The Expert Advisor operates on a "new bar" logic, ensuring stability and predictability in trade signal execution. Operating Principles and Trading Logic: At its core, the st
Hamster Scalping mt5
Ramil Minniakhmetov
4.71 (242)
Hamster Scalpingは、マーチンゲールを使用しない完全に自動化された取引アドバイザーです。夜のスキャルピング戦略。 RSIインジケーターとATRフィルターが入力として使用されます。アドバイザには、ヘッジ口座タイプが必要です。 実際の作業の監視、およびその他の開発については、https:// www.mql5.com/en/users/mechanic/sellerを参照してください 。 一般的な推奨事項 最小デポジット$ 100、最小スプレッドのECNアカウントを使用し、eurusd M5 gmt +3のデフォルト設定。 入力パラメータ EAは、4桁と5桁の両方の引用符で機能します。入力パラメータでは、5文字の値をポイントで示し、すべてを4文字で自動的に再計算します。 NewCycle-モードがオンの場合、アドバイザーは停止せずに動作します。モードがオフの場合、一連の取引の完了後、アドバイザーは新しい注文を開きません。 期間インジケーター1-最初のインジケーターの期間。 アップレベル-アドバイザーが売りを開始する最初のインジケーターの上位レベル。 ダウンレベル
is a fully automatic Forex trading Expert Advisor. The robot can run on any instrument, but the results are better with EURUSD on the H1 timeframe.  If you are a long-term investor looking at yearly profits with high Sharpe-ratio then Money magnet is a good option. Please check the comment part to share your settings with others and enjoy the latest optimal settings uploaded by other users.  Expert Advisor Advantages High Sharpe-ratio The EA does not use such systems as martingale, hedging,  gr
GoldenEagle – Smart Trend Trading EA GoldenEagle is a powerful and intelligent Expert Advisor designed to trade trending markets with precision and consistency. Built for MetaTrader 5, this EA combines Moving Average crossovers, RSI filters, and volatility detection (ATR) to identify high-probability trading opportunities. Key Features: Trend-Based Logic – Trades only in strong, confirmed market trends RSI Filtering – Avoids overbought/oversold traps ATR Volatility Filter – Detects
PLUTUS GOLDEN-VAULT MECH AI  Single-Shot Probability Engine & Safe Recovery Protocol Plutus Golden-Vault Mech  is an ultra-secure, highly precise Expert Advisor designed for traders and Prop Firm candidates who despise Grid and Martingale systems. Inspired by Plutus, the Greek God of Wealth and protector of the golden vault, this EA is built on the philosophy of "Quality over Quantity". If you are tired of EAs that open 20 trades at once and hold your account hostage in deep drawdown, Plutus
Golden E Advisor MT5 Overview Golden E Advisor MT5 is an advanced automated Expert Advisor (EA) designed for MetaTrader 5 (MT5), implementing a robust Swing Breakout and Retracement Strategy . It scans market structures across multiple timeframes ( H1 and H4 ) to capture high-probability momentum breakouts following significant swing points. Built with professional-grade risk management and strict execution checks, this EA adapts dynamically to market conditions while ensuring safety features li
Eldorado Scalper: A Premium Algorithm for Trading XAUUSD Eldorado Scalper is a multidimensional algorithmic system designed for selective gold trading (XAUUSD) on the M5 timeframe. The approach is based on market matrix analysis, which combines price dynamics, momentum, volatility, liquidity, and session structure. Trading Logic Live Signal The system doesn't react to chaotic movements, but filters out market noise. Its goal is not to maximize the number of trades, but to pinpoint structured opp
Atomic Xau
Ignacio Agustin Mene Franco
Atomic XAU - Expert Advisor Overview Atomic XAU is an automated trading system specifically designed to trade XAU/USD (Gold) on the M5 timeframe. This EA combines four professional technical indicators to identify high-probability trading opportunities with rigorous risk management. Trading Strategy The system uses multi-indicator confirmation through: MACD: Detects momentum changes and trend crossovers Bollinger Bands: Identifies overbought/oversold zones and volatility RSI: Confirms extreme
Phoenix Midas
Alvaro Albillos Gutierrez
Phoenix Midas is an order-flow Expert Advisor built specifically for XAUUSD (Gold) on the M15 timeframe. It reads market structure through synthetic order-flow analysis — volume delta, volume profile (POC / value area) and liquidity behaviour — to time entries on two complementary setups, and it manages every trade with a fixed, pre-defined risk. Built-in news filtering and prop-firm risk controls make it suitable for both personal accounts and funded-challenge environments. WHAT IT IS NOT
CMFX GOLD — Tactical Intelligence for the XAUUSD Battlefield Precision. Patience. Power. CMFX GOLD isn’t just another Expert Advisor — it’s a tactical swing-trading algorithm engineered to dominate Gold (XAUUSD) with discipline, precision, and capital protection. Support For any doubts, queries, or setup assistance, please contact me via MQL5 private message . I respond to every message personally and assist with installation, optimization, and guidance. ----------------------------------
| Fully-automated Smart Money Concept (ICT) inspired trading solution with multi-strategy capabilities | Built by a grid trader >> for grid traders.  This is MT5 version, click  here  for  Blue CARA MT4  (settings and logics are same in both versions)     Real monitoring signal  -->  Cara Gold Intro Blue CARA EA   ('CARA') - short for  C omprehensive  A lgorithmic   R esponsive   A dvisor is a next-gen  multi-currency    multi-timeframe  EA base on the widely known (and perhaps the most popul
LT Stochastic EA is an expert advisor based on the on the Stochastic Oscillator indicator. It is one of the most used indicators by traders around the world. The LT Stochastic EA offer you the possibility to automate 4 different stochastic trading strategy (please refer to the attached pictures). Not only it is user friendly, it has also been designed to offer  great amount of flexibility to suit the need of everyone. IT comes in bult with many options such as:  Trading on Normal or Custom Symbo
Intersection EA is a fully automated software (trading robot), executing trading orders on the currency market in accordance with the algorithm and unique trading settings for each currency pair. Intersection EA is perfectly suitable for beginner traders as well as for professionals who got solid experience in trading on financial markets. Traders and programmers of Kalinka Capital OU company, worked hard developing the Intersection EA forex robot, starting from the year 2011. Initially, this s
Gold Somnia — XAUUSD 自動売買EA Gold Somniaは、MetaTrader 5でゴールド(XAU/USD)を取引するために特別に設計された完全自動売買ロボットです。堅牢なブレイクアウト/モメンタム戦略に基づき、高確率のエントリーポイントを特定し、厳格なリスク管理を適用します。 主な機能: - ゴールドのボラティリティに最適化された自動エントリー/イグジットロジック - 動的ロットサイズ:リスクパーセンテージまたは固定ロット - 重要経済指標を回避する内蔵ニュースフィルター - トレイリングストップとブイーブイ保護 - 日次損失上限と最大ドローダウン制限 - チャート上のリアルタイムダッシュボード - カスタマイズ可能な取引時間帯 - プロップファームに適したリスク設定 推奨: - 銘柄:XAUUSD - 時間足:M5 - 口座:ECN/Raw、スプレッドの狭い口座 リスク警告:取引には大きなリスクが伴います。過去のパフォーマンスは将来の結果を保証するものではありません。必ずデモ口座でテストしてください。
Aurum Pulse Scalper MT5 PROFESSIONAL XAUUSD SCALPING EXPERT ADVISOR Precision • Discipline • Consistency Built Exclusively for XAUUSD Unlike generic multi-symbol Expert Advisors, Aurum Pulse Scalper MT5 has been designed exclusively for the Gold market. Every component of the trading engine has been optimized specifically for XAUUSD price behavior, volatility characteristics, and liquidity conditions. No unnecessary multi-symbol complexity. One market. One specialization. One professional
HYBRID MULTI-STRATEGY PRO-P Enhanced:FOREXおよびXAUUSD向け精密マルチストラテジーマスター HYBRID MULTI-STRATEGY PRO-P Enhanced の全ポテンシャルを解き放ち、FOREXおよびXAUUSD市場を外科的精度で制覇する最先端のエキスパートアドバイザー(EA)です。エリートトレーダー、ヘッジファンド、機関投資家向けに設計されたこのAI搭載EAは、ブレイクアウト、平均回帰、トレンドフォロー、スキャルピング、アジアセッションを含む高度なハイブリッド戦略を、洗練されたタイミングメカニズム、流動性スイープ検出、動的リスク管理と組み合わせています。たこのEAは、市場のモメンタムを活用し、操作を回避するための究極のツールです。 SET FILE:   MQL5 CHAT LINK ON SALE : 次の10販売のみ$89.00、次は$399.00、急げ! HYBRID MULTI-STRATEGY PRO-P Enhancedを選ぶ理由 市場の罠に陥ったり、マーチンゲールのようなリスクの高い戦略に依存する従来のEAとは異な
FTMO Trading EA MT5
Samuel Kiniu Njoroge
5 (1)
Enhance your trading with ftmo trading ea , the cutting-edge price action expert advisor designed to elevate your trading experience to new heights. Harnessing the power of advanced algorithms and meticulous analysis of price movements, ftmo trading ea empowers traders with unparalleled insights into the market. Gone are the days of relying solely on indicators or lagging signals. With ftmo trading ea, you gain access to real-time data interpretation, it makes informed decisions swiftly and con
Blaster Gold EA is a hybrid gold robot combining RSI-based precision entries with a smart scalper for extra profit. It opens controlled main trades with fixed DCA layers, auto-profit closing, gap protection and optional news filter. Ultra-safe with preset risk modes and strict 1-main + 1-scalper trade control. Designed for stable XAUUSD automation with strong recovery and consistent profit flow. How it work, RSI Two-Layer EA   is a refined, high-precision automated trading system built for tra
Tensor Gold
Ignacio Agustin Mene Franco
Tensor Gold v1.00 Professional Expert Advisor for XAUUSD (Gold) Tensor Gold is an institutional scalper specifically designed to trade the XAUUSD pair on the M5 timeframe. It combines three powerful trend and breakout indicators to capture explosive gold price movements with high accuracy and advanced risk management. Trading Strategy The EA uses a confluence of three systems to generate high-probability signals: Donchian Channel (Breakout) Detects breakouts from upper and lower ranges to id
HMA Scalper Pro EA
Vladimir Shumikhin
5 (2)
HMA Scalper Pro EA — Hull Moving Average (HMA) インジケーターに基づく MetaTrader 5 用自動売買アドバイザー 概要 HMA Scalper Pro EA は、Hull Moving Average (HMA) の方向にトレードする MetaTrader 5 用のプロフェッショナルなトレーディングロボット(Expert Advisor)です。HMA インジケーターは現在のトレンド方向を判定し、アドバイザーはその方向にトレードを執行し、Smart Risk キャピタルマネジメント、アダプティブグリッドトレーディング、トレイリングストップ、ブレイクイーブン、タイムフィルターでエントリーを補完します。 このアドバイザーは Netting アカウントと Hedging アカウントの両方をサポートし、金(XAU/USD)、外国為替通貨ペア、原油、指数、暗号資産の取引に適しています。 HMA SCALPER PRO EA を選ぶ理由 - Hull Moving Average シグナル — HMA の方向に基づくエントリー。HMA
This robot operates based on the Parabolic SAR indicator. Verion for MetaTrader4 here . The advanced EA version includes the following changes and improvements: The EA behavior has been monitored on various account types and in different conditions (fixed/floating spread, ECN/cent accounts, etc.) The EA functionality has been expanded. Features better flexibility and efficiency, better monitoring of open positions. Works on both 4 and 5 digits brokers. The EA does not use martingale, grid or arb
Professional Gold Automation Aurevia Gold EA MT5 is a professional multi-strategy Expert Advisor developed specifically for XAUUSD and GOLD . It combines eight internal strategy engines, intelligent trade management, broker-aware execution and controlled risk tools inside one complete automated trading system. The attached chart timeframe does not control the strategy. Aurevia manages its own internal timeframes, market analysis and trading logic automatically. After correct installation, it may
Golden Nightwatch EA — XAUUSD Spike-Detection System for MT5 Golden Nightwatch is a fully automated trading system built specifically for XAUUSD (Gold). It watches for genuine volatility spikes — not every candle — and manages every trade with broker-verified risk control from entry to exit, so you're not watching the chart every time gold moves. After purchase, please contact me via MQL5 private message for the setup guide and personalized settings for your broker. Two Ready-to-Test Settings
あなたのトレーディングジャーニーに革命をもたらす究極の自動トレーディングソリューションであるemperor Trend Dominator EAを発売します。市場の多くのギャップをカバーする数年間のテストを経て、特に US30_SPOT 向けに高精度で設計され、最先端のテクノロジーを活用した Empire Trend Dominator EA は、金融市場のダイナミックな世界で信頼できる潜在力にアクセスするためのゲートウェイです。 期間限定オファーをご紹介します: エンペラー トレンドがわずか 599 ドルで利用可能になりました! 10個購入ごとに価格が上がります *** エンペラー トレンド ドミネーター EA を購入して、無料の個別のツールや EA を入手できるプライベート メンバーの 1 人になりましょう *** エンペラー トレンド ドミネーター EA は革新的な自己志向型のアプローチを採用しており、市場の変動、ニュース関連のボラティリティ、そして重要なことに、混乱と波乱万丈の市場シナリオを回避することができます。価格アクション、サポート/レジスタンス、移動平均、ボラティ
ST MATRIX — Institutional Symmetrical Triangle EA MetaTrader 5 | Netting & Hedging | All Brokers | Version 1.01 WHAT IS ST MATRIX? ST Matrix is a professional Expert Advisor built around the Symmetrical Triangle — one of the most reliable compression breakout patterns in technical analysis. The EA enforces a strict 5-point structure (H1 → L2 → H3 → L4 → breakout), applies institutional-grade filters before every entry, and manages trades
QILIN IMPERIAL-GRID GOLD MECH  H1 SuperTrend Smart Grid with Crash Protection Qilin Imperial-Grid Gold Mech  is an advanced trend-following Smart Grid Expert Advisor. Inspired by the "Qilin" (Kirin), the ancient mythical creature that brings immense wealth and divine protection, this EA is designed to safely accumulate profit while avoiding catastrophic market crashes. While traditional grid systems are extremely dangerous and often blow accounts when the market trends strongly against them,
Bradley EA – Professional Automated Trading System Bradley EA is a fully automated Expert Advisor developed for MetaTrader 5. It is designed to identify high-probability trading opportunities using a disciplined and rule-based trading approach. The system continuously analyzes market conditions and executes trades automatically without emotional intervention, helping traders maintain consistency and precision. Built with reliability and performance in mind, Bradley EA combines advanced market
Lemm is a scalper designed for intraday trading in M1 timeframe, therefore very fast and aggressive. It can be configured in a quieter version with higher timeframes or on different assets simultaneously using different magic numbers. The default configuration is for  forex pairs, but by changing the parameters, it can be used on any pair (it has had excellent results on XauUsd and DjiUsd). It is equipped with a movable and minimized summary panel and push notifications on the smartphone. Recom
Bollinger Hedge EA: A Dynamic and Strategic Movement Robot  1. Pattern-Based Strategy: Bollinger Bands + Trend Alignment Bollinger Hedge EA combines Bollinger Bands with trend direction analysis to generate strong technical buy/sell signals. Bollinger Bands : Detect overbought/oversold zones based on price behavior near upper and lower bands. Trend Filter : Determines market direction using RSI, MA, and ATR support. This ensures trades are executed only when signals align with a technically c
このプロダクトを購入した人は以下も購入しています
Quantum Titan MT5
Bogdan Ion Puscasu
4.6 (10)
Quantum Titanは、Quantumエコシステムに機関投資家レベルの取引機能をもたらし、精度、規律、そして実績のあるライブマーケットパフォーマンスにおいて新たな基準を打ち立てます。 GOLDエキスパートアドバイザーにさらなる性能を求めるトレーダーのために開発されたTitanは、Quantumトレーディングテクノロジーの次なる進化を象徴するものです。 全世界で生涯ライセンスは1,000個限定です。 1,000部すべてが完売次第、Quantum Titanは入手できなくなります。 発売記念特別割引価格。最終価格1999ドル。 初期投資5万ドルでLive Signalに参加しよう:   こちらをクリック Quantum Titan MQL5 公開チャンネル:   こちらをクリック ***Quantum Titan MT5 を購入すると、Quantum Emperor、Quantum King、Quantum Bitcoin、Quantum Baron、Quantum Valkyrie、Quantum OmniGold、Quantum Athena X、Quantum
Smart Gold Hunter
Barbaros Bulent Kortarla
4.29 (49)
Smart Gold Hunter は、MetaTrader 5 で XAUUSD / Gold を取引するための Expert Advisor です。グリッドなし、マーチンゲールなし、実際の Stop Loss と Take Profit ロジック、そして管理されたリスクコントロールを重視するトレーダー向けに設計されています。 購入前にライブシグナルを確認できます: Live Signal - IC Markets: https://www.mql5.com/en/signals/2365400?source=Site +Signals+My Live Signal - Ultima Markets: https://www.mql5.com/en/signals/2376242?source=Site +Signals+My Smart Gold Hunter はグリッド EA ではなく、マーチンゲール EA でもありません。無制限のリカバリーポジションや、損失後のロット増加に依存しません。この EA の主な考え方は、危険なナンピンではなく、管理されたロジック、保護設定、実際のトレ
Quantum Queen X MT5
Bogdan Ion Puscasu
5 (36)
伝説は続く。女王は進化する。 Quantum Queen Xへようこそ。これは、Quantum Queenの実績ある成功を基盤とした、伝説的なゴールド取引システムの次世代版です。 Quantum Queen Xは、Quantum Queenと同じ実績のあるコアエンジンをベースに構築されており、トレーダーがどの戦略を有効または無効にするかを正確に選択できる強力な新しいカスタムモードが導入されています。 すべての戦略は個別にレビュー、改良、最適化され、さまざまな市場状況においてさらに優れたパフォーマンスと適応性を発揮します。デフォルトのプリセットも強化され、7つの戦略ではなく厳選された9つの戦略を組み合わせることで、より広い市場範囲とより多くの取引機会を提供すると同時に、Quantum Queen XをMQL5で最も成功したGOLDエキスパートアドバイザーにした規律ある取引哲学を維持しています。 IMPORTANT! After the purchase please send me a private message to receive the installation manual
The Gold Reaper MT5
Profalgo Limited
4.48 (105)
小道具会社準備完了!( セットファイルをダウンロード ) 警告: 現在の価格で販売できるのは残りわずかです! 最終価格:990ドル EAを1つ無料でゲット(3つの取引アカウント分)→購入後ご連絡ください 究極のコンボセット   は   こちらをクリック 公開グループに参加する: こちらをクリック   ライブシグナル クライアントシグナル YouTubeレビュー 最新マニュアル ゴールドリーパーへようこそ! 非常に成功を収めたGoldtrade Proをベースに開発されたこのEAは、複数の時間枠で同時に動作するように設計されており、取引頻度を非常に保守的なものから極めて変動の激しいものまで設定できるオプションを備えています。 このEAは、複数の確認アルゴリズムを使用して最適なエントリー価格を見つけ出し、内部で複数の戦略を実行して取引のリスクを分散します。 すべての取引にはストップロスとテイクプロフィットが設定されていますが、リスクを最小限に抑え、各取引の潜在的な利益を最大化するために、トレーリングストップロスとトレーリングテイクプロフィットも使用されます。 このシステムは、非常に人
Scalping Robot Pro is a professional trading system designed specifically for fast and precise scalping on XAUUSD using the M1 timeframe. The system is built to capture short term market movements with accurate execution and controlled risk management. It focuses on real time price behavior, momentum shifts, short term volatility, and selective grid based trade management techniques to identify high probability trading opportunities in the gold market. Scalping Robot Pro is optimized for traders
ThunderGold Scalper
Jorge Luiz Guimaraes De Araujo Dias
5 (10)
ThunderGold Scalper ThunderGold Scalperは、MetaTrader 5でゴールドを自動売買するために開発されたエキスパートアドバイザーです。 このEAは、M15時間足のXAUUSDおよびGOLD向けに設計されています。独自の多要素意思決定エンジンを使用して、条件を満たした取引機会を検出し、ポジションを自動管理します。 市場構造、トレンド方向、ローソク足の品質、出来高、モメンタム、約定条件を組み合わせて分析します。常に取引するのではなく、適切な市場条件を待つように設計されています。 Live Signal — TMGM 主な機能 XAUUSDおよびGOLD向け 推奨時間足:M15 完全自動売買 グリッド戦略を使用しない 自動Stop LossおよびTake Profit ダイナミックトレーリングストップ リスク率または固定ロットによるポジションサイズ計算 トレンドおよびモメンタムフィルター ローソク足品質および出来高フィルター 重要経済指標ニュースフィルター 祝日および市場休場時の保護 スリッページ調整システム 1日の取引回数制限およびクールダウン 情
重要 : この商品は、ごく少数の数量のみ、現行価格で販売されます。    価格はまもなく1999ドルになります!   300 以上の戦略を収録 !さらに追加予定! ボーナス : 私の他のEAの中から5つ  を無料で 選んでください!   すべての設定ファイル + 完全なセットアップおよび最適化ガイド ビデオガイド ライブシグナル レビュー(第三者による) 新登場 - 44種類の戦略ライブシグナル 究極のブレイクアウトシステムへようこそ! この度、8年の歳月をかけて綿密に開発された、洗練された独自のエキスパートアドバイザー(EA)である「アルティメット・ブレイクアウト・システム」をご紹介できることを嬉しく思います。 このシステムは、MQL5市場で高いパフォーマンスを発揮するEAの基盤となっており、その中には高く評価されているGold Reaper EAも含まれています。 7か月以上にわたり1位の座を維持したほか、Goldtrade Pro、Goldbot One、Indicement、Daytrade Proもランクインした。 Ultimate Breakout Systemは
Iron Stops
Fajar Dicky Firmansyah
5 (13)
100K Real Signal:  https://www.mql5.com/en/signals/2386516 ギミックなし。空虚な主張なし。 Iron Stopsは、1つの重要な側面に焦点を合わせたトレーダーに対応しています: 一貫性 。プロップチャレンジに取り組んでいるか、顧客資金を管理しているかに関わらず、このEAは設定された境界内で活動し、信頼性のある結果を提供します。 ポジションは 36 時間 以内に決済。 一つのチャートで実行: XAUUSD に M30 タイムフレームを使用して適用するだけです。それが必要なすべてです。一つのチャート。一つの強力なツール。 正しい設定が正確なバックテストに不可欠です! 詳細な指示とともに、私の .iniファイル を取得するために連絡してください。 注意: このEAの現在の価格は 249 です。 15 ライセンスが購入されると、価格は 300 に上昇します。現時点で 12 部が販売されています。価格変更の前にお見逃しなく。 ブログ リンク =  https://www.mql5.com/en/blogs/post/763583
Adaptive Gold Scalper Important Pre-notice: This strategy requires a long period of practical verification, and favorable trading returns cannot be guaranteed in the short run. Traders must select brokers with ultra-low order latency, minimal slippage and zero/low stop level requirement; poor broker conditions will lead to disastrous trading results. I have over 14 years of professional trading experience. With proper brokerage conditions and sufficient running time, this fully automated scalpi
TwisterPro Scalper
Jorge Luiz Guimaraes De Araujo Dias
4.43 (136)
取引は少なく。質は高く。一貫性がすべて。 • ライブシグナル モード1 ライブシグナル モード 2 Twister Pro EA は、XAUUSD(ゴールド)のM15タイムフレーム専用に開発された高精度スキャルピングEAです。取引回数は少なめ——しかし、取引する時は必ず目的を持って行います。 すべてのエントリーは注文が出される前に5つの独立した検証レイヤーを通過し、デフォルト設定では極めて高い勝率を実現します。 2つのモード: • モード1(推奨)— 非常に高い精度、週数回の取引。資金保護と規律ある取引のために設計。 • モード2(ショートSL)— ストップロスが大幅に短く、モード1より多くの取引。個々の損失は最小限。リスクを管理しながら市場への露出を増やしたいトレーダーに最適。 仕様: シンボル:XAUUSD | タイムフレーム:M15 最低入金:$100 | 推奨:$250 RAW SPREADアカウントは必須 VPS強く推奨 グリッドなし!すべての取引にTPとSLあり! 推奨ブローカー: Exness Raw | Vantage | Fusion Markets 購入後、以下
Quantum King EA
Bogdan Ion Puscasu
4.96 (215)
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 用に設計されており、安定した制御された成長を望む初心者とプロの両方のために構築されています。
Lizard
Marco Scherer
4.13 (45)
LIZARD とは? Lizard は、MetaTrader 5 の XAUUSD(ゴールド)専用に開発された完全自動売買 EA です。マルチストラテジーのスイングブレイクアウトシステムにより、チャート上の重要な構造レベルを特定し、精密に計算されたエントリーポイントに逆指値の待機注文を発注します。マーチンゲールなし。グリッドなし。ナンピンなし。 すべての取引に明確なストップロスとテイクプロフィットが設定され、多層的な決済システムが24時間自動で管理します。 リアルシグナル — 購入前に実際のパフォーマンスをご確認ください: Normal Standard: https://www.mql5.com/en/signals/2372821 ECN High: https://www.mql5.com/en/signals/2383392 どのように機能しますか? Lizard は H1 時間足で XAUUSD チャートを継続的にスキャンし、重要なスイングハイとスイングローを探します。有効な構造が特定されると、そのレベルから調整された距離に Buy Stop または Sell Stop
Gold Snap
Chen Jia Qi
4.5 (18)
Gold Snap — ゴールド向け高速利益獲得システム ライブシグナル: https://www.mql5.com/en/signals/2362714 ライブシグナル2: https://www.mql5.com/en/signals/2372603 実績シグナル v2.0: https://www.mql5.com/en/signals/2379945 現在の価格で残り3本のみです。価格はまもなく$1199に引き上げられます。 購入後、ユーザーガイド、推奨設定、使用上の注意、およびアップデートサポートを受け取るため、必ずプライベートメッセージでご連絡ください。 https://www.mql5.com/en/users/walter2008 製品アップデートやトレード情報を受け取るため、ぜひ MQL5 チャンネルにご参加ください。 https://www.mql5.com/en/channels/tendmaster Gold House の長期的な開発と実運用での検証を通じて、ゴールド市場におけるブレイクアウト戦略の有効性と、当社の自動適応パラメータシステムの実用的な価値
Cortex IDX
Vladimir Mametov
5 (2)
これは、MetaTrader 5 向けに開発された完全自動型の Expert Advisor(EA)で、 US30 指数 の取引に特化して設計されています。取引ロジックは、主要株価指数に見られる強い方向性のある値動き、日中の押し目・戻り、そして高ボラティリティ局面といった市場特性を考慮して構築されています。EA は、約定スピード、規律ある取引、効率的なポジション管理が重要となる環境で、自動売買を実行します。 本システムは、規律あるトレード管理、市場変化への素早い対応、そしてコントロールされた決済に重点を置いています。基本的な考え方はシンプルです。利益が出ているポジションは Trailing Stop によってできるだけ伸ばし、一方で損失中のポジションは、M1 時間足で反対シグナルが発生した場合に早期決済できるようにします。 シグナル: https://www.mql5.com/en/signals/2376781 発売記念特別価格: 現在の価格は最初の 20 コピー限定です。20 コピーが販売された後、EA の価格は 100 USD 上がり、 599 USD になります。 基本コンセプ
Vexora sera
Fatima Zohra Ed Dachraoui
5 (2)
透明性 私たちは、Expert Advisorを評価する最も優れた方法は、実際のリアル口座でのライブ取引パフォーマンスを確認することだと考えています。 リアルタイム取引シグナル: https://www.mql5.com/en/signals/2379635?source=Site+Signals+My テクニカルサポート: https://www.mql5.com/en/users/fatima-zohraed/news                                          設定ガイド $199で販売開始 現在 $299 — 限定10個のみ 次回の価格改定で$399になる前に、$299でお求めください。 VEXORA SERA :プロフェッショナルなゴールド取引の真の力 新たな市場ボラティリティの時代に向けて設計 ゴールド取引は、もはや以前と同じものではありません。 過去2年間、ゴールド市場では非常に高いボラティリティと、これまでにないほど強い価格変動が発生しており、多くの従来型の取引システムが新しい市場環境に適応できなくなっています。 そのため、 VE
Quantum Athena X
Bogdan Ion Puscasu
5 (4)
よりスマートな制御。洗練された精度。 Quantum Athena Xへようこそ。Quantum Athenaの精度、効率性、そして規律ある実行力を基盤とした、次世代の集中型金取引システムです。 Quantum Athena Xは、Quantum Athenaと同じ合理化されたコアエンジンと、厳選された6つの戦略に基づいて構築されています。各戦略は、現在の金市場の状況に合わせて個別に改良および最適化されており、新しい強力なカスタムモードでは、トレーダーがどの戦略を有効または無効にするかを正確に選択できます。 完全に準備されたプラグアンドプレイ体験を好むトレーダー向けに、最適化された元の構成は引き続き利用可能です。一方、カスタムモードでは、独自の戦略の組み合わせを作成したいトレーダー向けに、より高い柔軟性が提供されます。 IMPORTANT! After the purchase please send me a private message to receive the installation manual and the setup instructions. 割引価格
Zoomini
Gennady Sergienko
1.6 (15)
重要情報: サポートおよび質問への回答はこちらでのみ行います:  https://www.mql5.com/en/users/zolia  ( Zolia - UTC/GMT: 台湾 ); Zoomini は、GoGoPips プロジェクトの 2026 年 7 月の最新研究から生まれた、小規模な機械学習モデルセットです。 これらのモデルは XAUUSD H1 / Gold 専用です。 シグナル: www.mql5.com/en/signals/2381994 知っておくべき重要事項: モデルは 1つの注文 のみで取引し、同じ SL/TP を使用します。 対応: Netting口座 および任意のレバレッジ。 中期的な取引スタイルのため、大口の入金にも対応しています。  100% の取引活動 。 これは、モデルが市場へのエントリーを避けず、常に取引状態にあることを意味します。 モデルは、都合のよいエントリーポイントを探すのではなく、毎分の価格方向を予測するように特別に訓練されています。 購入前の完全な透明性 。   現在、一時的に、またはこの EA の所有者が反対しなければ恒
Quantum Emperor MT5
Bogdan Ion Puscasu
4.85 (506)
ご紹介     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つの小さな取引に継続的に分割する独自の戦略を採用しています
Zerqon EA
Vladimir Lekhovitser
3.37 (30)
リアルタイム取引シグナル 取引活動の公開リアルタイム監視: https://www.mql5.com/ja/signals/2372719 公式情報 出品者プロフィール 公式チャンネル ユーザーマニュアル セットアップ手順および使用ガイド: ユーザーマニュアルを開く Zerqon EA は、XAUUSD 取引専用に設計された適応型エキスパートアドバイザーです。 この戦略は、ONNX を通じて統合された Deep LSTM ニューラルネットワークモデルに基づいており、市場の連続的な動きを処理し、価格変動を構造的に分析することを可能にしています。 モデルは、金価格の動き、ボラティリティ、および時間的条件における特定のパターンを識別することに重点を置いています。 固定的な従来型シグナルを使用する代わりに、EA は学習済みニューラルネットワークフレームワークを通じて市場を分析し、適切な条件が検出された場合にのみ取引を実行します。 Zerqon EA は継続的に取引を行うわけではありません。 まったく取引が行われない期間もあれば、適した XAUUSD 市場局面では短時間に
Pulse Engine
Jimmy Peter Eriksson
4.08 (37)
最新情報 - 現在の価格で入手できるのは残りわずかです! このシステムの主な目的は、リスクの高いマルチンゲールやグリッドを使用せずに、長期的なライブパフォーマンスを実現することです。  現在の価格での販売部数は非常に限られています。 最終価格 1499ドル 【ライブシグナル】    |    【バックテスト結果】    |    【設定ガイド】    |    【FTMO結果】 取引への新たなアプローチ Pulse Engineは、インジケーターや特定の時間枠を一切使用しません。MQL5上の他のどのトレーディングシステムも採用していない、非常にユニークなアプローチを採用しています。 この手法は、日中の方向性パターンに基づいて取引を行います。これらのパターンは、私が長年開発・改良を重ねてきた独自のパターン認識ソフトウェアを用いて発見したものです。 このソフトウェアにより、市場が過去に特定の方向に強い動きを示した時間帯を特定することができます。 市場ごと、そして曜日ごとに、それぞれ独自の動きがあります。 この手法が非常に強力な理由は、市場がトレンドにあるのか、反転しているのか、あるい
Logan MT5
Thierry Ouellet
4.42 (31)
LIMITED TIME OFFER AT 289$ Price will go up at  499$ on August 24th! Logan MT5 isn't your typical Gold Grid EA that blindly opens trade after trade, consuming your margin and putting your capital at unnecessary risk. Instead, it patiently waits for high-probability entry opportunities and uses an intelligent recovery system that combines ATR-based grid spacing with dynamic lot progression . This allows it to withstand adverse market movements that would wipe out most conventional grid EAs—incl
Goldwave EA MT5
Shengzu Zhong
4.53 (74)
リアルトレード口座   LIVE SIGNAL(IC MARKETS): https://www.mql5.com/en/signals/2339082 本 EA は、MQL5 上で検証済みのリアルトレードシグナルと、完全に同一の取引ロジックおよび執行ルールを使用しています。推奨された最適化済み設定を使用し、信頼性の高い ECN / RAW スプレッドのブローカー (例:IC Markets または TMGM) で運用した場合、本 EA のリアルトレード挙動は、当該ライブシグナルの取引構造および執行特性に極めて近い形で設計されています。ただし、ブローカーごとの取引条件、スプレッド、約定品質、ならびに VPS 環境の違いにより、個々の結果が異なる可能性がある点にご注意ください。 本 EA は数量限定で販売されています。現在、残りのライセンスは 2 件のみで、価格は USD 999 です。購入後は、プライベートメッセージにてご連絡ください。ユーザーマニュアルおよび推奨設定をお渡しします。 過度なグリッド手法は使用せず、危険なマーチンゲールも行わず、ナンピン(平均取得単価の引き下げ)も使用
XG Gold Robot MT5
MQL TOOLS SL
4.33 (112)
The XG Gold Robot MT5 is specially designed for Gold. We decided to include this EA in our offering after extensive testing . XG Gold Robot and works perfectly with the XAUUSD, GOLD, XAUEUR pairs. XG Gold Robot has been created for all traders who like to Trade in Gold and includes additional a function that displays weekly Gold levels with the minimum and maximum displayed in the panel as well as on the chart, which will help you in manual trading. It’s a strategy based on Price Action, Cycle S
XT Bitcoin Robot is an advanced  automated trading system  designed specifically for  BTCUSD traders  who want to take advantage of Bitcoin's market volatility without the need for constant market monitoring. The robot continuously analyzes market conditions and automatically executes trades based on its built in trading logic, helping traders stay active in the market 24 hours a day without manual intervention. The system is designed to identify trading opportunities and manage positions accor
更新情報:次期価格:699ドル、最終価格:999ドル もしあなたが、誠実さと、単に見た目は完璧な直線的なバックテスト結果だけで口座を破綻させるようなものではなく、実際の取引のために構築された真のトレーディングシステムを重視するなら、これはあなたにぴったりかもしれません。 マーチンゲール法なし/グリッド法なし 22ヶ月間ライブ信号 ライブ成長率+270% 【ライブシグナル】    |  【FTMO実績】    |  【メインポートフォリオ】  |  【バックテストガイド】 Range Breakout EAがこれほど安定している理由とは? Range Breakout EAは、よく知られた市場の動向、すなわち取引セッション間のボラティリティの変化に基づいています。 通常、アジアセッション中はボラティリティが低く、価格レンジが狭くなります。ロンドンセッションが始まるとボラティリティが上昇し、価格はこのレンジを突破して ブレイクアウト方向に動き続けることがよくあります。 このシステムはこのブレイクアウトをトレードし、ボラティリティが低下し始めた時点でポジションを決済します。
Nexorion Initium Novum EA
Valentina Zhuchkova
4.17 (24)
NEXORION: Initium Novum — 決定論的ロジックとアルゴリズムの統合 NEXORION は、厳密な流動性処理数学アルゴリズムに基づいた機関投資家レベルの分析コンプレックスです。本プロジェクトの中核概念は「計算の透明性」にあります。このエキスパートアドバイザー(EA)は、混沌とした価格フィードを構造化された幾何学的ゾーンへと変換し、意思決定プロセスを取引チャート上に直接可視化します。 リアルタイム・モニタリング https://www.mql5.com/en/signals/2378408 https://www.mql5.com/es/signals/2372338 システム技術仕様 取引銘柄: XAUUSD (Gold) 運用タイムフレーム: H1 手法: 機関投資家流動性分析および決定論的ロジック (Institutional Liquidity Analysis & Deterministic Logic) 意思決定基盤: 流動性プールと均衡レベルの数学的算出 数学的アーキテクチャと可視化 システムの主要な革新は、Dynamic Computation M
Price Increases on monday. Live Signal on Vantage https: // www.mql5.com/en/signals/2378090 https: // www.mql5.com/en/signals/2378091 live signal is running mode/option 1 with autolot 2 % risk. Overview:  The Gold Space is a fully automated, professional-grade Expert Advisor specifically engineered for the XAUUSD (Gold) market. Designed natively for MetaTrader 5, this EA capitalizes on high-probability volatility expansions using a precise, dynamically calculated breakout algorithm. It eliminate
Launch Offer:   Grab Gold Naural Core and bundle it with   XAU Momentum   and get 2 free EAs of your choice from my entire MQL5 store. DM me for details. Learn how I personally manage risk when using grid systems:  https://www.mql5.com/en/blogs/post/767250 Read the user guide to any TickStack grid system:  https://www.mql5.com/en/blogs/post/767232 Gold Neural Core — Hyper-Scalping Grid System for XAUUSD Gold Neural Core is a high-frequency grid trading system engineered specifically for gold (X
Ghost Scalper MT5
Thomas Christoph Lipka
5 (5)
Ghost Scalper MT5 – XAUUSD マルチストラテジー自動売買システム Ghost Scalper MT5 は、 Gold (XAUUSD) 専用に開発された完全自動の Expert Advisor です。 バージョン 2.3 では、Ghost Scalper はマルチストラテジーシステムへ進化しました。 Ghost A、Ghost B、Ghost C、Ghost D の4つの独立した戦略が1つのEAに統合され、同時または個別に有効化できます。 各戦略は独自のエントリーロジックと、それぞれ最適化された Stop Loss、Take Profit、Trailing パラメータを使用します。 VERSION 2.3 の新機能 Ghost A、B、C、D の4戦略を統合 全戦略を同時または個別に使用可能 Ghost A/B/C/D すべてに Virtual Trailing Inputs から Virtual Trailing の ON/OFF が可能 デフォルト: Virtual Trailing ON 戦略ごとに最適化された Entry、SL、TP、Trailing シ
Chiroptera
Rob Josephus Maria Janssen
4.57 (49)
Prop Firm Ready! Chiroptera is a non-martingale, non-grid, multi-currency Expert Advisor that operates in the quiet hours of the night. It uses single-placed trades (of all 28 pairs!) with tactically placed Take Profits and Stop Losses, that are continuously adjusted to maximize gains and minimize losses. It keeps track of past and upcoming news reports to ensure impacts are minimized and carefully measures real-time volatility to prevent impacts due to unpredictable geo-political disturbances c
作者のその他のプロダクト
Institutional Order Flow and Cumulative Delta Trading System for MetaTrader 5 Description Pure Order Flow System is an automated trading application for MetaTrader 5 that focuses exclusively on price action, order flow, and institutional footprints. The system does not use traditional trend indicators such as EMA or Bollinger Bands. Instead, it relies on order blocks, liquidity sweeps, fair value gaps, and cumulative delta for trading decisions. This approach provides lag-free signals since it
Ultimate Fusion MT5 EA Version 2.2 – Multi-Pair Trading System with Signal Scoring and Machine Learning Optimization Description Fusion MT5 EA is an automated trading application for MetaTrader 5 designed to manage multiple trading instruments simultaneously from a single chart. The system employs a signal scoring methodology, incorporates machine learning techniques for weight optimization, and includes comprehensive risk management features. The Expert Advisor includes 23 built-in pair preset
Fast SMC Master EA Institutional Order Flow Trading System for MetaTrader 5 Description SMC Order Flow System is an automated trading application for MetaTrader 5 designed to detect institutional order flow and smart money footprints in the forex, metals, crypto, and indices markets. The system specializes in identifying liquidity sweeps, order blocks, and fair value gaps (FVG) that often precede significant price movements by large market participants. This approach enables the system to follo
Reversal Hunter MT5 EA Mean-Reversion and Divergence-Based Trading System for MetaTrader 5 Description Reversal Detection System is an automated trading application for MetaTrader 5 built to identify trend exhaustion points and hidden divergences in the forex, metals, crypto, and indices markets. Unlike trend-following systems, this EA focuses on detecting directional reversals through RSI and MACD divergence analysis, support and resistance violations, and Bollinger Band squeeze patterns. This
Fusion Alpha Sentinel Trade Multi Pair EA MetaTrader 5 Application – 10 Scoring Templates in One System Description Multi-Strategy Trading System is an automated application for MetaTrader 5 that integrates ten distinct trading methodologies into a single platform. Users can select from 10 pre-defined scoring templates—or create a custom configuration—through a single input parameter. This approach allows traders to adapt the system to different market conditions without purchasing multiple pro
Ranging King MT5 EA Channel and Sideways Market Trading System for MetaTrader 5 Description Range Structure System is an automated trading application for MetaTrader 5 optimized for sideways and low-trend market conditions. The system identifies clear price channels using Bollinger Bands, Ichimoku clouds, and pivot points. It avoids trading during strong breakouts unless confirmed by volume analysis, making it suitable for traders who prefer structured price channel environments. The Expert Adv
Momentum Blast MT5 EA Trend Breakout and Momentum Continuation Trading System for MetaTrader 5 Description Breakout Momentum System is an automated trading application for MetaTrader 5 designed to capture strong directional movements following the breach of key price levels. The system utilizes ADX for trend strength validation, volume surge analysis to confirm buying or selling pressure, and market structure breaks (BOS and CHOCH) for entries at the beginning of new trends. The Expert Advisor
Support Resistance Master EA Support and Resistance Level-Based Trading System for MetaTrader 5 Description Price Level System is an automated trading application for MetaTrader 5 that bases all entry and exit decisions on historical supply and demand levels. The system dynamically identifies swing highs and lows, pivot points, and order congestion zones. The EA executes trades only when price reacts to these pre-defined levels, ensuring that entries are aligned with institutional interest area
Volatility Adaptor MT5 EA Dynamic ATR-Based Adaptive Trading System for MetaTrader 5 Description Volatility Reactive System is an automated trading application for MetaTrader 5 that dynamically adjusts trading frequency, stop-loss, take-profit, and expiry parameters based on the Average True Range (ATR) of each instrument. During high volatility periods, the system widens targets and reduces position sizes. During low volatility periods, the system tightens parameters to capture smaller movemen
Quick Reversal Master EA High-Frequency Counter-Trend Trading System for MetaTrader 5 Description Rapid Signal System is an automated trading application for MetaTrader 5 designed for quick and aggressive counter-trend entries. The system uses a minimal but high-impact signal set including candle direction, RSI extremes, liquidity sweeps, fair value gaps, cumulative delta, and divergence detection. With a base threshold of 50, which is the lowest among all templates, the system generates signal
Fusion Nexus MT5 EA Adaptive Trading System for All Market Conditions Description Multi-Regime System is an automated trading application for MetaTrader 5 designed to perform across diverse market conditions including trending, ranging, and volatile environments. The system combines a balanced mix of trend signals, range signals, and institutional signals with multi-timeframe (MTF) confirmation. This comprehensive approach ensures the EA can adapt to changing market dynamics without requiring m
Description Scalping Fusion   is an automated scalping Expert Advisor for MetaTrader 5 that combines   institutional order flow concepts   (Order Blocks, Liquidity Sweeps, FVG) with   classical technical indicators   (EMA, RSI, ADX, Bollinger Bands, Ichimoku) in a unified scoring system. The EA is designed for   single-pair, high-frequency scalping   with a strong emphasis on   dynamic risk management ,   auto-compounding , and   level-based pending order execution . Unlike pure SMC systems, Sca
# Trend Master EA – MA Crossover with Scoring & Adaptive Risk TrendMaster EA is an advanced, multi‑pair trend‑following Expert Advisor for MetaTrader 5, built on a proven Moving Average crossover strategy enhanced with a sophisticated scoring system, dynamic risk management, and comprehensive protection mechanisms. Unlike simple crossover systems, TrendMaster evaluates multiple confluences – candle patterns, support/resistance proximity, RSI, ADX, and volume surges – to filter only high‑probab
Chimera Fusion – 5 Modes, Adaptive SL/TP, 6 Compounding Types Chimera Fusion is an advanced MT5 EA combining 5 strategies via voting, with 6 compounding modes, adaptive SL/TP (ATR + volatility + market + DD), and adaptive trailing stop. Features 5 trading modes (Scalp to Sniper) and auto-configures for Forex, Crypto, Indices & Commodities. Core Features Feature Description 5 Trading Modes Scalp → Active → Standard → Selective → Sniper (aggressive to conservative) 5 Strategies MA Cross, Breakout
XAUUSD Averaging EA   is an automated grid trading system designed specifically for XAUUSD (Gold) trading on the MetaTrader 5 platform. This Expert Advisor implements a professional averaging strategy with martingale position sizing, utilizing dynamic spacing based on market volatility through ATR (Average True Range) analysis. The system combines multiple grid modes with technical filters including Moving Average crossover signals, RSI confirmation, and ADX trend strength filtering. It feature
XAUUSD DualGrid EA Ultimate is a professional dual‑direction grid trading system for MetaTrader 5, designed for Gold (XAUUSD) and other volatile symbols. It operates two independent grids (BUY and SELL) simultaneously, automatically opening averaged positions as price moves against each grid. The strategy combines martingale position sizing, ATR‑based dynamic spacing, multi‑level partial take‑profit, smart loss recovery, and advanced hedging – all wrapped in a real‑time dashboard for full monito
フィルタ:
レビューなし
レビューに返信