LSTM Library

  • ライブラリ
  • Thalles Nascimento De Carvalho
    Thalles Nascimento De Carvalho
    🚀 **金融市場の魅力的な道を探求しながら**、私はトレーディングの芸術とプログラミングの科学の両方に情熱を注いでいます。私の旅は、市場の動きを理解したいという好奇心から始まり、利益を生み出す機会を見つけ活用する鋭いスキルへと進化しました。💡📈
    💻 強固なプログラミングの基盤を持つ私は、カスタマイズされたアルゴリズムやツールを作成し、戦略を最適化し、データを強力な洞察に変えることに取り組んでいます。このアプローチは、正確な分析と技術革新を組み合わせ、競争の激しい金融の世界で私を際立たせます。🔍🤖
  • バージョン: 4.12
  • アクティベーション: 5
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)
  • 高度な正規化テクニック
  • 包括的な評価指標システム
  • トレーニング進捗の可視化
  • クラス重みによる不均衡データのサポート

技術仕様

  • 純粋なMQL5実装 - 外部依存なし
  • トレーディングアプリケーション向けに最適化
  • 包括的なエラー処理と検証
  • トレーニング済みモデルの保存/読み込みの完全サポート
  • 広範なドキュメント

統合手順

LSTM LibraryをExpert Advisorに統合するには、次の手順に従ってください:

1. ライブラリの完全インポート

#import "LSTM_Library.ex5"
   // ライブラリ情報
   void GetLibraryVersion(string &version);
   void GetLibraryInfo(string &info);
   
   // モデル管理
   int CreateModel(string name);
   int DeleteModel(int handle);
   
   // レイヤー構築
   int AddLSTMLayer(int handle, int units, int input_size, int seq_len, bool return_seq);
   int AddLSTMLayerEx(int handle, int units, int input_size, int seq_len, bool return_seq, double recurrent_dropout);
   int AddGRULayer(int handle, int units, int input_size, int seq_len, bool return_seq);
   int AddBiLSTMLayer(int handle, int units, int input_size, int seq_len, bool return_seq);
   int AddBiLSTMLayerEx(int handle, int units, int input_size, int seq_len, bool return_seq, double recurrent_dropout);
   int AddDenseLayer(int handle, int input_size, int units, int activation);
   int AddDropoutLayer(int handle, double rate);
   int AddBatchNormLayer(int handle, int size);
   int AddLayerNormLayer(int handle, int size);
   
   // コンパイルとトレーニング
   int CompileModel(int handle, int optimizer, double lr, int loss);
   int SetClassWeights(int handle, double &weights[], int n_classes);
   int EnableConfusionMatrixTracking(int handle, int n_classes);
   int GetConfusionMatrix(int handle, int &confusion_matrix[]);
   int FitModel(int handle, double &X_train[], double &y_train[], int n_train, int input_dim,
             double &X_val[], double &y_val[], int n_val, int epochs, int batch);
   
   // 予測と評価
   int PredictSingle(int handle, double &input_data[], int input_size, double &output_data[]);
   int PredictBatch(int handle, double &X[], int n_samples, int input_dim, double &predictions[]);
   double EvaluateModel(int handle, double &X[], double &y[], int n_samples, int input_dim);
   double CalculateClassificationMetrics(double &y_true[], double &y_pred[], int n_samples, int n_classes,
                               double &precision[], double &recall[], double &f1[]);
   
   // データ前処理
   int CreateScaler();
   int DeleteScaler(int handle);
   int FitScaler(int handle, double &data[], int samples, int features);
   int TransformData(int handle, double &data[], double &transformed[], int samples, int features);
   int InverseTransform(int handle, double &transformed[], double &original[], int samples, int features);
   int FitTransformData(int scaler, double &data[], double &transformed[], int samples, int features);
   
   // コールバックとスケジューラ
   int AddEarlyStopping(int handle, int patience, double min_delta);
   int AddProgressBar(int handle, int epochs);
   int AddCosineScheduler(int handle, double base_lr, int T_0, int T_mult);
   int AddOneCycleLR(int handle, double max_lr, int total_steps);
   
   // ユーティリティ
   int PrintModelSummary(int handle);
   int SetModelTrainingMode(int handle, int training);
   int GetModelTrainingMode(int handle);
   int SaveModel(int handle, string filename);
   int LoadModel(int handle, string filename);
   int SaveHistory(int handle, string filename);
   void CleanupAll();
   int GetActiveModelsCount();
   int GetActiveScalersCount();
#import

2. OnInit()での初期化

int model_handle = 0;

int OnInit()
{
   // LSTMモデルを作成
   model_handle = CreateModel("TradingModel");
   if(model_handle <= 0)
      return INIT_FAILED;
      
   // レイヤーを追加
   if(AddLSTMLayer(model_handle, 32, 5, 10, false) <= 0)
      return INIT_FAILED;
      
   if(AddDropoutLayer(model_handle, 0.2) <= 0)
      return INIT_FAILED;
      
   if(AddDenseLayer(model_handle, 32, 1, 1) <= 0)
      return INIT_FAILED;
   
   // モデルをコンパイル(Adamオプティマイザ、MSE損失)
   if(CompileModel(model_handle, 1, 0.001, 0) <= 0)
      return INIT_FAILED;
   
   // 既存のモデルが利用可能な場合は読み込み
   if(FileIsExist("model.bin"))
      LoadModel(model_handle, "model.bin");
   
   return INIT_SUCCEEDED;
}

3. OnDeinit()でのクリーンアップ

void OnDeinit(const int reason)
{
   if(model_handle > 0)
   {
      SaveModel(model_handle, "model.bin");
      DeleteModel(model_handle);
   }
   
   CleanupAll();
}

4. OnTick()での使用

void OnTick()
{
   // 特徴量の準備
   double features[50];  // 例えば、5特徴 * 10シーケンス長
   
   // 市場データで特徴量配列を埋める
   // ...
   
   // 予測を行う
   double prediction[];
   if(PredictSingle(model_handle, features, ArraySize(features), prediction) > 0)
   {
      if(prediction[0] > 0.5)
      {
         // 強気シグナル - 買い注文を出す
      }
      else
      {
         // 弱気シグナル - 売り注文を出す
      }
   }
}

トレーディングにおける機械学習のパワーを活用

LSTM Libraryは、MetaTrader 5内で直接高度な機械学習機能を提供し、あなたのEAやインジケータに簡単に統合できるように設計されています。

上記のコード例に従って、あなたのトレーディングシステムにニューラルネットワークベースの予測を実装し始めましょう。このシンプルな例は、あなたの特定のニーズに簡単に適応させることができます。

以下に詳述される高度な機能を探索して、あなたのトレーディング戦略でこのライブラリの可能性を最大限に活用しましょう。

利用可能な高度な機能

リカレントレイヤーのバリアント

  • AddLSTMLayerEx() - より良い一般化のためのリカレントドロップアウトを備えたLSTM
  • AddBiLSTMLayerEx() - リカレントドロップアウトを備えた双方向BiLSTM

正規化と正則化

  • AddBatchNormLayer() - 安定したトレーニングのためのバッチ正規化
  • AddLayerNormLayer() - レイヤー正規化

不均衡データの処理

  • SetClassWeights() - マイノリティクラスの重みを設定
  • EnableConfusionMatrixTracking() - クラス別の詳細なパフォーマンス監視

高度な最適化

  • AddCosineScheduler() - ウォームリスタート付きの周期的学習率
  • AddOneCycleLR() - One-Cycle学習率の実装

総合的な評価

  • PredictBatch() - 効率性向上のためのバッチ予測
  • EvaluateModel() - テストデータでの完全評価
  • CalculateClassificationMetrics() - 詳細な指標(精度、再現率、F1)

データ前処理

  • CreateScaler/FitScaler - 入力データの正規化
  • TransformData/InverseTransform - スケール間の変換

要件

  • MetaTrader 5
  • 機械学習の概念の基本的な理解
  • MQL5での中級プログラミングスキル

トレーディングシステムをパワーアップ

MQL5で直接機械学習の力を活用して、既存の戦略やインジケータを変革しましょう。この直接的な統合は、外部接続、Python依存関係、APIの複雑さを必要とせず、あなたのトレーディングプラットフォーム内で純粋な予測力を提供します。

価格予測システム、ボラティリティ予測、または高度なパターン認識を開発する場合でも、LSTM Libraryは変化する市場条件に適応する真に知的なトレーディング決定のための基盤を提供します。

キーワード:LSTM株価予測、LSTM価格予測、ニューラルネットワークトレーディング、MQL5ディープラーニング、時系列予測、外国為替機械学習、暗号通貨AIトレーディング、市場パターン認識、BiLSTMトレーディングシステム、GRU市場分析、AIアルゴリズムトレーディング、MQL5ディープラーニング、価格方向予測、HFT用機械学習

おすすめのプロダクト
概要 Seventh Heaven Multi Market Grid Trader は、スロットカスケード構造とアンカーグリッド戦略を用いる、MetaTrader 5 の両建て口座向けエキスパートアドバイザー(EA)です。ゴールドで開発・強化を重ね、検証済みの FX セットへと拡張された本製品は、一つの製品として最適化済みの 11 市場(XAUUSD、XAUEUR、XAUGBP、EURUSD、GBPUSD、USDJPY、USDCAD、AUDUSD、EURCAD、AUDCAD、EURCHF)をカバーします。これらのいずれかのチャートに適用すると、その市場のプリセットパックを用いてチャートの銘柄を取引します。 取引の仕組み スロットが空のとき、現在価格がそのアンカーとなり、グリッドステップ一つ分離れた位置でポジションが開かれます。ステップは口座通貨で設定され価格距離に換算されるほか、重複ガードが備わっています。スロットは Break モード(トレンドフォロー)または Range モード(両方向)で動作し、各パックにはその市場で検証されたモードが設定されています。グリッドは手数料とスワップ
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
Gold Stalker EA
Massimiliano Tuzzolino
4 (2)
SPECIAL PRICE FOR A LIMITED TIME! GOLD STALKER EA NextGen Automated Trading for XAUUSD is a high precision automated trading system developed with a single mission: dominate the Gold market (XAUUSD) through a reactive, structurally intelligent, and disciplined approach. Unlike generic EAs, this algorithm does not guess. It observes, evaluates, and acts tick by tick based on realtime market structure analysis, momentum shifts, and proprietary confirmation filters. CORE TECHNOLOGY STRUCTURAL ANAL
チューリップEA戦略の説明 コア戦略 トレンドフォロー : ストップロスあり、マーチンゲールやグリッドは不使用。 独立した売買 : ローソク足パターンでトレンドの開始点を分析。 パラメータ設定 パラメータ デフォルト値 / 説明 安定性パラメータ 5 (デフォルト) 取引商品 金 (XAUUSD) ストップロス / テイクプロフィット SL 0.3%, TP 1.2% ロットサイズ 0.01 (デフォルト) 自動資金管理 10,000ドルあたり0.01ロット 時間軸 M5推奨 マジックナンバー ユニークID (衝突防止) ブローカー要件 低スプレッド (ECN, スプレッド < 0.1-0.2) 初心者向け セント口座 (1,000または10,000セント) 注意事項 自動資金管理は手動で有効化。 複数EA使用時はマジックナンバーを変更。 低スプレッドで執行効率向上。 チューリップと金融の関連 チューリップ・バブル : 史上初の金融バブル (17世紀オランダ)。 短い開花期間 : 市場の機会の儚さを象徴。 推奨使用方法 明確なトレンド時に使用し、レンジ相場は避ける。
FREE
AILibrary
Marius Ovidiu Sunzuiana
AI Utility Library for MQL5 The AI Utility Library for MQL5 is a next‑generation development framework that brings artificial intelligence, adaptive logic, and intelligent data processing directly into the MetaTrader ecosystem. Designed for traders, quants, and algorithm developers who demand more than traditional indicator logic, this library transforms MQL5 into a smarter, more predictive, and more efficient environment for building advanced trading systems. Built with a modular architectur
Custom Alerts:複数市場を監視し、重要なチャンスを見逃さない 概要 Custom Alerts は、複数の銘柄にまたがるトレードチャンスを一元的に監視したいトレーダーのためのダイナミックなソリューションです。FX Power、FX Volume、FX Dynamic、FX Levels、IX Power などの主要ツールと連携し、複数のチャートを切り替える手間なく、重要な市場変動を自動で通知します。ブローカーが提供するすべての資産クラスに対応しており、シンボルを入力する必要はありません。設定で資産クラスを選択するだけで、すぐにアラートを構成できます。 1. Custom Alerts がトレーダーにとって非常に有益な理由 オールインワンの市場監視 • Custom Alerts は、為替、金属、暗号資産、指数、株式(ブローカーが対応している場合)からのシグナルを収集・統合します。 • 複数のチャートを切り替える必要がなくなり、明確で一元化された通知が得られます。 戦略に合わせたアラート構成 • ボリューム急増、通貨強弱の閾値、極端な価格変動など、目的に応じたアラート
The Institutional Risk Manager handles position sizing, order execution, scaled exits, trailing stops, portfolio exposure monitoring, and event-based filters — all from a single on-chart panel in MetaTrader 5. Lot size is calculated automatically from account balance and stop distance. Scaled exits execute at configurable R-multiples with a broker-side TP at the final target so the exit holds even if the EA is offline. Risk discipline enforced mechanically, not manually. Risk engine Set a risk p
Breakout Bot is an automated trading robot designed for the MetaTrader 5 platform, specifically integrated with Bybit exchange for trading the GBPUSD+ currency pair. This bot effectively identifies market breakouts and executes trades based on predefined strategies, allowing efficient exploitation of market fluctuations. Key features: Automatic breakout detection and trade execution; Dynamic stop-loss and trailing stop management; Convenient and flexible risk management settings; Easy installati
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
ALPHATREND INSTITUTIONAL STRUCTURE MODE Descripción general: AlphaTrend es un Expert Advisor híbrido para MetaTrader 5 que combina análisis de estructura de mercado con indicadores de momentum. No es un sistema reactivo tradicional. Opera identificando primero la tendencia real mediante máximos y mínimos, luego espera un retroceso o pullback, y finalmente confirma la entrada con ADX y pendiente de media rápida. Esto permite entrar temprano en la dirección correcta, no perseguir el precio. Lógica
NEXA Breakout Velocity NEXA Breakout Velocity は、チャネルブレイクアウト、価格変化率(ROC)、出来高フィルター、および ATR ベースのリスク管理を組み合わせた自動売買システムです。 本システムは、価格が一定のレンジを突破し、同時にモメンタムと出来高が増加する「ボラティリティ拡大局面」を検出することを目的としています。 すべてのシグナルは確定足のみで計算されます。 同一シンボルでは常に1ポジションのみ保有します。 戦略概要 本システムは以下の要素を組み合わせています。 チャネルブレイクアウトの検出 ROC によるモメンタムフィルター 出来高増加フィルター 下位時間足による確認(任意) ATR に基づくストップロス計算 リスクリワード比による目標設定 口座リスク率に基づくロット自動計算 動的リスク管理機能 単純なブレイクアウトではなく、モメンタムと出来高の条件を同時に満たす場合にエントリーします。 動作原理 直近の高値・安値から価格チャネルを計算します。 直前の確定足がチャネルを突破しているか確認します。 ROC 値を過去平均と比較します。
FREE
Quantum Trade Panel – The Ultimate Smart Assistant for Flawless Execution & Risk Management Tired of slow executions and calculating lot sizes manually while the market moves? Quantum Trade Panel is the ultimate, feature-rich Trading Assistant Expert Advisor (EA) for MT5 . It is specifically engineered to empower day traders and scalpers to manage, calculate, and execute trades in milliseconds with pinpoint accuracy. Combining a stunning, futuristic Cyber/Neon user interface with powerful und
DoIt EA Monitor - Multi EA Performance Dashboard for MT5 Your account can be profitable while one EA quietly drags down the portfolio. MetaTrader history shows the combined result, but it does not clearly show which strategy deserves more capital and which one needs attention. DoIt EA Monitor runs on one chart and separates live and historical performance by magic number, EA and symbol. It is completely read-only. It never opens, closes or modifies a trade. KNOW WHICH EA IS EARNING ITS PLACE Aut
FREE
Steady Runner NP EA
Theo Robert Gottwald
2.5 (2)
Introducing Steady Runner NP EA (Free Version): Precision Trading for GBPUSD M5 What is Steady Runner NP EA? Steady Runner NP EA is a   mathematically designed Expert Advisor (EA)   exclusively crafted for the   GBPUSD M5 timeframe . Built with advanced algorithms and statistical models, this EA automates your trading strategy to deliver   precision, consistency, and discipline   in every trade. Whether you're a seasoned trader or just starting out, Steady Runner NP EA is your reliable par
FREE
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
# ONEPUNCH TRAIL BE — MQL5 マーケット商品ページ(日本語) - 製品バージョン:5.10 - ファイル: [ ONE_PUNCH_RYOKU.mq5 ]( file:///c:/Users/iagoo/Desktop/NEW%20RYOKU%20BOT%20-%20SAFETRADE/ONE_PUNCH_RYOKU/ONE_PUNCH_RYOKU.mq5 ) ## 概要 - バースト(連続エントリー)型EAで、プロフェッショナルなエクイティ管理とポジション毎の資金管理を実装。 - ウォームアップモードにより、開始日や相場レジームへの過度な感度を低減。 - エクイティ・トレーリング・ロックが実現利益を保護し、急反転に備える。 - ブレークイーブンとトレーリングを分離し、内部競合を回避。 ## 主な機能 - ウォームアップモード:最初のシグナルではバースト数を減らし、通常の30%のリスクを使用。期間中はグローバルトレーリングを停止。 - エクイティ・トレーリング・ロック:CycleBaselineに対する利益をロック。エクイティがベースラインの150%以上
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
FridayGoldRush
Lukas Matthias Wimmer
TrendRushEA – Automated Expert Advisor for XAUUSD with Optional USD Strength Filter Short Description (EN): TrendRushEA is a fully automated MetaTrader 5 Expert Advisor designed specifically for trading Gold (XAUUSD) in strong bullish trends. It combines long-term trend confirmation with an optional USD strength filter based on EURUSD. The EA features dynamic risk management (1%–2% of account size), ATR-based SL/TP calculation, and a weekend-close function for trade protection. Detailed Descri
FREE
短い説明 Ultimate Sniper Pro は、トレンド・ボラティリティ・流動性・Smart‑Money ロジックを一つの精密なエントリーに統合したプロ仕様のトレードシステムです。 マーチンゲールなし、ランダム性なし —— 純粋な技術力と厳格なリスク管理のみ。 詳細説明 Ultimate Sniper Pro は、精度・安定性・プロフェッショナルなロジックを求めるトレーダーのために設計された次世代型エキスパートアドバイザーです。 本EAは複数の側面から市場を分析します: • トレンド構造(EMA 50/200) • ボラティリティとローソク足の強さ(ATR、実体優位、ヒゲ分析) • Smart Money Concepts(オーダーブロック、FVG、公正価値ギャップ、流動性狩り) • ボラティリティスクイーズ(ボリンジャーバンド + ケルトナーチャネル) • 弱いシグナルを排除し、高確率セットアップのみを取引するスコアリングシステム 危険な手法は一切使用しません: マーチンゲールなし グリッドなし ナンピンなし 隠れた戦略なし 実際の市場行動に基づく透明
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 
Trading Session Zones Alert is a free visual session indicator for MetaTrader 5. It highlights the major trading sessions directly on the chart so traders can quickly see how price moved during each session and where session ranges overlap. The indicator draws clear session zones and time labels for: - Sydney - Tokyo - Frankfurt - London - New York Each session can display its own colored zone, label, and optional high/low lines. The session labels show the active time window on the chart, ma
FREE
完全無料 — フル機能・制限なし・登録不要。 Sentinelが役に立ったら、ぜひレビューをお願いします。無料提供の継続につながります。 同開発者の他の無料ツール: - Aegis Account Protector (口座全体の資産保護): https://www.mql5.com/en/market/product/182632 - Falcon Trailing Stop Manager (汎用トレーリングストップ+ブレークイーブン): https://www.mql5.com/en/market/product/182633 - Rapid Trade Panel (ワンクリック発注パネル): https://www.mql5.com/en/market/product/182635 - Donchian Trend Engine(当社のトレンドEA・こちらも完全無料): https://www.mql5.com/en/market/product/185534 - 全EA・ツール一覧: https://www.mql5.com/en/users/app.develop
FREE
MarketPro toolkit
Johannes Hermanus Cilliers
Start earning profits by copying All trades are sent by our successful Forex trader & are extremely profitable. You can earn profits by copying trades daily Trial Period included You'll also get access to extremely powerful trading education which is designed in a simple way for you to become a profitable trader, even if you have no trading experience. https://ec137gsj1wp5tp7dbjkdkxfr4x.hop.clickbank.net/?cbpage=vip
FREE
Advisor for hedging trading or pair trading. A convenient panel allows you to open positions on the necessary trading instruments and lots. Automatically determines the type of trading account - netting or hedging. Advisor can close all its positions upon reaching profit or loss (determined in the settings). A negative value is required to control losses (for example, -100, -500, etc.). If the corresponding fields are 0, the EA will not use this function.   Settings: Close profit (if 0 here
Quantum Aurus X is an innovative trading ecosystem that combines a classic breakout algorithm (Breakout Engine) with modern machine learning methods to filter out market noise. The system is designed for professional trading in metals (Gold), indices, and volatile currency pairs. Intelligent neural network filter Unlike standard breakout advisors, Quantum Aurus X is equipped with the Neuro-Core V2 module. This is a pre-trained neural network (Perceptron) that analyzes market microstructure in r
Nachete Robot
Jose Ignacio Pastor Villalvilla
Why Do Most Grid Robots Fail? 99% of grid strategies blow up trading accounts for the exact same reason: wild, unretraced vertical movements (high-impact news or Black Swan events). They blindly and uncontrollably open levels until a margin call hits. NACHETE'S ROBOT was designed to break that curse. This algorithm does not trade blindly; it combines the mathematical precision of mean reversion via Bollinger Bands with a capital protection suite never seen before in the retail market. ️ Nac
This EA has been developed, tested and traded live on NASDAQ M15 TF. Everything is ready for immediate use on real account. Very SIMPLE STRATEGY with only FEW PARAMETERS.  Strategy is based on  EXPANSION ON THE DAILY CHART .   It enters if volatility raise after some time of consolidation .  It uses  STOP   pending orders with  ATR STOP LOSS.   To catch the profits is a  TRAILING PROFIT  function in the strategy.  EA has been backtested on more than 10-year long tick data with 99% quality of mo
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
Echelon EA – Chart Your Unique Trading Constellation Like the celestial guides that lead explorers through the vast universe, Echelon EA empowers you to create and optimize your very own trading strategies. This versatile system combines advanced grid and martingale techniques with cutting‐edge indicators, offering you an endless palette for designing a strategy that is truly your own. Craft Your Personal Strategy: Infinite Possibilities – Customize every parameter to build a trading system t
FREE
VIX Momentum Pro EA - 製品説明 概要 VIX Momentum Pro は、VIX75合成指数専用に設計された高度なアルゴリズム取引システムです。このアルゴリズムは、合成ボラティリティ市場において高確率の取引機会を特定するために、独自のモメンタム検出技術と組み合わせた先進的なマルチタイムフレーム分析を採用しています。 取引戦略 エキスパートアドバイザーは、複数のタイムフレームにわたって価格動向を分析する包括的なモメンタムベースのアプローチで動作します。システムは、VIX75の特性に特有の価格パターンの数学的分析を通じて方向性モメンタムを識別します。エントリーシグナルは、モメンタムの収束、ボラティリティ閾値、方向性バイアス確認など、複数の技術的条件が一致したときに生成されます。 この戦略は従来のインディケーターへの依存を避け、代わりに合成指数の動作に特化して校正された独自の数学モデルに依存しています。このアプローチにより、アルゴリズムは合成市場の独特な24時間年中無休の取引環境で効果的に動作できます。 リスク管理 VIX Momentum Pro は、利益ポテンシ
このプロダクトを購入した人は以下も購入しています
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
金融とトレーディング戦略の領域を深く掘り下げ、私は一連の実験を実施し、強化学習に基づくアプローチと強化学習を使用しないアプローチを調査することにしました。 これらの手法を適用して、私は現代のトレーディングにおけるユニークな戦略の重要性を理解する上で極めて重要な微妙な結論を導き出すことができました。 ニューラル ネットワーク アドバイザーは、初期段階では目覚ましい効率性を示したにもかかわらず、長期的には非常に不安定であることが判明しました。 市場のボラティリティ、トレンドの変化、外部事象などのさまざまな要因により、企業の運営に混乱が生じ、最終的には不安定化につながりました。 この経験を武器に、私は課題を受け入れ、独自のアプローチを開発し始めました。 私の焦点は、集められた最良のインジケーターを異なるパラメーター設定で利用するアドバイザーを作成することに集中していました。 このアドバイザーは、私の独自の戦略に基づいており、さまざまなパラメーター設定を持つ 14 の指標を同時に採用し、何時間ものデータ分析と綿密なテストから生まれました。
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
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
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
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
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.
MetaTrader 5 向け ModernUI ライブラリ ModernUI は、MetaTrader 5 のチャート上で動作するユーザーインターフェースライブラリです。MQL5 開発者が、MT5 のチャート環境内で、より整理された EA パネル、ダッシュボード、設定ウィンドウ、フォーム、テーブル、ダイアログ、ドロワー、コンパクトなトレード風インターフェースを構築できるようにします。 散らばったチャートオブジェクトではなく、よりプロフェッショナルなインターフェース層を使いたい開発者向けに作られています。同時に、自分の EA、インジケーター、ユーティリティのロジックは完全に自分で管理できます。 Modern UI - ユーザーガイド   | EA サンプルデモ 作成できるもの ModernUI は、特定の種類のパネルだけに限定されません。MetaTrader 5 のチャート上に配置するほぼあらゆるツールに対して、再利用可能なインターフェース層を提供します。 シンプルな設定画面、コンパクトなトレードパネル、本格的なダッシュボード、データビュー、コントロールパネル、口座関連ツール、ワー
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
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
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
After downloading this service program, it will be used as a service support program for Dom BookHeatMAP Lightning Trading Panel. Dom BookHeatMAP Lightning Trading Panel   download link: https://www.mql5.com/zh/market/product/159414?source=Site+Market+MT5+Search+Rating006%3aDom+BookHeatMAP+Lightning+Trading+Panel Please first drag and drop the downloaded file to the corresponding service folder (` MQL5 \ Services `) in the MT5 data directory, and confirm that the file has been successfully pla
Want to get all events like Previous/Forecast/Actual values for each news to analyze/predict it? By this simple library you can do it easily,Just import/integrate the library into your system,then get all possible values for each news   Even In Strategy Tester   . Note: Please add the address " https://www.forexfactory.com/ " of news feed at your MT5 tab > Tools > Options > Expert Advisors > Check Allow web request for listed URL. Since the WebRequest() function can't be called from indicator ba
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
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
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
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        - 
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
MT4/5通用交易库(  一份代码通用4和5 ) #ifdef __MQL5__      #define KOD_TICKET ulong      #define KOD_MAGIC   long #else        #define KOD_TICKET long      #define KOD_MAGIC   int #endif class ODLIST; #import "K Trade Lib Pro 5.ex5"       //祝有个美好开始,运行首行加入    void StartGood() ;    //简单开单    long OrderOpen( int type, double volume, int magic, string symbol= "" , string comment= "" , double opprice= 0 , double sl= 0 , double tp= 0 , int expiration= 0 , bool slsetmode= false , bool tpsetmode= false );    //复杂开单
1. What is this The MT5 system comes with very few optimization results. Sometimes we need to study more results. This library allows you to output more results during backtest optimization. It also supports printing more strategy results in a single backtest. 2. Product Features The results of the optimized output are quite numerous. CustomMax can be customized. The output is in the Common folder. It is automatically named according to the name of the EA, and the name of the same EA will be au
T5L Library is necessary to use the EAs from TSU Investimentos, IAtrader and others. It contains all the functions framework needed to Expert Advisors working properly.  ツ - The Expert Advisors from  TSU Investimentos does not work without this library,  the T5L library can have updates during the year - At this Library you will find several funcionalities like order sends, buy and sell, trigger entry points check, candlestick analyses, supply and demmand marking and lines, and much more. 
AO Core
Andrey Dik
3.67 (3)
AO Core is the core of the optimization algorithm, it is a library built on the author's HMA (hybrid metaheuristic algorithm) algorithm. Pay attention to the MT5 Optimization Booster product , which makes it very easy to manage the regular MT5 optimizer . An example of using AO Core is described in the article: https://www.mql5.com/ru/articles/14183 https://www.mql5.com/en/blogs/post/756510 This hybrid algorithm is based on a genetic algorithm and contains the best qualities and properties of p
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
A Simple Moving Average (SMA) is a statistical indicator used in time series analysis. This indicator represents the arithmetic mean of a sequence of values over a specific period of time. SMA is used to smooth short-term fluctuations in data, helping to highlight the overall trend or direction of changes. This aids analysts and traders in better understanding the general dynamics of the time series and identifying potential trends or changes in direction.  More information you can find in Wiki 
このライブラリを使用すると、任意の EA を使用して取引を管理でき、説明に記載されているスクリプト コードを使用して任意の EA に簡単に統合でき、完全なプロセスを示すビデオのデモ例も利用できます。 - 指値注文、SL 指値注文、利食い指値注文の発行 - マーケット、SLマーケット、TPマーケットの注文を行う - 指値注文の変更 - 注文をキャンセルする - 注文のクエリ - レバレッジ、マージンの変更 - 位置情報の取得 もっと... MT5 に Binance チャートがない場合を除き、暗号チャートのレンタルはオプションです。 スクリプトのデモについては、 ここをクリックしてください トレーディングパネルでの取引をご希望の場合は、 この製品に興味があるかもしれません
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
作者のその他のプロダクト
Cvd Divergence
Thalles Nascimento De Carvalho
CVD Divergence ― オーダーフローとダイバージェンスのプロフェッショナル分析 CVD Divergence は、価格と Cumulative Delta Volume(CVD)との間に発生する信頼性の高いダイバージェンスを検出するために開発されたテクニカル指標です。実際の注文フローが価格の動きを確認していない局面を正確に捉え、反転、勢いの減衰、そして機関投資家による操作の可能性を示します。 このインジケーターは、アグレッシブボリュームの読み取りと価格構造の分析を組み合わせ、明確で客観的かつ先行性のあるシグナルを提供します。 インジケーターの機能 CVD Divergence は、累積デルタボリュームを用いて注文フローの方向と価格の方向を比較します。両者が大きく乖離した際、チャート上にマーカーを表示し、ダイバージェンスの方向を視覚的に示します。 検出できる内容: 強気ダイバージェンス(価格が下落しているが CVD が上昇している場合) 弱気ダイバージェンス(価格が上昇しているが CVD が下降している場合) 買い手・売り手の勢いの枯渇 機関投資家の不均衡によるフェイクムーブ
Big Player Range
Thalles Nascimento De Carvalho
5 (3)
BigPlayerRange — MT5向け最強インジケーター BigPlayerRange は、MetaTrader 5 で日経ミニやドル先物などの取引において、 最も効果的なインジケーター と評価されています。大口投資家(機関投資家)の行動を可視化し、高精度なテクニカル分析を可能にします。 どのように機能するのか? BigPlayerRangeは、買い圧力ゾーン(緑ライン)と売り圧力ゾーン(赤ライン)を描画し、価格がその範囲を超えるとトレンド方向への動きを示唆します。 緑のライン上で終値: 買いの勢いが強く、上昇トレンドの可能性。 赤のライン下で終値: 売り圧力が優勢で、下落が予想される。 範囲内での価格: レンジ相場でブレイクを待つ段階。 主なメリット: 機関投資家ゾーンの検出: 大口のエントリーポイントを視覚化。 自動ターゲット計算: 利確ポイントを戦略的に設定。 プルバックの可能性分析: リスク管理に役立つ情報提供。 推奨の使い方: Imbalance DOM Pro と併用してゾーンブレイクを確認。 SwingVolum
Footprint Hunter
Thalles Nascimento De Carvalho
Footprint Hunter – MT4で努力と結果を見極めるレーダー Tape Hunterは、MetaTrader 4で価格の裏にある真実の動きを見たいトレーダーのための究極のインジケーターです。POC(ポイント・オブ・コントロール)に基づく買いと売りのアグレッシブな出来高を明確かつ直感的に表示し、各ローソク足の市場の努力と実際の結果を視覚化します。 ️ なぜ重要なのか? すべての出来高が価格を動かすわけではありません!Footprint Hunterは、努力(アグレッシブな出来高)が価格を本当に動かしているかを示し、以下を見極めるのに役立ちます: 本当のアグレッションとトラップの位置 市場が吸収されているのか押し込まれているのか 支配的な出来高と価格の方向性の一致 Tape Hunterを使えば、プロのテープリーディング視点を得て、より精度の高いエントリーとエグジットの判断が可能になります。 関連インジケーター – フロー分析を強化 より効率的なトレードのために、Tape Hunterと以下の強力なインジケーターを組み合わせて使いましょう:
Tape Hunter
Thalles Nascimento De Carvalho
Tape Hunter – MT5で努力と結果を見極めるレーダー Tape Hunterは、MetaTrader 5で価格の裏にある真実の動きを見たいトレーダーのための究極のインジケーターです。POC(ポイント・オブ・コントロール)に基づく買いと売りのアグレッシブな出来高を明確かつ直感的に表示し、各ローソク足の市場の努力と実際の結果を視覚化します。 ️ なぜ重要なのか? すべての出来高が価格を動かすわけではありません!Tape Hunterは、努力(アグレッシブな出来高)が価格を本当に動かしているかを示し、以下を見極めるのに役立ちます: 本当のアグレッションとトラップの位置 市場が吸収されているのか押し込まれているのか 支配的な出来高と価格の方向性の一致 Tape Hunterを使えば、プロのテープリーディング視点を得て、より精度の高いエントリーとエグジットの判断が可能になります。 関連インジケーター – フロー分析を強化 より効率的なトレードのために、Tape Hunterと以下の強力なインジケーターを組み合わせて使いましょう: Big Player
VWAP FanMaster
Thalles Nascimento De Carvalho
3.5 (2)
VWAP FanMaster: 正確なプルバック戦略をマスターしよう! VWAP FanMaster は、 正確なエントリーポイント と 効率的なプルバック を求めるトレーダーのための究極のインジケーターです。 VWAP(出来高加重平均価格) と フィボナッチファンライン を組み合わせ、市場での重要な価格ゾーンを明確にマッピングします。 主な機能 シンプルかつ強力 : 垂直線を動かすだけで、自動的に VWAP と フィボナッチファンライン を描画します。 賢いトレーディング戦略 : 描かれたゾーンに価格が戻るのを待ち、 完璧なプルバック をサポートとレジスタンスのレベルで捉えます。 高度なビジュアルツール : 価格のコンフルエンスエリア を即座に見つけて、迅速な意思決定をサポートします。 VWAP FanMasterを選ぶ理由 初心者にも使いやすい 。 2つの強力な分析ツール を組み合わせることで、取引精度を向上させます。 リスク管理を改善 し、明確で一貫した価格予測を提供します。 VWAP FanMasterでトレード戦略を最適化
FREE
Book Data Binance
Thalles Nascimento De Carvalho
Book Data Binance! お気に入りの暗号通貨のオーダーブックにアクセスし、価格、ボリューム、バランスの分析を詳しく知ることができるとしたら、あなたの取引所がDOMへのアクセスを提供していなくてもどうでしょうか? Book Data Binanceを使えば、それが現実になります!このMQL5スクリプトは、市場のダイナミクスを深く理解したい暗号通貨トレーダーのために特別に開発されました。 主な機能: スクリプトメニューで利用可能な任意の暗号通貨のオーダーブックへの直接アクセス。 世界の主要な取引所の1つであるBinanceからのリアルタイムデータの更新。 オーダーブックのバランスを正確に分析し、価格の動きを特定して予測することが可能です。 Imbalance DOM Crypto インジケーター との統合により、市場分析を次のレベルに引き上げます。 なぜBook Data Binanceを選ぶべきなのか? これは、各価格レベルにおける買い手と売り手の行動を理解したい人にとって完璧な補完です!このスクリプトを使用することで、深い洞察を得る
FREE
Volume Flow Binance
Thalles Nascimento De Carvalho
Volume Flow Binance! お気に入りの暗号通貨の times and trades データにアクセスし、取引量の流れや価格の動きを分析する詳細を得られるとしたら、あなたのブローカーが取引履歴の完全なアクセスを提供していなくても、それが現実になると思いませんか? Volume Flow Binance を使えば、それが実現します!この MQL5 スクリプトは、リアルタイムの市場のダイナミクスを詳しく理解したい暗号通貨トレーダーのために設計されています。 主な特徴: スクリプトのメニューにある任意の暗号通貨の times and trades データに直接アクセス。 世界的に有名な取引所 Binance からのリアルタイムデータ更新。 価格の動きを予測し、取引量の流れを正確に分析。 Times and Sales Crypto インジケーター と統合し、市場分析を次のレベルに引き上げます。 なぜ Volume Flow Binance を選ぶべきなのか? これは、リアルタイムで売買行動を理解し、行われた取引を観察するための完璧なツールで
FREE
Cumulative Volume Bands
Thalles Nascimento De Carvalho
CVB Cumulative Volume Bands: 累積ボリュームでトレードを強化! CVB Cumulative Volume Bands は、累積ボリュームに基づく正確なシグナルを求めるトレーダー向けに設計された高度なインジケーターです。 このインジケーターは、累積ボリュームバンドを使用して、買いと売りの圧力を明確に読み取り、反転や強い価格変動を特定するのに役立ちます。 Cumulative Volume Bands for MT5 ! 主な特徴: 累積ボリューム分析 : ボリュームに基づいて重要な圧力点を検出します。 明確なエントリー/エグジットシグナル : リアルタイムでチャンスを捉えます。 簡単な解釈 : ユーザーフレンドリーなインターフェースとシンプルなビジュアル。 全ての資産とタイムフレームに対応 : どの市場でも、いつでも使用可能。 CVB Cumulative Volume Bands で一歩先を行き、自信を持ってトレードの判断を改善しましょう! フィードバックをお寄せいただき、改善にご協力ください!
Swing Point Volume
Thalles Nascimento De Carvalho
Swing Point Volume, the indicator that signals weakness and strength at the tops and bottoms. This indicador can be for used the Wyckoff Method. Information provided; - Swing on customized ticks. - Volume and points in each balance sheet. - Percentage of Displacement. - Sound alert option on top and bottom breaks. - Volume in ticks and Real Volume. - Volume HL (extreme) or (opening and closing) - Customized volume shapes.
Atr Projection
Thalles Nascimento De Carvalho
ATRプロジェクション指標は、金融市場における価格の潜在的な動きの限界について正確な洞察を提供するために設計され、テクニカル分析において堅牢なツールとして際立っています。その柔軟なアプローチにより、ユーザーは各取引資産の特定のニーズに適応する形で直感的に分析メトリクスをカスタマイズすることが可能です。 カスタマイズ可能な動作: ATRプロジェクションは、デフォルトでは過去100本のローソク足の平均の30%を考慮して動作します。この柔軟性により、ユーザーは好みや各資産の固有の特性に合わせてメトリクスを調整でき、よりパーソナライズされた分析が可能です。 30%および100本のローソク足の選択の裏にある論理: 慎重な割合とローソク足の数の選択は、過去の動きを正確に捉え、より精密なプロジェクションを提供することを目的としています。この戦略的なアプローチは、価格が有意な動きの可能性が高い領域を強調し、トレーダーにより情報を提供します。 ATRプロジェクションの利点: 1. カスタマイズ可能なテクニカル精度: ユーザーは各取引資産の特定の条件に合わせてメトリクスをカスタマイズできます。
Box Weis Wave
Thalles Nascimento De Carvalho
5 (1)
Weis Wave Box で分析力を高めましょう! 取引における正確さと明確さ を求めるなら、 Weis Wave Box が理想的なツールです。この 高度なボリューム波動インジケーター は、市場における努力と結果のダイナミクスを明確に可視化し、フロー読みやボリューム取引を行うトレーダーに不可欠です。 主な特徴: カスタマイズ可能なボリューム波 – ティック単位で調整し、戦略に合わせられます。 調整可能な履歴 – 特定期間の分析をより精密に行えます。 実際のボリューム vs ティック数 – 市場への実際の影響を理解します。 エナジーボックスの視覚化 – 市場が大きな努力を示し、価格変動が小さい箇所を確認できます。 ️ 5種類のスイング形態 – totalVol、length、width、barDVol、lengthDVolに基づきカスタマイズ可能。 実際のメリット: ボリューム論理の視覚的明確化 買い手・売り手の力関係の把握 反転や継続の可能性を示す視覚的シグナル 関連インジケーター Big Player Range – 機関投資家の活動ゾーン
Long Short Pro
Thalles Nascimento De Carvalho
Long & Short インジケーター - Pro バージョン: 市場分析の無限の可能性を解き放とう! すべての資産に制限なし Long & Short インジケーターの Pro バージョンは、すべての金融資産に対して完全な自由を提供します。制限なしで、同じインジケーターをお気に入りのすべての資産に適用できます! 制限なし インジケーターのすべての機能を制限なしでお楽しみください。Pro バージョンは、完全かつ無制限の体験を提供し、市場のあらゆる機会を最大限に活用できるようにします。 Pro バージョンの特徴 無制限のアクセス : インジケーターをすべての金融資産で使用し、その完全な可能性を探ります。 高度な精度 : 詳細な分析と明確なシグナルを活用して、情報に基づいた安全な決定を下すことができます。 完全な柔軟性 : 資産や戦略に関係なく、取引のニーズに合わせてインジケーターを調整します。 重要な機会のアラートを受け取る アラートを有効にして、重要なレベルを注意深く監視し、市場機会の最前線に立ち続けましょう。 EA 作成のためのバッファパラメ
AI Channel
Thalles Nascimento De Carvalho
AI Channel | MT5向け人工知能搭載の価格チャネル分析インジケーター AI Channel:人工知能でテクニカル分析を次のレベルへ AI Channel は、金融市場の価格チャネルを分析するために 人工知能 を活用した強力なツールです。このセクションでは、この革命的なインジケーターが投資家やトレーダーにどのように役立つかを詳しく解説します。 AI Channelとは? AI Channel は、高度な人工知能アルゴリズムで開発されたインジケーターです。過去の価格データを使用して取引チャネルを識別し、グラフ上の重要なサポートとレジスタンスレベルを強調表示します。 この分析に基づき、市場のエントリーやエグジットの可能性があるポイントに関する貴重なインサイトを提供します。 ️ AI Channelの仕組み AI Channelは価格チャネルに人工知能を適用し、資産のトレンド、パターン、過去の動きを分析します。市場の変化に動的に対応し、異なる時間軸や資産に適応します。 チャネルの上限と下限を特定し、トレーダーに反転やトレンド継続の可能性を明確に示しま
Didi Index Volume
Thalles Nascimento De Carvalho
Didiインデックスボリュームをご紹介します。これは、ブラジルのトレーダーであるオディール・アギアールによって開発されたテクニカル分析の指標であり、金融市場での機会を特定するための先進的かつ強力なアプローチで注目されています。さまざまなプラットフォームで利用可能なDidiインデックスボリュームは、正確な洞察と貴重な情報を求めるトレーダーにとって不可欠なツールとなっています。 この指標は、オディール・アギアールによって作成された名高いDidiインデックスと、取引量の知恵を駆使した組み合わせです。この組み合わせにより、価格の動向と取引量の相互作用をより深く分析し、資産の動きに対するユニークな視点を提供します。 洗練されたアルゴリズムと加重平均の計算を用いて、Didiインデックスボリュームは取引量に基づいた価格変動を予測することができます。この特徴は、新興トレンドの特定、市場の反転、そして適切なエントリーポイントや出口ポイントのタイミングを把握する上で非常に重要です。 Didiインデックスボリュームを使用することで、正確な市場の解釈が可能な客観的かつ信頼性の高い情報にアクセスできます。
TimeChannel
Thalles Nascimento De Carvalho
The "Timechannel" is a powerful technical analysis tool designed specifically for traders who want to gain deeper and more accurate insights into price movements across multiple timeframes (multi-timeframe). This indicator is an essential addition to the toolbox of any serious trader seeking to make informed and data-driven trading decisions. Key Features: Advanced Multi-Timeframe Analysis : Timechannel allows traders to analyze price movements on different timeframes simultaneously. This is cr
Master OBV
Thalles Nascimento De Carvalho
MasterOBV:市場のトレンドを正確に把握しよう! MasterOBV は、 ボリューム 、 ポジティブコレレーション 、および 移動平均線(MA) を組み合わせた テクニカル分析指標 で、金融市場でのトレンドの識別を向上させます。 主な機能: スマートボリューム: 取引量を分析し、トレンドの強さにおける重要な変化を特定します。 ポジティブコレレーション: 相関のある資産を組み合わせ、ペアのボリュームに基づいて価格の移動の可能性を強化する、より広範で正確な視点を提供します。 ビジュアルチャンネル: ビジュアルチャンネルを利用して、トレンドの継続と反転の可能性を明確かつ正確に評価し、直感的な視覚分析を提供します。 スムーズな移動平均線: MA が価格の変動を平滑化し、基礎的なトレンドの方向を特定しやすくします。 なぜ MasterOBV を選ぶべきか? 決定の自信: 複数の要素を統合し、自信を持ってエントリーとイグジットの決定ができるようにします。 包括的な分析: 価格だけでなく、ボリューム、資産の相関関係、およびビジュアルチャンネ
VolaMetrics VSA
Thalles Nascimento De Carvalho
VolaMetrics VSA | 技術分析の強力な味方 VolaMetrics VSA は、 Volume Spread Analysis (VSA) メソッドと詳細な 取引量分析 を組み合わせた技術分析指標です。 価格の重要な動き を 特定 し、 追跡 するために設計されたこのツールは、 取引量 と 価格スプレッド の相互作用を利用して、トレーディング決定をサポートする貴重な洞察を提供します。 Volume Spread Analysis (VSA) の基礎 Volume Spread Analysis (VSA) は、技術分析で尊敬されているメソッドで、 取引量 、 価格スプレッド 、および 価格の終値 の関係を特定の期間内で理解することに焦点を当てています。最も情報を持つオペレーター( スマートマネー )が価格の動きに影響を与えるという考えに基づき、VSA は 積み上げまたは分配のシグナル を特定し、価格の重要な変化を予測します。 VolaMetrics VSA の機能 ️ VolaMetrics VSA は、従来の VSA 分析を自動化し、 逆転の可能性があるシ
SwingVolumePro
Thalles Nascimento De Carvalho
概要 SwingVolumePro は、幅広い金融資産に適用できる高度で多用途なインジケーターであり、さまざまな取引スタイルをサポートします。厳密なボリュームと価格の分析に基づいて開発されており、すべてのレベルのトレーダーが高品質のデータに基づいて情報に基づいた意思決定を行うための明確で正確なシグナルを提供します。 SwingVolumePro.PDF 主な特徴 多用途性: SwingVolumePro は、株式、外為(フォレックス)、暗号通貨など、さまざまな資産に適用できます。スキャルピングから長期ポジションまで、さまざまな取引戦略に対応しています。 正確で信頼できるシグナル: 高精度なシグナルを提供することに重点を置いているSwingVolumeProは、価格吸収パターンや市場のアグレッションを特定するために高度な技術を使用しています。これらのシグナルは明確に表示され、迅速かつ効果的な意思決定が容易になります。 高度なボリュームと価格の分析: インジケーターは、ボリュームと価格の相互作用の詳細な分析を使用して、努力と結果の間にズレがある状況を検出
CVD SmoothFlow Pro
Thalles Nascimento De Carvalho
CVD SmoothFlow Pro - すべての資産に対応した無制限のボリューム分析! CVD SmoothFlow Pro は、精密で無制限のボリューム分析を求めるトレーダーに最適なソリューションです。Cumulative Volume Delta(CVD)の計算と高度なノイズフィルタリングを使用することで、プロ版はあらゆる金融資産の取引に必要な柔軟性と精度を提供します。 CVD SmoothFlow Pro が提供するもの: クリアな分析 :ノイズをフィルタリングし、すべての金融資産における重要なボリュームの動きを際立たせます。 ️ 正確な計算 :買いと売りの差を監視し、外為、インデックス、暗号通貨などの資産におけるボリュームの詳細な動きを提供します。 直感的なインターフェース :データの表示が明確で、分析がわかりやすく効率的です。 トレンドの特定 :市場のトレンドを自信を持って特定し、情報に基づいた意思決定をサポートします。 実用的な用途: リアルタイムで任意の資産における買い手と売り手のバランスを監視します。 ボリュームに基づいてトレンドの反転
Imbalance DOM Pro
Thalles Nascimento De Carvalho
5 (1)
Imbalance DOM Pro:注文帳の不均衡でトレードを強化 MT5で注文帳にアクセスできますか?トレードを新たなレベルに引き上げたいですか? 注文フローを基に意思決定を行っているトレーダーであれば、Imbalance DOM Proはあなたの分析を変革します。スキャルパーや短期トレーダー向けに設計されたこのツールは、注文帳の不均衡を特定し、迅速かつ正確な取引のための貴重な機会を提供します。 小さな価格変動でのチャンスを捉える Imbalance DOM Proは、価格の小さな動きをキャッチしたいトレーダーに最適なツールです。高度な計算により、このインジケーターは注文帳の不均衡を解釈し、素早いエントリーとエグジットのための重要なインサイトを提供します。 重要:MT5で注文帳が利用できることを確認してください Imbalance DOM Proを使用する前に、あなたのブローカーがMT5で注文帳にアクセスできることを確認してください。このインジケーターはリアルタイムデータに依存しているため、MT5は注文帳の履歴を保存しません。そのため、Imbalance D
Cumulative Vol Bands
Thalles Nascimento De Carvalho
CVB Cumulative Volume Bands: 累積ボリュームでトレードを強化! CVB Cumulative Volume Bands は、累積ボリュームに基づく正確なシグナルを求めるトレーダー向けに設計された高度なインジケーターです。 このインジケーターは、累積ボリュームバンドを使用して、買いと売りの圧力を明確に読み取り、反転や強い価格変動を特定するのに役立ちます。 主な特徴: 累積ボリューム分析 : ボリュームに基づいて重要な圧力点を検出します。 明確なエントリー/エグジットシグナル : リアルタイムでチャンスを捉えます。 簡単な解釈 : ユーザーフレンドリーなインターフェースとシンプルなビジュアル。 全ての資産とタイムフレームに対応 : どの市場でも、いつでも使用可能。 CVB Cumulative Volume Bands で一歩先を行き、自信を持ってトレードの判断を改善しましょう! フィードバックをお寄せいただき、改善にご協力ください!
ZigWave Oscillator
Thalles Nascimento De Carvalho
ZigWave Oscillator: オシレーターとZigZagで取引を強化! ZigWave Oscillatorは、金融市場分析において精度と明瞭さを求めるトレーダーに最適なツールです。このインジケーターは、オシレーターの強みとZigZagの視覚的なシンプルさを組み合わせ、迅速かつ効率的に最適な売買機会を見つけるのに役立ちます。 ZigWave Oscillatorを選ぶ理由 精密なオシレーター分析 : RSI、Williams %R、またはCCIを統合し、市場の主要な動きをキャッチします。 動的なZigZagと精密調整 : ZigZagのスイングは、オシレーターの買われすぎや売られすぎの領域で微調整され、反転ポイントを明確に示します。 完全なカスタマイズ ️: オシレーターとZigZagの設定を調整し、自分の戦略に合わせて最適化できます。 直感的で使いやすいデザイン エレガントでカスタマイズ可能なビジュアルレイアウトにより、ZigWave Oscillatorは市場のシグナルを簡単に読み取ることができ、取引に集中できます。 全てのアセット
Times and Sales Pro
Thalles Nascimento De Carvalho
Times and Sales Pro: 取引フローの不均衡であなたの取引を強化 小さな価格変動のチャンス Times and Sales Pro は、 Times and Trades に基づいて注文フローを操作するアナリストにとって欠かせないツールです。スキャルパーに最適で、高精度で小さな価格変動を活用したい方のために設計されています。高度な計算を使用して、このインジケーターは取引の不均衡を特定し、迅速なエントリーとエグジットのための貴重なシグナルを提供します。 重要: MT5でのTimes and Tradesの可用性 Times and Sales Pro を使用する前に、ブローカーがMT5で Times and Trades へのアクセスを提供していることを確認してください。このインジケーターは、正確なリアルタイム計算を生成するためにこのデータに依存しており、MT5は取引履歴を保存しません。したがって、このインジケーターはリアルタイムでのみ機能し、市場で実行された取引の即時の洞察を提供します。 Times and Sales Proの利点 明確
Mini Indice Composition
Thalles Nascimento De Carvalho
Mini Índice Composition: A Revolução na Análise do Mini Índice! O Mini Índice Composition é um indicador inovador que monitora em tempo real as principais ações que compõem o mini índice, trazendo uma visão quantitativa poderosa sobre o fluxo de ordens do mercado! Como Funciona? Diferente de outros indicadores que utilizam apenas dados históricos, o Mini Índice Composition faz uma leitura ao vivo das ordens que entram e saem das ações, pesando o impacto direto no mini índice. Com
Radar DI
Thalles Nascimento De Carvalho
Radar DI – Indicador de Taxa de Juros para Mini Índice e Mini Dólar com Exportação CSV e Integração IA Radar DI é um indicador especializado que transforma as variações da taxa de juros DI (Depósitos Interfinanceiros) em sinais operacionais estratégicos para os ativos mini índice (WIN) e mini dólar (WDO) . NOVA FUNCIONALIDADE: Exportação CSV + Integração com IA Agora o Radar DI permite exportar todos os dados em formato CSV , incluindo: Variações dos DIs Variação do Mini Índice (WIN)
フィルタ:
レビューなし
レビューに返信