SMC King HK Super Scalper

SMC King HK EA — Full Features & Trade Logic Explanation

(It Will Work Only XAUUSD M5 and XAGUSD H1)

🧠 How the EA Takes Trades — Step by Step Logic

The EA runs two separate trading engines simultaneously, and an automatic regime switch controls which one is active. Here's the full flow of both.

1️⃣ REVERSAL MODE (POI Sweep + Retest + Break Entry)

This is the EA's core "Smart Money" logic. Step by step:

Step 1 — POI (Order Block) Formation

  • The EA detects swing highs and swing lows ( InpSwingLength bars on each side).
  • Each swing forms a POI (Point of Interest / Order Block) zone — the zone width is calculated from ATR ( InpBoxATRMult ).
  • A bullish swing low → Demand Zone (Bull POI). A bearish swing high → Supply Zone (Bear POI).

Step 2 — Liquidity Sweep (Stop Hunt)

  • When price wicks into that POI zone or slightly beyond it ( InpSweepMinPips ), this is treated as a "sweep" — meaning the market has taken liquidity (triggered stop-loss orders).
  • The POI's status then becomes SWEPT .

Step 3 — Retest Confirmation

  • After the sweep, the first candle that closes back outside the POI zone (above the zone for a bullish POI, below for a bearish POI) becomes the "retest confirmation candle."
  • That candle's own high (for buys) or low (for sells) instantly becomes the entry trigger level — no extra waiting bar is needed.

Step 4 — Break Entry

  • The moment any later candle breaks that trigger level (high/low break), the EA fires an instant market entry.
  • Each POI can only produce one trade (a hard traded lock) — even if price revisits that zone later, it will never trade the same POI twice.

Step 5 — Filters before an entry fires

  • Trend filter ( InpUseTrendFilter + InpReversalTrendAlign ) — if enabled, the trade must align with the trend direction.
  • Regime filter ( InpBlockReversalInStrongTrend ) — if the market is in a STRONG trend, reversal/sweep trades are skipped (the logic assumes counter-trend sweeps are riskier during a strong trend).
  • Session filter — entries only fire inside enabled session time windows.
  • Spread filter — entry is cancelled if spread exceeds InpMaxSpreadPips .
  • Max open trades check.

2️⃣ BREAKOUT MODE (Trend-Following Structure Break)

  • The EA tracks the most recent swing high/low ( g_lastSwingHigh/Low ).
  • When the close price crosses that swing level (above a swing-high for a buy breakout, below a swing-low for a sell breakout) and the market is in a STRONG trend regime ( InpBreakoutOnlyInStrongTrend ), a breakout trade fires.
  • Candle color confirmation ( InpBreakoutRequireCandleColor ) — the breakout candle must actually be bullish (green) for a buy, or bearish (red) for a sell; a close price above/below the level alone is not enough.
  • One-shot lock per level — the same swing level cannot produce another trade until a genuinely new pivot forms. This prevents the "trade every bar" bug.

3️⃣ REGIME-BASED AUTO SWITCH (v1.28 — The Most Important Feature)

Every bar, the market is classified into one of four regimes:

  • STRONG UPTREND: EMA9 > EMA15 > EMA50 stacked + price above EMA200
  • STRONG DOWNTREND: opposite stacking + price below EMA200
  • UPTREND/DOWNTREND (weak): only a simple EMA9 vs EMA15 cross
  • RANGING: no clear stacking

Based on this, decisions are made automatically:

Regime Breakout Trades Reversal/Sweep Trades
STRONG trend (either direction) ✅ ON ❌ OFF (if InpBlockReversalInStrongTrend=true )
Ranging / weak trend ❌ OFF (if InpBreakoutOnlyInStrongTrend=true ) ✅ ON

This all happens automatically — no manual mode switching required. The dashboard's "Regime:" line shows the live status.

🕒 Session Filter — How It Works

  • Three sessions are defined: Asian, London, New York — each independently switchable ON/OFF, with a custom start-end time (broker/server time, HH:MM).
  • When InpUseSessionFilter=true , the EA only opens new trades within an enabled session's time window — the POI/structure logic stays the same, this is purely an entry-timing gate.

Per-Session Trade Limit

  • Each session keeps its own trade counter (max InpMaxTradesPerSession = 1 or 2 trades).
  • STRICT RULE: If that session's first trade closes at a LOSS (SL), no more trades are taken in that session (the session is hard-blocked).
  • A second trade is only allowed once the first trade has closed in PROFIT.
  • Counters and blocks reset automatically the moment a new session window starts.

Asian-Loss-Blocks-Day Rule

  • If the Asian session's very first trade closes at a loss, all trading is blocked for the rest of that calendar day (broker date) — Asian, London, New York, no session, no new trade.
  • This resets automatically when the calendar date changes.

🛡️ Stop Loss (SL) Engine — 7 Modes

Mode Logic
Fixed A fixed pip distance
Retest Candle Sweep/retest candle's wick + buffer
Recent Swing Recent swing high/low + buffer
ATR Based Entry ± (ATR × multiplier)
Prev Candle High/low of the candle before the signal candle + buffer
Safest Picks the widest SL among all valid candidates (maximum safety)
Tightest Picks the narrowest SL among all valid candidates (maximum R:R)

In every mode, InpMinSL_Pips and InpMaxSL_Pips enforce hard minimum/maximum caps.

🎯 Take Profit (TP) Engine — 2 Modes

  • Fixed Pips: A fixed pip distance from entry.
  • Risk:Reward Ratio: A multiple of the actual SL distance (e.g. 1:2 or 1:3) — whatever the SL turns out to be, the TP is its multiple.

📈 Trade Management (After a Position Opens)

  1. Partial Close — By default, 50% of the position closes at InpPartialAtR (e.g. 1R) profit, leaving the rest running.
  2. Auto Break-Even — At InpBE_AtR R profit, the SL moves to entry + a small offset ( InpBE_OffsetPips ) — locking in downside protection.
  3. Optional Trailing SL — After break-even, trailing starts at InpTrailStartR , maintaining a fixed distance ( InpTrailDistPips ) behind price.

💰 Lot Sizing Engine

  • InpFixedLots = 0 → The EA auto-calculates lot size from Balance × InpRiskPercent ÷ actual SL distance (risk-based).
  • InpFixedLots > 0 → Always uses that exact fixed lot size regardless of balance.

📊 Live Dashboard

Displayed in real time on the chart: Equity, Balance, Today's P/L, Total Return, Trend, Regime (with auto-mode note), POI counts (total/active/history), Trading Mode, SL Mode, TP Mode, Management status, Active Session, Session trade counts, Day-block status, Last Signal, Last SL/TP info.

✅ Updated Recommended Settings (As Per Your Instructions)

🥇 XAUUSD — M5, RR 1:2 → Asian + London Sessions ON, New York OFF

Input Value
InpTradeMode AUTO
InpPipSize 0.1
InpTPMode TP_RR_RATIO
InpRR_Ratio 2.0
InpUseSessionFilter true
InpSessionAsianEnable true
InpSessionLondonEnable true
InpSessionNewYorkEnable false
InpMaxTradesPerSession 1–2
InpAsianLossBlocksDay true
InpFixedLots 0 (risk-based)
InpRiskPercent 1–2% (suggested 1.5%)
InpSLMode High/low of the candle before the signal candle + buffer

🥈 XAGUSD — H1, RR 1:3 → Asian + London + New York — All Sessions ON

Input Value
InpTradeMode AUTO
InpPipSize Verify on your broker's chart (commonly 0.01 or 0.001)
InpTPMode TP_RR_RATIO
InpRR_Ratio 3.0
InpUseSessionFilter true
InpSessionAsianEnable true
InpSessionLondonEnable true
InpSessionNewYorkEnable true
InpMaxTradesPerSession 1
InpFixedLots 0 (risk-based)
InpRiskPercent 1–2% (suggested 1.5%)
InpSLMode High/low of the candle before the signal candle + buffer
InpSwingSLLookback 20–30

Note: Enabling all sessions for XAGUSD widens the trading window to nearly full-day coverage — this is fine because H1 already trades less frequently, and the built-in safety rules (per-session limit + Asian-loss-blocks-day) already prevent overtrading.

⚠️ Reminder

These settings differ from the fixed-lot numbers used in the backtest reports shared earlier — for live/demo trading, using InpFixedLots=0 with risk-based sizing is safer, as discussed above. Always forward-test on demo before going live.

🚨 RISK WARNING — Past Performance Is NOT a Guarantee

  • Past backtest/optimization results (including the $7,000 XAUUSD and $15,805 XAGUSD numbers shared earlier) do not guarantee any future profit. They reflect how the strategy performed on one specific historical price window, under one specific broker/spread/execution environment.
  • Trading forex, gold, and silver CFDs involves a real and significant risk of loss. You can lose part, or all, of your invested capital — no automated strategy, including this EA, eliminates that risk.
  • Markets change. A regime, session pattern, or volatility structure that worked well in the tested period can behave completely differently going forward. There is no assurance the same win rate, drawdown, or profit factor will repeat.
  • Leverage magnifies both gains and losses. The 1:100 leverage used in the shared backtest increases risk exposure significantly relative to account size.
  • Live execution differs from backtesting — slippage, requotes, variable spread, and connection latency can all reduce real-world performance compared to simulated results.
  • Never trade with money you cannot afford to lose. Always size positions based on your own risk tolerance (the suggested 1–2% per trade is a guideline, not a promise of safety), and treat every recommendation in this document as informational — not financial advice.

This EA is a tool to automate a defined set of trading rules. It does not predict the market and does not guarantee income of any kind.


おすすめのプロダクト
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,
EXPERTteam
Netanel Kahan Abuluf
Expert XAU is an advanced, precision-focused trading robot designed exclusively for XAUUSD on the 1h  timeframe . This EA uses a proprietary logic to identify high-quality buy opportunities, execute trades with calculated precision, and manage risk dynamically — all while keeping strategy details private to protect its competitive edge. Key Features: – 100% automated – High probability long entries – Built-in risk management – Plug & play: attach to 1h chart and go - in 6.5months will do 11
SolarTrade Suite 金融ロボット: LaunchPad Market Expert - 取引を開始するために設計されています! これは、革新的で高度なアルゴリズムを使用して値を計算する取引ロボットであり、金融​​市場の世界でのアシスタントです。 SolarTrade Suite シリーズのインジケーター セットを使用して、このロボットを起動するタイミングをより適切に選択してください。 説明の下部にある SolarTrade Suite シリーズの他の製品をご覧ください。 投資と金融市場の世界を自信を持ってナビゲートしたいですか? SolarTrade Suite 金融ロボット: LaunchPad Market Expert は、情報に基づいた投資決定を行い、利益を増やすのに役立つ革新的なソフトウェアです。 SolarTrade Suite 金融ロボット: LaunchPad Market Expert の利点: - 正確な計算: 当社のロボットは、高度なアルゴリズムと分析方法を使用して、市場の動きを正確に予測します。 資産を売買するのに最適なタイミングを
The Infinity EA MT5
Abhimanyu Hans
3.58 (62)
ChatGPT TurboによるAI駆動テクノロジー Infinity EA は、GBPUSD、XAUUSD、AUDCAD 向けに設計された高度なトレーディング エキスパート アドバイザーです。安全性、一貫したリターン、無限の収益性に重点を置いています。マーチンゲールやグリッド トレーディングなどの高リスク戦略に依存する他の多くの EA とは異なり、Infinity EA は、機械学習に組み込まれたニューラル ネットワーク、ChatGPT の最新バージョンによって提供されるデータ分析 AI ベースのテクノロジーに基づく、規律ある収益性の高いスキャルピング戦略を採用し、全体的なトレーディング エクスペリエンスを卓越したものにします。 7,000 人を超えるメンバーが参加する MQL5 コミュニティ に参加して、他のトレーダーとつながりましょう。最新の製品アップデート、ヒント、独占コンテンツを常に入手しましょう。 MT4バージョン Infinity EAの設定方法 特徴 Infinity EA は AI 主導のスキャルピング戦略を活用します。 EA はリアルタイムのデータ分析のために C
Xerxes Quantum Vanguard The Omni-Asset Hybrid Daily Action System (Trend + Mean Reversion | Multi-Asset ATR Logic | Quantum Dashboard)  Conquer Every Market Condition Xerxes Quantum Vanguard is not a single-strategy robot. It is a dual-core Hybrid Trading System- engineered for the active trader who demands daily market action. By seamlessly combining Trend Breakout- and Mean Reversion- algorithms, Xerxes adapts to whatever the market throws at it. Built from the ground up to support multiple
Smart M Quantum
Ignacio Agustin Mene Franco
Smart Money Quantum EA Smart Money Quantum is an advanced algorithmic trading Expert Advisor designed specifically to trade XAU/USD (gold) on the M15 timeframe. This system combines Smart Money Concepts (SMC) principles with institutional risk management to capture high-probability movements in the gold market. Key Features Trading Strategy SMC Methodology: Accurately identifies and trades institutional Order Blocks Break & Retest System: Confirms liquidity zones before executing trades RSI
Product:   SMC-based automated trading robot for XAUUSD (Gold) on M1 timeframe. Core Strategy:   Enters trades using institutional Smart Money Concepts (SMC)—Liquidity Sweeps, Order Blocks, Fair Value Gaps, and Breaker Blocks—with traditional swing levels as a fallback. Key Feature – Intelligent Hedge:   Places a pending hedge order exactly at the original position’s stop loss. The hedge activates only if the stop is hit, trails profits faster (10 pips vs. 60 pips for the original), and is de
The Inside Bar e one is a reversal/continuation candle formation, and is one of the most traded candle patterns. Robot F1 allows you to configure different trading strategies, Day Trade or swing trade, based on the Inside Bar as a starting point.  This pattern only requires two candles to perform. Robot F1 uses this extremely efficient pattern to identify trading opportunities. To make operations more effective, it has indicators that can be configured according to your strategy. Among the o
LumaForge Scalper
Nathan Roche Leonardo Meyers
LumaForge Scalper is an automated MetaTrader 5 Expert Advisor designed for selective Gold day trading and scalping. The EA uses multi-timeframe market analysis on H1, M15 and M5 and operates around the London and New York trading sessions. It is based on Smart Money Concepts and is designed to remain selective rather than trade continuously. When the required market conditions are not present, the EA can remain inactive. TRADING AND POSITION STRUCTURE The EA can execute up to three trading oppor
Aurum Apex Gold trades one instrument -- XAUUSD -- with one idea: institutions fill large orders where retail stops sit, and the reversal that follows is tradable when, and only when, price confirms it. How a trade is built 1. Liquidity sweep. A tracked pool of resting orders (previous day/week    high or low, session extreme, equal highs/lows, untapped swing) is    penetrated and then reclaimed. Penetration and reclaim are both measured in    ATR, never in fixed points, so the logic scales w
Gold Gladiator: Multi-Level Breakout Precision Robot Gold Gladiator is a fully automated Expert Advisor built to catch decisive breakout moves the moment they happen. Instead of waiting on a single trigger, it stages multiple independent entry levels around price at once, ready to fire the instant the market commits to a direction: slicing into the move early rather than chasing it after the fact. Special launch discounted price - $129. The price will increase by $229 with every 5 purchases. Fin
Trend Follow Pro: Domine a Tendência com Precisão O Trend Follow Pro é um robô de negociação (Expert Advisor) desenvolvido para capturar movimentos direcionais no mercado. Ele utiliza a clássica e poderosa estratégia de cruzamento de Médias Móveis Exponenciais (EMA) , otimizada com filtros de segurança e uma interface visual moderna que permite o acompanhamento em tempo real diretamente no gráfico. Como ele funciona? O princípio de funcionamento é baseado na dinâmica de preços: Sinal de Compra:
HP Trade Pro: Algorithmic Gold Trading System Introduction HP Trade Pro is an algorithmic trading system developed for the Gold (XAU/USD) market. The system utilizes a fixed set of rules to identify potential entry and exit points based on market volatility and price action. It incorporates an automated volume calculation feature that adjusts position sizes according to the current account equity. XAUUSD Trend Following, No Martingale, No Grid, Strict Stop Loss, High Reward-to-Risk. IMPORTANT! A
Queen Machine Gold
Ignacio Agustin Mene Franco
Queen Machine Gold v2.01 Intelligent Gold Trading System (XAUUSD) Queen Machine Gold is an advanced Expert Advisor specifically designed for trading XAUUSD with a unique combination of artificial intelligence and high-precision technical analysis. Key Features: GNN Market Structure (Graph Neural Network): Detects and analyzes the most relevant Support and Resistance levels in real time using a system of nodes and graphs. Evaluates the confluence of multiple historical levels, the strength of
This is the official version of Opal EA, a powerful tool using cutting-edge algorithms and AI-driven calculations. This fully automated EA encompasses the exceptional qualities we associate with the opulent gemstone: proper decision-making, prudence and strong protection. Be aware of cracked versions/unofficial copies that either work only on demo accounts or are sold at suspiciously low prices. These reportedly lead to rapid account losses.   Opal also takes into account the study of psychol
Welcome to the Future of Trading: Your Ultimate AI Assistant!   Unleash the Power of AI Trading Welcome to a revolutionary trading experience with our cutting-edge EA (Expert Advisor). Designed with the latest advancements in AI technology, this tool is your gateway to smarter, more efficient trading. Whether you are a seasoned trader or just starting out, our EA is tailored to meet your needs and elevate your trading game. Key Features ·        Advanced Algorithms: Leverage the pow
REAL BACKTEST / LONG TERM PROFITIBILITY Introducing ComplexEuro Edge PRO , an advanced Expert Advisor, meticulously designed 'EURUSD' trading system that specializes in executing high-precision trades by implementing a unique set of strict conditions and technical criteria.  ComplexEuro is unlike other EAs that rely on generic algorithms , martingale/grid or other 'AI' gimmicks that do not work long term. Minimum Deposit : $100 TimeFrame : M1 Pair : EURUSD VPS is recommended Auto Close at weeke
PythonX TokyoFlow USDJPY EMA + MACD Momentum Engine for Intraday Precision PythonX TokyoFlow USDJPY is a professionally structured trading system developed specifically for the USDJPY pair on the M1 timeframe. It integrates trend analysis with momentum-based confirmation to identify structured intraday opportunities in fast-moving market conditions. Strategy Architecture The system is designed around a dual-layer approach that combines directional bias with momentum validation. This helps mainta
Aureus Trader is an automated scalping robot for MetaTrader 5 designed to trade actively on liquid forex and crypto pairs with strict risk control and low latency execution. ​ What Aureus Trader does Aureus Trader focuses on short-term price movements, opening and closing trades frequently during high-liquidity sessions. ​ The algorithm uses technical filters to avoid abnormal spreads and low-volatility periods, aiming to capture quick intraday moves rather than long trends. ​ Risk management T
XAUUSD IMPLOSION MATRIX AI  Density Implosion Matrix - Trade the exact moment market pressure violently detonates. The XAUUSD Implosion Matrix AI- is a God-Tier Expert Advisor engineered around the groundbreaking Tick-Density Implosion- theory. Instead of reacting to price action after the fact, it scans for "critical mass" zones where price action is artificially compressed into a microscopic range (e.g., 5000+ ticks). This extreme pressure discrepancy creates a market "Implosion Vacuum." Wh
BTC Scalper AI EA MT5   is a next-generation scalping robot developed by a highly experienced team in trading and coding. It is designed for scalping on one of the most popular crypto pair   BTCUSD . Unlock the power of automated trading with this advanced   BTC Scalper EA specifically designed for the   BTCUSD   pair. Whether you're trading on the 1-minute or 4-hour chart, this bot adapts to any timeframe, making it a versatile tool for traders of all styles. This strategy has undergone extensi
Introducing the AI Neural Nexus EA A state-of-the-art Expert Advisor tailored for trading Gold (XAUUSD) and GBPUSD. This advanced system leverages the power of artificial intelligence and neural networks to identify profitable trading opportunities with a focus on safety and consistency. Unlike traditional high-risk methods, AI Neural Nexus prioritizes low-risk strategies that adapt to market fluctuations in real time, ensuring a smart trading experience. Important Information Contact us immedia
The Gold Buyer
Moses Aboliwen Aduboa
Ride the Gold Trend with a Simple Buy-Only EA The  EA is a fully automated Buy-Only Expert Advisor for MetaTrader 5. It is designed to capture upward market opportunities with safe risk management and seamless execution. Why Traders Choose It: Best performance on Gold (XAUUSD) – highly liquid and trending. Buy-Only EA – focuses purely on long positions. Plug & Play setup – attach and let it trade automatically. Built-in Stop Loss & Take Profit protection. Smart one-position contro
Nano Machine
William Brandon Autry
4.78 (18)
Nano Machine GPT Version 2 (Generation 2) – 持続的プルバック・インテリジェンス 私たちは2024年末にMean Machineでこの変革を始めました。リアルな最先端AIをライブのリテール外国為替取引に導入した最初期のシステムの一つです。 Nano Machine GPT Version 2はそのラインにおける次の進化です。 ほとんどのAIツールは一度回答すると、すべてを忘れます。 Nano Machine GPT Version 2は違います。 分析したすべてのプルバックセットアップ、すべてのエントリー、すべての見送り、各判断の背後にある推論、市場の反応、そして各Machine Symmetryバスケットの実際のパフォーマンスを記憶しています。毎セッションの完全なコンテキスト。時間とともに蓄積される集中したインテリジェンス。 これはマーケティングのためにAIを付け足しただけのEAではありません。 これはプルバックトレーディングのために構築された持続的な専門インテリジェンスです。 従来のEAは固定されたルールの中に閉じ込められたままです。Na
GOLD FLOW PRO EA V1.00 Professional XAUUSD Trend, Pullback & Momentum Trading System GOLD FLOW PRO EA is a specialized Expert Advisor designed for Gold / XAUUSD trading on MetaTrader 5. The system combines multi-timeframe trend analysis, pullback detection, momentum confirmation and breakout logic to identify structured trading opportunities. CORE TRADING FLOW H1 Trend → M15 Pullback → M5 Momentum → Breakout → Entry The EA first evaluates the higher-timeframe market direction, looks for a
Gyroscope        professional forex expert   (for EURUSD, GBPUSD, USDJPY, AUDUSD, USDCHF, EURGBP, EURJPY, NZDUSD, USDCAD, EURCHF, AUDJPY, CADJPY pairs)   alyzing the market using the Elliot Wave Index. Elliott wave theory is the interpretation of processes in financial markets through a system of visual models (waves) on price charts. The author of the theory, Ralph Elliott, identified eight variants of alternating waves (of which five are in the trend and three are against the trend). The mov
Meta Quant Grid Master Telegram:  t.me/rajjthealgotrader   Meta Quant Grid Master is a next-generation algorithmic trading system designed to intelligently navigate market cycles using adaptive position management and precision-based execution. Built for traders who demand consistency, control, and performance , this EA combines structured trade sequencing with advanced risk management to deliver optimized results across varying market conditions. Core Concept (Smart but Protected) The sys
USDJPY Focused Breaker は、USDJPY通貨ペアのH1(1時間)タイムフレーム専用に設計されており、Channel-Break FX技術に基づいています。トレンドチャネルはAIモデルによって特定され、1次元畳み込みニューラルネットワーク(CNN)を使用して市場のトレンドを認識します。 主な特徴: 最適化: ポジションのオープンおよびクローズのための戦略が強化されています。 タイムフレームと通貨ペア: M30、H1、H4、D1のタイムフレームおよびUSDJPY、EURUSD、GBPUSD、USDCHF、AUDUSD、USDCAD、NZDUSDの複数の通貨ペアで使用可能です。ただし、このバージョンはUSDJPY-H1タイムフレームに特化して最適化されており、AIモデルはこのペアとタイムフレームにのみトレーニングされています。 自動設定: システムは自動的にストップロス(SL)を設定し、複利効果を活用するためにロットボリュームを計算します。利益確定(TP)は使用せず、早期のポジションクローズを防ぎます。 完全自動化: 完全に自動化されており、手動操作は一切不要です。ポジ
Gold Sentinel Grid は、XAUUSD(ゴールド)専用に設計された近距離グリッドEAです。現在値のごく近くに買い/売りの両方の待機注文を設置し、短期的な値動きを継続的に捕捉します。単なるグリッド手法にとどまらず、実運用を見据えた複数の保護機能を標準搭載しています。 主な特徴 ニュースセーフティフィルター — 米国の重要指標発表前後は新規発注を自動的に停止し、既存の未約定注文も発表直前に整理します(MT5標準の経済指標カレンダー+固定時間帯フォールバックの二重方式)。 建値シフト+段階的トレーリング — 含み益が一定水準に達すると建値へシフトし、その後も利益の伸びに応じて段階的に損切りラインを切り上げます。 バスケット考慮型リスク管理 — リスク%方式でロットを計算する際、保有中の全ポジションの想定損失をあらかじめ差し引いた上で新規ロットを決定するため、複数ポジション保有時にリスクが想定以上に膨らむことを防ぎます。 損失サーキットブレーカー — 当日の損益が設定した割合に達すると新規発注を自動停止し、翌日には自動的にリセットされます。 週末ギャップ対策 — 金曜日の指定時
このプロダクトを購入した人は以下も購入しています
重要 : この商品は、ごく少数の数量のみ、現行価格で販売されます。    価格はまもなく1999ドルになります!   300 以上の戦略を収録 !さらに追加予定! ボーナス : 私の他のEAの中から5つ  を無料で 選んでください!   すべての設定ファイル + 完全なセットアップおよび最適化ガイド ビデオガイド ライブシグナル レビュー(第三者による) 新登場 - 44種類の戦略ライブシグナル 究極のブレイクアウトシステムへようこそ! この度、8年の歳月をかけて綿密に開発された、洗練された独自のエキスパートアドバイザー(EA)である「アルティメット・ブレイクアウト・システム」をご紹介できることを嬉しく思います。 このシステムは、MQL5市場で高いパフォーマンスを発揮するEAの基盤となっており、その中には高く評価されているGold Reaper EAも含まれています。 7か月以上にわたり1位の座を維持したほか、Goldtrade Pro、Goldbot One、Indicement、Daytrade Proもランクインした。 Ultimate Breakout Systemは
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
Short description Counter-trend EA for AUDCAD/AUDNZD/NZDCAD. Low-risk mean reversion with controlled martingale and funding-account presets. Live monitoring Signal: https://www.mql5.com/en/signals/2257448 What it is A counter-trend mean-reversion Expert Advisor designed to produce steady monthly returns under conservative risk. Built for traders who prioritize capital protection (including funding account rules) and prefer transparent, testable logic. How it trades Entry logic: Sells/buys sho
We proudly present our cutting-edge robot, the  Big Forex Players EA  designed to maximize your trading potential, minimize emotional trading, and make smarter decisions powered by cutting-edge technology. The whole system in this EA took us many months to build, and then we spent a lot of time testing it. This unique EA includes three distinct strategies that can be used independently or in together. The robot receives the positions of the  biggest Banks  (positions are sent from our database t
Two lines, always circling — 21 and 49. Most of the time they say nothing. Then they cross, and the system stops waiting. It closes what it was holding, opens what the cross demands, and sets its stop and target without asking twice. Risk is sized off the account itself, not fixed guesses — one bad calculation and it simply declines to trade at all. No indecision, no averaging in. Every new bar gets exactly one verdict. Built for any symbol, any timeframe. Fast against slow — the rest is ari
[ IMPORTANT ] REAL CLIENT FEEDBACK :  https://www.mql5.com/en/market/product/127498/comments#comment_58814415 [ IMPORTANT ]  UPDATED (1 YEAR PERFORMANCE):  https://www.mql5.com/en/market/product/127498/comments#comment_59233853 [ IMPORTANT ]  UPDATED (1 YEAR 6 MONTHS PERFORMANCE):  https://www.mql5.com/en/market/product/127498/comments#comment_60000067 [ IMPORTANT ]  UPDATED  (2026/09):  https://www.mql5.com/en/market/product/127498/comments/page2#comment_60389797 ビットコインスキャルピングMT4/MT5のご紹介 – 暗号通
透明性の高い価格モデル。  販売段階が進むごとに価格が上がります。次の段階: $1000 . Live Signal +14 Months • Low Risk Live Signal +8 Months • Medium Risk Live Signal New • $100 000 Account Darwinex Aero の仕組み Aero は XAUUSD(ゴールド) 向けの完全自動 EA で、 ブレイクアウト戦略 に基づいています。 ゴールドのブレイクアウトは最良のエントリー機会のひとつです。重要な水準はほぼ毎日ブレイクされます — 問題は、そのすべてが継続するわけではないという点です。 Aero が解決するのはまさにこの課題です。 統計的に取引する価値のあるブレイクアウトを見極める高度なシステムであり、勝率と期待値をトレード側に引き寄せます。 この選別を担うのが kNN(k近傍法) です。10年以上のゴールド価格データで学習させた機械学習手法です。 水準がブレイクされると、現在の相場状況が数千件の過去事例と照合され、一つひとつのトレードの精度が検証されます。 同時
Syna
William Brandon Autry
4.87 (30)
Syna 7 - トレードに寄り添い続けるAI ほとんどのトレーディングシステムは、エントリーした時点で考えるのをやめます。 Synaは違います。 Syna 7は、分析から決済まで関与し続けるために設計されたAIトレーディング・アシスタントであり、自律型トレーディングシステムです。 現在の状況を監視し、トレードの文脈を記憶し、ニュースとボラティリティを評価し、ポジションを管理し、口座間を調整し、注文が約定した後も判断を再評価し続けることができます。 トレードはエントリーで終わりません。 インテリジェンスも同じであるべきです。 分析から決済まで、ひとつの連続したインテリジェンス。 チャンネルとコミュニティ アップデート、シグナル、リリース情報、製品デモはチャンネルでご確認ください。公開グループでは質問や他のトレーダーとの交流ができます。 私のMQL5チャンネルをフォロー 私のMQL5公開グループに参加 Synaとは Synaは、トレーディング運用全体のインテリジェンス層として機能するよう設計されています。 次のような対象と連携できます。 Syna自身の自律的なトレーディング戦略 他のE
Waka Waka EA MT5
Valeriia Mishchenko
4.13 (40)
8+ years of live track record with +12,000% account growth: Live performance MT 4 version can be found here Waka Waka is the advanced grid system which already works on real accounts for years. Instead of fitting the system to reflect historical data (like most people do) it was designed to exploit existing market inefficiencies. Therefore it is not a simple "hit and miss" system which only survives by using grid. Instead it uses real market mechanics to its advantage to make profit Supported cu
YZH AlgoCore
Yusuf Ziya Hazeral
5 (1)
https://www.mql5.com/tr/signals/2391586?source=Site+Signals+My YZH AlgoCore ― 1つのロボットで6つの銘柄に対応 スマートアルゴリズム。規律ある執行。 市場には数千もの「ゴールドロボット」が存在します。その中で、XAUUSD、EURUSD、GBPUSD、GBPJPY、USDJPY、BTCUSDの6銘柄で、設定変更なしで同じエンジンを動作させることができるロボットはいくつあるでしょうか? YZH AlgoCoreは、真のマルチシンボルシステムです。チャートにアタッチするだけで、ロボットは自動的に銘柄を検出し、専用の組み込みプロファイルを読み込みます。時間枠、インジケーターの設定、スケーリング動作など、すべて銘柄ごとに内部的に定義されています。6つの銘柄で1つのライセンス。6つのロボットを個別に購入する必要がなく、1つのライセンスで済みます。 YZH AlgoCoreを選ぶ理由 多くのトレーディングシステムが失敗するのは、戦略が悪いからではなく、執行が不安定だからです。多くのグリッドロボットは、一定の間隔
LAUNCH PROMO: ONLY A FEW COPIES LEFT! OPEN BLACK BOX: ONE EA, MANY STRATEGIES — CREATE NEW SETS, CONTRIBUTE YOUR IDEAS, AND POTENTIALLY TURN THEM INTO COMMERCIAL EAs UNDER AGREEMENT. Gold Is The Target. Oil Is The Driver. GoldOil Watches What Drives Gold. VERY LIMITED COPIES AT CURRENT PRICE Final Price: $2499 Exclusive:   After purchase, send me a direct message to receive VIP set files, setup instructions, and access to the private GoldOil Telegram group. PROP FIRM READY! Buy not just a back
Prop Grid
Ioannis Xenos
5 (1)
XignalCoding Prop Grid EA Build your own strategy. Pass prop firm challenges with confidence. The XignalCoding Prop Grid EA is a highly flexible and powerful trading tool designed for traders who want full control over their strategy, grid system, and risk. Whether you're testing ideas or aiming to pass prop firm challenges like FTMO, this EA gives you the structure and safety you need. Main Features Custom Strategy Creation Choose your entry signal: RSI, CCI, Stochastic, Williams, Bollinger Ba
Mad Turtle
Gennady Sergienko
4.44 (124)
シンボル XAUUSD(ゴールド/米ドル) タイムフレーム(期間) H1-M15(任意) シングルポジショントレード対応 はい 最低入金額 500 USD (または他通貨の同等額) すべてのブローカーに対応 はい(2桁または3桁の価格表示、任意の通貨、シンボル名、GMT時間に対応) 事前設定なしで稼働可能 はい 機械学習に興味がある方は、こちらのチャンネルを購読してください: 購読する! Mad Turtle プロジェクトの主な特徴: 本物の機械学習 このエキスパートアドバイザー(EA)は、GPTサイトや類似サービスに接続しません。 モデルはMT5に組み込まれたONNXライブラリを使用して展開されます。初回の起動時に、偽造不可能なシステムメッセージが表示されます。 CLICK 参照: ONNX(Open Neural Network Exchange)。 資金の安全性 プリロールオーバーやマイクロスキャルピング、統計的サンプルの少ない狭いレンジでの取引を使用しません。 グリッドやマーチンゲールなどの危険な戦略を使用しません。 また、長期間稼働し、1日で利益や資金をすべて
Scalp Master Expert Advisorは、トレンド相場におけるスキャルピング戦略のために設計された完全自動取引システムです。流動性の高い市場で短期的な取引機会を特定し、取引の質とリスク管理を重視しています。このEAは、裁量判断なしでルールベースの取引を好むトレーダーに適しています。 以下のようなスプレッドが狭く流動性の高い銘柄で最も効果を発揮します: XAUUSD(ゴールド) EURUSD GBPUSD USDJPY BTCUSD USTEC(米国テック指数) その他の主要・マイナー通貨ペア(低スプレッド・安定した約定環境) この戦略はトレンド市場専用に設計されており、レンジ相場や不安定な値動きなどの低品質な取引環境を避けることを目的としています。 主な特徴: 完全自動取引システム(手動操作不要) 移動平均線とRSIフィルターによる勝率向上と低確率トレードの回避 重要経済指標時のリスクを軽減するニュースフィルター搭載 ダイナミックにポジションを管理する高度なトレーリングシステム リスク管理とドローダウン削減に重点 Scalp Masterは取引前および取引中に市場状況を
Perceptrader AI MT5
Valeriia Mishchenko
4.67 (6)
80 consecutive months in profit with low drawdown: Live performance MT4 version can be found here Perceptrader AI is a cutting-edge grid trading system that leverages the power of Artificial Intelligence, utilizing Deep Learning algorithms and Artificial Neural Networks (ANN) to analyze large amounts of market data at high speed and detect high-potential trading opportunities to exploit. Supported currency pairs: NZDUSD, USDCAD, AUDNZD, AUDCAD, NZDCAD, GBPCHF Timeframe: M5 Features: Trend , Mome
NextGen PRO NextGen PRO is an automated Expert Advisor designed for trading XAUUSD (Gold) on MetaTrader 5. It uses a trend-following approach with Buy Stop and Sell Stop pending orders, grid-based order placement, batch lot progression, money-based risk management, daily limits and weekend trading restrictions. Strategy The EA determines the market direction using the closed M5 candle and two moving averages. When the market is identified as an upward trend, the EA places Buy Stop orders above
Golden Pickaxe MT5
Valeriia Mishchenko
3.56 (9)
EA has high-performance live track records of different set files: Live performance MT 4 version can be found here Golden Pickaxe is a mean-reversion grid trading system that uses machine learning technology to place high-profit potential trades on the Gold market. It uses real market inefficiencies to its advantage to have an edge over the market. The EA has 5 predefined set files, which are essentially 5 different trading systems on gold . You may choose the default option (XAU Risky) or have
Night Hunter Pro MT5
Valeriia Mishchenko
3.92 (37)
EA has a live track record with many months of stable trading with  low drawdown: All Pairs 9 Pairs Night Hunter Pro is the advanced scalping system which utilizes smart entry/exit algorithms with sophisticated filtering methods to identify only the safest entry points during calm periods of the market. This system is focused on a long-term stable growth. It is a professional tool developed by me years ago that is constantly updated, incorporating all the latest innovations in the trading area.
DRAGON EA – INSTITUTIONAL BREAKOUT & PROFIT-SIDE PYRAMIDING SYSTEM DEVELOPER PROFILE & BACKGROUND Developed with over 14 years of hands-on manual and algorithmic trading experience in the Forex market since 2010, Dragon EA is the culmination of a proven manual breakout strategy, fully automated and refined into an institutional-grade expert advisor. CORE STRATEGY & KEY HIGHLIGHTS DYNAMIC PERCENTAGE-BASED ENGINE: Operates entirely on proportional risk percentage allocation rather than static fixe
Velora MT5
Ahmad Aan Isnain Shofwan
The Intelligent Grid EA — A Team of Smart Modules Following the 5-star success of its MT4 predecessor, Velora has been completely rebuilt for MT5 with a fundamental shift in design. Most grid EAs are one engine doing many jobs. Velora is different. Inside Velora, there is a team. Four smart modules, each with one specialty, working together so the system stays adaptive at every stage of a trade — from the moment of entry, to scaling decisions, to the exit. Meet the team: VSE — Velora Smart Entr
Quant Gold HFT Expert Advisor for XAUUSD on M15 timeframe. Main Features: ATR-based trailing stop and breakeven Daily Pivot levels filter Entry cooldown system Blocked hours during high volatility periods No martingale, no grid Backtest Results (Pepperstone, real tick data): 2 Years: Profit Factor 1.22, Max Drawdown 9.4% 1 Year: Profit Factor 1.27, Max Drawdown 9.2% 4 Months: Profit Factor 1.36 $500 account run on 0.01 lot The EA was tested on different time periods with stable results. Importa
Saiko Scalper v5
Samir Saleh Mohammed Hassan
SAIKO Scalper is an advanced algorithmic trading robot designed to detect and exploit real market momentum using tick-level impulse analysis. Instead of relying only on traditional indicators, the robot monitors consecutive price movements in real time and enters trades when a strong directional impulse is detected. This approach allows SAIKO Scalper to capture fast market opportunities while avoiding many false signals caused by normal price fluctuations. The robot includes multiple layers of
XAUUSD TEMPORAL INTERFERENCE AITemporal Interference Scanner - The absolute pinnacle of Multi-Timeframe convergence. XAUUSD Temporal Interference AI - is the absolute pinnacle of market timing, built upon the groundbreaking "Cross-Temporal Interference" theory. By scanning the fractal noise across 9 different timeframes, the AI detects precise moments where market waves collide, cancel out, or amplify each other. When these temporal waves perfectly align in a localized singularity, the AI execu
PivotStorm - Adaptive XAUUSD Market Structure Breakout EA Professional Automated Trading System for MetaTrader 5 PivotStorm is a professional XAUUSD Expert Advisor designed for traders who prefer structured breakout trading based on confirmed market levels. The system combines market structure analysis, intelligent pending-order execution and multi-level risk management to provide a disciplined automated trading approach for the gold market. Unlike simple breakout robots that react to every pri
SPARTAN GOLD SNIPER AI - V7.2 ULTIMATE The All-In-One Gold Solution: Smart Scalping and Professional Swing Trading. Spartan Gold Sniper is not just an EA; it is a complete trading system designed specifically for XAUUSD (Gold). Version 7.2 introduces the Smart Adaptive Engine, making it the most flexible bot on the market for both small accounts and large Prop Firm capitals. Critical Requirements Latency: You must use a VPS with less than 20ms latency (Recommended: MQL5 Built-in VPS). Account:
CaicaiLS Pro - Advanced Pair Trading & Statistical Arbitrage (Version 9.0) The CaicaiLS Pro is a quantitative Expert Advisor designed for Long & Short operations (Pair Trading) using Statistical Arbitrage . Developed for traders seeking precision, it tracks correlation and cointegration anomalies across multiple asset pairs simultaneously, seeking performance in both mean reversion and momentum breakouts. Its advanced architecture features the introduction of Shadow Execution technology. The mat
️ REQUIRED SETTING: Optimized for XAUUSD 0.01 Lot Size. ATTENTION: This system is precision-tuned for XAUUSD (Gold)  on Exness  using a base entry of 0.01 lots . For maximum stability and account longevity, users must ensure their starting input is set to 0.01 unless using high-capital professional accounts. Monarch Golden Sparrow: The Gold Sovereign. Precision. Recovery. Power. THE ASSET: Gold (XAUUSD) is the king of volatility. It doesn't move; it strikes. To trade it, you don't need a basic
The Neurolite Expert Advisor offers trade decisions based on a neural network trained using a 10-year history of real tick data. The trading is performed only on GBP/USD. Its main peculiarity is a small amount of input parameters so as to facilitate the working process of users. The Neurolite EA will fine-tune all the parameters for you. Trading Strategy The system does NOT use dangerous strategies such as averaging or martingale, but strictly adheres to the neural network instructions. Stop lo
The Neurolite Expert Advisor offers trade decisions based on a neural network trained on 5-years of real tick data. Trading is performed only on the EUR/USD currency pair. Its main peculiarity is a small amount of input parameters so as to facilitate the working process of users. The Neurolite EA will fine-tune all the parameters for you. This Expert Advisor is based on the previously released Neurolite EA gbpusd , which was adjusted for successful trading on the EUR/USD currency pair. Trading
A scalper system only work during Asian hours. Several unique indicators to detective the price fluctuation. Dynamic TP/SL level according to market conditions. Fixed stoploss to protect the capital, very low risk of losing a lot of money. No need to obtain SET files. The parameters are the same for each currency pair. It is optimized to work on EURAUD . It is recommended to use Eagle Scalper on M15 chart. It is recommended to run it on a real ECN broker with very low spread . It is recommended
フィルタ:
レビューなし
レビューに返信