Cipherline Confluence

CIPHER SMC Confluence 

Overview

CIPHER is a multi-engine, multi-timeframe automated trading system for MetaTrader 5 built around a confluence-scoring architecture. Rather than relying on a single strategy, it runs three independent signal-generation engines — Adaptive Support/Resistance (A2SR), Smart Money Concepts (SMC), and Liquidity — each evaluated across four separate timeframes simultaneously, and only acts when a configurable minimum number of those engines and timeframes agree on direction. It layers risk management, exposure control, correlation filtering, session/news filtering, grid-based averaging, a recovery system, and a live on-chart information panel on top of the signal core, with full trade logging to CSV. The EA is designed to run on a single symbol per chart instance but tracks correlation against a fixed basket of other majors (XAUUSD, USDJPY, EURUSD, GBPUSD) to avoid stacking correlated risk.

Master Controls

  • InpMasterEnable: global on/off switch for all trading activity. When false, the EA still initializes and can display the panel, but places no orders.
  • InpPrimaryTF: the timeframe used for the EA's own bar-close signal engines (A2SR, SMC, Liquidity) as run on the "primary" instance, separate from the four confluence timeframes.

Engine Toggles

Nine independent boolean switches let the user enable or disable each subsystem without touching code: A2SR Engine, SMC Engine, Liquidity Engine, Volatility Engine, Confluence Scoring, Smart Recovery, Smart Grid, Chart Panel, and Trade Logging. Disabling an engine removes its vote from the confluence score and skips its computation entirely, which also reduces CPU load per tick.

Risk Management

  • Position sizing: Risk-percent-based or fixed-lot. If InpFixedLot is greater than zero, every trade uses that fixed volume; otherwise lot size is derived from InpRiskPercent of current account equity divided by the monetary value of the stop-loss distance in points, using the symbol's actual tick value and tick size (not a hardcoded pip value), then normalized to the broker's volume step, minimum, and maximum.
  • Daily drawdown cap ( InpMaxDailyDrawdown ): tracked from an equity baseline that resets once a day passes, expressed as a percentage loss from that baseline.
  • Total/peak equity drawdown cap ( InpMaxEquityDrawdown ): tracked from the highest equity value ever observed during the EA's run, expressed as percentage decline from that peak.
  • Per-symbol exposure cap ( InpMaxExposurePct ): total open volume on the traded symbol, converted to a percentage of account equity, checked against a ceiling before allowing new trades.
  • Global exposure cap ( InpGlobalMaxExposure ): the same calculation but summed across every open position on the account regardless of symbol, protecting against overexposure when multiple EA instances or manual positions are active simultaneously.

Both drawdown checks and both exposure checks are enforced on every tick before any new order is considered, and any breach blocks trading for that tick without closing existing positions.

Filters

  • Spread filter ( InpMaxSpread ): current spread in points must be at or below this value or new trades are blocked.
  • Slippage filter ( InpMaxSlippage ): passed to the trade object as the maximum allowed deviation in points on order execution; also monitored after execution attempts for slippage-related error codes.
  • Correlation filter ( InpCorrelationThreshold ): computed via a rolling Pearson correlation coefficient between the traded symbol and a basket of majors (XAUUSD, USDJPY, EURUSD, GBPUSD by default), updated every tick and every 60 seconds via the timer, over a 100-bar H1 lookback window. If correlation with any basket member exceeds the threshold, new trades are suppressed to avoid doubling up on the same directional risk under a different symbol name.
  • Session filter ( InpEnableSessionFilter ): classifies the current server time into Asia, London, New York, or Off sessions based on hour-of-day boundaries (00:00–09:00 Asia, 09:00–16:00 London, 16:00–24:00 New York). The filter is currently permissive in tester mode and live mode alike, but the session classification is exposed for the panel and future restriction logic.
  • News filter ( InpEnableNewsFilter ): a placeholder hook that currently always reports no news event; it is scaffolded to be wired into an external economic calendar feed without changing the rest of the EA's logic.

Confluence Scoring System

Four independent timeframes ( InpTF1 through InpTF4 , defaulting to M5, M15, H1, H4) each get their own full set of A2SR, SMC, and Liquidity engine instances — twelve engine instances total, all initialized and torn down independently. On every new primary-timeframe bar, the confluence scorer:

  1. Polls each of the three engines on each of the four timeframes for a directional signal (+1, -1, or 0).
  2. Sums the three engine directions per timeframe to get a per-timeframe net direction.
  3. Counts how many of the four timeframes agree in the positive direction versus the negative direction.
  4. Assigns an overall direction (whichever side has more agreeing timeframes).
  5. Assigns a confluence level from 1 to 6 based on how many timeframes agree and the strength of the strongest timeframe's score: level 6 requires unanimous 4-of-4 agreement, level 5 requires 3-of-4 with a strong lead score, level 4 requires 2-of-4 with a moderate lead score, and levels 3, 2, and 1 represent progressively weaker degrees of agreement.
  6. A trade is only considered if the confluence level meets or exceeds InpConfluenceMinLevel (default 4) and the overall direction is non-zero.

Signal Engines (Detail)

A2SR Engine (Adaptive Support/Resistance): uses a 20/50-period EMA crossover on the given timeframe combined with a 14-period RSI momentum filter and a swing-high/swing-low support/resistance detector (5-bar pivot detection over a 100-bar lookback). A buy signal requires an EMA cross up, RSI not in oversold-momentum-negative territory, and price either near a detected support level or breaking out of a detected resistance level; the sell case mirrors this. Detected zones are recorded in a dedicated CZoneManager instance per engine for potential chart visualization.

SMC Engine (Smart Money Concepts): detects Break of Structure (BOS) by comparing the current bar's high/low against the prior two bars' highs/lows (5-bar lookback via CopyHigh / CopyLow ), detects Change of Character (CHOCH) via a 4-bar close-price pattern check, and computes a Premium/Discount percentage representing where current price sits within the highest-high to lowest-low range of the last 50 bars. A buy signal requires a bullish BOS, no CHOCH, and price in the "discount" zone (below 40 percent of the range); the sell case is the mirror with the "premium" zone (above 60 percent).

Liquidity Engine: currently a scaffolded stub that initializes its own zone manager and symbol/timeframe context but returns no directional signal (always 0). It's structured to be extended with liquidity-sweep and stop-hunt detection logic without requiring changes elsewhere in the codebase, since the confluence scorer already treats it as one of three equal-weighted votes.

Volatility Engine: computes both a fast (14-period) and slow (50-period) ATR, a normalized volatility ratio against a 100-sample rolling history of past volatility readings, and flags a "volatility spike" when current volatility exceeds twice the historical average. Provides ATR-based stop-loss and take-profit price calculations (default multipliers of 1.5x ATR for SL and 2x ATR for TP) used as a fallback whenever an engine doesn't supply its own SL/TP, and its spike detection feeds directly into the Safety Filter.

Trade Execution Priority

When confluence conditions are met, the EA searches for a concrete entry price and stop levels in a fixed priority order: A2SR signal first (if enabled and its direction matches confluence direction), then SMC signal, then Liquidity signal, and finally — if confluence level is 5 or higher but no individual engine supplied a matching directional signal — a fallback "strong confluence" market entry using ATR-based SL/TP. Whichever source wins supplies the entry price, stop-loss, take-profit, and a human-readable reason string that gets attached to the order comment and log entry.

Smart Recovery System

When enabled and not running in strategy tester mode, the recovery system monitors the drawdown from peak equity. If current drawdown falls between 5 percent and the configured InpRecoveryMaxDrawdown ceiling, and the number of recovery trades already placed is below InpRecoveryMaxTrades , it opens an additional trade sized by CalculateRecoveryLot() , which scales the base lot up by a multiplier proportional to current drawdown (capped at 3x the base lot and further capped by InpRecoveryMaxLot ). All recovery trades are tracked in an internal ticket array; a basket take-profit mechanism checks the combined floating profit of all tracked recovery trades every 60 seconds via the timer and closes the entire basket the moment combined profit turns positive.

Smart Grid System

When enabled, each executed order also registers a grid level (price, lot size, order type) in an internal array capped at InpGridMaxLevels (default 5). Grid lot sizes scale geometrically by InpGridMultiplier (default 1.5x) per level. On every tick where a position is already open, the EA checks whether price has reached any pending, unfilled grid level's trigger price and, if so, executes it. Grid level state (including the resulting order ticket) is stored and updated through dedicated accessor methods ( GetLevel , SetLevelTicket , GetLevelTicket ) rather than raw pointer access, since MQL5 does not permit pointers to plain struct types. A grid-basket take-profit calculation ( CalculateGridTP ) is also available, computing a blended average entry price across all active grid levels and deriving a combined target when the basket is underwater.

Safety Filter

A centralized gatekeeper ( CSafetyFilter ) that, outside of tester mode, runs every enabled sub-check — spread, slippage, correlation, volatility spike, and drawdown — before allowing the main tick logic to proceed to signal evaluation. Each sub-check can be independently toggled via SetChecks() . In tester mode, the safety filter is bypassed entirely ( CheckAll returns true unconditionally) to avoid interference with backtesting and strategy validation runs, while daily/equity drawdown and exposure checks (handled separately by the Risk Manager) still apply.

Logging System

Every trade entry and closed-trade event is written to an in-memory ring buffer of up to 1,000 entries ( SLogEntry records: time, symbol, entry reason, exit reason, entry price, exit price, volume, and profit) and simultaneously printed to the terminal log. Outside of tester mode, the buffer is periodically flushed to a CSV file ( Cipher_<symbol>_<magic>.csv or a custom filename) via FileOpen / FileWrite , both on a fixed interval (every 10 completed trades, checked in OnTrade ) and every 60 seconds via the timer, as well as on EA deinitialization.

On-Chart Panel

A dark-themed, live-updating panel (toggle via InpEnablePanel , positioned by SetPosition ) built from OBJ_RECTANGLE_LABEL and OBJ_LABEL chart objects. It displays: symbol, magic number, live/tester mode indicator; account equity, balance, floating profit (color-coded green/red), and open position count; current confluence level out of 6, resolved direction (BUY/SELL/NEUTRAL, color-coded), and the textual reason for the last signal; and current spread (color-coded against the max-spread filter), active trading session name, and any pending news item. The panel fully redraws its labels each update cycle rather than mutating them in place, and is destroyed cleanly on EA deinitialization along with all Cipher_ -prefixed chart objects.

Premium Features

  • Auto Settings Loader ( InpAutoSettingsLoader ): a hook, run once at initialization, intended to load symbol-specific parameter presets; currently logs a confirmation message and is structured for future preset-table integration (a SPreset structure already exists in the codebase for this purpose).
  • Equity Shock Pause ( InpAutoPauseOnEquityShock ): outside of tester mode, tracks tick-to-tick equity percentage change; if equity drops 5 percent or more in a single evaluation, trading is paused entirely until equity recovers by more than 2 percent from the paused low.
  • Smart Time Exit ( InpSmartTimeExit ) and Partial Close ( InpPartialClose , with InpTP1Ratio / InpTP2Ratio controlling the partial-close split): both parameters and their configuration values are wired through to the CPremiumFeatures class, but the underlying methods ( SmartTimeExit , PartialClose ) are currently stubbed to return false/no-op, reserved for a follow-up release that will implement staged partial closes at TP1 and time-based forced exits.

Correlation Engine

Maintains a rolling 100-sample H1 close-price history for up to ten tracked symbols (the traded symbol plus XAUUSD, USDJPY, EURUSD, GBPUSD by default), recalculates a full pairwise Pearson correlation matrix every tick and every 60 seconds via the timer, and exposes both a direct pairwise correlation lookup and an IsCorrelated() check used by the Safety Filter. The correlation check currently returns false unconditionally pending full threshold-based wiring, but the underlying matrix computation is fully live and available for the Safety Filter's CheckCorrelation to consume once that final gate is enabled.

Lifecycle Functions

OnInit() detects tester/visual mode, builds a unique magic number from a hash of the symbol name combined with the chart ID, allocates and initializes every module (with a hard failure return on any allocation failure), sets trade execution parameters (magic number, slippage deviation, fill-or-kill order filling, synchronous mode), seeds the correlation basket, and creates the panel if enabled. OnDeinit() flushes logs, destroys the panel and all EA-prefixed chart objects, and cleanly deletes every allocated module pointer in reverse dependency order. OnTick() performs the full per-tick pipeline: refresh symbol data, update equity peak, update volatility and correlation histories, check equity-shock pause, run the safety filter and exposure/session/news checks, manage any already-open position's grid levels, and on new-bar boundaries evaluate the confluence engines and execute new trades if conditions are met. OnTrade() captures closed-deal history matching the EA's magic number and logs the resulting profit/loss. OnTimer() runs a 60-tick-interval maintenance cycle covering log export, correlation matrix refresh, volatility history refresh, and recovery basket take-profit checks. OnTester() returns account profit as the optimization criterion for the Strategy Tester.


おすすめのプロダクト
特別ローンチ価格 — $300   <---- 1つのEA、3つの戦略! ライブシグナル:   QL Drive   |   QL Steady          セットファイル Quant Lattice (クオンツ・ラティス) とは Quant Lattice (クオンツ・ラティス) は、1つの通貨ペア:AUDCAD のみを取引する完全自動のエキスパートアドバイザー (Expert Advisor) です。Steady (ステディ) と Drive (ドライブ) という2つの異なる戦略を搭載しています。一度インストールし、戦略を選び、資金管理を設定すれば、あとは手を触れることなく自動で取引します。 なぜ AUDCAD か? 豪ドルとカナダドルはいずれも商品(コモディティ)連動通貨であり、値動きが緊密に連動します。AUDCAD は静かなレンジ相場と信頼性の高い平均回帰で知られています。Quant Lattice (クオンツ・ラティス) はこの1つのペアのためにゼロから設計されており、私はこのペアを熟知しています。 すべてが事前設定済みです。調整すべきパラメータはありません(資金
如果产品有任何问题或者您需要在此产品上添加功能,请联系我 Contact/message me if you encounter any issue using the product or need extra feature to add on the base version. There is Demo version of this panel Dashboard Super Three MA MT5 Demo in my product list, please try it out to get familiar with all functionalities for free Free version: LINK MT4 version: LINK This system basically utilizes PA and three adjustable Moving Average as the main indicator set to generate trading signal. With the feature that all MA_timefram
Pew Pew EA – MT5 用 平均回帰グリッド Expert Advisor Pew Pew は、実際の市場環境に適応するよう設計された、予測型グリッドリカバリーシステムを備えた高度な平均回帰型 Expert Advisor です。 長期間にわたるコーディング、テスト、改良を通じて開発されており、ボラティリティ、ニュースの影響、価格動向の変化に応じてリカバリーシステムの動作を調整する、構造化された取引ロジックを使用しています。 この EA は、明確な操作機能、プロフェッショナルなチャートパネル、内部 SL/TP 管理、使いやすいリスク管理機能を備えた、実用的な自動リカバリーシステムを求めるトレーダー向けに設計されています。 Pew Pew は EURUSD および AUDCAD で有望な結果を示していますが、これらの通貨ペアに限定されるものではありません。ユーザーは他の適切なシンボルでもテストおよび最適化することができます。 推奨タイムフレーム:M15 ローンチ記念プロモーション この EA は、現在の導入価格で最初の 5 コピーのみ提供されます。 その後、製品のさらなる開発に
Советник   Inside Expert Advisor  торгует на откат после сильного движения . Торговая стратегия Советник выставляет отложенные ордера, которые тянутся за ценой, чтобы поймать откат против тренда. Пара EURUSD, ТФ М15. Первый ордер выставляется по следующим правилам: Если свеча бычья на текущем таймфрейме выставляется отложенный ордер на продажу; Если свеча медвежья   на  текущем  таймфрейме , выставляется отложенный  ордер на покупку; Ордер тянется за ценой до его срабатывания . Открытые позиции
如果产品有任何问题或者您需要在此产品上添加功能,请联系我 Contact/message me if you encounter any issue using the product or need extra feature to add on the base version. There is Demo version of this panel Dashboard Super MA RSI CCI Demo in my product list, please try it out to get familiar with all functionalities for free, LINK . Dashboard Super MA RSI CCI is an intuitive and handy graphic tool to help you to: Have 28 pairs under control with one dashboard Monitor price movement, identify possible trend based on MA, RS
I am selling my own Expert Advisor called Hedge Grid v1 Polish , designed for automated trading. The EA combines scalping with a grid system while also using protective mechanisms intended to reduce risk and protect the account from excessive drawdown. Main features: avoids market consolidation and weak trading conditions, automatic risk management, account protection and margin level monitoring, fast scalping entries, a grid system with controlled position adding, a recovery mechanism for losi
市場は常に変わり続けている。永遠に勝てる手法なんて存在しない。Nexus Nine はその前提から逆算して作りました。 ひとつの「聖杯シグナル」に賭けるのではなく、小さくて短命なエッジをたくさん見つけて、それらに分散して走らせる。だから個別のセットアップが通用しなくなっても、ポートフォリオ全体としては収益性を保てるよう設計されています。 仕様 Nexus Nine Pro は最大9通貨ペアを同時に監視して、特定の時間帯における短期の平均回帰 (mean-reversion) を狙います。複数のマジックナンバーを独立に管理することで、各セットアップが自分のタイミングでエントリーとクローズをこなします。Pro 限定で XAUUSD 用の Secret Mode も搭載。 誠実な設計 グリッドなし、マーチンゲールなし、ナンピンリカバリーなし 全ポジションに固定の損切りを設定。「損切りなし」のごまかしは使わない スプレッドが広いときは取引しないフィルタを内蔵 注文前に証拠金を事前チェック ロットサイズはブローカー仕様に自動で合わせる 動作要件 ヘッジング口座 (1シンボルに複数ポジションを持つ
XAU ATHENA MOMENTUM SUPREMACY     Multi-Timeframe Momentum Scalper (No Grid / No Martingale)    XAU Athena Momentum Supremacy  is an elite, institutional-grade Expert Advisor engineered exclusively for the XAUUSD (Gold) market. Named after Athena, the Greek Goddess of Wisdom and Strategic Warfare, this system executes precision-timed entries by detecting Multi-Timeframe Momentum Confluence on the H1 chart. Unlike dangerous Grid or Martingale systems, Athena fires a single surgical strike per s
A dual-core neural EA that trades gold and INDEXES OR FX with discipline PLUG AND PLAY NO COMPLICATED MANUAL . Trained Brain Upgrades — included with your purchase Black Eagle ships ready to learn on any instrument. On request, I also provide it pre-trained : the EA can be upgraded with a brain built from my own live trading on XAUUSD (Gold) and NDX/US100 — thousands of accumulated training samples, a calibrated trade filter, and trusted status from the very first bar. No cold-start phase, no wa
GoldMaster EA
Cristian-silvian Olteanu
GoldMaster EAによるMetaTrader 5でのXAU/USD取引 GoldMaster EAは、MetaTrader 5プラットフォーム上でXAU/USD(金)の取引を行うために設計された全自動の取引ツールです。複雑な設定なしで、自動取引を試したいトレーダーに適しています。 特徴: 自動取引: EAはすべての取引操作を独立して実行します。 事前設定済み: 手動設定は不要で、使いやすいです。 小規模アカウントに最適化: 少額の口座でも効率的に動作するように設計されています。 リスク管理: 潜在的なドローダウンを効果的に管理する機能を実装しています。 互換性: M1(1分)時間枠向けに開発され、IOC(即時またはキャンセル)、FOK(完全実行またはキャンセル)、Returnなどの注文実行モードをサポートしています。 使用方法: MetaTrader 5プラットフォームのXAU/USD M1チャートにEAを添付します。 EAに市場分析と取引実行を任せます。 推奨事項: EAをライブ取引で使用する前に、デモアカウントでテストして、ブローカーとの互換性を確認してください。 指定さ
TKS GOLDEN BOT – XAUUSD Expert Advisor (M5) TKS GOLDEN BOT is a high-performance automated trading robot designed for XAUUSD (Gold) on MT5 . It combines price action with advanced technical filters to deliver precise entries and strong risk management. ️ How it works Main timeframe: M5 Trend filter: M15 (MA50) Signals: 2 consecutive candles + RSI + MA20 Filters: ATR, volume, structure, news Trade Management Split entry (2-step position) Dynamic Stop Loss based on ATR Partial Take Profit +
Zenith Aquarius Booster A Refined Strategy Engine for BTCUSD Most Expert Advisors on the market fall into one of two traps: they are either over-optimised to historical data and fail in live conditions, or they rely on grid and martingale recovery logic that averages deeper into losing positions. Zenith Aquarius Booster takes a different approach. Instead of offering dozens of loosely tested combinations across many symbols, Aquarius Booster is specifically engineered for BTCUSD — a market known
Mango Scalper
Mahmoud M A Alkhatib
Mango Scalper  is a fully automated scalping robot that uses a very Good and Smart breakout strategy, advanced money management and probabilistic analysis. Most effective in the price consolidation stages that occupy the bulk of the market time. Proven itself on real accounts with an excellent risk-to-reward ratio. Does not need forced optimization, which is the main factor of its reliability and guarantee of stable profit in the future. S uitable for both beginners and experienced traders.  
Make grid trading safe again | Built by a grid trader >> for grid traders.     Walkthrough Video  <==   Get Grid Rescue up and running in 5 minutes   This is MT5 version, click  here  for  BlueSwift GridRescue MT4     (settings and logics are same in both versions)   BlueSwift Grid Rescue   MT5    is a risk management   utility  MT5 EA  (used together with other grid trading experts) that can help you trade aggressive grid / averaging / martingale systems with manageable drawdown, therefore
/   ********** **********   ********** **********   ********** **********   ********** **********   ********** **********   / Big Sales for Easter! Price is reduced > 50 % already! Grasp the chance and Enjoy it!  /   ********** **********   ********** **********   ********** **********   ********** **********   ********** **********   / This is a powerful EA that support single order strategy, martingale strategy, multiple timeframes strategy, etc with lots of useful indicators and self defined
ICONIC BTC AI+  |  SYNAPSE.PHENOTYPE S6 ENGINE MetaTrader 5 対応 BTCUSD 適応型エキスパートアドバイザー  |  バージョン 3.00  |  S6 エンジン v7.00 ビットコインは外国為替通貨ペアではありません。金のような値動きはせず、株式指数のように セッション境界を厳守することもなく、そのボラティリティプロファイルは一時間の取引内で 急激に変化することがあります。穏やかな金融商品向けに設計された汎用の自動化システムが ここで頻繁に失敗するのは、BTCUSD が安定して実現しない市場挙動を前提としているためです。 ICONIC BTC AI+ は BTCUSD の M10 タイムフレームに特化して開発されました。そのアーキテクチャの すべての層は、エントリー検証から AI 意思決定のルーティング、リアルタイムリスク調整に至るまで、 このマーケットの特性を中心に構築されています。システムの核心には SYNAPSE.PHENOTYPE S6 ENGINE があります。これは静的なルールに従わない認知型クオンツカーネ
Project Indirect Lock is the hybrid algorithm of Arbitrage, Grid and Hedging. Simple way to describe is Lock USD by using GBPUSD and EURUSD. It is almost all time parallel direction. This way, we can reduce a lot of drawdown if we compare to original Grid and Hedging. P.S. Please note that !!EVERY INVESTMENT ALWAYSE HAVE RISK!! !!USE WISELY WITH YOUR OWN RISK!!
EA Builder PRO
Arthur Hatchiguian
4.56 (9)
EAビルダーは、独自のアルゴリズムを作成し、自分の取引スタイルに合わせることができるツールです。 古典的な取引、グリッド、マーチンゲール、個人的な設定による指標の組み合わせ、独立した注文またはDCA、可視または不可視のTP/SL、トレーリングストップ、損失カバーシステム、損益分岐点システム、取引時間、自動ポジションサイズなど、様々なものがあります。 EAビルダーには、あなたの完璧なEAを作るために必要なものがすべて揃っています。独自のアルゴリズムを構築することで、無限の可能性を秘めています。創造力を発揮してください。 Guide on my blog post:  https://www.mql5.com/en/blogs/post/740705 ️   This EA is not recommended to beginner or new MT5 user. It's a tool to create your algorithm, it is not supposed to be used with the default settings. You need to full
GOLDEN TITAN XAU MT5 Professional Intelligent Expert Advisor for Gold Trading GOLDEN TITAN XAU MT5 is a high-tech, next-generation automated trading expert advisor, designed specifically for efficient gold trading ( XAUUSD ) on the MetaTrader 5 platform. The system combines advanced market structure analysis, adaptive position tracking algorithms, and a modern capital management system, providing a stable and systematic approach to automated gold trading. The Expert Advisor is suitable for b
EA DESCRIPTION Buy Drop Point EA is a BUY-ONLY Expert Advisor based on price drop measured in points. The EA will open a BUY position every time the price drops a specified number of points, and it can open multiple positions within the same timeframe candle as long as the drop condition is met. Recommended long positive swap pairs The pairs below are pairs at FBS: AUDCHF AUDJPY CADCHF CADJPY CHFJPY EURCHF EURJPY GBPCHF GBPJPY NZDCHF NZDJPY USDCHF USDCHF USDJPY For other brokers, the condition
Gold Prophet
Raphael Schwietering
Gold Prophetは、XAUUSD(ゴールド)をH1時間枠で取引するために開発された、完全自動化されたエキスパートアドバイザーです。 この戦略は18年以上にわたり、複数の市場サイクル、高ボラティリティ期間、流動性状況の変化を網羅した広範なバックテストを実施しており、長期的な安定性と堅牢性を実証しています。 すべての取引は、事前に設定された損切りと利益確定の設定に基づいて執行されるため、規律ある制御されたリスク管理が確保されます。このEAは、様々な市場環境下でも信頼性の高いパフォーマンスを発揮することを確認するため、ストレステストと堅牢性テストを受けています。 主な機能 一般設定 バックテスト最適化モードによる迅速な戦略テスト 有益なチャート統計パネル カスタム注文コメントと独自のマジックナンバー 取引方向制御:ヘッジ、ロングオンリー、ショートオンリー 資金管理 固定ロットサイズまたはパーセンテージベースのリスク(残高またはエクイティ) 取引ごとに固定の金銭的リスクを指定するオプション 高度な取引管理 すべてのポジションに対する自動ストップロスとテイクプロフィット
"The Easiest 3 EMA Technique + Grid Scalping (High WinRate)" describes a specific strategy in the realm of financial trading, with a focus on simplicity and effectiveness. Let's break down the key components: 1. **3 EMA Technique**: EMA stands for Exponential Moving Average, a type of moving average that places a greater weight and significance on the most recent data points. The '3 EMA' likely refers to a technique that uses three different EMAs with varying time frames to identify potential
FREE
Dear traders: We are a senior algorithm trading development team from China. Today, we are pleased to introduce a new intelligent trading algorithm, named bullx intelligent trading system. Different from other trading systems, bullx intelligent trading system will be specially adjusted and updated separately for a single foreign exchange variety. After long-term testing and verification, the parameter configuration of the system is relatively simple, The trading signal is relatively stable. You
StarFox
Juan Antonio Alvarenga Galindo
マスターガイド:アルゴリズム取引におけるエントリーロジック (STARFOX  システム) 1. 自動意思決定エンジン入門 高忠実度システムの設計において、意思決定アーキテクチャは CSignalEngine に一元化されています。この専門化されたクラスは、単なるソフトウェアコンポーネントではなく、複雑なデータバッファ(RSI、MA、ADX)を離散的で実行可能なブール論理に抽象化するクラスベースのアーキテクチャ構造です。CSignalEngine は、3本のローソク足のテクニカル履歴(インデックス0、1、2)を処理し、市場のノイズを正規化してバイナリ検証に変換します。このエンジンの根本的な目的は、取引から感情的な主観性を排除し、システムの再現性を保証する数学的厳密さに置き換えることです。 コード哲学:「インテリジェントな保護を備えた攻撃的ハイブリッドエンジン」。 アルゴリズムが特定のシグナルを評価する前に、市場のマクロ構造的な文脈を検証し、ボラティリティとトレンドが障害ではなく追い風として機能していることを確認する必要があります。 2. 基礎:トレンド (EMA) と 強さ (
Gold Monster
Tsog Erdene Borjigon Enkhkhudulmur
This EA is based on ADX strategy.  Advantage:     - Stable   - No grid martingale   - No scalper  We recommend with following settings.   Symbol : XAUUSD   Period : 30M Lot: recommend following rule:    100usd  - 0.01 lots   1000usd - 0.1 lots or lower   2000usd - 0.2 lots or lower    10000usd - 1 lots or lower We do not recommend higher lots. Need gold spreadless broker.  Maybe VIP or Pro user with your broker.
️ IMPORTANT — READ BEFORE PURCHASE Botralix is designed exclusively for the H1 timeframe on XAUUSD (Gold) . This is not a limitation — it is the foundation of its edge. The entire strategy was built, tested, and refined specifically around H1 price structure on Gold. Using any other timeframe or pair will not deliver the same results. One chart. One timeframe. Uncompromising discipline. Discounted price. The price will increase by $50 with every 10 purchases. Launch Special: $349 (first 5 buyer
Please contact me for the original version. (The original will be sent from my EA Telegram account.) Hedge Martingale EA. Works only on the MT4 platform. It works on all pairs, but the most ideal symbol is XAUUSD. Recommended broker and account type: Exness Cent account. It is recommended to use it with a minimum balance of $1,000. It provides approximately 40-80% monthly profit. Hedging is more secure. The screenshots are of Exness Cent Real account transactions, not backtest results. I can s
How the EA works (simple explanation) Trades on M5 timeframe Uses H1 timeframe to analyze global market context Analyzes 2 or 3 timeframes simultaneously On each timeframe: Checks price position relative to one or two Moving Averages Evaluates MA angle and distance between price and MA Entry logic is based on trend + volatility conditions , not on random signals The full algorithm is illustrated in the screenshots. Recommended usage Symbol: EURUSD Timeframe: M5 Trading style: Intraday
ナンピンによりポジションが増え、利確や損切り設定を怠り、大きな損失を繰り返していませんか? 本ツールは、ワンクリックでリスク管理を実行し、大きな損失の回避と利益の最大化をサポートします。 ポジションをもったらとりあえず1クリックしておきましょう。後戻りできない後悔がなくなります。 対象ユーザー ・ポジション数が多い運用でも一括でSL/TP設定をしたい方 ・急変時でも1クリックで素早く全ポジションのリスクヘッジをしたい方 ・指標前や市場クローズ前など指定時刻に自動決済したい方 ・ローソク足が指定の陰線・陽線になったら自動決済をしたい方 ・自動でリスクヘッジをしながら利益を最大化するトレール機能を使いたい方 主要機能 複数ポジションの一括決済 THIS PAIR / ALL PAIRS: 表示中の通貨ペア、または全通貨ペアのポジションを1クリックで一括決済します。 TP/SLの一括設定・削除 SET: 全ポジションに対して、指定したTPおよびSLを一括で設定・変更します。 DEL TPs / DEL SLs: 設定済みのTP、またはSLのみを一括で削除します。 戦略に合わせて選
AurumAlert
Samuel Yip Jing Han
AurumAlert — CCI Gold Swing EA v6 A fully automated MetaTrader 5 Expert Advisor for swing trading XAUUSD (Gold) on the H1 timeframe . AurumAlert combines a dual-CCI crossover system with divergence detection, an ADX trend filter, and an H1 RSI confirmation layer to identify high-probability trend-following entries on Gold. The ATR trailing stop rides extended moves and locks in profit progressively. Technical support is provided for XAUUSD H1 only. Hedging account required.Full documentation fil
このプロダクトを購入した人は以下も購入しています
Quantum Queen X MT5
Bogdan Ion Puscasu
5 (2)
伝説は続く。女王は進化する。 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
Scalping Robot Pro is a professional trading system designed specifically for fast and precise scalping on XAUUSD using the M1 timeframe. The system is built to capture short term market movements with accurate execution and controlled risk management. It focuses on real time price behavior, momentum shifts, short term volatility, and selective grid based trade management techniques to identify high probability trading opportunities in the gold market. Scalping Robot Pro is optimized for traders
重要 : このパッケージは、現在の価格で、非常に限られた数のみ販売されます。    価格はすぐに1999ドルになるだろう    100 以上の戦略が含まれており 、今後もさらに追加される予定です。 ボーナス : 1499 ドル以上の価格の場合 --> 私の他の EA を  5 つ無料で選択できます! すべてのセットファイル 完全なセットアップと最適化ガイド ビデオガイド ライブシグナル レビュー(第三者) NEW - VERSION 5.0 - ONECHARTSETUP NEW - 30-STRATEGIES LIVE SIGNAL 究極のブレイクアウトシステムへようこそ! 8 年をかけて丹念に開発された、洗練された独自のエキスパート アドバイザー (EA) である Ultimate Breakout System をご紹介します。 このシステムは、高く評価されているGold Reaper EAを含む、MQL5市場で最高のパフォーマンスを誇るいくつかのEAの基盤となっています。 7か月以上にわたって1位を維持したこのほか、Goldtrade Pro、Goldbot One、I
The Gold Reaper MT5
Profalgo Limited
4.47 (103)
小道具会社準備完了!( セットファイルをダウンロード ) 警告: 現在の価格で販売できるのは残りわずかです! 最終価格:990ドル EAを1つ無料でゲット(3つの取引アカウント分)→購入後ご連絡ください 究極のコンボセット   は   こちらをクリック 公開グループに参加する: こちらをクリック   ライブシグナル クライアントシグナル YouTubeレビュー 最新マニュアル ゴールドリーパーへようこそ! 非常に成功を収めたGoldtrade Proをベースに開発されたこのEAは、複数の時間枠で同時に動作するように設計されており、取引頻度を非常に保守的なものから極めて変動の激しいものまで設定できるオプションを備えています。 このEAは、複数の確認アルゴリズムを使用して最適なエントリー価格を見つけ出し、内部で複数の戦略を実行して取引のリスクを分散します。 すべての取引にはストップロスとテイクプロフィットが設定されていますが、リスクを最小限に抑え、各取引の潜在的な利益を最大化するために、トレーリングストップロスとトレーリングテイクプロフィットも使用されます。 このシステムは、非常に人
TwisterPro Scalper
Jorge Luiz Guimaraes De Araujo Dias
4.45 (120)
取引は少なく。質は高く。一貫性がすべて。 • ライブシグナル モード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 購入後、以下
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
Gold Snap
Chen Jia Qi
5 (15)
Gold Snap — ゴールド向け高速利益獲得システム ライブシグナル: https://www.mql5.com/en/signals/2362714 ライブシグナル2: https://www.mql5.com/en/signals/2372603 実績シグナル v2.0: https://www.mql5.com/en/signals/2379945 現在の価格で残り3本のみです。価格はまもなく$999に引き上げられます。 購入後、ユーザーガイド、推奨設定、使用上の注意、およびアップデートサポートを受け取るため、必ずプライベートメッセージでご連絡ください。 https://www.mql5.com/en/users/walter2008 製品アップデートやトレード情報を受け取るため、ぜひ MQL5 チャンネルにご参加ください。 https://www.mql5.com/en/channels/tendmaster Gold House の長期的な開発と実運用での検証を通じて、ゴールド市場におけるブレイクアウト戦略の有効性と、当社の自動適応パラメータシステムの実用的な価値を
Goldwave EA MT5
Shengzu Zhong
4.73 (71)
リアルトレード口座   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
5 (207)
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 用に設計されており、安定した制御された成長を望む初心者とプロの両方のために構築されています。
NEXORION: Initium Novum — 決定論的ロジックとアルゴリズムの統合 NEXORION は、厳密な流動性処理数学アルゴリズムに基づいた機関投資家レベルの分析コンプレックスです。本プロジェクトの中核概念は「計算の透明性」にあります。このエキスパートアドバイザー(EA)は、混沌とした価格フィードを構造化された幾何学的ゾーンへと変換し、意思決定プロセスを取引チャート上に直接可視化します。 リアルタイム・モニタリング https://www.mql5.com/es/signals/2372338 システム技術仕様 取引銘柄: XAUUSD (Gold) 運用タイムフレーム: H1 手法: 機関投資家流動性分析および決定論的ロジック (Institutional Liquidity Analysis & Deterministic Logic) 意思決定基盤: 流動性プールと均衡レベルの数学的算出 数学的アーキテクチャと可視化 システムの主要な革新は、Dynamic Computation Mapping(動的計算マッピング)にあります。アルゴリズムは単に価格を分析するので
MY LAST STRATEGY One engine. Every candle. Every session. Phase 1 – Limited Release Only 25  copies left. Once all copies are sold, this product will be delisted and no longer available for purchase. All Phase 1 buyers are invited to our private Discord server , where they receive continued updates, optimizations, and direct feedback support. Contact us after purchasing the product for comprehensive instructions and guidance on how to use one of our Slap all News products. TEN YEARS, DISTILLED
AXIO Gold EA
Shengzu Zhong
4.64 (11)
AXIO GOLD EA MT5 MQL5 ライブシグナル参照 https://www.mql5.com/en/signals/2378982?source=Site+Signals+My AXIO GOLD EA MT5 は、MetaTrader 5 上の XAUUSD ゴールド向けに開発された自動売買システムです。 この EA は、MQL5 上で確認できる検証済みライブシグナルと同じロジックおよび執行ルールを使用します。推奨される最適化済み設定を使用し、 TMGM のような信頼性の高い ECN/RAW 原始スプレッドのブローカーで運用する場合、この EA のライブ取引挙動は、ライブシグナルの取引構造および執行特性にできる限り近づくように設計されています。 ただし、ブローカー条件、スプレッド、執行品質、銘柄仕様、スリッページ、通信遅延、VPS 環境、口座設定の違いにより、個別の結果が異なる場合があります。 AXIO GOLD は、危険なマーチンゲール、過度なグリッド拡張、または損失ポジションへのナンピンを使用しません。 現在の製品価格は MQL5 Market ページに表示されている
Gold House MT5
Chen Jia Qi
4.73 (56)
Gold House — ゴールド・スイングブレイクアウト取引システム 1つのEA、3つの取引モード。あなたのスタイルに合ったモードを選べます。ナンピンなし。マーチンゲールなし。 10件のご購入ごとに、価格は50米ドルずつ値上がりします。最終予定価格:1,999米ドル。 ライブシグナル: 利益優先モード: https://www.mql5.com/en/signals/2359124 BE(損益分岐)優先モード: https://www.mql5.com/en/signals/2372604 アダプティブモード:   https://www.mql5.com/en/signals/2379287 重要:購入後、推奨パラメータ、使用説明、注意事項、使用のヒントを受け取るために、必ずプライベートメッセージをお送りください。 (MQL5 メッセージ):   https://www.mql5.com/en/users/walter2008 最新情報をお届け — MQL5チャンネルに参加して、製品アップデートやトレードのヒントを受け取りましょう。 リンクを開き、ページ上部の「購読」ボタン
Straddle
Ayush Saraf
3.67 (3)
Straddle — ゴールド (XAUUSD) 向け精密ブレイクアウト自動売買 Straddle は、ひとつの規律ある発想に基づいて構築された完全自 動の EA です。それは、相場が動き出そうとするとき、両側に構えを取り、価格その ものに引き金を引かせるということ。長年にわたり実際にゴールドを取引してきたトレー ダーのチームによって開発・鍛え上げられ、その苦労して得た相場観を、明確で再現可能 なモデルへと凝縮しています。ためらいなく、感情なく、ニュースの許可を待つこともな く稼働します。 重要なところで検証済み — 実際の市場で、リアルタイムに 言葉を鵜呑み にする必要はありません。Straddle のパフォーマンスは公開されており、MQL5 上でリアルタイムかつ独立して記録されています: Max Effort — https://www.mql5.com/en/signals/2379709 Mid Risk — https://www.mql5.com/en/signals/23800 03 ぜひ精査してください。損益曲線だけ でなく、ドローダウン、取引頻度、回復力にも目を 向
Cortex Aurex
Vladimir Mametov
5 (2)
本EAはMetaTrader 5向けに開発された完全自動売買システムであり、ゴールド(XAUUSD)専用に設計されています。そのロジックは、金市場の特徴である急激な価格変動、鋭い反転、高いボラティリティを前提に構築されています。本EAは、反応速度・規律・精密なポジション管理が特に重要となる環境での自動売買を可能にします。 本システムは、規律あるトレード管理、市場変化への迅速な対応、そしてコントロールされた決済を重視しています。基本的な考え方はシンプルで、トレーリングストップを用いて利益を伸ばしつつ、すべてのポジションを固定ストップロスで保護し、さらにM1時間足で逆シグナルが発生した場合には損失トレードを早期にクローズできる設計となっています。 シグナル:  https://www.mql5.com/en/signals/2378776 特別ローンチ価格: 現在の価格は最初の40本の販売にのみ適用されます。40本販売後、EAの価格は 100 USD 上昇し、 599 USD となります。 コアコンセプト 本EAは、ゴールド(XAUUSD)を自動売買したいトレーダー向けに設計されており、明
Scalper speed with sniper entries. Built for Gold. Wave Rider 5.0 is out (see  Announcement ) $499 for a limited time  before the regular $599 price kicks in. Check the Live signal  or Manual  or  Broker performance Version 5.0 upgrade notice: Close all Wave Rider positions before updating. Strategy Magic Numbers and several input names changed. Review your settings and save a new preset because older sets or templates may not restore every option. New version runs best on VT Markets, Vantage, B
XG Gold Robot MT5
MQL TOOLS SL
4.26 (111)
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
Pulse Engine
Jimmy Peter Eriksson
3.94 (34)
最新情報 - 現在の価格で入手できるのは残りわずかです! このシステムの主な目的は、リスクの高いマルチンゲールやグリッドを使用せずに、長期的なライブパフォーマンスを実現することです。  現在の価格での販売部数は非常に限られています。 最終価格 1499ドル 【ライブシグナル】    |    【バックテスト結果】    |    【設定ガイド】    |    【FTMO結果】 取引への新たなアプローチ Pulse Engineは、インジケーターや特定の時間枠を一切使用しません。MQL5上の他のどのトレーディングシステムも採用していない、非常にユニークなアプローチを採用しています。 この手法は、日中の方向性パターンに基づいて取引を行います。これらのパターンは、私が長年開発・改良を重ねてきた独自のパターン認識ソフトウェアを用いて発見したものです。 このソフトウェアにより、市場が過去に特定の方向に強い動きを示した時間帯を特定することができます。 市場ごと、そして曜日ごとに、それぞれ独自の動きがあります。 この手法が非常に強力な理由は、市場がトレンドにあるのか、反転しているのか、あるい
Impulse MT5
Simon Reeves
5 (13)
Are you ready to power up your Gold trading? Impulse by Starpoint Trading — A six-strategy gold EA that waits for the perfect shot. Launch offer: 30% off until 26th July   — to celebrate the v2.00 release, Impulse is available at a 30% discount. On 26th July the price reverts to $499, so grab it while the offer lasts. Impulse v2.00 is here! The biggest update in Impulse's history has arrived. Version 2.00 takes everything that made Impulse a disciplined, patient Gold trading system and elevates
Quantum Bitcoin EA
Bogdan Ion Puscasu
4.83 (126)
Quantum Bitcoin EA   : 不可能なことは何もありません。やり方を見つけ出すだけの問題です。 トップ MQL5 販売業者の 1 つによる最新の傑作、   Quantum Bitcoin EA で ビットコイン 取引の未来に足を踏み入れましょう。パフォーマンス、精度、安定性を求めるトレーダー向けに設計された Quantum Bitcoin は、不安定な暗号通貨の世界で何が可能かを再定義します。 重要! 購入後、インストールマニュアルとセットアップ手順を受け取るために私にプライベートメッセージを送信してください。 10 回購入するごとに価格が 50 ドル上がります。最終価格 1999 ドル 残り100部のうち80部のみ Quantum Bitcoin/Queen チャンネル:       ここをクリック ***Quantum Bitcoin EA を購入すると、Quantum StarMan を無料で入手できます!*** 詳細についてはプライベートでお問い合わせください! Quantum Bitcoin EA は H1 時間枠で成功し、市場の勢いの本質を捉
Byrdi
William Brandon Autry
5 (19)
BYRDI - 一体となって取引するAIネットワーク ほとんどのEAは、一つのターミナルしか見ていません。 BYRDIは、ネットワーク全体を見ています。 一つの口座で開いた取引は、あなたが保有する他のすべての口座のリスクを変える可能性があります。 BYRDIは、独立したMetaTrader 5ターミナルを一つの協調したメッシュへと接続します。各ノードは、より大きなシステムを認識しながら、自身の口座、ブローカー、市場、AIモデル、戦略、リスク設定を保持できます。 一つのノードは、独立して取引できます。 複数のノードは、一つのネットワークとして協調できます。 共有された市場は、対象となるノード間で分配できます。エクスポージャーはメッシュ全体で制御できます。割り当てられたノードが利用不能になった場合、対応している範囲で、別の対象ノードが引き継ぐことができます。 エントリーを超えて。口座を超えて。 一人のトレーダー。多数の市場。一つのインテリジェンス・ネットワーク。 公開されたメッシュのパフォーマンス BYRDIは現在、公開追跡されている3つのリアルマネー・ノードで稼働しています。 3つの稼
Chiroptera
Rob Josephus Maria Janssen
4.55 (47)
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
Quantum Emperor MT5
Bogdan Ion Puscasu
4.86 (507)
ご紹介     Quantum Empire EA は 、有名な GBPUSD ペアの取引方法を変革する画期的な MQL5 エキスパート アドバイザーです。 13年以上の取引経験を持つ経験豊富なトレーダーのチームによって開発されました。 IMPORTANT! After the purchase please send me a private message to receive the installation manual and the setup instructions. ***Quantum Emperor EAを購入すると、Quantum StarMan が無料で手に入る可能性があります!*** 詳細についてはプライベートでお問い合わせください 検証済み信号:   こちらをクリック MT4バージョン:   ここをクリック 量子EAチャネル:       ここをクリック 10 回購入するごとに価格が 50 ドル上がります。最終価格 1999 ドル 量子皇帝EA       EAは、1つの取引を5つの小さな取引に継続的に分割する独自の戦略を採用しています
BB Return mt5
Leonid Arkhipov
4.63 (123)
BB Return — ゴールド(XAUUSD)取引のためのエキスパートアドバイザー(EA)です。このトレードアイデアは、以前に 裁量トレード で使用していたものを基にしています。戦略の中核は Bollinger Bands(ボリンジャーバンド) のレンジへの価格回帰ですが、機械的でも毎回のタッチでもありません。ゴールド市場ではバンドだけでは不十分なため、EA には弱い・機能しない相場状況を排除する追加フィルターが組み込まれています。回帰のロジックが本当に妥当な場合にのみ取引が行われます。   Global   update   on   June   14th   取引原則 — 本戦略ではグリッド、マーチンゲール、ナンピン(平均化)を使用しません。EA は 固定ロット または AutoRisk モードで動作します。BB Return はスプレッド、スリッページ、ブローカーの価格配信の違いに影響されにくく、 Standard、ECN、Pro、Raw、Razor など、あらゆるブローカー・口座タイプで使用できます。取引セッションに依存せず、 24時間稼働 します。   $ 359   は
このEAは、第三者の販売業者、アフィリエイト、または別の配布チャネルを通じて販売していません。 モニタリング -  ライブシグナル 公開チャンネル - こちら このEAは2つのシンボルを取引し、それらの間の短期的な不均衡を探します。シンボルが通常の関係から外れて動いた場合、EAは取引を開始し、不均衡が小さくなった時に決済できます。 これはグリッドEAではありません。マーチンゲールではありません。EAは多くの回復注文を開きません。各シンボルにつき1ポジションのみを使用します。 含み損のまま何日もポジションを保有するために作られたものではありません。 EAは取引を開始する前にフィルターを使用します。市場条件が良くない場合、取引をスキップできます。 EA入力: メイン取引シンボル - 取引に使用される最初のシンボル。 セカンダリーシンボル - 比較と取引に使用される2番目のシンボル。 分析タイムフレーム - 計算に使用されるタイムフレーム。 履歴データの深さ - EAが計算のために確認するローソク足の数。 Entry Threshold - EAが取引を開始する前に必要な不均衡の強さ。値が高
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
AETHERION PRIME EA XAUUSD・H1専用の精密アルゴリズム取引システム リアルタイムで運用状況を確認できる公開ライブシグナル: https://www.mql5.com/ru/signals/2381671 数量限定のローンチオファー 最初の 7コピー限定で、価格はわずか259米ドル です。 この7コピーが完売すると、価格は直ちに 100米ドル値上がりし、359米ドル になります。 このローンチオファーは、Aetherion Prime EAの初期段階から参加し、公開ライブシグナルを通じてシステムの成長を最初から確認したいトレーダーのために用意されています。 新世代のゴールド自動売買システム Aetherion Prime EAは、 MetaTrader 5のXAUUSD・H1時間足 専用に開発された完全自動売買システムです。 本EAは、明確なひとつの理念をもとに設計されています。 取引回数より精度。感情より構造。パフォーマンスよりリスク管理。 Aetherion Primeは常に取引を繰り返すのではなく、現在の市場環境を分析し、内部のエントリー条件が完全に一致す
HFT Spike EA
OMG FZE LLC
3.67 (3)
[ My Channel ] HFT Spike EA 推奨口座:ハイレバレッジの Standard、ECN、Raw;Cent;Propfirm(FTMO FundedNext 等) 戦略:量子物理学の原理、HFT Spike(高頻度取引)、レベル取引、ニューラル取引、マルチンゲールなし、グリッドなし、単一ポジションのトレンド取引。 XAUUSD のティックデータをもとに設計された、完全自動かつリスク管理付きの EA です。Time-Frame を選択する必要はありません。デフォルト値はテスト済みの構成と同じです。 ゴールド向けに設計されています。突発的なボラティリティの爆発("spike")を検出し、スパイク後の値動きがフィルターを通過したときに精密なタイミングでポジションを開きます。 平均ポジション保有時間は短く、そのため Scalping Trading として際立っています。  Symbol : GOLD/XAUUSD Digits : 2 digits & 3 digits Leverage : Any Broker : Any Min Balance : 25$
Obsidian Flow Atlas EA 精度・構造・実行 金融市場は感情に報いることはありません。 市場が評価するのは、規律、一貫性、そして客観的なデータに基づいて意思決定を行う能力です。 Obsidian Flow Atlas EA は、この理念のもとに開発されました。 MetaTrader 5向けに設計された完全自動売買システムであり、金融市場で最も人気の高い2つの銘柄に対応しています。 • XAUUSD(ゴールド) • EURUSD(ユーロ/米ドル) システムは市場環境を自動的に分析し、独自の取引ロジックと統合されたリスク管理モデルに基づいてポジションを開設・管理します。 チャートを長時間監視したり、エントリーポイントを探したり、手動で取引判断を行う必要はありません。 EAをインストールし、希望するリスクレベルを選択するだけで、システムが自動的に取引を行います。 実証済みのリアル運用実績 最大限の透明性を確保するため、本システムの運用実績は公開ライブシグナルを通じて確認できます。 XAUUSD(ゴールド) https://www.mql5.com/en/signals/23
DAX Robot is an advanced automated trading system developed specifically for the DAX 40 Index on the H1 timeframe. Designed to handle the fast paced nature of one of Europe's most actively traded indices , the robot continuously analyzes market conditions and automatically executes trades based on its built in trading logic. The system focuses on identifying high probability trading opportunities by combining trend analysis, market momentum, and volatility based conditions. DAX Robot is designe
作者のその他のプロダクト
EMA Sniper Pro — Triple EMA Crossover Expert Advisor with RR Trailing Stop and Drawdown Protection EMA Sniper Pro is a professional-grade Expert Advisor built entirely on Exponential Moving Average crossovers and candle close confirmation. The strategy is transparent, rule-based, and free of complex indicators, neural networks, or martingale mechanics. Every trade decision follows a strict logical sequence that can be audited, backtested, and understood without ambiguity. The goal is to capture
ICT SILVER BULLET Pro   is a professional-grade MetaTrader 5 indicator built around the Inner Circle Trader (ICT) methodology. It is designed for traders who operate within institutional frameworks and need precision timing tools overlaid directly on their charts. The indicator maps the three major trading sessions — London, New York, and Asian — as shaded kill zone boxes on the chart, each with its own high, low, and midpoint levels drawn as dotted reference lines. These levels update in real
FREE
Omega Zones Pro - Indicator Description Overview Omega Zones Pro is a professional Support and Resistance indicator that automatically detects and displays price zones on your chart. It helps traders identify key levels where price is likely to react. How It Works The indicator analyzes historical price data to find swing highs and swing lows. It then groups nearby price levels into zones and rates their strength based on how many times price has reacted to them. Key Features Automatic Zone Dete
FREE
ICT Oracle PRO is a professional-grade Expert Advisor built on authentic Inner Circle Trader concepts. Unlike many EAs that claim to use ICT but rely on simple moving average crossovers or forced synthetic signals, this EA implements genuine ICT detection logic including Fair Value Gaps with three-candle gap validation, Order Blocks identified as the last candle before an impulsive move, Breaker Blocks that form when price breaks through an Order Block, and proper market structure analysis with
Candle Dominance Index (CDI) is a sub-window histogram indicator for MetaTrader 4 that reveals the true conviction behind every candle — not just direction, but how hard bulls or bears dominated the full price range. Most traders look at candle color and size. CDI goes deeper. It measures the ratio of the candle body to the total wick range, giving you an instant read on whether the move was decisive or weak. A tall green bar means bulls closed near the high — genuine strength. A tall red bar me
TrendGate RSI Signal is a precision multi-timeframe indicator that combines a Daily trend filter with H1 RSI momentum crossovers to deliver clean, high-probability trade signals — without repainting. Key Features: Daily Trend Filter : Uses EMA(50) on the Daily timeframe to establish a clear bullish or bearish market bias H1 RSI Crossover Entries : Detects RSI(14) crosses above 35 (buy) or below 65 (sell) on confirmed, closed H1 candles only Trend-Aligned Signals Only : Automatically filters out
BreakEdge US30 is a fully automated breakout scalping Expert Advisor engineered specifically for the US30 (Dow Jones) index. It captures the high-momentum price expansion that follows the New York session open by placing a buy stop and sell stop bracket above and below the current price, then manages the winning trade automatically while cancelling the losing side. STRATEGY At the start of each session window, BreakEdge places a dual pending order bracket — a buy stop above the ask and a sell
GoldSwing Structure Trader is a professional multi-timeframe Expert Advisor specifically developed for trading XAUUSD (Gold) using institutional-grade market structure analysis. This EA implements a disciplined swing trading approach that identifies trend direction on the Daily timeframe, executes trades on the H4 timeframe, and uses the H1 timeframe strictly for entry confirmation. The core trading logic is built around accurate detection of market structure including Higher Highs, Higher Low
Account Lens is a professional-grade account monitoring indicator for MetaTrader 4 that transforms the way traders stay informed about their account health during live sessions. Instead of squinting at the tiny account toolbar at the bottom of your terminal or switching windows mid-trade to check your numbers, Account Lens opens a fully independent, dedicated popup chart window that expands to fill your screen and displays your six most critical account metrics in giant, ultra-readable text — Ba
H4 Gold Fortress EA is a fully automated Expert Advisor built exclusively for XAUUSD on MetaTrader 4. It combines a clean H4 candle breakout strategy with a structured martingale recovery system and a hard equity protection layer, giving the EA both offensive entry logic and a defined risk boundary — something most martingale EAs on the market lack entirely. How the Strategy Works At the close of every H4 candle, the EA locks in the high and low of that completed candle. When live price breaks a
ICT Liquidity Zones Pro – FVG, PDH/PDL, Session & Smart Money Levels Product Overview ICT Liquidity Zones Pro is a professional-grade trading indicator for MetaTrader 5 that implements institutional trading concepts derived from the Inner Circle Trader (ICT) methodology. This tool provides traders with a comprehensive suite of liquidity detection, fair value gap analysis, session mapping, and market structure tools typically used by institutional traders. Key Features Supply and Demand Zones The
What Makes This Indicator Different Most support and resistance indicators only look at one timeframe. Price breaks a level on M15, you get an alert. But on H4, that same level might be mid-range - not significant at all. MTF Liquidity Radar solves this by analyzing fractals from M15, H1, H4, and D1 simultaneously. When multiple timeframes agree on a price level, you get a high-probability zone. When they don't, you ignore it. The Problem This Solves You have likely experienced this: price break
SMReaction Zones is a professional support and resistance zone detector for MetaTrader 5. The indicator automatically identifies high-probability supply and demand zones by scanning for swing highs and swing lows across the current timeframe and up to three higher timeframes simultaneously. Each zone is scored by the number of price touches, timeframe origin, and whether a liquidity sweep has occurred at that level. Zone width is dynamic, calculated using the Average True Range so that zones
Apex Liquidity Trader is an institutional-grade Expert Advisor for MetaTrader 5, built around Smart Money Concepts and ICT methodology. It replaces simplistic indicator-based entries with a multi-layer confluence engine that only triggers trades when market structure, liquidity, session timing, and price location all align simultaneously. CORE DETECTION ENGINE The EA scans price action for the full suite of institutional market structure events. It identifies Break of Structure on both sides, de
Apex Reversal Suite Pro is a professional-grade MT5 indicator built for retail and semi-institutional traders who demand more than simple buy/sell arrows. It combines 15 layered analytical modules into a single, clean chart overlay — delivering high-probability reversal signals backed by multi-timeframe confluence, Smart Money Concepts, and dynamic ATR-based risk management. Who is this for? Swing traders, day traders, and prop firm challenge traders operating on Forex pairs, Gold, and indices.
Midas Grid EA — Intelligent Cost-Averaging Grid System for XAUUSD Midas Grid EA is a fully automated Expert Advisor built exclusively for XAUUSD (Gold) on MetaTrader 5. It combines a triple-confirmation entry filter with an ATR-dynamic grid structure to deploy capital only when market conditions justify it, and exit cleanly when they no longer do. Most grid EAs open positions indiscriminately. Midas Grid EA does not. Before deploying a new cycle, the system evaluates three independent technical
ProTradeLib - Professional MQL5 Trading Library Complete Developer Toolkit for MetaTrader 5 ProTradeLib is a production-ready, single-file MQL5 include library designed for professional developers building Expert Advisors and trading systems. With seven integrated modules, it provides all the essential building blocks needed to create robust, feature-rich trading applications. Key Features 1. Risk Manager Calculate lot sizes based on account balance percentage, fixed USD risk, or fixed lots Enfo
SmartStructureLib — Smart Money Concepts Engine for MQL5 Developers SmartStructureLib is a professional-grade MQL5 library that gives developers a complete Smart Money Concepts calculation engine they can embed directly into any Expert Advisor or indicator. Instead of building SMC detection logic from scratch, you include one file and call clean, readable methods that handle all the heavy lifting behind the scenes. The library is built around seven focused modules. The Structure Engine detects B
ObjectChain MT5 — Manual Trade Chain Execution Panel What It Does ObjectChain MT5 is a chart-based trade execution panel for MetaTrader 5 that lets you plan, sequence, and submit multiple pending orders as a single chain — all controlled by draggable horizontal lines directly on the chart. You draw your entries, stop losses, and take profits visually. The EA reads the lines, calculates position sizes automatically from your risk percentage, and waits for price to trigger each level before placi
Smart Bounce Sentinel  Smart Bounce Sentinel is a multi-confirmation reversal alert indicator for MetaTrader 5. It does not place, modify, or close trades. It continuously scans the market across three timeframes and notifies you the moment a high-probability bounce setup forms, so you stay in full control of every entry. How it works Smart Bounce Sentinel only triggers an alert when all six layers of confirmation align at the same time: RSI (14) on M15 at or below your threshold (default 30) —
RiskPilot Calculator is a sophisticated, professional-grade position sizing solution engineered for serious traders who demand precision, speed, and uncompromising risk management in their trading operations. This advanced Expert Advisor for MetaTrader 5 transforms the complex mathematics of position sizing into an elegant, intuitive interface that eliminates guesswork and emotional decision-making from every trade you execute. By automatically calculating optimal lot sizes based on your account
FridayGap Trader  FridayGap Trader is a professional-grade MetaTrader 5 indicator engineered specifically to detect, measure, and visualize the price gap that forms between the Friday closing price and the Monday opening price on any forex or CFD instrument. These weekend gaps are among the most consistently exploitable recurring patterns in financial markets, driven by news events, geopolitical developments, and institutional repositioning that occur while retail markets are closed. FridayGap T
CorrelFusion - Multi-Symbol Correlation Matrix & Rolling Heatmap Overview CorrelFusion is a professional correlation analysis tool for MetaTrader 5 that displays a live correlation matrix for up to 10 symbols simultaneously. It features a unique rolling heatmap that visualizes how correlations evolve over time, helping traders identify diversification opportunities, hedge relationships, and market regime shifts at a glance. Key Features Live Correlation Matrix Displays Pearson correlation coeffi
Trend Apex Pro MT5 — Product Description Trend Apex Pro MT5 is a fully automated Expert Advisor for MetaTrader 5 built on a three-layer Exponential Moving Average system combined with dynamic ATR-based risk management, intelligent trade lifecycle control, and a comprehensive suite of daily risk protection tools. It is designed for traders who want a disciplined, rules-based system that entries only when the market structure confirms direction across multiple confluence factors — and exits with
TopDown Price Action EA is a fully automated multi-timeframe Expert Advisor for MetaTrader 5, built around the same top-down analytical framework used by professional price action traders. Rather than relying on lagging indicators or arbitrary signals, the EA reads raw market structure across two timeframes simultaneously — establishing a high-timeframe directional bias on H1 or M30, then dropping to M15 or M5 to execute with precision. Every trade begins with a question: where is the market try
SMC Pro Trader is a fully automated Expert Advisor built on the institutional trading methodology known as Smart Money Concepts, designed to identify and trade alongside the footprints left by banks and large institutional players in the forex and commodity markets. The strategy operates across multiple timeframes simultaneously, beginning with a top-down analysis on the Daily and H4 charts where it reads the position of price relative to the 200 Exponential Moving Average to establish the highe
GoldApex Multi-Horizon Scalper is a precision-engineered Expert Advisor designed exclusively for XAU/USD, combining a top-down multi-timeframe confluence framework with a dynamic breakout-and-pullback entry model. The system reads macro directional bias from the 4-hour and 1-hour timeframes using dual EMA alignment, then descends to the 15-minute chart to map active support and resistance boundaries. Entry is reserved for confirmed breakouts of those boundaries followed by a controlled retest on
Gold Sniper Breakout EA — XAUUSD 1-Minute Session Scalper for MT5 Overview Gold Sniper Breakout is a fully automated Expert Advisor engineered exclusively for XAUUSD (Gold) on the MetaTrader 5 platform. Built around a precision 1-minute candle breakout methodology, it hunts high-probability momentum moves during the most liquid sessions of the trading day — then exits with surgical timing before the market can reverse. No indicators. No lagging signals. Pure price action. How It Works At the ope
Kairos Signal Confirmed M15 Entry Indicator for XAUUSD Overview Kairos Signal is a precision-engineered MT5 indicator built exclusively for XAUUSD trading on the M15 timeframe. The name comes from the ancient Greek concept of Kairos — the opportune moment, the perfect window of action. That philosophy is the foundation of this tool: it does not react to noise, it does not fire during uncertainty, and it never changes its mind after a decision is made. Every signal is locked to the close of a co
Session Inversion EA is a fully automated Expert Advisor for MetaTrader 5 that trades a structured, rule-based strategy combining session range analysis with Inverted Fair Value Gap (iFVG) entry logic. The strategy is drawn directly from Smart Money Concepts and ICT methodology and executes without any manual intervention from chart setup to trade close. How the Strategy Works The EA tracks four configurable trading sessions across the day using UTC-based time detection, which means session time
フィルタ:
レビューなし
レビューに返信