VIX Engine EA

VIX Engine EA は、基本的な黄金律に基づいています。すべての取引は、完全に想定された取引です。 ストップロスがない場合、損失は確定せず、ポジションは均衡点(ゼロポイント)に戻るまで保持されます。

アドバイザー(EA)は、 VIXボラティリティ指数および一定の価格範囲内で取引されるあらゆる金融商品の取引に特化して設計されています。ゼロポイントコンセプトに基づく厳格な資金管理と、設定可能な価格水準(下限と上限)によって枠付けられた、自動化されたインテリジェントな自己適応型買いグリッドに依存しています。

また、独自の高可用性( HA)システムを統合しており、複数のサーバーをマスター/スレーブモードで動作させることで、ハードウェア障害やインターネット障害が発生した場合でも取引の継続性を確保します。

推奨外部パラメータ:資本金10,000 € - InpTradingTimeframe=PERIOD_M1 InpPointZero=9.0 - InpLotMode=LOT_AUTO - InpMinGridStepPips=500 - InpMinRangePips=4000 - InpHardFloor=12 - InpHardCeiling=28 - InpPriceSource=PRICE_SOURCE_MANUAL - InpTPPerTradePips=500 -バックテストを高速化するには、 InpShowDebug (InpShowDebug=false)

動作原理自己適応型グリッド

の中核は、フロア(ハードフロア)とシーリング(ハードシーリング)価格の間で一定間隔で自動的に発注される成行買い注文のグリッドです。このゾーン外では取引は一切実行されません。価格がゾーンから外れた場合でも、テイクプロフィット注文は通常通り機能しますが、価格がゾーンに戻るまで新たな買い注文はブロックされます。このアプローチにより、不利な価格でポジションが積み上がるのを防ぎ、資金を保護します。

2つの取引間の距離は固定されていません。CalculateAutoStep関数によって各ティックごとに動的に計算されます。この関数は、残りの資金で実行可能な取引の最大数をシミュレートし、その数で価格帯を割ります。結果として得られるグリッドステップは常に設定された最小値(InpMinGridStepPips)以上となり、利用可能な資金に見合ったグリッド密度が確保されます。

資本管理と保護ゼロポイント

新規エントリーごとにセキュリティチェック( CheckSecurityRequirement )が実施され、すべての未決済ポジションの累積リスクと新規ポジションのリスクの合計が計算されます。このリスクは、各取引の開始価格とゼロポイント( InpPointZero)の差に、取引量と1ポイントの金額を乗じて算出されます。この累積リスクが割り当てられた資本を下回っている限り、エントリーは承認されます。参照資本は、実際の口座残高、または設定済みの固定資本( InpCapitalFixe )のいずれかであり、定期的な利益の引き出しをシミュレーションできます。

3つのバッチ管理方法

FIXED_LOT 各取引のロットサイズは同一かつ一定で、 InpLotSizeで定義されます。これは最もシンプルで予測しやすいモードです。

プログレッシブ・ロット最適なロットサイズは、 InpLotIncrement の増分で再計算されます。EA は、ロットサイズを段階的に増やしながらテストを行い、設定されたエリア内のグリッド全体への資金供給を可能にする最大のロットサイズを選択します。このモードでは、資本の増加に伴ってエクスポージャーが自動的に増加します。

LOT_AUTO プログレッシブ方式の連続型バリエーション:最適なロットサイズは、段階的な増分(0.1ロット単位)なしで計算され、任意の時点で資金調達可能な真の最大値を目指します。これは、資本利用の観点から最も積極的な方法です。

取引ゾーンの価格情報源は5つあります。

取引ゾーン(下限/上限)は、 InpPriceSourceを介して選択可能な5 つの異なる方法で定義できます。

PRICE_SOURCE_MANUAL — HardFloorHardCeilingレベルは手動で入力します。これはデフォルトモードで、過去のゾーンがよくわかっているVIX(例:1228 )に最適です。

PRICE_SOURCE_MEDIAN_BOTH 下限と上限は、設定された期間における直近 N 個の最低価格と N 個の最高価格の中央値として動的に計算されます。この範囲は、変化する市場状況に自動的に適応します。

PRICE_SOURCE_MEDIAN_MAX_MANUAL_MIN 上限は動的な中央値を使用して計算され、下限は手動で入力されます。これは、固定の安全下限を維持しながら、エリアの上部を調整できるようにするのに役立ちます。

PRICE_SOURCE_MANUAL_MAX_MEDIAN_MIN 前のものと逆です。天井は手動、床は中央値です。保護天井を固定しつつ、エリアの下部を適応させるのに最適です。

PRICE_SOURCE_CENTERED_ON_PRICE このゾーンは、現在の価格を中心に、 InpMinRangePipsで定義された半範囲で動的に設定されます。ゾーンは価格に継続的に追従し、常にHardFloorHardCeilingのガードレールによって囲まれます。

動的中央値の計算

中央値は、`CalculateMedianValue` 関数を使用して計算されます。この関数は、InpMedian_Timeframe 内の最新の InpMedian_HighBars InpMedian_LowBars を収集し、値をソートして、統計的な中央値(平均値とは異なり、極端な値の影響を受けにくい) を返します。パーセンテージオフセット (`InpMedian_HighOffsetPct` / `InpMedian_LowOffsetPct`) を適用して、計算範囲を広げたり狭めたりできます。中央値の履歴は、色付きのトレンドラインとしてグラフ ( ` InpShowDebugHistory`) に直接プロットできます。

最小射程距離と強制ゾーン

床と天井の間の自然な距離が設定されたInpMinRangePipsより小さい場合、GetEffectiveRange 関数は現在の価格を中心とした最小範囲を自動的に強制します。この強制された範囲は厳格なガードレールによって制限され、矛盾した設定を防ぎます。このメカニズムにより、常に少なくとも数個のグリッドレベルを配置するのに十分な範囲が確保されます。

2つの出口モード(利益確定)

MODE_NONE —個別テイクプロフィット:各ポジションは、価格が個別のテイクプロフィットレベル(InpTPPerTradePipsを実価格に換算したもの)に達するとすぐに個別に決済されます。これは最も反応性の高いモードで、 VIXの上昇に伴ってポジションごとに利益を積み上げます。

累積モード累積利益確定:個々のポジションは決済されません。エキスパートアドバイザー(EA)は、すべてのオープンポジションの浮動ピップの合計を監視します。この合計がInpTPPerTradePips(ポジション数を考慮した値)に達すると、CloseAllPositionsによってすべてのポジションが同時に決済されます。このモードでは、ポートフォリオ全体が十分に利益を生むまで待ってから決済することで、全体の利益を最大化します。

高可用性( HA )システム-マスター/スレーブ

VIX Auto EAの最も高度な機能です。複数のサーバー間で自動フェイルオーバーシステムが実行され、障害が発生した場合でも一度に1つのEAのみが取引を行うように設計されています。最大4つのサーバーをTailscale IDIPアドレスで構成できます。OVHでホストされているPHPサーバー(InpHA_OVH_BaseURL)が中央レジストリとして機能します。各サーバーは定期的にハートビート( InpHA_HeartbeatSec)を送信し、レジストリを参照して、どのサーバーが最も優先度が高く、かつ稼働中であるかを判断します(HA_GetHighestPriorityAlive)。現在のマスターがInpHA_TimeoutSec秒間応答しない場合、優先度の次のサーバーが自動的にマスターとして引き継ぎます( HA_WriteMaster) 。現在のマスタートレーダーがインターネット接続を失った場合、セキュリティ上の理由から自動的にスレーブモードに切り替わり、二重取引を防ぎます。HA(マスター/スレーブ/インターネット接続喪失)ステータスは、グラフィカルダッシュボードにリアルタイムで表示されます。

フルグラフィックダッシュボード

設定可能な情報パネル(色、フォントサイズ、位置、幅、自動または固定の高さ)には、資産とマジックナンバー、ブローカーの時間とスプレッド、オープンポジション数と長期の損益分岐点、動的な緑/赤の色分けによる 7 期間(前月、当月、14 日、7 日、昨日、今日、変動)の損益、HA ステータス、アクティブな取引ゾーン(最小/最大)、口座のレバレッジ、現在のロットサイズとモード、最後に各オープンポジションのゼロポイントまでの詳細な取引ごとのコストが表示されます。チャートには、アクティブな天井(黄色)、アクティブな底値(シアン)、次の買いレベル(オレンジレッド)、ゼロポイント(紫)、上部ガードレール(オレンジ)、下部ガードレール(オレンジ)の6 つの水平線が描画されます。

月次レポートとOnTesterスコア

各バックテストの終了時に、InpReportMonthlyが有効になっている場合、エキスパートアドバイザー(EA)は、フランス語の月名を含む、時系列順に並べられた完全な月次損益レポートを生成します。OnTester関数は、初期資本に対する純利益率をパーセンテージで返します。この純利益率は、 MetaTrader 5オプティマイザの選択基準として直接使用できます。

主要なパラメータの概要

設定

役割

床面埋め込み/天井埋め込み

固定取引ゾーン(例: VIX指数の場合1228

InpPointZero

リスクを計算するための基準価格

固定資本投資

り当てられた資本( 0=実際の口座残高)

入力ロットモード

固定/プログレッシブ/自動

InpMinGridStepPips

2つの取引間の最小距離

InpPriceSource

レベルの算出方法(手動/中央値/中心値)

InpExitMode

個人または累積的な実習

InpTPPerTradePips

取引ごとの目標利益(または累積利益)

InpHA_有効

マスター/スレーブシステムの起動


互換性と推奨事項

VIX Auto EAVIXCBOEボラティリティ指数)に最適化されていますが、価格帯が限定され予測可能なあらゆる銘柄で動作します。EAはエントリー前にHardFloorHardCeilingの間の計算されたグリッド全体をカバーできるだけの十分な資金を持つトレーダーに推奨されます。HAシステムには、アクセス可能なPHPサーバー(OVHまたは同等のもの)とマシン間のTailscale接続が必要です。MetaTrader 5およびすべてのブローカーと互換性があります。


おすすめのプロダクト
The Bitcoin Reaper
Profalgo Limited
3.71 (34)
発売プロモーション: 現在の価格で入手できるコピーの数はごく限られています。 最終価格: 999ドル 新規 (349 ドルから) --> 1 EA を無料で入手 (取引口座番号 2 つ)。 究極のコンボディール   ->   こちらをクリック 公開グループに参加する: ここをクリック   LIVE SIGNAL LIVE SIGNAL V2.0 UPDATE 2.0 INFO BITCOIN REAPER へようこそ!   Gold Reaper が大成功を収めた後、同じ勝利の原則を Bitcoin 市場に適用する時が来たと判断しました。そして、それは非常に有望に見えます!   私はこれまで 20 年以上にわたってトレーディング システムを開発してきましたが、私の専門分野は「断然」ブレイクアウト戦略です。 このシンプルながらも効果的な戦略は、常に最高の取引戦略の上位にランクインしており、基本的にあらゆる市場に適用できます。     特にビットコインのような変動の激しい市場では、真価を発揮します。   それで、この戦略はどのように機能するのでしょうか? ブレイクアウト戦略は、重要なサ
BFG 9000 is a unique system that trades your account 100% hands-free with   live-proven algorithms . Validated in live trading for 12 months. No Grid, no Martingale. The craziest part is however the ability to   manage your own trade decisions . The built-in AI takes your trades and manages them into profit. Safe Haven BFG includes a very stable algorithm that runs on 100% autopilot. It does not use Grid and no Martingale - thus you can be very sure, that it won't destroy your account. The syst
BTC Master Pro
Farzad Saadatinia
4.58 (12)
BTC Master Pro — 規律あるビットコイントレードのための信頼できるパートナー。 最新バージョンでは OpenAI の人工知能 を統合し、高ボラティリティな暗号資産市場において、より高度な執行判断と取引フィルタリングを実現します。 本プロフェッショナル向けエキスパートアドバイザーは、 MetaTrader 5 上での Bitcoin(BTCUSD) 取引専用に設計されており、構造化された執行ロジック、エクスポージャー管理、そして高度なリスクマネジメントに重点を置いています。 価格: $499  →  次段階: $699  →  最終価格: $999 LIVE SIGNAL HERE OpenAI搭載・執行フィルター 最新バージョンでは OpenAI 技術を活用し、リアルタイムで市場環境を分析し、質の低いエントリーや不利なセットアップをフィルタリングします。 AIセーフティレイヤー: AIモジュールは取引実行前の第二承認レイヤーとして機能します。これは予測ツールではなく、あくまで執行フィルターとして設計されています。すべての取引は構造化ロジックとインテリジェントな検証プ
Gifted FX
Michael Prescott Burney
Giftex FX Portfolio for GBPUSD H1 Giftex FX Portfolio is a professional MetaTrader 5 Expert Advisor for GBPUSD on the H1 timeframe, running on the Expert Advisor HQ universal portfolio framework. It is designed for structured automated trading on GBPUSD H1, with clear on-chart feedback for entries, exits, protections, and live performance so you can see how the EA is operating in real time. Overview Giftex FX Portfolio combines its portfolio-style strategy logic for GBPUSD with the Expert Adviso
FREE
PythonX Grid Pro - Intelligent Gold Grid Trading System LIMITED-TIME OFFER: $29,999 → $2,999 | Save $27,000 Before the Price Returns to Normal Overview XAU Grid Pro is a fully automated Expert Advisor designed specifically for XAUUSD (Gold) trading. The EA combines a structured breakout grid with advanced basket management, dynamic risk controls, and automated protection mechanisms to capitalize on gold's strong directional movements while maintaining strict trade management. Built for traders
「 Professional Manager Trader 」をご紹介します。- トレーディング体験を向上させるために設計された強力なツールです。熟練したフルタイムトレーダーの専門知識に基づいて開発され、このトレーディングインターフェースは効果的に取引と資本を管理します。その戦略はブレイクアウトに基づいており、個別に開発された確認指標を組み込んでいます。これらは成功の実績を持っています。 リスクと資金管理に重点を置いた「 Professional Manager Trader 」は、成功するトレーディングの鍵を握っています。それは抜群のリスク管理と厳格なポジションサイズを持ちながら、予測できない外国為替市場を航海し、資本を守り、下降リスクを制限します。 当社の革新的なトレーディングインターフェースは市場サイクルに先んじており、金融市場の絶え間ない変化にシームレスに適応します。幅広い研究と高度なアルゴリズム分析によって作成されたこのインターフェースは、信頼性のあるトレーディングソリューションを提供します。 パフォーマンスを示すために、私たちはトレーディングインターフェースが数ヶ月間成功
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
Volatility 75 Pro Auto (.setファイルについてはお問い合わせください) Deriv シンセティックインデックス向けプロフェッショナル Grid + Trend EA Volatility 75 Pro Auto(V75 Pro)は、MetaTrader 5上で**Deriv シンセティックインデックス専用に設計されたプロフェッショナルEA(Expert Advisor)**です。 従来のグリッドシステムがポジションの平均化のみに依存するのに対し、V75 Proはトレンド分析・マルチタイムフレーム確認・複数のテクニカル指標を組み合わせ、質の低いエントリーシグナルを事前にフィルタリングします。 本EAは、従来のStop Loss(損切り)や Take Profit(利確)に依存しない、構造化されたGrid + Trend手法を採用しています。固定価格で決済するのではなく、複数の条件に基づいて動的にポジション管理を行います。 対応する80以上のシンセティックインデックスをサポートしており、複数銘柄への分散トレードが可能です。 各銘柄には最適化された**.SETファ
Introducing to your attention an innovative expert advisor created specifically for the most juicy and volatility  currency   basket: GBPUSD, XAUUSD and EURJPY. This EA is designed using the main features of this market's movement, making it an ideal choice for dynamic trading on high-trending and medium-volatile pairs. The advisor is focused on minimizing trading risks, aiming to reduce losses to a minimum. Main features: EA is designed to open and close orders at the begginning of trading ses
Gold Crazy EA   is an Expert Advisor designed specifically for trading Gold H1/ EU M15. It use some indicators to find the good Entry. And you can set SL or you can DCA if you want. It can be an Scalping or an Grid/ Martingale depend yours setting. This EA can Auto lot by Balance, set risk per trade. You also can set TP/ SL for earch trade or for basket of trade. - RSI_PERIOD - if = -1, then the default strategy works, if >0, then the RSI strategy works - MAX_ORDERS - to trade with only 1 order,
Goal Pilot
Pablo Eugenio Licon Nenclares
Goal Pilot MT5 Overview Goal Pilot is a professional Expert Advisor (EA) for MetaTrader 5 designed to help traders pursue a predefined income target while applying disciplined risk management. Unlike traditional Expert Advisors that focus solely on generating trading signals, Income Trading Bot combines automated trade execution with capital management, risk control, and progress tracking toward a user-defined financial objective. The EA continuously monitors market conditions, evaluates trading
Introducing to your attention an innovative expert advisor created specifically for the most juicy and volatility    currency     basket: GBPUSD, XAUUSD and EURJPY. This system is designed using the main features of this market's movement, making it an ideal choice for dynamic trading on high-trending and medium-volatile pairs.   The signals are focused on minimizing trading risks, aiming to reduce losses to a minimum. Main features ESignals is designed to show open and close arrows at the beg
The Gold Phantom
Profalgo Limited
4.7 (43)
プロップファーム準備完了! --> すべてのセットファイルをダウンロード 警告: 現在の価格では残りわずかです! 最終価格: 990ドル 新着(399ドルから) :EAを1つ無料でお選びください!(取引口座番号は2つまで、UBSを除く私のEAのいずれか) 究極のコンボディール   ->   こちらをクリック 公開グループに参加する: ここをクリック   ライブシグナル ライブシグナル2 !! ゴールドファントム登場!! The Gold Reaper の大成功に続き、その強力な兄弟機、 The Gold Phantom を ご紹介できることを大変誇りに思います。これは、同じ実戦テスト済みのエンジンをベースに構築された、純粋で無駄のないブレイクアウト システムですが、まったく新しい一連の戦略が盛り込まれています。 The Gold Reaper の非常に成功した基盤の上に構築された The Gold Phantom は 、 自動化された金取引をスムーズに実行します。 このEAは複数の時間枠で同時に動作するように設計されており、取引頻度を完全に制御できます。 非常に保守的な設定
The Infinity EA MT5
Abhimanyu Hans
3.69 (61)
ChatGPT TurboによるAI駆動テクノロジー Infinity EA は、GBPUSD、XAUUSD、AUDCAD 向けに設計された高度なトレーディング エキスパート アドバイザーです。安全性、一貫したリターン、無限の収益性に重点を置いています。マーチンゲールやグリッド トレーディングなどの高リスク戦略に依存する他の多くの EA とは異なり、Infinity EA は、機械学習に組み込まれたニューラル ネットワーク、ChatGPT の最新バージョンによって提供されるデータ分析 AI ベースのテクノロジーに基づく、規律ある収益性の高いスキャルピング戦略を採用し、全体的なトレーディング エクスペリエンスを卓越したものにします。 7,000 人を超えるメンバーが参加する MQL5 コミュニティ に参加して、他のトレーダーとつながりましょう。最新の製品アップデート、ヒント、独占コンテンツを常に入手しましょう。 MT4バージョン Infinity EAの設定方法 特徴 Infinity EA は AI 主導のスキャルピング戦略を活用します。 EA はリアルタイムのデータ分析のために C
Xauusd PropFirm
Cristiano Rodrigo Olegini
FTMO Challenge・Funded口座・自己資金運用向けに開発 Velas Forex は、 FTMO Challenge 、その他の Prop Firm 、 Funded口座 、または 自己資金 で取引を行うトレーダーのために開発されました。安定した運用と規律あるトレードを重視する方に最適です。 本EAのリスク管理システムは、資金の安定した成長を目指しながら、口座資金の保全を最優先とし、トレーダーが設定したリスク制限を遵守するよう設計されています。 最適な用途 FTMO Challenge(すべての口座サイズに対応) その他の Prop Firm Funded口座 自己資金での運用 MetaTrader 5 本EAは あらゆるFTMO Challenge に対応しており、口座サイズ(10,000 USD、25,000 USD、50,000 USD、100,000 USD、200,000 USD以上)に合わせて設定を変更するだけで利用できます。 柔軟なリスク管理システムにより、各Prop Firmのルールや、ご自身の投資戦略に合わせてリスクパラメータを調整で
Golden Tree
Arthur Hatchiguian
4.11 (18)
Golden Tree は Gold (XAUUSD) M1 向けに設計された、積極的な マルチサイクル スキャルパーです。 各サイクルは 独立 しています。一連の注文を使用し、それぞれ独自の TP と SL を持ちます。 マーチンゲール 方式を採用しています。 この EA は過去の 強い再現性 を利用してポジションを取り、 高い勝率 を目指します。 開始する前に ブログ記事 を読むことが非常に重要です。 最低 入金額は、レバレッジ 1:500 で 100 ドル です。 オートロット システムが 搭載 されています。 低スプレッド で 高速な VPS の 1:500 ECN 口座を推奨します。 この EA が正しく動作するには、チャートごとに最低 1000 MB(1 GB)の空きメモリが必要です。 このバージョンでは、オプションの インタラクティブパネル 、 ForexFactory ベースのニュースフィルター 、 FTMO プロップファームモード (日次損失、最大損失、ニュース停止)を追加しました。すべてオプションで、デフォルトは無効です。 セットアップと設定ファイル: https
Market Maestro: Your Ideal Partner for Automated Forex Trading If you're looking for a reliable assistant for trading in the currency market, Market Maestro is exactly what you need. This modern Forex bot is built using the latest technologies and algorithms, allowing it to effectively analyze market data and make informed trading decisions in real-time. Key Features of Market Maestro 1. Multicurrency Capability for Broad Opportunities Market Maestro can work with a wide range of currency pairs,
Manyal trading system, CovEchoTrend Robot, focuses on reliability and flexibility. By employing statistical analysis methods to study the relationships between the base indicator and market patterns, the system enables a deeper understanding of market processes. Intelligent pattern analysis: The application of statistical data processing helps identify key trend reversal points more accurately, signaling significant market shifts. Informed decision-making is based on the intersection of indicato
Trade Extender
Loncey Duwarkah
5 (1)
Autonomously executes trades, overseeing the entire process from initiation to completion.  Free support via chat, email and remote assistance Originally built for XAUUSD (Gold). Settings changes for other symbols Powerful rules management Enhanced positioning features Risk Management / Dynamic lot sizing Quick Setup Symbols : XAUUSD Investment for all: Our trading bot is crafted to serve traders of all investment levels, ensuring accessibility to the forex market even for those with limited fu
Viking Alpha DAX Ivar Edition
Valdeci Carlos Dos Passos Albuquerque
Viking Alpha DAX — Germany 40 Expert Advisor for MetaTrader 5 LAUNCH PROMO Only 10 copies at launch price. Price increases with each sale. Launch price: $297 Next price: $497 Final price: $997 Live Performance: FX Blue — Vikingtradingbots What Makes Viking Alpha DAX Different Most DAX robots fail for one simple reason: they treat the Germany 40 like a forex pair. It isn't. The DAX has a heartbeat — a specific rhythm tied to the Frankfurt Stock Exchange opening, the European session structure, an
Sonic R Pro Enhanced EA - バージョン 2025 249ドル - 最初の5名様限定! ライブシグナル Sonic R Pro Enhancedのライブパフォーマンスを確認: トレード戦略 Sonic R Pro Enhancedは、Dragon Band (EMA 34とEMA 89) を基にした自動トレード戦略の改良版であり、先進的なアルゴリズムを搭載しています。 タイムフレーム: M15, M30 対応通貨ペア: XAUUSD, BTCUSD, AUDJPY, USDJPY トレードスタイル: スイングトレード - リトレースメント & 逆張り 最低資金: 500 USD レバレッジ: 1:200 以上 ユーザーガイド Sonic R Pro Enhancedはシンプルさを追求しています。設定するのは1つのパラメータ: RiskAmount のみです。 RiskAmount < 0 の場合:口座残高のパーセンテージでリスクを計算 RiskAmount > 0 の場合:1回のトレードあたりの固定リスク金額 (USD) 例: RiskA
Deep Trend Pro
Ignacio Agustin Mene Franco
DEEP TREND X — Expert Advisor with Artificial Intelligence for XAUUSD Deep Trend X is a 100% automated Expert Advisor, specifically designed for trading Gold (XAUUSD). It combines cutting-edge machine learning algorithms with institutional market analysis to detect highly accurate entries in both trending and ranging markets. ARTIFICIAL INTELLIGENCE CORE The EA's core engine integrates two AI models that self-train on each new candlestick: SVM RBF (Support Vector Machine with Radial Kern
Stormer RSI 2
Ricardo Rodrigues Lucca
This strategy was learned from Stormer to be used on B3. Basically, 15 minutes before closing the market, it will check RSI and decided if it will open an position. This strategy do not define a stop loss. If the take profit reach the entry price it will close at market the position. The same happens if the maximal number of days is reached. It is created to brazilian people, so all configuration are in portuguese. Sorry Activations allowed have been set to 50.
Psar Gold Matrix
Ignacio Agustin Mene Franco
PSAR VOLUME MATRIX — Expert Advisor for XAUUSD PSAR VOLUME MATRIX is a scalping Expert Advisor designed exclusively for the XAU/USD (Gold) pair. It combines two of the most reliable indicators in technical analysis—the Parabolic SAR and Tick Volume—to precisely filter entries and trade only when the market presents favorable trend and liquidity conditions. The system works with pending grid stop orders, placing staggered entry levels above and below the current price. Each trade has a fixed s
Expert. Automatic and manual trading. Ready-made trading system based on Elliott waves and Fibonacci retracement levels . It is simple and affordable. Display of the marking of Elliott waves (main or alternative option) on the chart. Construction of horizontal levels, support and resistance lines, a channel. Superposition of Fibonacci levels on waves 1, 3, 5, A Alert system (on-screen, E-Mail, Push notifications).    visual panel for opening orders in manual trading. visual panel for setting up
次は、日本語への正確な翻訳です。 統計的エッジ・トレーディングの8つの柱 はじめに トレードにおいて、過去が未来を予測することはありません。しかし、時間に刻まれたパターンは、繰り返される時を待つ市場のリズムを明らかにします。このガイドでは、「統計的エッジ・トレーディングの8つの柱」を紹介します。これは、過去のデータを実行可能なトレード・インテリジェンスへと変換する包括的なフレームワークです。 このシステムの核となるのは「ヒストリカル・データ(過去のデータ)」です。一過性のインジケーターや遅行シグナルとは異なり、過去のパターンは金融市場の季節的な鼓動を明らかにします。それは、人間の商取引、機関投資家の行動、そして経済的必然性という不変のサイクルに影響され、数十年にわたって繰り返されてきたパターンです。 農家を例に考えてみましょう。彼らは収穫の時期を知っています。なぜなら、自然は太陽と降雨の予測可能なサイクルに従っているからです。金融市場も同じように機能します。決算報告、財政予算、ポートフォリオのリバランスなどが、価格変動に季節的なパターンを生み出します。これが、グローバル市場を流れる資金
Ksm: Smart Solution for Automated Forex Trading Ksm is a tool designed for automating Forex trading, using modern methods of time-series data analysis to work with multiple currency pairs across different timeframes. Key Features and Benefits Multi-currency support : Ksm enables trading across multiple currency pairs, helping traders adapt their strategies to various market conditions. New currency pairs can be easily added. Time-series data analysis : Utilizing advanced algorithms, Ksm analyzes
RSI Cortex Ai
Michael Prescott Burney
RSI Cortex AI for MT5 RSI Cortex AI is a MetaTrader 5 indicator designed to help traders analyze momentum using a multi-factor ranking model instead of relying only on a fixed RSI threshold approach. It combines momentum features, directional ranking, confidence scoring, and adaptive filtering into a clean TradingView-style workspace for chart-based analysis. What the indicator does RSI Cortex AI evaluates momentum using a broader feature set than a standard RSI line. It is designed to help trad
FREE
AurumEdge Pro — 8-Strategy Gold Intelligence System for XAUUSD AurumEdge Pro is a fully automated Expert Advisor for XAUUSD (Gold) that combines 8 independent breakout strategies into a single intelligent system. Each strategy targets a different market condition — daily S/R levels, session openings, pivot points, multi-timeframe trend confluences — targeting different market structures across sessions. Backtest Results (Strategy Tester) — 01/01/2026 to 24/02/2026 (55 Days) Win Rate: 89.5% on 1,
Gold Precision Pro IMPORTANT NOTICE: DYNAMIC PRICING To maintain the algorithm's exclusivity and prevent strategy saturation in the market, the lifetime license price will be automatically adjusted (increased) every 10 sales. Secure your license now at the current price. Gold Precision Pro is an institutional-grade algorithmic trading system designed exclusively to capture high-probability movements in the Gold market (XAUUSD). Unlike 90% of the robots available on the market, this Expert
このプロダクトを購入した人は以下も購入しています
Syna
William Brandon Autry
5 (27)
Syna 5 – 永続的インテリジェンス。真の記憶。ユニバーサル・トレーディング・インテリジェンス。 ほとんどのAIツールは一度回答すると、すべてを忘れます。何度も何度もゼロからやり直すことになります。 Syna 5は違います。 すべての会話、分析したすべてのトレード、なぜエントリーしたか、なぜ見送ったか、そしてその後マーケットがどう反応したかを記憶しています。毎セッションの完全なコンテキスト。トレードを重ねるごとに蓄積されるインテリジェンス。 これはマーケティングのためにAI機能を付け足しただけのEAではありません。 これは、インテリジェンスがリセットを止め蓄積を始めた時のトレーディングの姿です。 私たちは2024年末にMean Machineでこの変革を始めました。リアルな最先端AIをライブのリテールトレーディングに導入した最初期のシステムの一つです。 Syna 5は次なる飛躍です。 従来のEAは静的です。固定されたロジックに従い、マーケットが変化すると取り残されます。 Syna 5は時間とともにインテリジェンスを蓄積します。実際の結果から学び、変化する状況を認識し、思考と応答の
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
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
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.
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 には、完全な統計制御による統計収集およびスリッページ制御のアルゴリズムが含まれています。 この情報はブローカーのトリックか
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の主力は、機械学習アルゴリズムの活用にあります。これらのアルゴリズムは膨大な量の歴史的な市場データを分析し、パターン、トレ
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
Gold Catalyst EA MT5
Malek Ammar Mohammad Alahmer
高度な自動化ゴールド・トレーディングシステム Gold Catalyst EA MT5 は、 XAU/USD(ゴールド) に特化した 完全自動 のトレーディングソリューションです。 トレンド追随型の戦略 、 プライスアクションによるエントリー判断 、そして 動的なリスク管理 を組み合わせることで、実際の市場環境で1年以上にわたりテストされ、 安定かつ信頼性の高い パフォーマンスを示しています。 1. 戦略概要 Gold Catalyst EA MT5 は、以下の要素を組み込んだ システマチック なアプローチを採用しています: トレンド分析: あらかじめ定義された市場条件に基づき、有望な売買機会を特定。 プライスアクションのフィルタリング: 成功確率の低いシグナルを排除し、勝率の高いセットアップのみを実行。 ダイナミックなオーダー執行: リアルタイムでエントリー・エグジット水準を調整し、市場の変動を最大限に活用。 構造化されたリスクコントロール: すべてのポジションにストップロスとテイクプロフィットを設定し、 マーチンゲール、グリッド、アービトラージ は一切使用しません。 このシステムに
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:
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
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
Traders Toolbox Premium   はオールインワンツールです   それらの戦略と計算を自動化するために、一般的な取引戦略に関する広範なトレーニングに基づいて作成されました。   (Jason Kisoglooによって設計およびプログラムされました) 特徴: 19個々の信号 -これらの信号の それぞれ は、ニューラルネットワークスタイルの構成でバイアスされ、最終的な/全体的な結果を構成します。 各信号には独自の設定が あり 、必要に応じてカスタマイズまたは最適化できます。   包括的なオン - 画面 - ディスプレイ -包括的な情報とツールチップを備えた6つのスナップアウェイパネル。 (パネルの境界線をクリックして、折りたたんだり、離したりします...設定は機器ごとに自動的に保存されます):   信号パネル -バイアス情報と信号の詳細を含む信号分析を表示します。   ニュースパネル -アップ、さらにはニュース来 トン の に基づいて 予測 の イベントへのカウントダウンと現在の機器に影響を。 (内部M   T5 エコノミックカレンダーと 外国為替ファクトリースクレー
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
GOLD Strike AI – Precision Gold Trading Engine Designed for traders who understand that consistency beats hype, Gold Strike   AI is a professional-grade Expert Advisor built exclusively for XAUUSD (Gold). This system focuses on one objective: Deliver stable growth while strictly controlling risk exposure ⸻ Proven Performance Metrics 15+ Years Back tested (Tick Data) Win Rate: ~81% Profit Factor: ~2.1 Max Drawdown: ~18% Sharpe Ratio: ~2.4 Verified accounts available via M
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
XAU Dominator Pro – Precision Scalping for GOLD (XAUUSD) on M5 XAU Dominator Pro.mq5 is a high-performance Expert Advisor built specifically for XAUUSD (GOLD), optimized on the M5 timeframe for short-term scalping and trend-based trades. Engineered to dominate the gold market using precision entries and robust risk control, this EA is designed for consistent gains with discipline. Key Features ️ Symbol: XAUUSD / XAUUSDc Timeframe: M5 (5-minute) Trading Style: Scalping + Trend Acco
LLM Council Expert Trader – AI-Powered Multi-Agent Trading Expert Advisor for MT5 Delegate your trading decisions to a next-generation AI Council of Expert Traders designed for disciplined, semi-passive trading based on Smart Money Concepts (SMC) and Inner Circle Trader (ICT) methodology. LLM Council Expert Trader is an advanced Expert Advisor (EA) that replaces static indicators with real-time reasoning powered by Large Language Models such as Claude, GPT, Qwen — and now custom-adapted LLMs ru
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
#Multicurrency #Hedging #Martingale #28Symbols  @AUD @CAD @CHF @JPY @NZD @USD @EUR @GBP  In the globalisation process that the world economy has undergone in the last two decades, financial markets have played a leading role. The easy and fast access to information, together with the growing economic interdependence between the different commercial blocks, have caused more and more economic agents to participate in non-national financial markets. Even small investors, thanks to the Internet and
On Control EA MT5 V2 Game-Changing Software For The Forex Market  On Control EA was created to help traders like you maximize their income. How would you like to gain access to a world-class proprietary piece of software designed for one purpose, to improve your Forex strategy? Let’s be honest, it can be hard to understand which technical analysis & trading signals you should follow. With On Control EA, you now have a powerful tool that will enhance your Forex trading strategy & elevate your in
The adviser uses a strategy based on the use of 7 Envelopes  indicators, on each timeframe (M5, M15, M30, H1, H4) there are 7 Envelopes indicators. Trading is based on the “Price Action” strategy, the adviser searches for a simultaneous signal on 5 time frames: M5, M15, M30, H1, H4 and then opens an order. The EA uses the built-in Martingale and Averaging algorithm. The adviser uses economic news to achieve more accurate signals. Hidden Take Profit, Break Even and Trailing Stop are used. Attenti
MoneyMaker stableATM Lite is an automatic intelligent trading system for foreign exchange! Lite edition just support MetaTrader 5! The purpose of MoneyMaker stableATM Lite is to stabilize profits, not to give you the ability to get rich overnight! MoneyMaker stableATM Lite is only applicable to EUR / USD currency trading, and cannot be used for other currency exchange trading, other CFD product trading, and commodity tradingor futures commodity trading! MoneyMaker stableATM Lite is only suitabl
NorthEastWay MT5
PAVEL UDOVICHENKO
4.5 (8)
NorthEastWay MT5は完全自動の「プルバック」トレーディングシステムであり、特に人気の「プルバック」通貨ペア(AUDCAD、AUDNZD、NZDCAD)での取引に効果的です。このシステムは、外国為替市場の主要なパターンである、価格が急激に動いた後に元の位置に戻るという特性を活用しています。 タイムフレーム: M15 主要通貨ペア: AUDNZD、NZDCAD、AUDCAD 追加通貨ペア: EURUSD、USDCAD、GBPUSD、EURCAD、EURGBP、GBPCAD EA購入後、必ず私にプライベートメッセージを送ってください。プライベートグループに追加し、設定ファイルや詳細な説明を送付します。 EAのインストールや設定について、購入者全員をサポートします。 EAを初めて使う方には、使用方法を丁寧にお教えします。 EA設定: OneChartSetupを使用すれば、単一のチャート上で全ての通貨ペアを取引できます(M15タイムフレームのみ)。 このEAはスプレッド、スリッページ、またはブローカーに関連する他の変数に影響を受けません。 推奨される通貨ペアのみを使用してくだ
CAPITARC`s RSAS Expert Advisor for MT5   RSAS MT5   -is a professional expert advisor used by our investment firm it is based on price action and Relative Strength Index (RSI) indicator.  This product is with dynamic overbought and oversold levels that automatically adapts to the ever changing markets, while the standard MT5 RSI maintains levels static levels and do not change. This allows the expert to adapt to the ever-changing market without the need to constantly optimize, just make sure yo
作者のその他のプロダクト
MultiStrat Engine EA は、基本的な黄金律に基づいています。それは、開始されたすべての取引は完全に想定された取引であるということです。 ストップロスがない場合、損失は確定せず、ポジションは均衡点(ゼロポイント)に戻るまで保持されます。 あらゆる種類の金融商品(外国為替、株式、指数、商品)におけるポジション管理を完全に自動化するために設計されたエキスパートアドバイザー( EA )です。 28 種類以上の取引モード、動的なリスク管理、ブローカー手数料補償システム、比較バックテスト分析用のインタラクティブな HTML ダッシュボードを組み合わせた、非常に豊富なモジュール型アーキテクチャを採用しています。 一般建築 エキスパートアドバイザー( EA )は、買い側と売り側を明確に分離し、それぞれにトレーリングモード、時間枠、ロットサイズ、テイクプロフィット、ストップロス、注文間隔、動的挙動といった独立したパラメータを設定できる仕組みに基づいています。この二重構造により、トレーダーのニーズに応じて、非対称戦略と完全対称戦略を組み合わせることが可能です。 28 種類以上の取引方法
フィルタ:
レビューなし
レビューに返信