Hummingbird Probabilities Mapping

2025年10月7日

これは最初のバージョンであり、月内にアップデートがリリースされる予定です。
ご支援に心から感謝いたします。このEAがあなたにとって新たな扉を開き、高い利益をもたらすことを願っています。
乾杯!!

Hummingbird Probabilities Mapping EAとは....

自然界に着想を得たEAであり、以下のトレンドパターンの組み合わせを利用して、リアルタイム解析に基づく70%以上の精度を持つ確率マッピングを投影します。

  • EMAトレンド

  • MACD

  • RSI

  • VWAPスプレッド

  • バースト

  • スクイーズ

  • ボラティリティ(ATRp)

→ 自然に着想を得た、複数のインジケータ特徴を単一の「状態」出力へ確率的に融合
→ 状態: hover(中立)、dart(ロングバイアス)、backstep(ショートバイアス)、perch(リスク回避)

Hummingbird EAの概要

このEAは複数の古典的テクニカル要素を融合し、市場の意図(ロング/ショート/中立/リスクオフ)を確率的に読み取ります。
新しいバーがクローズした時のみ取引を行うよう設計されています。

  • リペイントなし(クローズ済みバーで決定)

  • 堅牢(市場が閉じていても動作、ステータスHUD表示)

  • 可読性(確率を整数パーセンテージで表示)

高レベルループ(毎ティックまたはタイマー“ティック”)

  • CopyRates(...) を使って最新バーを rates[] に取得( Close[] や Time[] を直接使用しない)

  • 最新のクローズ済みバー( rates[1] )を検出し、HUDが常に更新されるようにする

  • 標準インジケータ(EMA / RSI / ATR / Bollinger / MACD)、マイクロ構造信号(Burst, Squeeze)、日次リセットされるセッションVWAPから特徴を構築

  • 特徴 → スコア → 確率へ融合(温度スケール付きsoftmaxを使用)
    → HUDに pLong 、 pNeut 、 pShort (0–100%)を表示

状態マシンによる4つの「ハチドリ状態」

  • dart → ロングバイアス

  • backstep → ショートバイアス

  • hover → 中立

  • perch → リスクオフ(ボラティリティ極端時)

取引条件

  • 新しいバーがクローズした時のみ取引(中途バーでのノイズを回避)

  • 新しいバーが形成されていない場合でもHUDは確率と状態をリアルタイム更新

調整可能な入力項目

  • コア長さ: EMA短期/長期、RSI長、ATR長、Bollinger長/偏差、ADX長、Burstウィンドウ

  • 特徴の重み: W_EMA , W_MACD , W_RSI , W_VWAP , W_BURST , W_SQZ , W_VOL

  • 意思決定パラメータ: SoftmaxTemp , ProbLongThresh , ProbShortThresh , CooldownBars

  • ボラティリティ制御: ATRZLen , ATRZThresh (リスクオフ発動閾値)

  • リスク: Lots , ATRmultSL , ATRmultTP (ATRベース)

インジケータと特徴(構築方法)

  • EMA短期/長期トレンド: (EMA_short – EMA_long) / avg(EMA_short, EMA_long)

  • MACDモメンタム: MACD_main – MACD_signal (ヒストグラム)

  • RSIバランス: (RSI – 50) / 50

  • ボリンジャーバンド: 幅=(上限–下限) ÷ 中央線、位置は価格の相対位置を示す

  • ATRおよびATR%: ATR / Close によりスケールフリーなボラティリティを計算

  • ATR% Zスコア: ATRZLen 本分のATR%から算出、極端ボラティリティを検出

  • 「Perch」(リスクオフ): ATR% z-score > ATRZThresh で発動、ポジションを全クローズ

  • セッションVWAP: (H+L+C)/3 × volume / 累積volume
    → vwapSpread = (close – VWAP)/close により乖離を評価

  • Burst: 直近 InpBurstLen 本の1バーリターンの合計

  • Squeeze: ATR% / BollingerWidth

特徴 → 確率への変換

各特徴に重みを掛け、3つの生スコアを生成:

  • rawLong: トレンド・モメンタム・有利なスプレッド・バースト・(逆)スクイーズを強調、ボラティリティ極端を抑制

  • rawShort: rawLongの反対符号

  • rawHover: 小さい定数(証拠が薄い場合の中立維持)

softmax( SoftmaxTemp 適用)で
pLong, pNeut, pShort ∈ [0, 1] を生成。
HUD上では整数パーセントで表示。

意思決定ロジック(状態マシン)

  • perch: 即座にリスクオフ(ポジション全クローズ)

  • cooldown中でなければ:
    - pLong ≥ ProbLongThresh かつ pLong > pShort → dart(ロング)
    - pShort ≥ ProbShortThresh かつ pShort > pLong → backstep(ショート)
    - それ以外 → hover(中立)

  • クールダウン: dartまたはbackstep後、 CooldownBars バー待機(ノイズ軽減)

取引実行とリスク管理

  • 実行タイミング: 新しいバーが確定したときのみ

  • 反転: 逆方向シグナル時は既存ポジションをクローズして反転

  • ストップ/ターゲット: ATRベース( ATRmultSL , ATRmultTP )

  • 「Perch」発動: すべてのポジション即時クローズ

HUD(チャート上表示)

  • ステータス: “インジケータ待機中”, “準備完了”, “履歴なし”など

  • 状態: hover / dart / backstep / perch
    → (bar: new|hold)で新バーか前バーかを表示

  • 確率: pLong / pNeut / pShort(整数%)

  • コンテキスト: atrpZ(ボラティリティ)および vwapSpread(VWAP乖離)

HUDは市場が閉じていても更新を継続(1秒タイマーによる更新も可能)。

耐性と自己復旧

  • 市場閉鎖中も動作: インジケータ作成不能や履歴不足でも停止せずステータス表示

  • 履歴保護: データ不足時は「待機中」を表示し、十分なバーが揃い次第再開

  • 自己復旧: データ取得後、自動的に「準備完了」へ切替

実践的注意点

  • **ストラテジーテスター(ビジュアル)**で動作を確認

  • 特殊セッション銘柄: 日次VWAPリセットは暦日基準。必要に応じて調整

  • ボリューム: tick_volume を使用(MT5標準)

  • チューニング: 銘柄・時間軸に応じて重み、閾値、ATR設定、クールダウンを調整

要約

このEAは“ハチドリ”のように――
俊敏で、決断的、かつストレス下では保守的

複数のシグナル群を明確な確率的判断に変換し、
バー確定時のみ行動し、乱高下局面では退避するよう設計されています。



おすすめのプロダクト
Chronos Auto-Adaptive Matrix - Pure Mathematical Precision Tired of fake "AI", "Deep Learning", and "ChatGPT" buzzwords? So are we. Welcome to Chronos Auto-Adaptive Matrix — an honest, transparent, and mathematically rigorous trading system.  === GOD-TIER PRESETS === [SETUP 1] SCALPING MATRIX (Best Overall / Default) Maximum trade frequency and highest profit yield. Very active breakout hunting. - **Breakout Period:** 12 - **Risk per Trade:** 2.0% - **SL / TP Multiplier:** 1.0 ATR / 1.5 ATR
Expert advisor trades by breaking up fractals or down fractals. It is used   “Fractals ST Patterns Strategy”   or   “4.0 Fractals Direction ST Patterns MT5”   fractal indicators. Also expert advisor uses standard trailing stop. Below is description of some inputs. Trade Order   – direction of trading (only buy, only sell or buy and sell) Fractal Indicator   – option of used fractal indicator (“Fractals ST Patterns” – indicator   “Fractals ST Patterns Strategy” , “Fractals Direction ST Patterns”
Gold EA: Proven Power for 1-Minute Gold Trading Transform your trading with our Gold EA, meticulously crafted for 1-minute charts and delivering over 2000% growth in 5 years from just $100-$1000 . No Martingale, No AI Gimmicks : Pure, time-tested strategies with robust money management, stop loss, and take profit for reliable performance across multiple charts. Flexible Trading Modes : Choose Fixed Balance for safe profits, Mark IV for bold growth, or %Balance for high rewards—combine Mark IV an
ENGLISH DESCRIPTION (MQL5 Standard Optimized) Product Name: Inferno Storm AI Hybrid PRO V2.57 [Subtitle: Market Regime-Switching | Nested SMC | Dual-MTF Confluence] Introduction: The Apex of Adaptive Cognitive Trading Welcome to the absolute pinnacle of algorithmic intelligence. Inferno Storm AI Hybrid PRO V2.57 is the culmination of our "Deep Think" cognitive framework. It does not just execute trades; it dynamically evaluates, adapts, and survives the market with the precision of an elite Inst
At first, I got my teeth into  Phoenix  Ultra   Expert Advisor. This   Expert Advisor  will support automatic close order if the direction is correct and perform recovery if the direction is wrong. If you enter an order: 1. The price goes in the right direction and hits the   Min Profit Point ,   trailing stop 20% of the current profit. 2. The price goes in the opposite direction, the Expert Advisor will place the order with the volume is   Recovery Volume Percent  at the input, the distance to
FREE
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
Babel Assistant
Iurii Bazhanov
4.33 (9)
Babel assistant 1     The MT5 netting “Babel_assistant_1” robot uses the ZigZag indicator to generate Fibonacci levels on M1, M5, M15, H1, H4, D1, W1  periods of the charts , calculates the strength of trends for buying and selling. It opens a position with "Lot for open a position" if the specified trend level 4.925 is exceeded. Then Babel places pending orders at the some Fibonacci levels and places specified Stop Loss , Take Profit. The screen displays current results of work on the position
FREE
Infinity Gold Impulse – Advanced Algorithm for Trading Gold (XAU/USD). Trading gold, like any investment, requires a thorough understanding of market conditions, strategic planning, and consideration of the many factors that determine its value. Gold trading principles are based on the fundamental laws of supply and demand, as well as an analysis of the macroeconomic situation, geopolitics, and market sentiment. Gold is traditionally viewed as a safe haven asset during times of economic insta
AURIC MOHD-iK is a dynamic, logic-based Expert Advisor (EA) engineered specifically for trading XAUUSD (Gold). Unlike standard trading systems that rely on lagging, unreliable indicators, this EA operates purely on clean price logic—executing trades the way an experienced human trader naturally reads the market. This version is completely free with limitations, offering permanent value to your trading setup with zero hidden costs. Active Auric Mode That's it!!!!!!!!!! Core Trading Parameters Ac
FREE
Lycan
Leo Carlo Bermudez
Lycan is an automated S calping system optimized for XAUUSD (Gold) on the MetaTrader platform. The EA does not use grid or martingale recovery methods. It applies volatility-based stop loss protection and rule-based filters (spread, news, and session) to select scalp trade opportunities using confirmed breakout strength, rather than relying on high-frequency or recovery-based entries. Core Principle: No Grid, No Martingale, Dual Scalp Strategy System Lycan does not add to losing positions, doe
FREE
Exp THE X FULL
Vladislav Andruschenko
4.79 (28)
これは標準的な指標に取り組んでいるMetaTrader 5のための万能自動エキスパートアドバイザーです。 UniversalEA コンストラクタEAには多数の関数が用意されています。 ポジションを開くために20のシグナルのうちの1つを選択し、MetaTraderパッケージに含まれる標準インディケータのシグナルを選別するために20のうち5つのフィルターを選択することができます。 さらに、指標のパラメータを調整したり、時間枠を選択したり、各信号の信号バーを指定したりできます。 注意!新しいユニバーサルトレーディングアドバイザーの Exp - カスタム指標に取り組んでいる xCustomEA  : MetaTrader 5の ための Exp The xCustomEA MetaTrader 4の ための Exp The xCustomEA Description on English 自動取引アドバイザーを購入したい場合は、  TickSniperを チェックして ください  。 EAには以下の機能があります。  カウンタートレンド平均 トレンドの方向への追加の開口部 トレーリングストッ
Magic EA MT5
Kyra Nickaline Watson-gordon
Magic EA is an Expert Advisor based on Scalping, Elliot Waves and with filters such as RSI, Stochastic and 3 other strategies managed and decided with the robot smartly. Large number of inputs and settings are tested and optimized and embedded in the program thus inputs are limited and very simple. Using EA doesn't need any professional information or Forex Trading Knowledge. EA can trade on all symbols and all time frames, using special and unique strategies developed by the author. The EA w
The EA evaluates price action using a defined historical window combined with a statistical threshold and a degree-of-correction parameter. This three-component configuration controls how the system identifies tradeable conditions — the window sets the scope of analysis, the threshold determines sensitivity, and the correction factor filters marginal signals before execution. The result is a compact, transparent decision mechanism with no hidden layers or adaptive self-modification. Trade Mana
️ Warning – Fake Sigma Trend Protocol EA STP Any “Sigma Trend Protocol EA STP” sold outside my official MQL5 page is a fake scam product using my name to take your money. The only real and supported version is here: https://www.mql5.com/en/market/product/152096   https://www.mql5.com/en/market/product/157301 Don’t spend your hard-earned money expecting premium performance from a cheap copy. STP cannot be easily copied or sold as a discount scrap version.
CalcWave EA: A Robust, Indicator-Free Trading Solution (Only for EURUSD daily & H1 chart) CalcWave is a professionally engineered Expert Advisor that relies purely on mathematical models and money management rules—no chart indicators are used for trade execution. Backed by over 20 years of trading experience, this EA treats trading as a business, not gambling, and adapts to today’s dynamic markets. Key Features Uses advanced price-action and statistical algorithms instead of visual indicators Co
Robot Titan Rex
Cesar Juan Flores Navarro
Asesor Experto (EA) totalmente automático, opera sin ayuda del usuario, se llama Titan T-REX Robot (TTREX_EA),actualizado a la versión 2, diseñado a base de cálculos matemáticos y experiencia del diseñador plasmado en operaciones complejas que tratan de usar todas las herramientas propias posibles. Funciona con todas las criptomonedas y/o divisas del mercado Forex. No caduca, ni pasa de moda ya que se puede configurar el PERIODO desde M1..15, M30, H1.... Utiliza Scalping de forma moderada busca
Indicement MT5
Profalgo Limited
4.21 (24)
Indicementへようこそ! プロップファーム準備完了! -> セットファイルを ここからダウンロード ローンチプロモーション: 現在の価格で残りわずかです! 最終価格: 990ドル NEW: Choose 1 EA for FREE! (limited to 2 trading account numbers) 究極のコンボディール   ->   こちらをクリック 公開グループに参加する: ここをクリック   VERSION 4.0 LIVE RESULTS OLD VERSION FINAL RESULTS INDICEMENT は、   専門的な取引アルゴリズムの作成における私の 15 年間の経験をインデックス市場にもたらします。 EA は、最適なエントリー価格を見つけるために非常によく考えられたアルゴリズムを使用し、取引のリスクを分散するために内部で複数の戦略を実行します。 すべての取引にはストップロスとテイクプロフィットがありますが、リスクを最小限に抑え、各取引の可能性を最大化するために、トレーリング ストップロスとトレーリング テイクプロフィットも使用します。 この
Sun Bin SCF is an Expert Advisor that identifies moments when market participants act in the same direction.  It observes recent price bars and volume to detect situations where buyers or sellers dominate together.  When a consistent crowd movement appears, the EA opens a trade in the same direction and manages it using pre-defined risk and exit rules. Main Features: - Crowd detection based on consecutive bars with similar direction. - Volume confirmation to avoid false signals in low-activity
80% discount for 1 month trial ,   contact us :   https://www.mql5.com/en/users/taiberhyphecu 70% refund policy (full version only) A fully automatic expert Designed and produced 100% by artificial intelligence, with the world's most advanced technology All trades have profit and loss limits, with the best and least risky market strategy, without using dangerous strategies such as Martingale and hedges, etc. A specialist who has been trained by artificial intelligence for years to correctly id
Announcement: All EAs (Expert Advisors) from QuanticX are currently available for free, but only for a limited time! To enjoy a Lifetime QuanticX support and continue receiving free EAs, we kindly request you to leave a review and track the performance of our EAs on Myfxbook. Additionally, don't hesitate to reach out to us for exclusive bonuses on EAs and personalized support. Pillartrade by QuanticX Welcome to Pillartrade - Your Long-Only Trading Ally for US500 Join the forefront of financial
FREE
Exclusive Black Pro Max MT5 — 自動売買システム Exclusive Black Pro Max MT5 は、MetaTrader 5 用のエキスパートアドバイザーであり、高度な市場分析アルゴリズムとリスク管理戦略に基づいています。EAは完全自動で稼働し、トレーダーの介入は最小限で済みます。 注意!購入後はすぐにご連絡ください 。設定手順をお渡しします! 重要: すべての例、スクリーンショット、テストはデモ目的のみです。あるブローカーで特定の通貨ペアが良好な結果を示しても、他のブローカーでも同様になるとは限りません。各ブローカーには独自のレート、スプレッド、取引条件があるため、 各通貨ペアはユーザー自身が最適化 し、リアル口座では 単一通貨モードのみ で稼働させる必要があります。マルチ通貨モードのスクリーンショットは例示のみです。 重要情報: EAのデモ版は評価目的のみです。最適化なしのテスト結果はアルゴリズムの実際の性能を反映しません。完全な利用には、ブローカー、証拠金、選択した銘柄に合わせた個別の最適化が必要です。最適化は必ずユーザー自身で行い、少なくと
Winter MT5 — 自動売買システム Winter MT5 は、高度な分析アルゴリズムと適応的手法を用いて変化する市場環境に対応するエキスパートアドバイザーです。急激な価格変動後の調整局面での取引を目的として設計されています。システムは完全自動で稼働し、常時監視は不要です。 開始するには、 NZDCAD_e のチャートにEAを設置するだけで、他の通貨ペアは自動的に有効化されます。 注意!購入後すぐにご連絡ください 。設定手順をお送りします! 口座要件 通貨ペア: NZDCAD_e, AUDCAD_e 口座タイプ: ECN レバレッジ: 1:500 最低入金額: $1000 以上(アルゴリズムの正常動作のため推奨) 時間足: M15 VPS: 安定稼働のため推奨 推奨ブローカー: FreshForex 入力パラメータ 取引コメント: ジャーナルや口座履歴に表示 M15 通貨ペア: 有効なペアのリスト(サフィックスに依存する場合あり) Magic: ポジションのユニーク識別子 ロット計算方法: リスクレベルに基づく 証拠金使用率 %: 初期ロットサイズの設定 仮想TP: false
Aurum Vector Gold Pullback is a MetaTrader 5 Expert Advisor designed to trade structured pullbacks on Gold. The EA studies the broader market direction and waits for price to return to a technically relevant area before considering an entry. It is designed to avoid chasing extended price movements and does not trade continuously. A position is opened only when the trend, pullback location, momentum and entry conditions are aligned. The recommended setup is XAUUSD on the M5 timeframe . Broker suf
FREE
EV Divergence Sniper is a precision-oriented Expert Advisor designed to identify high-probability market reversals through true price divergences confirmed by RSI and Stochastic. The system focuses on structural market conditions and enters only when price and momentum show a clear imbalance, significantly reducing false entries and improving signal quality. The EA uses a structural stop loss placed beyond the most recent swing, combined with a fully customizable risk-to-reward take profit. It i
FREE
EMLU Precision AI — Free Demonstration Version for MT5 Type: Expert Advisor (MT5) ️ Important Notice (Read Before Downloading) This Free version of EMLU Precision AI is designed strictly for demonstration, research, structural inspection, and interface familiarisation . It does not represent the behaviour, logic depth, live signals, or performance results of the full paid version. Performance, trade frequency, and result quality are intentionally reduced to prevent misuse of the free edition as
FREE
Perfect Trade EA Indicator 2026 for XAUUSD MT5 Премиальный многоуровневый самообучающийся индикатор с режимом автоторговли для XAUUSD Perfect Trade EA Indicator 2026 — это не просто индикатор и не обычный советник с примитивным входом по шаблону. Это премиальный торговый комплекс для MetaTrader 5, созданный для работы с XAUUSD, который объединяет в себе: - многоуровневый анализ рынка; - интеллектуальную фильтрацию сигналов; - режим автоматической торговли; - продвинутое сопровождение сделки;
Classic SNR MetaTrader 5 Expert Advisor | Multi-Symbol Support & Resistance Trading with Trend-Based Logic Overview Classic SNR Breakout EA is a professional trading robot that identifies structural Support & Resistance levels using daily swing points and executes trades based on H1 price action relative to these levels. The EA applies   dual logic : in an uptrend, it sells on H1 rejection below an SNR level; in a downtrend, it buys on H1 rejection above an SNR level. Breakout confirmations are
The basis of the strategy is the identification of quick corrective movements between the crosses of a working currency pair or metal. At the moment of differences in prices of trading instruments, the adviser analyzes the possible direction of price movement on a working instrument and starts work. Each position has a stop loss and take profit. A unique position tracking algorithm allows you to control the superiority of profit over loss. The adviser does not use dangerous trading methods.
MACD Sniper Pro is an advanced automated trading system designed for traders seeking high-precision entries and robust risk management. By combining the classic momentum of MACD Crossover with a strict ADX Volatility Filter and Dynamic ATR Management , this EA completely eliminates emotional trading and filters out dangerous flat/sideways markets. Unlike standard MACD indicators that suffer during consolidation, MACD Sniper Pro verifies trend strength before entering and protects your capital us
FREE
Expert Mind Core: Statistical Probability Engine The Expert Mind Core algorithm is based on a high-order mathematical model designed to analyze structural market imbalances. Unlike standard indicators, this system utilizes a multidimensional approach to price action, evaluating the rate of change in volatility (Gamma-analysis) and its deviation from the equilibrium point. The core logic functions by identifying exhaustion zones where the probability of a corrective movement significantly outweig
このプロダクトを購入した人は以下も購入しています
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
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
Syna
William Brandon Autry
5 (27)
Syna 7 - トレードに寄り添い続けるAI ほとんどのトレーディングシステムは、エントリーした時点で考えるのをやめます。 Synaは違います。 Syna 7は、分析から決済まで関与し続けるために設計されたAIトレーディング・アシスタントであり、自律型トレーディングシステムです。 現在の状況を監視し、トレードの文脈を記憶し、ニュースとボラティリティを評価し、ポジションを管理し、口座間を調整し、注文が約定した後も判断を再評価し続けることができます。 トレードはエントリーで終わりません。 インテリジェンスも同じであるべきです。 分析から決済まで、ひとつの連続したインテリジェンス。 チャンネルとコミュニティ アップデート、シグナル、リリース情報、製品デモはチャンネルでご確認ください。公開グループでは質問や他のトレーダーとの交流ができます。 私のMQL5チャンネルをフォロー 私のMQL5公開グループに参加 Synaとは Synaは、トレーディング運用全体のインテリジェンス層として機能するよう設計されています。 次のような対象と連携できます。 Syna自身の自律的なトレーディング戦略 他のE
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
SMC Automato MT5
Jean Charles Vilhena Maia
4.88 (8)
SMC AUTOMATO (MT5) – Sweep • CHOCH • Retest (M15/M5) SMC AUTOMATO は、MetaTrader 5 用のエキスパートアドバイザー(EA)であり、市場構造(SMC)に基づくロジックを自動化します。 Sweep(流動性の掃討) 、 Change of Character(CHOCH) 、および Retest(リテスト) による確認フローを使用し、 M15(構造) と M5(エントリー/管理) の時間足で動作します。 本EAは、 客観的かつ標準化された方法 で取引を実行するよう設計されており、市場フィルターおよびポジション管理機能を備えています。 結果を保証するものではなく 、MT5の実行ルールに準拠しています。 EAの仕組み(ロジック概要) セッションフィルター(時間) :設定された時間帯(アジア/ロンドン/NY)のみで取引します。 M15構造バイアス :直近のスイングを基に優先方向を決定します。 Sweep :重要なスイングレベルのブレイク後に価格が戻る動きを検出します。 M5でのCHOCH :セットアップ方向へのスイングブレ
AiQ
William Brandon Autry
4.87 (38)
AiQ Gen 2 登場 – より速く。よりスマートに。かつてないほど高性能に。 私たちは2024年末にMean Machineでこの変革を始めました。リアルな最先端AIをライブのリテール取引に導入した最初期のシステムの一つです。 AiQ Gen 2はそのラインにおける次の進化です。 AiQ Gen 2は全く異なるレベルのスピードのために構築されています。指値注文がそのエッジの核にあり、モメンタムが拡大する前に精密にポジションを取り、そしてアダプティブ・インテリジェンスに引き継ぎます。 ほとんどのAIツールは一度回答すると、すべてを忘れます。 AiQ Gen 2は違います。 すべての指値注文セットアップ、各配置や調整の背後にある推論、なぜトリガーされたか、なぜ見送ったか、そしてマーケットがどう反応したかを記憶しています。毎セッションの完全なコンテキスト。時間とともに蓄積される永続インテリジェンス。 これはマーケティングのためにAIを付け足しただけのEAではありません。 これは精密な指値注文執行を中心に構築された高速専門インテリジェンスです。 従来のEAは固定されたロジックの中に閉じ込
Bonnitta EA MT5
Ugochukwu Mobi
3.38 (21)
Bonnitta EA は、保留ポジション戦略 (PPS) と非常に高度な秘密取引アルゴリズムに基づいています。 Bonnitta EA の戦略は、秘密のカスタム指標、トレンドライン、サポートおよびレジスタンス レベル (価格アクション)、および上記の最も重要な秘密の取引アルゴリズムを組み合わせたものです。 3 か月以上のリアルマネーテストなしで EA を購入しないでください。ボニッタ EA をリアルマネーでテストするのに 100 週間以上 (2 年以上) かかりました。結果は以下のリンクで確認してください。 BONNITTA EA は愛とエンパワーメントから作られています。 少数の購入者のみを対象とした価格設定と著作権侵害アルゴリズムの実装です。 Bonnitta EA は、22 年間で 99.9% の品質を持つ本物のティックを使用してテストされ、実際の市場状況に近いスリッページとコミッションでストレス テストに合格しました。 Expert Advisor には、完全な統計制御による統計収集およびスリッページ制御のアルゴリズムが含まれています。 この情報はブローカーのトリックか
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
Famous EA – 実運用で検証済みのパフォーマンス Famous EAは、安定した結果と高度な取引執行を求める本格的なトレーダーのために開発された高性能エキスパートアドバイザーです。価格アクション、トレンドラインの動き、そして独自のフィルターアルゴリズムを組み合わせ、高確率のエントリーとエグジットを規律ある形で捉えます。 戦略概要 Famous EAは以下を使用して動作します: リペイントしない独自インジケーターロジック 動的なトレンドライン/サポート・レジスタンス検出 マルチタイムフレームの価格アクション分析 独自のノイズフィルタリングアルゴリズム この組み合わせにより、市場環境に適応しながら過剰取引を避け、構造の整ったセットアップに集中します。 主な特徴 100%自動化 — 手動操作不要 主要FX通貨ペアおよび貴金属に最適化(USDJPY、GBPJPY、XAUUSD、XAUJPYなど) 柔軟なリスク設定(保守的〜攻撃的) 大きなボラティリティを回避するスマートニュースフィルター(任意) 高度なトレーリングストップ&ブレイクイーブン機能 マーチンゲールなし、グリッドなし、ヘッ
AI Nodiurnal EAは、先進的なForexロボットであり、最先端の機械学習技術を活用して取引戦略を最適化し、動的な外国為替市場でのパフォーマンスを向上させます。用語「Nodiurnal」は、通常の昼間の取引時間だけでなく、非標準の時間帯にも適応して稼働し、外国為替取引に対する連続的かつ適応的なアプローチを提供する能力を反映しています。 設定:通貨ペアのデフォルト設定:EURUSD H1。特別な設定は購入後にのみ提供されます。 リアルタイムアカウントシグナルはこちら: https://www.mql5.com/ja/signals/1270367 MT4バージョンはこちら: https://www.mql5.com/ja/market/product/69905 マーケットローンチプロモ!残り3/10のコピーのみ:USD 5,500 次の価格:USD 7,500 最終価格:USD 10,000 主な特徴: 機械学習アルゴリズム:AI Nodiurnal EAの主力は、機械学習アルゴリズムの活用にあります。これらのアルゴリズムは膨大な量の歴史的な市場データを分析し、パターン、トレ
Minting
Zenzo Phathisani Mtungwa
*** 最良の結果と迅速なエントリーおよびエグジットのために、M1またはM5に適用してください *** Minting – The Gold Scalper(Lite Edition)   は、Ramulo Software Ltd. によって開発された、プロフェッショナル仕様で軽量かつ効率的なエキスパートアドバイザー(EA)です。ゴールド(XAUUSD)の高いボラティリティと収益機会を最大限に活かすために設計されており、EMAベースのインテリジェントな相場構造、ATRによるトレンド検出、段階的なUSDトレーリング、そして厳格なドローダウン管理を一体化した、シンプルで運用しやすいトレーディングシステムです。 Minting は Emerge エコシステムへの入り口となるEAです。安定性・透明性・継続的な口座成長を提供するため、あえてシンプルに設計されています。推奨される流れは、Minting で得た利益を使って、より高度なトレード知能、深いマーケットロジック、そしてより積極的な利益獲得能力を持つフラッグシップEA「Emerge」へアップグレードすることです。 このEAは、 まず資本
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.
Scalp Master Expert Advisorは、トレンド相場におけるスキャルピング戦略のために設計された完全自動取引システムです。流動性の高い市場で短期的な取引機会を特定し、取引の質とリスク管理を重視しています。このEAは、裁量判断なしでルールベースの取引を好むトレーダーに適しています。 以下のようなスプレッドが狭く流動性の高い銘柄で最も効果を発揮します: XAUUSD(ゴールド) EURUSD GBPUSD USDJPY BTCUSD USTEC(米国テック指数) その他の主要・マイナー通貨ペア(低スプレッド・安定した約定環境) この戦略はトレンド市場専用に設計されており、レンジ相場や不安定な値動きなどの低品質な取引環境を避けることを目的としています。 主な特徴: 完全自動取引システム(手動操作不要) 移動平均線とRSIフィルターによる勝率向上と低確率トレードの回避 重要経済指標時のリスクを軽減するニュースフィルター搭載 ダイナミックにポジションを管理する高度なトレーリングシステム リスク管理とドローダウン削減に重点 Scalp Masterは取引前および取引中に市場状況を
YZH AlgoCore
Yusuf Ziya Hazeral
5 (1)
YZH AlgoCore ― 1つのロボットで6つの銘柄に対応 スマートアルゴリズム。規律ある執行。 市場には数千もの「ゴールドロボット」が存在します。その中で、XAUUSD、EURUSD、GBPUSD、GBPJPY、USDJPY、BTCUSDの6銘柄で、設定変更なしで同じエンジンを動作させることができるロボットはいくつあるでしょうか? YZH AlgoCoreは、真のマルチシンボルシステムです。チャートにアタッチするだけで、ロボットは自動的に銘柄を検出し、専用の組み込みプロファイルを読み込みます。時間枠、インジケーターの設定、スケーリング動作など、すべて銘柄ごとに内部的に定義されています。6つの銘柄で1つのライセンス。6つのロボットを個別に購入する必要がなく、1つのライセンスで済みます。 YZH AlgoCoreを選ぶ理由 多くのトレーディングシステムが失敗するのは、戦略が悪いからではなく、執行が不安定だからです。多くのグリッドロボットは、一定の間隔で無計画にポジションを建て、最初の強いトレンドが発生するとすぐに口座を明け渡します。 YZH AlgoCoreは、以下の2つの
Swingy3
Bashier Awny Husein Ismail Alhafy
Swingy3: The Institutional Pivot & Swing Execution Engine Swingy3 is an algorithmic trading system designed for MetaTrader 5, focusing on high-conviction price action swings and institutional-grade risk management. Unlike standard retail indicators, Swingy3 analyzes market structure through dynamic pivot points and multi-timeframe confluence to identify entries where momentum and exhaustion align. The Strategy The core of Swingy3 is its advanced Pivot Analysis engine. It detects institutional "S
Fimathe Market Opening
Jean Charles Vilhena Maia
4.67 (3)
Fimathe Market Opening サマータイムにご注意ください XAUUSD の時間を 23 から 22 に変更してください Fimathe Market Opening は、市場のオープニング時に形成されるチャネルを基準として自動売買を行うために開発された Expert Advisor です。ローソク足の実体終値によるブレイクアウト確認(C1)と、最初の取引がストップロスで終了した後の構造的なリバーサルロジックを組み合わせて動作します。 本システムは、XAUUSD の公式オープニングを基準とした独自のオペレーショナルデイの中でのみ動作します。チャネル形成、ブレイクアウト確認、ポジション管理はすべてチャネルサイズに基づく客観的なルールに従って実行されます。 この戦略は完全に価格構造に基づいており、外部インジケーター、移動平均線、または主観的なフィルターは使用しません。すべての判断は価格の動きと事前に定義された構造ルールのみに基づいて行われます。 運用コンセプト このシステムは次の3つの要素を中心に構成されています。 オープニングチャネルの形成 ローソク足の実体終値によ
Expert advisor trades by pivot levels, support and resistance levels based on pivot levels. Also expert advisor takes into account volatility filter, uses standard Martingale and anti-Martingale systems, drawdown protection, standard trailing stop, trading time and trading Trade Order   – direction of trading (only buy, only sell or buy and sell) Use Volatility Filter   – enabling/disabling of volatility filter using Volatility Filter   – value of volatility filter Count Of Days For Volatility F
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:
Gold Catalyst EA MT5
Malek Ammar Mohammad Alahmer
高度な自動化ゴールド・トレーディングシステム Gold Catalyst EA MT5 は、 XAU/USD(ゴールド) に特化した 完全自動 のトレーディングソリューションです。 トレンド追随型の戦略 、 プライスアクションによるエントリー判断 、そして 動的なリスク管理 を組み合わせることで、実際の市場環境で2.5年以上にわたり継続的なフォワードテストが行われ、 安定かつ信頼性の高い パフォーマンスを示しています。現在も VPS 上で稼働し続けています。 このアルゴリズムの背後には 15年の市場経験を持つ科学者 がいます——観察、仮説、検証、実証。誇大広告ではなく、方法論です。EA は現在も継続的に開発・改良され続けています。 1. 戦略概要 Gold Catalyst EA MT5 は、以下の要素を組み込んだ システマチック なアプローチを採用しています: トレンド分析: あらかじめ定義された市場条件に基づき、有望な売買機会を特定。 プライスアクションのフィルタリング: 成功確率の低いシグナルを排除し、勝率の高いセットアップのみを実行。 ダイナミックなオーダー執行: リアルタイム
Quantum Candlestick Collider — Institutional-Grade Precision for XAUUSD Quantum Candlestick Collider is a next-generation automated trading system engineered specifically for XAUUSD (Gold) on the M15 timeframe. Built on a proprietary quantitative engine and advanced candlestick intelligence, this EA delivers exceptional entry precision, adaptive market awareness, and institutional-level risk control — designed to perform even under extreme market volatility. Real trading environment Transpa
GOLD GRABBER Israel L. MT5 Grid-Hedge EA. WARNING: EA has Optimised  sets for GOLD (XAUUSD) ONLY (Minimum Capital: $1000) Download sets below: Use these sets for XAUUSD:  https://drive.google.com/drive/folders/1FBfc-eE7B7APhZ-P754R76d3xih8OnXX?usp=sharing Professional Grid-Hedge Trading System with Advanced Risk Management This sophisticated Expert Advisor employs a dual-directional grid strategy designed for consistent performance in volatile markets. The system opens positions in both directi
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
Launch offer. The price rises step by step as the number of sales grows. Every purchase includes all future updates through MQL5 Market. Mercaria Unicorn is an adaptive grid trading system for Gold (XAUUSD) on MetaTrader 5, developed by practicing traders for all experience levels. Overview Mercaria Unicorn is an adaptive trading system for Gold (XAUUSD) and other CFD instruments. Unlike standard grid robots with fixed parameters, it automatically adjusts the number of levels, the lot size, and
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
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
Snake EURUSD Real EA is a fully automatic Forex Trading Expert Advisor. The robot can run on any pair, but the results are better on EURUSD M15. The system can run with any broker that also provides Floating Spread. Advantages The EA does not use systems like martingale, hedging, etc. The EA uses SL and Trailing Stop to make a profit. In addition, you can also set TP (EURUSD at 93 for me). Best test results with 99.0% in the backtest. It is not necessary to close the EA during the press release
Benefit EA Uses only hedging accounts.     Benefit EA is a non-indicative flexible grid adviser with special entry points that provide a statistical advantage, revealed through the mathematical modeling of market patterns. The EA does not use stop loss. All trades are closed by take profit or trailing stop. It is possible to plan the lot increments. The "Time Filter" function is set according to the internal time of the terminal as per the displayed time of the instrument's server, not the oper
フィルタ:
レビューなし
レビューに返信