Nexus Quant Matrix

Nexus Quant Matrix MT5

Nexus Quant Matrix は、MetaTrader 5 向けにネイティブ設計された機関投資家水準の定量的計算・ストリーミング統計解析ライブラリです。クオンツ開発者、クオンツヘッジファンド、システマティックトレーダー向けに開発され、外部の DLL、Python、C++ 連携を一切使用せず、MQL5 の高速ランタイム環境内で直接高度な数値計算を実行します。

本ライブラリは O(1) の計算量を実現し、事前確保されたリングバッファ構造を採用することで動的メモリ再確保による遅延を完全に排除しています。適応型 1D カルマンフィルタ、ローリング・ピアソン相関係数、最小二乗法線形回帰 (OLS)、ファットテール分布に対応したコーニッシュ・フィッシャー VaR(バリュー・アット・リスク)、期待ショートフォール (CVaR)、および証拠金安全チェック付きケリー基準ロット計算エンジンを網羅しています。

主要アーキテクチャ

  1. ストリーミング統計モーメントエンジン (CStreamingStats) ローリングウィンドウでの移動平均、分散、標準偏差、歪度(Skewness)、尖度(Kurtosis)をリアルタイム計算。即座に Z スコア正規化を出力します。

  2. 適応型 1D カルマンフィルタ (CKalmanFilter1D) 状態空間モデルを用いた再帰フィルタにより、高頻度のマイクロストラクチャノイズやスプレッドの乱れから真の価格軌道を抽出。動的ノイズ共分散 (R) 調整機能を搭載。

  3. ローリング・ピアソン相関および OLS 回帰 (CRollingCorrelation) 取引銘柄とベンチマーク資産の間の相関をリアルタイム追跡。相関係数 (r)、決定係数 (R^2)、回帰スロープ (Beta)、標準誤差を算出。

  4. コーニッシュ・フィッシャー VaR & リスク指標 (CRiskMetrics) 90%、95%、99% 信頼水準のパラメトリック VaR、非正規分布補正済みコーニッシュ・フィッシャー VaR、CVaR、年率ヒストリカルボラティリティ (HV %) を提供。

  5. 機関基準ポジションサイジング (CPositionSizer) フル・ハーフ・クォーターケリー基準による最適資金配分。Article 2555 規則に基づき OrderCalcMargin() を用いて必要証拠金を事前照合し、Error 134 を防止。

  6. 統合マスターインターフェース & C言語互換エクスポート (CNexusQuantMatrix) Nexus_Quant_Matrix.mqh による OOP クラス構造と、Nexus_Quant_Matrix.ex5 内のエクスポート関数の両方をサポート。

  7. デモ用エキスパートアドバイザ (Demo_Nexus_Quant_Matrix) オブシディアンダークテーマの HUD テレメトリパネルを備え、最小化ドック機能を備えた実動デモ EA を同梱。

技術仕様

  • 対応プラットフォーム: MetaTrader 5 (MT5)
  • 製品種別: 開発者向けライブラリ / クオンツ数学エンジン
  • 提供形式: MQL5 オブジェクト指向クラス (.mqh) & コンパイル済みバイナリ (.ex5)
  • 外部依存関係: なし (100% ネイティブ MQL5、DLL 不使用)
  • MQL5 マーケット検証: 100% 合格 (エラー 0、警告 0)


Integration Example

#include <Nexus_Quant_Matrix.mqh>

CNexusQuantMatrix quant(100, 0.001, 0.05);

void OnTick()
{
   double price = SymbolInfoDouble(_Symbol, SYMBOL_BID);
   quant.ProcessPriceTick(price);

   double filtered_price = quant.GetKalmanEstimatedPrice();
   SQuantMoments moments = quant.GetCurrentMoments();
   SQuantRiskSummary risk = quant.GetRiskProfile(0.99);

   PrintFormat("Kalman: %.5f | Z-Score: %+.2f | VaR(99%%): %.4f",
               filtered_price, moments.z_score, risk.cornish_fisher_var);
}


おすすめのプロダクト
MQL5 EA向けに、開発者が主要な取引統計情報へ簡単にアクセスできるライブラリです。 ライブラリで利用可能なメソッド: アカウントデータと利益: GetAccountBalance() : 現在の口座残高を返します。 GetProfit() : 全取引の純利益を返します。 GetDeposit() : 入金の総額を返します。 GetWithdrawal() : 出金の総額を返します。 取引分析: GetProfitTrades() : 利益の出た取引数を返します。 GetLossTrades() : 損失の出た取引数を返します。 GetTotalTrades() : 実行された全取引数を返します。 GetShortTrades() : ショートポジションの取引数を返します。 GetLongTrades() : ロングポジションの取引数を返します。 GetWinLossRatio() : 勝ち取引と負け取引の比率を返します。 GetAverageProfitTrade() : 利益の出た取引1回あたりの平均利益を返します。 GetAverageLossTrade() : 損失の出た取引
SimpleLotCalculator
Itumeleng Mohlouwa Kgotso Tladi
SimpleLotCalculator: Professional Multi-Symbol Risk Manager Library Stop guessing your lot sizes and start trading with institutional precision. SimpleLotLogic is a high-performance MQL5 developer library designed to solve the number one problem for algorithmic and manual traders: Risk Management. Instead of writing complex math for every new EA, simply plug in this library to calculate the perfect lot size based on your account equity and stop-loss distance. Why Choose SimpleLotLogic? Precis
TradeGate
Alex Amuyunzu Raymond
TradeGate – Product Description / Brand Story “The gatekeeper for your trading success.” Overview: TradeGate is a professional MT5 validation and environment guard library designed for serious traders and EA developers who demand safety, reliability, and market-ready performance . In today’s fast-moving markets, even a small misconfiguration can cause EAs to fail initialization, skip trades, or be rejected by MQL5 Market. TradeGate acts as a smart gatekeeper , ensuring your EA only operates un
Cryptocurrency analysis has never been easier with Crypto Charts for MetaTrader 5. Now, trading on BitMEX has never been easier with BitMEX Trading API for MetaTrader 5. BitMEX Trading API library was built to be as easy to use as possible. Just include the library into your Expert Advisor or Script, call the corresponding methods and start trading! Features Trade on BitMEX and BitMEX Testnet. Build and automate your strategies. Concern more with the trading strategy logic and less with the co
Terminator Genisys
Itumeleng Mohlouwa Kgotso Tladi
TERMINATOR GENISYS HFT (High Frequency Trading - Ai Algorithm Robot) Extreme-design for EURUSD on the 5Min charts for max profit. (other pairs incluse GBPUSD, EURJPY and other pairs with similar time-frames ) Introducing the ' Terminator Genisys ' Expert Advisor   The   Terminator Genisys  expert advisor stands at the pinnacle of automated trading systems, designed to deliver great performance in today's dynamic financial markets. Developed by a team of experienced traders and algorithmic expe
This lightweight utility library provides essential functions for MQL5 developers to streamline and simplify expert advisor (EA) and indicator development. Whether you’re building trading algorithms or managing chart resources dynamically, this library offers clean and reusable building blocks to enhance your code quality and reduce repetition. Key Features Price Access Functions ASK(string symbol) – Get the current Ask price. BID(string symbol) – Get the current Bid price. Account Information
FREE
LSTM Library
Thalles Nascimento De Carvalho
LSTM Library - MetaTrader 5用高度神経ネットワーク アルゴリズム取引のためのプロフェッショナル神経ネットワークライブラリ LSTM Libraryは、MQL5の取引戦略にリカレントニューラルネットワークのパワーをもたらします。このプロフェッショナルレベルの実装には、通常は専門的な機械学習フレームワークでしか見られない高度な機能を備えたLSTM、BiLSTM、GRUネットワークが含まれています。 "トレーディングにおける機械学習の成功の秘訣は、適切なデータ処理にあります。 Garbage In, Garbage Out –予測の品質はトレーニングデータの品質を超えることはありません。" — マルコス・ロペス・デ・プラド博士, Advances in Financial Machine Learning 主な機能 LSTM、BiLSTM、GRUの完全実装 より良い一般化のためのリカレントドロップアウト 複数の最適化アルゴリズム(Adam、AdamW、RAdam) 高度な正規化テクニック 包括的な評価指標システム トレーニング進捗の可視化 クラス重みによる不均衡デー
Here   is   the   English translation   of   your   description   for   the EA   (Expert   Advisor): --- This   is a   time -based   automatic trading   EA . It allows   you   to   set the   exact   time   for trading , down   to   the   second , and   specify the   maximum number   of   orders . You   can choose   to   place   either   buy   or   sell   orders . It   is possible to   set take   profit and   stop   loss   points . Additionally , you can   specify   how   long after   placing  
Friends, join us! Ask questions and connect with like-minded traders: MetaCOT Public Group MetaCOT Information Channel: news, CFTC reports, and signals: MetaCOT Channel Here’s to successful trading and new profitable signals for us all! Attention! Recently, certain countries have been blocking access to the cftc.gov website. As a result, users in these countries are giving the product low ratings. MetaCOT has always adhered to the highest quality standards and is in no way associated with th
Binance Library
Hadil Mutaqin SE
5 (1)
The library is used to develop automatic trading on Binance Spot Market from MT5 platform. Support all order types: Limit, Market, StopLimit and StopMarket Support Testnet mode Automatically display the chart on the screen Usage: 1. Open MQL5 demo account 2. Download Header   file and EA sample   https://drive.google.com/uc?export=download&id=1kjUX7Hyy02EiwTLgVi8qdaCNvNzazjln Copy Binance.mqh to folder \MQL5\Include Copy  BinanceEA-Sample.mq5 to folder \MQL5\Experts 3. Allow WebRequest from MT5
Important: This product is a Library for developers . It is suitable only for users who can write/modify MQL5 code and integrate a compiled library into their own EA/Script. It is not a “drag & run” notifier. Telegram SDK helps you send Telegram messages and photos from MetaTrader 5 in a simple and reliable way. Use it when you want Telegram notifications inside your own automation tools. If you need the MetaTrader 4 version, it is available separately in the Market:   Telegram SDK M T4 . Main f
Introducing "TG Risk Service Manager" — your comprehensive toolkit for swift and precise risk management and lot size calculations in the dynamic world of trading. Designed to streamline development processes and enhance trading strategies, this indispensable library equips developers with essential tools for optimizing risk assessment and trade profitability. Metatrader4 Version |  All Products  |  Contact   Key Features: Efficient Lot Size Calculation : Harness the power of precise lot size c
TrendCore Adaptive FX — Smart Expert Advisor for Confident and Adaptive Forex Trading TrendCore Adaptive FX   is a powerful, fully automated trading robot designed for consistent performance in the Forex market. It combines trend-based technical analysis, adaptive lot management, and solid capital protection strategies to ensure robust and efficient trading under real market conditions. Whether you're a professional trader or a long-term investor, this EA offers an intelligent solution to a
Hello everyone! I am a professional MQL programmer , Making EAs, Indicators and Trading Tools for my clients all over the world. I build 3-7 programs every week but I seldomly sell any ready-made Robots. Because I am fastidious and good strategy is so few...  this EA is the only one so far I think its good enough to be published here.  As we all know, the Ichimoku indicator has become world popular for decades, but still, only few people knows the right way of using it, and if we check the clo
UZFX - Delete All Drawing and Objects on Chart Instantly は、アクティブなチャートからすべての描画オブジェクトを即座に削除するように設計された、シンプルかつ強力な MetaTrader 5 (MT5) スクリプトです。このスクリプトは、テクニカル分析の描画、トレンドライン、フィボナッチツール、テキストラベル、その他のオブジェクトを手動で1つずつ削除することなく、素早くチャートから消去する必要があるトレーダーに便利です。 特徴 アクティブチャート上の全てのオブジェクトと描画を削除。 一度の実行で即座に動作。 削除の成功と失敗の確認メッセージを表示。 トレーダーがより良い分析のために、クリーンで乱雑でないチャートを維持するのに役立ちます。 使用方法 すべてのオブジェクトを削除したいチャートにスクリプトをアタッチします。 スクリプトは自動的にすべてのオブジェクトをループして削除します。 オブジェクトの削除が完了すると、Expertsタブにメッセージが表示されます。 注:このスクリプトは、チャート上で実行されている未決済注文、イ
FREE
Automatic Replenishment Trading Within a Defined Range The EA operates   only within the predefined price range . When an order is   closed, filled, or cancelled   (reducing the total number of orders), the EA will   automatically place new orders   to maintain the continuous operation of the trading strategy. This EA is   designed for ranging / sideways market conditions . You can control the total number of orders using   Max Orders . Example: Max Orders:   8 Active trades:   2 Pending Sell L
Crypto_Forex MT5用インジケーター「HTFボリンジャーバンド」 - MT5用プロフェッショナルインジケーター「HTFボリンジャーバンド」でトレード手法をアップグレードしましょう。HTFとはHigher Time Frame(高時間枠)の略です。 - ボリンジャーバンドは市場で最も優れたインジケーターの一つであり、トレードに最適なツールです。 - 価格変動の約90%は2つのバンド間で発生します。 - HTFボリンジャーバンドインジケーターは、プライスアクションエントリーや他のインジケーターと組み合わせたマルチタイムフレームトレードシステムに最適です。 - このインジケーターを使用すると、高時間枠のボリンジャーバンドを現在のチャートに表示できます。 Click here to see high quality Trading Robots and Indicators! これはMQL5ウェブサイトでのみ提供されるオリジナル製品です。
Auto trading so strong mt5 trading script so rich and running amazing auto trading trades with so high quality performance and results Look that is the best trading script that will help you to make good results like in screenshots i built that strategy depend on Envelopes indicator to make that script trading in that area excellent scalping trades and gain maximum good results per trade so i built that strategy manually then I make it auto trading  so to start use that script add to scripts aft
Molo kumalo
James Ngunyi Githemo
Trading Forex with our platform offers several key advantages and features: Real-time Data : Stay updated with live market data to make informed decisions. User-Friendly Interface : Easy-to-navigate design for both beginners and experienced traders. Advanced Charting Tools : Visualize trends with interactive charts and technical indicators. Risk Management : Set stop-loss and take-profit levels to manage your risk. Multiple Currency Pairs : Access a wide range of forex pairs to diversify your tr
Automatic Replenishment Trading Within a Defined Range The EA operates only within the predefined price range . When an order is closed, filled, or cancelled (reducing the total number of orders), the EA will automatically place new orders to maintain the continuous operation of the trading strategy. This EA is designed for ranging / sideways market conditions . You can control the total number of orders using Max Orders . Example: Max Orders: 8 Active trades: 2 Pending Buy Limit orders: 6 In t
静的テキスト表示 は、MetaTrader 5用の軽量で使いやすいエキスパートアドバイザー(EA)で、トレーダーにインスピレーションを与え、教育するために、チャート上に直接モチベーションを高めるトレードのヒントを表示します。洗練された中央配置の黒い背景と等幅フォントの白いテキストで、このEAは簡潔で実際的なアドバイスをローテーションするチャンクで提供し、規律あるトレードに集中させます。初心者から経験豊富なトレーダーまで最適で、リスク管理、忍耐、戦略開発といった主要な原則を推進します。 主な機能: 動的ヒント表示 :ユーザーが定義したトレードのヒントを50~60文字の読みやすいチャンクに分割し、数秒ごとにローテーション(期間はカスタマイズ可能)。 プロフェッショナルなデザイン :チャートの中央上部に黒い背景でヒントを表示し、読みやすさと均等なパディングを保証。 レスポンシブな位置調整 :チャートのサイズ変更や切り替え時にテキストと背景の配置を自動調整。 カスタマイズ可能な設定 :フォントサイズ、テキストの色、背景の色、表示期間をお好みに合わせて調整可能。 オン/オフ切り替え :EAを削除
FREE
CRingBuffer - Numeric ring buffer with lightweight high-performance statistics engine CRingBuffer is a powerful MQL5 library for numeric rolling-window analysis. After each insertion it immediately provides mean, variance, standard deviation, percentiles, z-scores, min/max tracking and normalized values - all in O(1) to O(n log n). Table of contents: Application area Two operating modes Basic statistics Welford statistics (numerically stable, recommended for large price levels) Percentiles Z-s
FREE
Binance Library MetaTrader 5 connects your Expert Advisors, indicators, and scripts to Binance.com and Binance.US directly from MetaTrader 5. It is a developer library for building custom Binance integrations inside MT5, not a standalone trading robot or copier. The library helps you add Binance instruments to Market Watch, read symbol specifications, load current and historical market data, check wallet balances, manage orders, and track open positions. It supports Spot, USD-M futures, and COI
BlitzGeist Telegram Notifier – Stay Connected to Your Trades Anywhere! BlitzGeist Telegram Notifier is a powerful tool that instantly connects your MetaTrader 5 account with Telegram . No matter where you are – you will always receive real-time notifications about your trading activity directly on your phone, PC, or any device with Telegram installed. Perfect for traders who want professional trade reporting, transparency, and risk management monitoring . ️ Key Features Easy Configuratio
Turn your manual trades into fully automated profit machines! This powerful MT5 EA takes over the moment you open a position — no delays, no stress. It instantly places Stop Loss and Take Profit, activates customizable trailing, and locks in profits while protecting your capital Perfect for scalpers: Every trade is immediately secured, giving you the freedom to focus on sniping the best entries while the EA handles all the management work in the background. Auto SL/TP Full trailin
FREE
Smart Adaptive Trend Flow MT5 Professional adaptive trend, market structure, price levels and flow analysis indicator for MetaTrader 5. Would you like to test it before purchasing? You can request a fully functional trial version by sending us a private message through the MQL5 messaging system . This allows you to evaluate the indicator and all its features before making a purchase decision. A Complete Market View in a Single Chart Smart Adaptive Trend Flow MT5 has been developed to provide a
GOLD HYPER XAU/USD向けに設計されたシステムトレード型ブレイクアウトエンジン。複数時間軸でのレンジ拡大と、規律あるリスク固定型の執行を軸に構築されています。 指値注文ロジックで主要なブレイクアウトゾーンにエントリー — 値動きを追わず、感情を挟まず、手動エントリーなし すべてのトレードに数学的に定義された固定リスクとリターンを設定 — 推測に頼らず、ポジションサイズもランダムにしない スマートトレーリングロジックがトレードが有利に動くにつれて利益を確保 適応型ポジションサイジングが勝っているときはサイズを拡大し、ドローダウン時は自動的に縮小 — 資金保護機能を内蔵 XAU/USDの全時間軸に対応し、M15で調整・検証済み 推奨セットアップ VPSの使用を強く推奨 最低残高:$200 パフォーマンス向上のため、スプレッドが最も狭い口座タイプを選択 免責事項 過去の実績は将来の結果を保証するものではありません。いかなるEAも利益を保証しません。
NATS (Niguru Automatic Trailing Stop) will help you achieve more profits, by setting the trailing stop automatically. Pair this NATS application with EA, or can also be used as a complement to manual trading. A trailing stop is a powerful tool in trading that combines risk management and profit optimization.  A trailing stop is a type of market order that sets a stop-loss at a percentage below the market price of an asset, rather than a fixed number. It dynamically adjusts as the asset’s pric
FREE
Edkt
Pitiphum Noikhieo
ตัวชี้วัดการกลับตัวของราคาแบบมืออาชีพสำหรับ MetaTrader 5 PA Reversal Sniper เป็นตัวชี้วัดแบบกำหนดเองสำหรับ MT5 ที่ออกแบบมาโดยเฉพาะสำหรับ XAUUSD ในกรอบเวลา M5 โดยเน้นที่การเคลื่อนไหวของราคา โครงสร้างการกลับตัว การกวาดสภาพคล่อง การแตกหักของโครงสร้างตลาด สภาวะโมเมนตัม และการยืนยันความผันผวน ตัวชี้วัดนี้ให้สัญญาณซื้อและขายที่ชัดเจน พร้อมด้วยจุดเข้าซื้อ จุดหยุดขาดทุน และจุดทำกำไรหลายระดับ คุณสมบัติหลัก XAUUSD M5 ปรับแต่งแล้ว การตรวจจับการกลับตัวของราคา การตรวจจับแท่งเทียน Pin Bar ขาขึ้นและขาลง การตร
Quant Apple Scavenger
Frank Michel Noughue Lemoupa
QuantScavengerアップルシリーズEAのご紹介:株式取引に革命を起こす 概要 QuantScavengerアップルシリーズEAは、株式/FX取引のために特別に設計された革新的なExpert Advisor (EA)です。このEAは、プライスアクションとトレンドを識別するための基盤として定量分析を活用し、新鮮な視点を提供し、取引へのアプローチ方法を変革します。最先端のアルゴリズム取引技術と単一資産のポートフォリオ管理を使用して開発されたこのEAは、取引口座の成長と効率を最適化することにより、単に取引を獲得するだけではありません。 主な特徴     定量分析: このEAは、CFDのパターン、トレンド、最適なエントリーおよびエグジットポイントを識別するために高度な定量分析技術を利用しています。このデータ主導のアプローチにより、意思決定が強化され、取引シグナルの精度が向上します。     アルゴリズム取引: 最先端のアルゴリズムを搭載したEAは、事前に定義されたルールと戦略に基づいて自動的に取引を実行します。これにより、感情的なバイアスを排除し、一貫性のある規律ある取引を実現
このプロダクトを購入した人は以下も購入しています
MetaTrader 5 向け ModernUI ライブラリ ModernUI は、MetaTrader 5 のチャート上で動作するユーザーインターフェースライブラリです。MQL5 開発者が、MT5 のチャート環境内で、より整理された EA パネル、ダッシュボード、設定ウィンドウ、フォーム、テーブル、ダイアログ、ドロワー、コンパクトなトレード風インターフェースを構築できるようにします。 散らばったチャートオブジェクトではなく、よりプロフェッショナルなインターフェース層を使いたい開発者向けに作られています。同時に、自分の EA、インジケーター、ユーティリティのロジックは完全に自分で管理できます。 Modern UI - ユーザーガイド   | EA サンプルデモ 作成できるもの ModernUI は、特定の種類のパネルだけに限定されません。MetaTrader 5 のチャート上に配置するほぼあらゆるツールに対して、再利用可能なインターフェース層を提供します。 シンプルな設定画面、コンパクトなトレードパネル、本格的なダッシュボード、データビュー、コントロールパネル、口座関連ツール、ワー
The library is dedicated to help manage your trades, calculate lot, trailing, partial close and other functions. Lot Calculation Mode 0: Fixed Lot. Mode 1: Martingale Lot (1,3,5,8,13) you can use it in different way calculate when loss=1 ,when profit=0. Mode 2: Multiplier Lot (1,2,4,8,16) you can use it in different way calculate when loss=1 ,when profit=0. Mode 3: Plus Lot (1,2,3,4,5) you can use it in different way calculate when loss=1 ,when profit=0. Mode 4: SL/Risk Lot calculate based on s
Goliath Mt5
Nicolokondwani Biscaldi
Goliath MT5 - scalper fully automated Expert Advisor for medium-volatile forex markets P roperties: The Library trades 10 currency pairs (USDCHF, EURCHF, EURGBP, AUDUSD, USDCAD, GBPUSD, EURUSD, NZDUSD, CADCHF, EURAUD, EURCAD, AUDJPY) The Library does not use martingale The Library sets a fixed stop loss and take profit for all orders The Library only trades a user input volume The Library can be installed on any currency pair and any timeframe Recommendations: Before using on a real account, t
The library is used to develop automatic trading on Binance Futures Market from MT5 platform. Support Binance Futures USD-M and COIN-M Support Testnet mode Support all order types: Limit, Market, StopLimit, StopMarket, StopLoss and TakeProfit Automatically display the chart on the screen Usage: 1. Open MQL5 demo account 2. Download Header file and EA sample https://drive.google.com/uc?export=download&id=17fWrZFeMZoSvH9-2iv4WDJhcyxG2eW17 Copy BinanceFutures.mqh to folder \MQL5\Include Copy  Bina
EA Toolkit
Esteban Thevenon
EA Toolkit   is a library that allows any developer to quickly and easily program Advisor experts. It includes many functions and enumerations such as trailing stop, lot, stop loss management, market trading authorisations, price table updates, trading conditions and many more. Installation + Documentation : You will find all the information to install this library and the documentation of its functions on this GitHub : https://github.com/Venon282/Expert-Advisor-Toolkit WARNING : The installat
金融とトレーディング戦略の領域を深く掘り下げ、私は一連の実験を実施し、強化学習に基づくアプローチと強化学習を使用しないアプローチを調査することにしました。 これらの手法を適用して、私は現代のトレーディングにおけるユニークな戦略の重要性を理解する上で極めて重要な微妙な結論を導き出すことができました。 ニューラル ネットワーク アドバイザーは、初期段階では目覚ましい効率性を示したにもかかわらず、長期的には非常に不安定であることが判明しました。 市場のボラティリティ、トレンドの変化、外部事象などのさまざまな要因により、企業の運営に混乱が生じ、最終的には不安定化につながりました。 この経験を武器に、私は課題を受け入れ、独自のアプローチを開発し始めました。 私の焦点は、集められた最良のインジケーターを異なるパラメーター設定で利用するアドバイザーを作成することに集中していました。 このアドバイザーは、私の独自の戦略に基づいており、さまざまなパラメーター設定を持つ 14 の指標を同時に採用し、何時間ものデータ分析と綿密なテストから生まれました。
このライブラリは、できるだけ簡単にMetaTrader上で直接OpenAIのAPIを使用するための手段として提供されます。 ライブラリの機能についてさらに詳しく知るには、次の記事をお読みください: https://www.mql5.com/en/blogs/post/756098 The files needed to use the library can be found here: Manual 重要:EAを使用するには、OpenAI APIへのアクセスを許可するために、次のURLを追加する必要があります  添付画像に示されているように ライブラリを使用するには、次のリンクで見つけることができる次のヘッダーを含める必要があります:  https://www.mql5.com/en/blogs/post/756108 #import "StormWaveOpenAI.ex5" COpenAI *iOpenAI(string); CMessages *iMessages(void); CTools *iTools(void); #import これが、ライブラリを簡単に使用するため
Kaseki
Ben Mati Mulatya
The Hybrid Metaheuristic Algorithm (HMA) is a cutting-edge optimization approach that combines the strengths of genetic algorithms with the best features of population-based algorithms. Its high-speed computation ensures unparalleled accuracy and efficient search capabilities, significantly reducing the total time required for optimization while identifying optimal solutions in fewer iterations. HMA outperforms all known population optimization algorithms in both speed and accuracy. Use Cases AO
********主な取引であるXAUSDは、テストの際、XAUSDに調整することを提案し、他の取引標的は利益効果を保証できない******** テストが必要な場合はメッセージを残してください(見たらすぐに返信します)、仕事の成果を保護するためには、特定のパラメータを入力する必要があります、システムのデフォルトのパラメータはスクリーンショットを元に戻す効果を実現できません! テストが必要な場合はメッセージを残してください(見たらすぐに返信します)、仕事の成果を保護するためには、特定のパラメータを入力する必要があります、システムのデフォルトのパラメータはスクリーンショットを元に戻す効果を実現できません! テストが必要な場合はメッセージを残してください(見たらすぐに返信します)、仕事の成果を保護するためには、特定のパラメータを入力する必要があります、システムのデフォルトのパラメータはスクリーンショットを元に戻す効果を実現できません! ***************************************************************************
この製品は過去3年間にわたって開発されてきました。MQL5プログラミング言語で人工知能や機械学習コードを扱うための最も高度なコードベースです。MetaTrader 5でAI搭載のトレーディングロボットやインジケーターを多数作成するために使用されています。 これは、MQL5向けの機械学習に関する無料のオープンソースプロジェクトのプレミアムバージョンです。こちらからアクセスできます:  https://github.com/MegaJoctan/MALE5 。無料版は機能が少なく、ドキュメントも不足しており、メンテナンスも不十分です。小規模なAIモデル向けに設計されています。 このプレミアム製品には、AI搭載のトレーディングロボットを効率的にコーディングするために必要なすべてが含まれています。 このライブラリを購入すべき理由は? 非常に使いやすい。コードの構文は直感的で、PythonのScikit-learn、TensorFlow、Kerasなどの人気AIライブラリに似ています。 充実したドキュメント。多くの動画、サンプル、ドキュメントが用意されており、すぐに始められます。 計算効率に優れ
Shawrie
Kevin Kipkoech
This Pine Script implements a Gaussian Channel + Stochastic RSI Strategy for TradingView . It calculates a Gaussian Weighted Moving Average (GWMA) and its standard deviation to form an upper and lower channel. A Stochastic RSI is also computed to determine momentum. A long position is entered when the price closes above the upper Gaussian band and the Stoch RSI K-line crosses above D-line . The position is exited when the price falls back below the upper band. The script includes commission, cap
Bookeepr
Marvellous Peace Kiragu
Bookeepr is an advanced MQL5 trading bookkeeping software that automates trade logging, tracks real-time P&L, and integrates a ledger-style financial system for deposits, withdrawals, and expenses. It supports multi-currency assets , generates detailed performance reports , and provides risk management tools to help traders optimize their strategies. With secure cloud storage, exportable reports, and seamless MetaTrader 5 integration , Bookeepr ensures accurate, transparent, and hassle-free fina
A free indicator for those who purchase the full version This indicator is created by this Ai, with your desired settings Artificial Intelligence at your service Have a complete artificial intelligence and use it in your codes This artificial intelligence is trained to tell you on each candle whether the market is moving up or down. In general, artificial intelligence can be used in all markets, all timeframes and all symbols However, due to the increasing complexity and decreasing accuracy of
快速关仓,无需任何操作。 当前版本的一键关仓主要针对的是来不及手动关仓的情况,目前是不分交易标的类别,是对所有的持仓进行关仓。 未来可能升级的方向: 1、分类别、分标的关仓。 适用场景:开了多个标的的仓位,并且波动不一,快速频繁的波动影响了整体的判断。 2、增加只关闭盈利仓位、只关闭亏损仓位。 适用场景:持仓较多,趋势发生变化。 个人建议:一般建议选择一键全部关仓,因为如果行情与持仓方向一致,只关闭盈利仓位无形就是扩大了亏损。如果行情方向与持仓方向相反,只关闭亏损仓位,当前已盈利的后面又会变为亏损,盈利无法变现。 3、按照仓位顺序由大到小关仓、按照仓位顺序由小到大关仓。 适用 场景:行情发生波动,对于未来行情判断把握不确定的,可根据自己需求选择仓位关仓顺序,由大到小关仓的话,可以避免亏损的进一步扩大。 4、减小仓位量,保持绝对的安全距离。 适用 场景:对未来趋势相对确定,不想错过当前行情,但是认为当前持仓体量又有点大,想降低仓位。
[Gold Intelligent Trading EA | Risk Control is Steady, Profit Breakthrough] The intelligent trading EA, which is customized for the fluctuation characteristics of gold, takes the hard-core trading system as the core, and each order is derived from the accurate judgment of market trends and supporting pressures by quantitative models, so as to eliminate subjective interference and make trading decisions more objective and efficient. Equipped with multi-dimensional risk control system, dynamic s
Questo Expert Advisor (EA) è stato progettato per offrire un'esperienza di trading automatizzata di alto livello, adatta sia ai trader principianti che a quelli esperti. Utilizzando algoritmi avanzati e tecniche di analisi del mercato, l'EA è in grado di identificare opportunità di trading redditizie con precisione e velocità. L'EA è configurabile per operare su vari strumenti finanziari, tra cui forex, indici e materie prime, garantendo una flessibilità senza pari. Le caratteristiche princip
A complete PostgreSQL client implemented in pure MQL5 over native MetaTrader 5 TCP sockets. The library implements the PostgreSQL client with MD5 and SCRAM-SHA-256 authentication, SSL/TLS, the Simple Query Protocol, and explicit transactions. No DLLs, no external dependencies, no third-party services. Features Direct TCP connection to any PostgreSQL-compatible database MD5 and SCRAM-SHA-256 authentication, auto-detected SSL/TLS via PostgreSQL's SSLRequest flow Full transaction support Typed res
MetaTrader 5用 DhanHQ v2 APIブリッジ MetaTrader 5をDhanHQ取引口座に接続し、MQL5から直接、注文、ポジション、資金、ポートフォリオを管理できます。このライブラリは公式のDhanHQ v2 REST API(NSE、BSE、MCX対応)をラップしており、Dhan上で独自のEA、スクリプト、自動売買戦略を構築可能です。 機能 - 注文の完全なライフサイクル管理:発注、変更、キャンセル、分割注文(スライス)、注文一覧(Order Book)、ID指定による注文取得、相関ID指定による注文取得、約定一覧(Trade Book)、注文ごとの約定取得。 - 注文補助機能:成行(Market)、指値(Limit)、ストップロス(Stop-Loss)、ストップロス・マーケット(Stop-Loss-Market)。 - スーパーオーダー(ブラケット注文):発注、レッグ(構成注文)の変更・キャンセル、一覧表示。 - ポートフォリオ:保有資産、ポジション、ポジション変換、全ポジション決済。 - 資金:資金限度額および証拠金計算機。 - トレーダー制御:キルス
MT5 to Delta Exchange API Bridge EA Connector allows your expert advisor with mq5 file to integrate and communicate with Delta Exchange using API Keys You can place order, check balance and other order managements using Delta Exchange API - Place Limit, SL Limit and Take Profit Limit Orders - Place Market, SL-Market, TP-Market orders - Cancel Order - Query Orders - Change Leverage, margin - Get Position info and many more, details available at demo script Script Documentation 
EX5シグナルコピアライブラリ — MT向けプロフェッショナルトレードイベントエンジン 複雑なトレード追跡ロジックを記述することなく、あらゆるエキスパートアドバイザーを強力なトレードコピア、シグナルプロセッサ、または自動化エンジンに変えることができます。 EX5シグナルコピアライブラリは、MetaTrader 5のあらゆる取引アクティビティをキャプチャし、以下の構築に使用できる構造化シグナルに変換する、高性能なイベント駆動型システムです。 トレードコピア(MT5 → MT5 / MT5 → 外部) リスク管理エンジン 分析ダッシュボード カスタム執行ブリッジ(Binance、APIなど) このライブラリを使用する理由 リアルタイム取引検出 構造化シグナルキュー イベント分類(オープン、クローズ、変更、部分クローズ) 内蔵コピーエンジン(オプション) カスタムロジックによる完全な制御 主な機能 リアルタイム取引キャプチャ OnTradeTransaction を使用してすべての取引を即座に検出 バックアップポーリングシステムによりシグナルの見逃
Native Websocket
Racheal Samson
5 (6)
An   easy to use, fast,  asynchronous   WebSocket library  for MQL5. It supports: ws://   and   wss://  (Secure "TLS" WebSocket) text   and   binary   data It handles: fragmented message  automatically (large data transfer) ping-pong   frames  automatically (keep-alive handshake) Benefits: No DLL required. No OpenSSL installation required. Up to 128 Web Socket Connections from a single program. Various Log Levels for error tracing Can be synchronized to MQL5 Virtual Hosting . Completely native t
MetaTrader 5 向け ModernUI ライブラリ ModernUI は、MetaTrader 5 のチャート上で動作するユーザーインターフェースライブラリです。MQL5 開発者が、MT5 のチャート環境内で、より整理された EA パネル、ダッシュボード、設定ウィンドウ、フォーム、テーブル、ダイアログ、ドロワー、コンパクトなトレード風インターフェースを構築できるようにします。 散らばったチャートオブジェクトではなく、よりプロフェッショナルなインターフェース層を使いたい開発者向けに作られています。同時に、自分の EA、インジケーター、ユーティリティのロジックは完全に自分で管理できます。 Modern UI - ユーザーガイド   | EA サンプルデモ 作成できるもの ModernUI は、特定の種類のパネルだけに限定されません。MetaTrader 5 のチャート上に配置するほぼあらゆるツールに対して、再利用可能なインターフェース層を提供します。 シンプルな設定画面、コンパクトなトレードパネル、本格的なダッシュボード、データビュー、コントロールパネル、口座関連ツール、ワー
WalkForwardOptimizer MT5
Stanislav Korotky
3.78 (9)
WalkForwardOptimizer library allows you to perform rolling and cluster walk-forward optimization of expert advisers (EA) in MetaTrader 5. To use the library include its header file WalkForwardOptimizer.mqh into your EA source code, add call provided functions as appropriate. Once the library is embedded into EA, you may start optimization according to the procedure described in the User guide . When it's finished, intermediate results are saved into a CSV file and some special global variables.
This library will allow you to send your trades using your MT5 EA bot and its very easy to integrate on any EA which you can do yourself with the script code which is mentioned in documentation. This product allows trading operations via API For MEXC chart : Renting   Crypto Charting  for OHLC data or   Crypto Ticks with Order Book Depth  is optional - Supports MEXC API calls - Place Limit, SL Limit and Take Profit Limit Orders - Place Market, SL-Market, TP-Market orders - Modify Limit order - C
The library is dedicated to help manage your trades, calculate lot, trailing, partial close and other functions. Lot Calculation Mode 0: Fixed Lot. Mode 1: Martingale Lot (1,3,5,8,13) you can use it in different way calculate when loss=1 ,when profit=0. Mode 2: Multiplier Lot (1,2,4,8,16) you can use it in different way calculate when loss=1 ,when profit=0. Mode 3: Plus Lot (1,2,3,4,5) you can use it in different way calculate when loss=1 ,when profit=0. Mode 4: SL/Risk Lot calculate based on s
This is a simplified and effective version of the library for walk forward analysis of trading experts. It collects data about the expert's trade during the optimization process in the MetaTrader tester and stores them in intermediate files in the "MQL5\Files" directory. Then it uses these files to automatically build a cluster walk forward report and rolling walk forward reports that refine it (all of them in one HTML file). Using the WalkForwardBuilder MT5 auxiliary script allows building othe
Order Book, known also as Market Book, market depth, Level 2, - is a dynamically updated table with current volumes of orders to buy and to sell specific financial instument at price levels near Bid and Ask. MetaTrader 5 provides the means for receiving market book from your broker, but in real time only, without access to its history. The library OrderBook History Library reads market book state in the past from archive files, created by OrderBook Recorder . The library can be embedded into you
Teclado trader, é uma BIBLIOTECA que você pode chamar no OnChartEvent para abrir posição de compra/venda/zerar, os botões padrões são: V = venda C = compra Z = zerar posições a mercado S = zerar posições opostas e depois a mercado X = zerar posições opostas Além da função de teclado, é possível mostrar os estados do ExpertAdvisor usando o MagicId, com informação de: lucro mensal, semanal, diario, e posição aberta, para isto use o OnTick, ou qualquer outro evento (OnTimer / OnTrade / OnBookEven
Goliath Mt5
Nicolokondwani Biscaldi
Goliath MT5 - scalper fully automated Expert Advisor for medium-volatile forex markets P roperties: The Library trades 10 currency pairs (USDCHF, EURCHF, EURGBP, AUDUSD, USDCAD, GBPUSD, EURUSD, NZDUSD, CADCHF, EURAUD, EURCAD, AUDJPY) The Library does not use martingale The Library sets a fixed stop loss and take profit for all orders The Library only trades a user input volume The Library can be installed on any currency pair and any timeframe Recommendations: Before using on a real account, t
Gold plucking machine   Gold plucking machine is an Expert Advisor designed specifically for trading gold. The operation is based on opening orders using the Fast and Slow lines indicator, thus the EA works according to the "Trend Follow" strategy, which means following the trend. Use grid strategy to place orders without stop loss operation, so please make sure the account has sufficient funds. magic number      -  is a special number that the EA assigns to its orders. Lot Multiplier        - 
作者のその他のプロダクト
EA Budak Ubat MT5
Syarief Azman Bin Rosli
EA Budak Ubat MT5 は、MetaTrader 5 向けに設計された自動グリッド・マーチンゲール(Grid Martingale)エキスパートアドバイザーです。テクニカル分析、市場ボラティリティへの自動適応計算、および多層型リスク管理を融合させ、レンジ相場とトレンド相場の両方に対応します。 主要通貨ペアおよびゴールド(XAUUSD)の M5(5分足)チャートに最適化されています。 ### 主な機能 • 4つの選べるエントリー分析手法:   1. Classic Candle:ローソク足の勢いとパターン検出。   2. SMA20:20期間単純移動平均線のクロス。   3. Alligator:ビル・ウィリアムズのアリゲーター指標。   4. Ichimoku:一目均衡表の転換線と基準線の均衡シグナル(推奨デフォルト)。 • AutoConfig AI ボラティリティ適応エンジン:   現在の通貨ペアの20日ADRをEURUSDの365日ADRと比較計算し、最適な利確幅(TP)、グリッド間隔、増加ステップ幅、最大グリッド幅を全自動算出。 • H1 時間足 RSI
EA Budak Ubat
Syarief Azman Bin Rosli
4 (3)
トライアルをダウンロード 動作原理 EAがアクティブな場合、実行モードパラメータに基づいてチャートを分析します。 チャート上に既存のポジションがない場合、EAはパラメータに基づいて取引を行います。トレンドが上昇トレンドの場合、買い取引を行い、下降トレンドの場合は売り取引を行います。そして、ストップロス変数が0より大きい場合、オープンした取引価格から一定の距離にストップロス注文も設定します。0はストップロスなしを意味します。 チャート上に既存のポジションがあり、最後のポジションが損失の場合、EAは現在の市場価格と注文との間の距離がユーザーが設定した最小距離以上であるかどうかを確認し、それに基づいて取引を行います。ロットサイズはマーチンゲール法を使用して計算され、ストップロス変数が0より大きい場合、オープンした取引価格から一定の距離にストップロス注文も設定します。 Hedging(ヘッジ)がfalseに設定されている場合、EAは一度に1つの方向にしか取引しません。最初のポジションが買い取引の場合、すべての後続のマーチンゲールポジションも買い取引でなければなりません。最初のポジションが売り
Indi RBO
Syarief Azman Bin Rosli
Input: Range Start Time : The starting time of the range creation Range End Time : The ending time of range creation Trade End Time : The time where the line of range zone high/low will be extended to Minimum Size : The minimum size of the range in point Maximum Size : The maximum size of the range in point If the range size is between the minimum and maximum, indicator will print the 1st color (blue).
# Apex Flow Reversion MT4 Apex Flow Reversion は、MetaTrader 4 向けに設計された日内統計的回帰(ミーン・リバージョン)自動売買システムです。動的な出来高加重平均価格(VWAP)からの価格乖離をリアルタイムで監視し、標準偏差バンド、相対力指数(RSI)のモメンタム枯渇フィルター、および平均真のレンジ(ATR)ボラティリティ制限を組み合わせて反転ポイントを的確に捉えます。 ## 戦略の概要 このアルゴリズムは、指定された期間にわたってティック出来高で加重されたローリングVWAP曲線を算出します。この中心線をもとに、標準偏差計算による統計的な上限バンドおよび下限バンドを生成します。 市場価格が下限バンドを下回り、同時にRSIが売られすぎのシグナルを示した場合に買いエントリー条件を判定します。逆に、価格が上限バンドを上回り、RSIが買われすぎのシグナルを示した場合に売りエントリー条件を判定します。ポジションはVWAP中心線への回帰または設定された固定目標ポイントでの利確を目指します。 ## 主な機能と特徴 - MQL5 マ
Vortex Confluence Radar MT4 Vortex Confluence Radar は、MetaTrader 4 向けにネイティブ開発されたマルチオシレーター・コンフルエンス評価エンジンです。Relative Vigor Index(RVI)、Commodity Channel Index(CCI)、Williams % Percent Range(WPR)の3大テクニカル指標を融合し、平滑化シグナルラインと自動クロスオーバーアラートを備えた統合モメンタム・ヒストグラムを生成します。 指標構造と視覚的シグナル 本インジケーターは独立したサブウィンドウで動作し、以下の視覚的要素を精密に描画します。 統合コンフルエンス・ヒストグラム 正規化スコアリング:RVI、CCI、Williams %R の数値をそれぞれ [-100, +100] の範囲に正規化し、設定された重み付けに基づいて加重平均を算出します。 強気モメンタム(ライムグリーン柱):総合スコアがプラスの場合に表示され、上昇圧力が優勢であることを示します。 弱気モメンタム(レッド柱):総合スコアがマイナスの場合に表
Kinetix Speed Commander MT4 Kinetix Speed Commander   は、MetaTrader 4(MT4)向けに開発された機関投資家水準のワンクリック注文執行コックピット、動的ポジションサイズ計算機、およびリスクリワード注文管理ユーティリティです。プロップファーム(自己資本取引会社)の審査に挑むトレーダー、機敏なスキャルパー、および体系的なデイトレーダーのために設計され、手動計算の手間、ロット入力ミス、過剰レバレッジのリスクを排除します。 本ユーティリティは、外部DLLを一切使用せず、ダークテーマを採用した高応答なオングラフHUD(ヘッドアップディスプレイ)で動作します。口座残高、有効証拠金、銘柄のティックバリューをバックグラウンドで常時監視し、ミリ秒単位の即時成行注文、ドラッグ可能なリスクラインによる視覚的操作、および250ミリ秒タイマーによる自動トレーリングストップと建値保護(ブレイクイーブン)を提供します。 主な機能とアーキテクチャ ワンクリック発注コックピット   チャート画面から直接、成行買い(Buy)および成行売り(Sell)を瞬時に
Prism Candle Forge
Syarief Azman Bin Rosli
Prism Candle Forge — MT4用ローソク足パターン認識エンジン Prism Candle Forge は、ATR加重幾何解析を用いて20種類以上の酒田五法・ローソク足パターンを検出・検証するネイティブMQL4ライブラリです。パターンの識別、方向性の信頼度スコアリング、ローソク足形態分類、トレンドコンテキスト検証を、Expert Advisor、インジケーター、スクリプトから呼び出し可能な8つのエクスポート関数を通じて提供します。DLL不使用、外部依存性ゼロ、純粋なMQL4計算エンジンです。 コンパイル済みバイナリ (Prism_Candle_Forge.ex4) として配布されます。本ドキュメントは完全なAPIリファレンスです。 インストール手順 MQL5 Market から Prism_Candle_Forge.ex4 をダウンロードします。 ファイルを次のフォルダに配置します: MQL4/Libraries/ 以下の #import ブロックを .mq4 ソースファイルに追加します。 EAまたはインジケーターをコンパイルします。これで8つの関数すべてが利用可能に
Sigma Squeeze Reactor ボリンジャーバンド & ケルトナーチャネル スクイーズブレイクアウト MT4 EA Sigma Squeeze Reactor は、MetaTrader 4 向けに開発された高精度ボラティリティブレイクアウト型エキスパートアドバイザー(EA)です。ボリンジャーバンドがケルトナーチャネルの内側に収縮する「ボラティリティ・スクイーズ」状態を検知し、スクイーズが解放された瞬間にモメンタムの方向性を確認して爆発的なトレンド相場へ正確にエントリーします。 本システムは、エネルギー蓄積からの解放と急激なトレンド拡張の両方を捕捉する**デュアルエンジン・ブレイクアウト機構(Dual-Engine Breakout)**を搭載し、チャート中央に直感的なインタラクティブ・コックピットHUDを備えています。 ロジック概要 スクイーズメカニズム ボリンジャーバンドがケルトナーチャネルの内側に入り込むと、相場は低ボラティリティのエネルギー圧縮状態に入ります。この状態は機関投資家によるポジション蓄積を示唆し、その後の急激なトレンド発生の前兆となります。 デュアルエンジ
# Spectra Trend Ribbon MT5 Spectra Trend Ribbon は、MetaTrader 5 専用に設計された高精度トレンド方向判定およびボラティリティ拡張検出インジケーターです。トリプル平滑化された適応型トレンド基準線、動的ボラティリティエンベロープバンド、および自動モメンタムブレイクアウトシグナルを統合しています。 ## チャート上の視覚シグナルの解説 本インジケーターは、チャート上に5つの明確な視覚要素を描画します: 1. 中央適応型ベースライン(カラーライン) - 緑色:現在価格がベースラインより上で推移し、かつベースラインの傾きが上向きであることを示します(上昇トレンド継続)。 - 赤色:現在価格がベースラインより下で推移し、かつベースラインの傾きが下向きであることを示します(下降トレンド継続)。 - 灰色:傾きが水平、または方向性のないレンジ・保ち合い状態を示します。 2. 上限・下限ボラティリティバンド(ロイヤルブルーライン) - Average True Range(ATR)の数値を中央ベースラインに加減算して導き出される動的
Aegis Risk Sentinel MT5 Aegis Risk Sentinel   は、MetaTrader 5 専用にネイティブ設計されたプロフェッショナル向けリアルタイム資金管理・リスクコントロールユーティリティです。プロップファーム挑戦者、資金運用マネージャー、デイトレーダーのために開発され、トレード口座に厳格な規律を適用し、壊滅的なドローダウン、感情的なリベンジトレード、予期せぬマージンコールを確実に防止します。 本ユーティリティは、外部 DLL を一切使用しない純粋な MQL5 アーキテクチャで開発された、チャート上の高応答 HUD ダッシュボードを搭載しています。バックグラウンドでサブ秒単位のアカウント監査を実施し、1 クリックでの緊急決済およびリスク保護アクションを提供します。 主な機能 日次最大損失リミット保護   ブローカー時間の深夜 0 時に自動リセットされる日次開始資金を基準に、エクイティの変動を常時監視します。1 日のドローダウンが設定値(例: 4.0%)に達した場合、Aegis は自動的に全保有ポジションを成行決済し、未約定の待機注文をすべてキャンセル
Stratos Momentum Engine MT5 Stratos Momentum Engine は、MetaTrader 5 専用に開発されたマルチタイムフレーム(MTF)モメンタム・ブレイクアウト自動売買システム(Expert Advisor)です。H1時間足の線形回帰スロープ分析により市場のマクロトレンド方向を判定し、M15時間足のストキャスティクス・オシレーターによる精密なタイミング制御、さらに20期間ドンチアン・チャネルのブレイクアウト確認を組み合わせて高精度な順張りエントリーを実行します。 また、本システムは厳格な資金管理プロトコルを標準搭載しています。口座残高に対するリスク比率(%)に基づく動的ロット計算、MQL5ネイティブの OrderCalcMargin() による発注前必要証拠金チェック、ATR(Average True Range)をベースにした動的ストップロスおよびテイクプロフィット、ボラティリティ追従型のシャンデリア・エグジット(Chandelier Exit)トレーリングストップ、建値移動(ブレークイーブン)機能、スプレッド制限、日次最大ドローダウン制
フィルタ:
レビューなし
レビューに返信