ML Lorentzian Classification for MT5

█ OVERVIEW

A Lorentzian Distance Classifier (LDC) is a Machine Learning classification algorithm capable of categorizing historical data from a multi-dimensional feature space. This indicator demonstrates how Lorentzian Classification can also be used to predict the direction of future price movements when used as the distance metric for a novel implementation of an Approximate Nearest Neighbors (ANN) algorithm.

This indicator provide signal as buffer, so very easy for create EA from this indicator

█ BACKGROUND

In physics, Lorentzian space is perhaps best known for its role in describing the curvature of space-time in Einstein's theory of General Relativity (2). Interestingly, however, this abstract concept from theoretical physics also has tangible real-world applications in trading.

Recently, it was hypothesized that Lorentzian space was also well-suited for analyzing time-series data (4), (5). This hypothesis has been supported by several empirical studies that demonstrate that Lorentzian distance is more robust to outliers and noise than the more commonly used Euclidean distance (1), (3), (6). Furthermore, Lorentzian distance was also shown to outperform dozens of other highly regarded distance metrics, including Manhattan distance, Bhattacharyya similarity, and Cosine similarity (1), (3). Outside of Dynamic Time Warping based approaches, which are unfortunately too computationally intensive for PineScript at this time, the Lorentzian Distance metric consistently scores the highest mean accuracy over a wide variety of time series data sets (1).

Euclidean distance is commonly used as the default distance metric for NN-based search algorithms, but it may not always be the best choice when dealing with financial market data. This is because financial market data can be significantly impacted by proximity to major world events such as FOMC Meetings and Black Swan events. This event-based distortion of market data can be framed as similar to the gravitational warping caused by a massive object on the space-time continuum. For financial markets, the analogous continuum that experiences warping can be referred to as "price-time".

Below is a side-by-side comparison of how neighborhoods of similar historical points appear in three-dimensional Euclidean Space and Lorentzian Space (image 2)

This figure demonstrates how Lorentzian space can better accommodate the warping of price-time since the Lorentzian distance function compresses the Euclidean neighborhood in such a way that the new neighborhood distribution in Lorentzian space tends to cluster around each of the major feature axes in addition to the origin itself. This means that, even though some nearest neighbors will be the same regardless of the distance metric used, Lorentzian space will also allow for the consideration of historical points that would otherwise never be considered with a Euclidean distance metric.

Intuitively, the advantage inherent in the Lorentzian distance metric makes sense. For example, it is logical that the price action that occurs in the hours after Chairman Powell finishes delivering a speech would resemble at least some of the previous times when he finished delivering a speech. This may be true regardless of other factors, such as whether or not the market was overbought or oversold at the time or if the macro conditions were more bullish or bearish overall. These historical reference points are extremely valuable for predictive models, yet the Euclidean distance metric would miss these neighbors entirely, often in favor of irrelevant data points from the day before the event. By using Lorentzian distance as a metric, the ML model is instead able to consider the warping of price-time caused by the event and, ultimately, transcend the temporal bias imposed on it by the time series.

For more information on the implementation details of the Approximate Nearest Neighbors (ANN) algorithm used in this indicator, please refer to the detailed comments in the source code.

█ HOW TO USE

The image 3 is an explanatory breakdown of the different parts of this indicator as it appears in the interface

The image 4 is an explanation of the different settings for this indicator

General Settings:
  • Source - This has a default value of "hlc3" and is used to control the input data source.
  • Neighbors Count - This has a default value of 8, a minimum value of 1, a maximum value of 100, and a step of 1. It is used to control the number of neighbors to consider.
  • Max Bars Back - This has a default value of 2000.
  • Feature Count - This has a default value of 5, a minimum value of 2, and a maximum value of 5. It controls the number of features to use for ML predictions.
  • Color Compression - This has a default value of 1, a minimum value of 1, and a maximum value of 10. It is used to control the compression factor for adjusting the intensity of the color scale.
  • Show Exits - This has a default value of false. It controls whether to show the exit threshold on the chart.
  • Use Dynamic Exits - This has a default value of false. It is used to control whether to attempt to let profits ride by dynamically adjusting the exit threshold based on kernel regression.

Feature Engineering Settings:
Note: The Feature Engineering section is for fine-tuning the features used for ML predictions. The default values are optimized for the 4H to 12H timeframes for most charts, but they should also work reasonably well for other timeframes. By default, the model can support features that accept two parameters (Parameter A and Parameter B, respectively). Even though there are only 4 features provided by default, the same feature with different settings counts as two separate features. If the feature only accepts one parameter, then the second parameter will default to EMA-based smoothing with a default value of 1. These features represent the most effective combination I have encountered in my testing, but additional features may be added as additional options in the future.
  • Feature 1 - This has a default value of "RSI" and options are: "RSI", "WT", "CCI", "ADX".
  • Feature 2 - This has a default value of "WT" and options are: "RSI", "WT", "CCI", "ADX".
  • Feature 3 - This has a default value of "CCI" and options are: "RSI", "WT", "CCI", "ADX".
  • Feature 4 - This has a default value of "ADX" and options are: "RSI", "WT", "CCI", "ADX".
  • Feature 5 - This has a default value of "RSI" and options are: "RSI", "WT", "CCI", "ADX".

Filters Settings:
  • Use Volatility Filter - This has a default value of true. It is used to control whether to use the volatility filter.
  • Use Regime Filter - This has a default value of true. It is used to control whether to use the trend detection filter.
  • Use ADX Filter - This has a default value of false. It is used to control whether to use the ADX filter.
  • Regime Threshold - This has a default value of -0.1, a minimum value of -10, a maximum value of 10, and a step of 0.1. It is used to control the Regime Detection filter for detecting Trending/Ranging markets.
  • ADX Threshold - This has a default value of 20, a minimum value of 0, a maximum value of 100, and a step of 1. It is used to control the threshold for detecting Trending/Ranging markets.

Kernel Regression Settings:
  • Trade with Kernel - This has a default value of true. It is used to control whether to trade with the kernel.
  • Show Kernel Estimate - This has a default value of true. It is used to control whether to show the kernel estimate.
  • Lookback Window - This has a default value of 8 and a minimum value of 3. It is used to control the number of bars used for the estimation. Recommended range: 3-50
  • Relative Weighting - This has a default value of 8 and a step size of 0.25. It is used to control the relative weighting of time frames. Recommended range: 0.25-25
  • Start Regression at Bar - This has a default value of 25. It is used to control the bar index on which to start regression. Recommended range: 0-25

Display Settings:
  • Show Bar Colors - This has a default value of true. It is used to control whether to show the bar colors.
  • Show Bar Prediction Values - This has a default value of true. It controls whether to show the ML model's evaluation of each bar as an integer.
  • Use ATR Offset - This has a default value of false. It controls whether to use the ATR offset instead of the bar prediction offset.
  • Bar Prediction Offset - This has a default value of 0 and a minimum value of 0. It is used to control the offset of the bar predictions as a percentage from the bar high or close.

Backtesting Settings:
  • Show Backtest Results - This has a default value of true. It is used to control whether to display the win rate of the given configuration.


█ WORKS CITED

(1) R. Giusti and G. E. A. P. A. Batista, "An Empirical Comparison of Dissimilarity Measures for Time Series Classification," 2013 Brazilian Conference on Intelligent Systems, Oct. 2013, DOI: 10.1109/bracis.2013.22.
(2) Y. Kerimbekov, H. Ş. Bilge, and H. H. Uğurlu, "The use of Lorentzian distance metric in classification problems," Pattern Recognition Letters, vol. 84, 170–176, Dec. 2016, DOI: 10.1016/j.patrec.2016.09.006.
(3) A. Bagnall, A. Bostrom, J. Large, and J. Lines, "The Great Time Series Classification Bake Off: An Experimental Evaluation of Recently Proposed Algorithms." ResearchGate, Feb. 04, 2016.
(4) H. Ş. Bilge, Yerzhan Kerimbekov, and Hasan Hüseyin Uğurlu, "A new classification method by using Lorentzian distance metric," ResearchGate, Sep. 02, 2015.
(5) Y. Kerimbekov and H. Şakir Bilge, "Lorentzian Distance Classifier for Multiple Features," Proceedings of the 6th International Conference on Pattern Recognition Applications and Methods, 2017, DOI: 10.5220/0006197004930501.
(6) V. Surya Prasath et al., "Effects of Distance Measure Choice on KNN Classifier Performance - A Review." .

=======================

Note on "repainting":
To be clear, once a bar has closed, this indicator will NOT repaint. This is true for both the ML predictions and the Kernel estimate.

Note on bar requirement for "learning":
That's a valuable recommendation. Using a timeframe of H4 or lower when working with this indicator because of this require historical price data for learning and analysis is a practical approach. It ensures that you have an adequate number of historical bars to enable the indicator to learn and adapt effectively to price behavior (MT4 have just about1000 bar in chart with bigger timeframe). If you have any more insights or questions related to trading or indicators, feel free to share or ask.

Note for buffer

Incase create EA with signal from this indicator please use iCustom. The index when use iCustom as following:

+ index 0 is line value

+ index 2 is line direction: 1 is going up; -1 is going down

+  index 4 is signal: 1 is buy; 2 is close buy; -1 is sell; -2 is close sell

+  index 5 is prediction

Remember that indicator only calculated closed bar. So you need shift 1 in copyBuffer.

おすすめのプロダクト
Gecko EA MT5
Profalgo Limited
5 (1)
NEW PROMO: Only a few copies copies available at 349$ Next price: 449$ Make sure to check out our " Ultimate EA combo package " in our   promo blog ! Gecko runs a simple, yet very effective, proven strategy.  It looks for important recent support and resistance levels and will trade the breakouts.  This is a "real" trading system, which means it will use a SL to protect the account.  It also means it will not use any dangerous techniques like martingale, grid or averaging down. The EA shows its
ほとんどのゴールド指標は、相場が どこにあったか を示します。Aurum Apex は、大多数が参入する前に、相場がどこへ向かうかを示します。 これは主張ではありません。これがシステムの設計思想です。 Aurum Apex とは? Aurum Apex は、 MetaTrader 5 向けのリペイントなし XAUUSD スキャルピング指標 です。ゴールドという単一の銘柄に特化して構築され、価格の拡張が本格化する前に、ブレイクアウトの起点となるモメンタムを捉えるよう設計されています。 リペイントしません。遅延しません。推測しません。 すべてのシグナルは、エントリーライン、ストップロス、テイクプロフィットがチャート上に完全に描画された状態で届きます。ボタンをクリックする前に、トレードの全体像が見えています。暗算は不要。曖昧さも不要。迷いも不要です。 ゴールドのスキャルピングでは、利益と損失の差が秒単位で、そして誰が先に入ったかで決まることを理解しているトレーダーのための、精度の高いツールです。 仕組み:ブレイクアウト + 速度 ゴールドは瞬発的に動きます。機関投資家は群衆が追いかける前に足
Engulfing with EMAs Indicator Unlock the power of advanced candlestick pattern detection with the Engulfing with EMAs Indicator , a cutting-edge tool designed for MetaTrader 5. This futuristic indicator combines the precision of engulfing pattern analysis with the trend-following strength of Exponential Moving Averages (EMA 21 and EMA 50), empowering traders to identify high-probability setups across all currency pairs and timeframes. Key Features: Comprehensive Engulfing Detection : Detects b
Short Description Swing Timing Breakout EA is a smart Expert Advisor for MetaTrader 5 that combines trend filtering, momentum timing, and dynamic risk management to capture high-probability swing and breakout opportunities. Full Description Swing Timing Breakout EA is a professional trading robot designed for MetaTrader 5, suitable for traders who want a balance between automation, control, and disciplined risk management. This EA uses a trend-following and momentum confirmation approach ,
RBreaker Gold Indicatorsは、金先物の短期日内取引戦略であり、トレンドフォローと日内反転の2つの取引手法を組み合わせたものです。トレンド相場での利益を捉えるだけでなく、相場が反転した際には迅速に利確し、その流れに沿ってポジションを反転させることができます。 この戦略は、アメリカの雑誌『Futures Truth』において、15年連続で最も収益性の高い取引戦略トップ10に選ばれた実績を持ち、非常に長いライフサイクルを誇り、現在も国内外で広く使用・研究されています。 本インディケーターは、2026年の金先物の値動きに対応し、14日間のATR指標に基づいて、ブレイクアウト係数A、観察係数B、リバーサル係数Rをより合理的な値で定義しています。非常に優れたインディケーターであり、安定的な年間収益を実現しています。ぜひおすすめします〜
Chỉ báo này sẽ thông báo cho bạn nếu cấu hình xu hướng thành công. Tín hiệu theo xu hướng không nên được tăng theo, nhưng tín hiệu mua ở mức giá thấp theo mô hình giao dịch thông thường của bạn, hoặc tín hiệu bán ở mức giá tốt, là một lựa chọn rất tốt. Hãy thiết lập nó trên khung thời gian lớn hơn và theo dõi các khung thời gian nhỏ hơn, bám sát các xu hướng chính. Tôi thường thiết lập ba khung thời gian gần nhau nhất và không bao giờ đi ngược tín hiệu của INdicator này. INdicator   này không có
AW Heiken Ashi MT5
AW Trading Software Limited
AW Heiken Ashi — トレンドとTPレベルをスマートに表示するインジケーターです。従来のHeiken Ashiをベースにトレーダー向けに改良された高度なインジケーターで、柔軟性と明瞭性が向上しています。標準インジケーターとは異なり、 AW Heiken Ashiは トレンド分析、利益目標の決定、偽シグナルのフィルタリングをサポートし、より確信を持った取引判断を可能にします。 セットアップガイドと手順 - こちら / MT4バージョン - こちら AW 平均足の利点: あらゆる資産と時間枠で機能します。 トレーダーのスタイルに非常に適応性があり、 エントリーレベルとエグジットレベルの動的な計算、 ユーザーフレンドリーなインターフェース+端末への負荷が最小限 本格的な取引戦略として使用するのに適しています。 可能性: 1) 高度なトレンドの視覚化: 現在のトレンドの方向に応じて色付きのHeiken Ashiキャンドルを作成します。これは、市場の状況を便利かつ視覚的に解釈するものです。 2) 柔軟な TakeProfit レベル (TP1 および TP2): 視覚的な目標はチャー
STRICTLY FOR BOOM INDEX ONLY!!!!! Here I bring the Maximum Trend Arrows OT1.0 MT5 indicator. This indicator is made up of a combination of different trend indicators for entries and exits, for entries an orange arrow will paint on the chart below the current market and a red flag for closing of trades and it produces buy arrows only. When the orange arrow appears, it will appear along with it's sound to notify you. The 1H timeframe is recommended, don't use it anywhere else than on the 1H timefr
Neon Trade — 最高レベルのトレーディングへの扉を開く最先端のトレーディングソリューション 私は、トレーダーの目標や課題に関係なく、あらゆるトレーダーのニーズに応えることができるユニークなトレーディングソリューションを作成することを目指しました。主なアイデアは、機械学習と高度なトレーディング手法を組み合わせることで、両者の併用によるメリットを最大化することでした。このシステムは、1〜2 ヶ月で少額の入金を成長させることにも、長期的な投資にも適しています。 製品の詳細情報を入手するのに役立つリンク もしあなたが: 購入前の質問や購入後のサポートとサポートを受けたい 私の Telegram コミュニティ(質問をしたり、すでに製品を購入した他のユーザーとコミュニケーションを取ることができます) MetaTrader 4 ターミナル専用の類似バージョン! 製品とその入力パラメータを深く理解するためのガイド 重要!!!ロボットを購入した後、および購入に興味がある場合は、必ずプライベートメッセージで私に連絡し、相談、アドバイス、.SET 設定ファイルを受け取ってください Neon Tr
インジケーターについて このインジケーターは、金融商品の終値に対するモンテカルロシミュレーションに基づいています。モンテカルロ法とは、以前の観測結果に基づくランダムな数値を使用して、さまざまな結果の確率をモデル化するための統計的手法です。 どのように機能しますか? このインジケーターは、歴史的データに基づき、時間の経過とともにランダムに価格が変動する複数の価格シナリオを生成します。各シミュレーション試行は、 終値 の変動を考慮するためのランダム変数を使用し、与えられた期間における将来の市場変動を効果的に模倣します。 モンテカルロシミュレーションの利点 - モンテカルロシミュレーションは、複数の将来のシナリオに対して戦略をテストすることで、さまざまなトレード戦略のリスクを分析するのに役立ちます。 - 稀な極端なイベント(テールリスク)を含むさまざまな市場状況で戦略のパフォーマンスを把握することができます。 - 単一の予測に依存するのではなく、モンテカルロ法は関連する確率を伴う潜在的な結果の範囲を提供します。これにより、利益や損失の可能性を理解するのに役立ちます。 モンテカルロ法は、
##   ONLY GOLD ##   Тiльки Золото ## **Mercaria Professional Trading Zones - Complete Guide** ## **Mercaria Professional Trading Zones - Повний посібник** ### **How Mercaria Zones Work / Як працюють зони Mercaria** **English:** Mercaria Zones is an advanced trading indicator that identifies high-probability support and resistance areas using ZigZag extremes combined with mathematical zone calculations. The indicator works on multiple timeframes simultaneously, providing a comprehensive view
Supply and Demand DE inspired EA Professional Supply & Demand Zone Trading System with Multi-Timeframe Confirmation Overview This advanced Expert Advisor automatically identifies and trades high-probability Supply and Demand zones using institutional trading principles. The EA combines classical supply/demand zone detection with modern confirmation filters including Break of Structure (BoS), Fair Value Gaps (FVG), and higher timeframe validation. 5m chart Setfile link: https://drive.google.com/
FREE
The indicator detects divergence signals - the divergences between the price peaks and the MACD oscillator values. The signals are displayed as arrows in the additional window and are maintained by the messages in a pop-up window, e-mails and push-notifications. The conditions which formed the signal are displayed by lines on the chart and in the indicator window. The indicator parameters MacdFast - fast MACD line period MacdSlow - slow MACD line period MacdSignal - MACD signal line period Macd
All about time and price by ICT. This indicator provides a comprehensive view of ICT killzones, Silver Bullet times, and ICT Macros, enhancing your trading experience.  In those time windows price either seeks liquidity or imbalances and you often find the most energetic price moves and turning points. Features: Automatic Adaptation: The ICT killzones intelligently adapt to the specific chart you are using. For Forex charts, it follows the ICT Forex times: In EST timezone: Session: Asia: 20h00-0
無料のAUXインジケーター、EAサポート、完全ガイドをご利用ください – https://www.mql5.com/en/blogs/post/763955 トレンドを見極める。パターンを読む。エントリーのタイミングを掴む。 30秒以内の3ステップ!分析不要で簡単トレード — あなたのスマートアシスタントがワークフローを簡素化します チャートの過剰な情報にもう悩まされない。 スマートバイアス検出で自信を持ってトレード。 すべての通貨、暗号資産、株式、金属、指数、あらゆる時間足に対応。 クリックして実行するだけ — それだけで十分。 スピードと明快さを求める忙しいトレーダーに最適。 TPTSyncXは、 トレンド、パターン、 ローソク足のトリガー 分析を、洗練されたインテリジェントなビジュアルシステムとしてシームレスに統合する、強力なオールインワンMetaTrader 5インジケーターです。明確さ、正確さ、スピードを求めるトレーダー向けに設計されており、プライスアクション、構造的パターン、市場タイミングツールを組み合わせて、高確率のトレードセットアップを特定するのに役立ちます。 主な
Bober Real MT5
Arnold Bobrinskii
4.76 (17)
Bober Real MT5 is a fully automatic Forex trading Expert Advisor. This robot was made in 2014 year and did a lot of profitbale trades during this period. So far over 7000% growth on my personal account. There was many updates but 2019 update is the best one. The robot can run on any instrument, but the results are better with EURGBP, GBPUSD, on the M5 timeframe. Robot doesn't show good results in tester or live account if you run incorrect sets. Set files for Live accounts availible only for cu
This indicator can be considered as a trading system. It offers a different view to see the currency pair: full timeless indicator, can be used for manual trading or for automatized trading with some expert advisor. When the price reaches a threshold a new block is created according to the set mode. The indicator beside the Renko bars, shows also 3 moving averages. Features renko mode median renko custom median renko 3 moving averages wicks datetime indicator for each block custom notification
Gold Trader Pro is an advanced analytical tool specifically engineered for professional trading on XAUUSD (Gold). It provides an immediate comprehensive overview of market structure across 7 different timeframes, allowing traders to identify flow direction and signal strength through a modern, draggable, and interactive interface. Key Features Multi-Timeframe Analysis: Real-time monitoring of M1, M5, M15, M30, H1, H4, and D1. Two Operational Modes: MODE_SCALPING: Optimized for fast-paced analys
FREE
HAshi-EはHeiken-Ashiシグナルを分析するための強化された方法です。 説明 HAshi-Eは、Heiken-Ashiシグナルを分析するための強化された方法です。HAshi-Eは、Heiken-Ashiシグナルを分析するための強化された方法です。HAshi-Eは、Heiken-Ashiシグナルを分析するための強化された方法です。伝統的なローソク足チャートとは異なり、ヒーケンアシのローソク足は過去のバーの平均値を使って計算されるため、よりスムーズで解釈しやすい視覚的表現が可能です。 その主な利点は、ほとんどの人が本来の読み方をしない理由でもあります。HAshiローソク足には平均値に関する情報が含まれており、通常、資産ローソク足の前に配置されているため、色や形に惑わされ、不適切な時間帯や遅い時間帯にエントリーやエグジットを行う人をよく見かけます。 このような背景から、HAshi-Eは従来のHeiken-Ashiインジケータの改良版です! HAshi-E(別ウィンドウ版)の特徴: 同じデータを様々な角度から見る: HAshi-Eは伝統的なローソク足だけでなく、ライン、
PipFinite Trend PRO MT5
Karlo Wilson Vendiola
4.84 (558)
Breakthrough Solution For Trend Trading And Filtering With All Important Features Built Inside One Tool! Trend PRO's smart algorithm detects the trend, filters out market noise and gives entry signals with exit levels. The new features with enhanced rules for statistical calculation improved the overall performance of this indicator. Important Information Revealed Maximize the potential of Trend Pro, please visit www.mql5.com/en/blogs/post/713938 The Powerful Expert Advisor Version Automatin
Advanced 4xZeovo MT5 Indicator (MetaTrader 5)   Product Description  4xZeovo is a powerful trading indicator system monitoring 24/7 financial markets. Metatrader5 tool designed to find the best buying/selling opportunities and notifies the user.    Making life easy for traders in helping with the two most difficult decisions with the use of advanced innovate trading indicators aiming to encourage users to hold the winning positions and take profit at the best times.    Equipped with a unique tra
Gold EA: Proven Power for 1-Minute Gold Trading Transform your trading with our Gold EA, meticulously crafted for 1-minute charts and delivering over 2000% growth in 5 years from just $100-$1000 . No Martingale, No AI Gimmicks : Pure, time-tested strategies with robust money management, stop loss, and take profit for reliable performance across multiple charts. Flexible Trading Modes : Choose Fixed Balance for safe profits, Mark IV for bold growth, or %Balance for high rewards—combine Mark IV an
KingTrend — Price Action Trend Analysis Tool KingTrend is a trend-following indicator based on long-standing price action principles involving Highs, Lows, Open, and Close. The logic behind this tool comes from concepts passed on to me by my mentor and translated into code for consistent structure recognition. Features: Identifies market structure using price action logic Detects trend direction and key turning points Marks Higher Highs, Lower Lows, and extensions Suitable for discretionary or
HAshi-EはHeiken-Ashiシグナルを分析する強化された方法です。 説明 HAshi-Eは、Heiken-Ashiシグナルを分析するための強化された方法です。HAshi-Eは、Heiken-Ashiシグナルを分析するための強化された方法です。HAshi-Eは、Heiken-Ashiシグナルを分析するための強化された方法です。伝統的なローソク足チャートとは異なり、ヒーケンアシのローソク足は過去のバーの平均値を使って計算されるため、よりスムーズで解釈しやすい視覚的表現が可能です。 その主な利点は、ほとんどの人が本来の読み方をしない理由でもあります。Heiken-Ashiローソク足には平均値に関する情報が含まれており、通常、資産ローソク足の前に配置されているため、色や形に惑わされ、不適切な時間帯や遅い時間帯にエントリーやエグジットを行う人をよく見かける。 HAshi-Eは、伝統的なHeiken-Ashiインジケータの改良版です! HAshi-E(チャート版)の特徴: 同じデータを異なる角度から見る HAshi-Eは、伝統的なHeiken-Ashiローソク足だけでなく、ライ
XAU Sentinel Sniper  は、XAUUSD (ゴールド)専用に設計されたプロ仕様のエキスパートアドバイザー(EA)です。資本の保護、精密な約定、そして透明性を最優先するトレーダーのために構築されています。 単一の戦略をあらゆる市場状況に無理やり当てはめる従来のEAとは異なり、XAU Sentinel Sniperは高度なレジーム(相場環境)検知とスナイパーエントリーロジックを使用し、環境を継続的に分析して   リアルタイムで動作を適応 させます。 このEAは過剰な取引(オーバートレード)をするようには設計されていません。指値注文の精度を活かし、市場で生き残り、一貫したパフォーマンスを発揮するように設計されています。 ファイルをダウンロードした後、私にご連絡ください。 完全な使用説明書と特別なプレゼント をお渡しします。    コア・テクノロジー (AMRE)  Adaptive Market Regime Engine (適応型市場レジームエンジン) XAU Sentinel Sniperは市場を4つの異なるレジームに分類します:              トレン
BlueBoat – Prime Cycle is a technical indicator for MetaTrader 5 that visualizes market cycles based on the Fimathe cycle model (Marcelo Ferreira) . It identifies and displays historic and live cycle structures such as CA, C1, C2, C3, etc., helping traders understand the rhythm and timing of price movement across multiple sessions. This tool is ideal for manual analysis or as a supporting signal in discretionary strategies. Key Features Historical Cycle Analysis – Backtest and visualize as many
PR EA - Engulfing Pattern Trading System Automated Engulfing Pattern Detection with MA Confirmation The PR EA is a Meta Trader 5 expert advisor that identifies and trades bullish/bearish engulfing candlestick patterns when confirmed by a moving average filter. Designed for swing trading on 30-minute charts with compatibility for M15 and H1 time frames. Key Features: Pattern Recognition - Detects valid bullish/bearish engulfing candle formations Trend Confirmation - 238-period SMA filter
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,
ENGLISH DESCRIPTION (MQL5 Standard Optimized) Product Name: Vanguard Nexus AI (MT5) [Subtitle: Liquidity Sweep Hunter | FRAMA Trend Alignment | Smart Scaling] Introduction Vanguard Nexus AI is an advanced algorithmic trading system engineered to capitalize on market manipulation and stop-hunting. Instead of buying breakouts that often fail, the "Nexus Architecture" waits for the market to sweep liquidity pools (fakeouts) before entering in the direction of the true macro trend. The system is pow
このプロダクトを購入した人は以下も購入しています
Azimuth Pro
Ottaviano De Cicco
5 (6)
Azimuth Pro V2:MT5向けシンセティック・フラクタル構造分析と確認済みエントリー 概要 Azimuth Pro は Merkava Labs によるマルチレベルスイング構造インジケーターです。4つのネストされたスイングレイヤー、スイングアンカーVWAP、ABCパターン検出、3タイムフレーム構造フィルタリング、そして確定バーでの確認済みエントリー — 1つのチャートで、ミクロスイングからマクロサイクルまでを網羅するワークフロー。 これはブラインドシグナル製品ではありません。ロケーション、コンテキスト、タイミングを重視するトレーダーのための構造ファーストワークフローです。 V2発売記念オファー — Azimuth Pro V2をUSD 399で(次の100本)。最終価格:USD 499。 1. V2での変更点 シンセティック・マルチタイムフレームエンジン 上位タイムフレーム分析をMeridian Proと同じ独自のシンセティックアーキテクチャで一から再構築。よりクリーンなHTFコンテキスト、安定したライブ動作、従来のMTF同期問題なし。シンセティックエンジンは 固定比率タ
このインジケーターを購入された方には、以下の特典を 無料 で提供しています: 各トレードを自動で管理し、ストップロスとテイクプロフィットを設定し、戦略ルールに基づいてポジションを決済する補助ツール 「Bomber Utility」 様々な銘柄に合わせたインジケーターの設定ファイル(セットファイル) 「最小リスク」、「バランスリスク」、「待機戦略」 の3つのモードで使用できる Bomber Utility 用の設定ファイル このトレーディング戦略をすぐに導入・設定・開始できる ステップバイステップのビデオマニュアル ご注意: 上記の特典を受け取るには、MQL5のプライベートメッセージシステムを通じて販売者にご連絡ください。 オリジナルのカスタムインジケーター 「Divergence Bomber(ダイバージェンス・ボンバー)」 をご紹介します。これは、MACDのダイバージェンス(乖離)戦略に基づいた 「オールインワン」型のトレーディングシステム です。 このテクニカルインジケーターの主な目的は、価格とMACDインジケーターの間に発生するダイバージェンスを検出 し、将来の価格の動きを示す
Quantum TrendPulse を ご紹介します。これは、   SuperTrend   、   RSI   、および Stochastic のパワーを 1 つの包括的なインジケーターに組み合わせて、取引の可能性を最大限に引き出す究極の取引ツールです。精度と効率を求めるトレーダー向けに設計されたこのインジケーターは、市場のトレンド、勢いの変化、最適なエントリー ポイントとエグジット ポイントを自信を持って特定するのに役立ちます。 主な特徴: SuperTrend 統合: 現在の市場動向に簡単に追従し、収益性の波に乗ることができます。 RSI精度: 買われすぎと売られすぎのレベルを検出し、市場の反転のタイミングに最適で、SuperTrendのフィルターとして使用されます。 確率的精度: 確率的振動を活用して、変動の激しい市場で隠れたチャンスを見つけます。SuperTrend のフィルターとして使用されます。 マルチタイムフレーム分析:   M5 から H1 または H4 まで、さまざまなタイムフレームで市場を常に把握します。 カスタマイズ可能なアラート: カスタム取引条件が満たされ
BTMM State Engine Pro is a MetaTrader 5 indicator for traders who use the Beat The Market Maker approach: Asian session context, kill zone timing, level progression, peak formation detection, and a multi-pair scanner from a single chart. It combines cycle state logic with a built-in scanner dashboard so you do not need the same tool on many charts at once. What it does Draws the Asian session range; session times can follow broker server offset or be set in inputs. Tracks level progression (L
OmniSync Projection
Antonio-alin Teculescu
5 (1)
Chronos Fractal Engine is an innovative price projection indicator for MetaTrader 5, designed to transform your technical analysis by intelligently identifying and projecting historical price patterns. Built upon an advanced correlation algorithm and the fractal principles of the market, this powerful tool visualizes potential future price movements, giving you a unique edge in your trading decisions. What is Chronos Fractal Engine? At its core, the Chronos Fractal Engine employs a sophisticat
ARICoin is a powerful trading companion designed to generate high-probability entry signals with dynamic TP/SL/DP levels based on volatility. Built-in performance tracking shows win/loss stats, PP1/PP2 hits, and success rates all updated live. Key Features: Buy/Sell signals with adaptive volatility bands Real-time TP/SL/DP levels based on ATR Built-in MA Filter with optional ATR/StdDev volatility Performance stats panel (Success, Profit/Loss, PP1/PP2) Alerts via popup, sound, push, or email Cust
まず第一に、この取引ツールはノンリペイント、ノンリドロー、ノンラグの指標であり、プロの取引に理想的ですことを強調する価値があります。 オンラインコース、ユーザーマニュアル、デモ。 スマートプライスアクションコンセプトインジケーターは、新米から経験豊富なトレーダーまで、非常 に強力なツールです。Inner Circle Trader AnalysisやSmart Money Concepts Trading Strategiesなど、20以上の有用な指標を1つに組み合わせています。このインジケーターはスマートマネーコンセプトに焦点を当て、大手機関の取引方法を提供し、彼らの動きを予測するのに役立ちます。 特に、流動性分析に優れており、機関がどのように取引しているかを理解しやすくしています。市場のトレンドを予測し、価格の動きを慎重に分析するのに優れています。機関の戦略とトレードを合わせることで、市場の動向についてより正確な予測ができます。このインジケーターは多目的であり、市場構造を分析し、重要な注文ブロックを特定し、さまざまなパターンを認識するのに優れています。 このインジケーター
Bill Williams Advanced is designed for automatic chart analysis using Bill Williams' "Profitunity" system. The indicator analyzes four timeframes at once. Manual (Be sure to read before purchasing) Advantages 1. Analyzes the chart using Bill Williams' "Profitunity" system. Signals are displayed in a table in the corner of the screen and on the price chart. 2. Finds all known AO and AC signals, as well as zone signals. Equipped with a trend filter based on the Alligator. 3. Finds "Divergence Bar
RelicusRoad Pro: 定量的市場オペレーティングシステム 【期間限定】無制限アクセス 70% OFF - 2,000人超のトレーダーと共に なぜ多くのトレーダーは「完璧な」インジケーターを使っても失敗するのでしょうか? それは、文脈を無視して 単一の概念 だけでトレードしているからです。文脈のないシグナルは単なるギャンブルです。勝ち続けるには、 根拠の重なり(コンフルエンス) が必要です。 RelicusRoad Proは単なる矢印インジケーターではありません。完全な 定量的市場エコシステム です。独自のボラティリティモデリングを用いて、価格が推移する「適正価値の道(Fair Value Road)」をマッピングし、ノイズと真の構造的ブレイクを判別します。 推測はやめましょう。機関投資家レベルの「ロード・ロジック」でトレードを。 コアエンジン:「Road」アルゴリズム システムの中心となる Road Algo は、市場環境にリアルタイムで適応するダイナミックなボラティリティチャネルです。 安全ライン(平衡点) と、価格が数学的に反転しやすい 拡張レベル を投影します。 Si
Berma Bands
Muhammad Elbermawi
5 (8)
Berma Bands (BBs) インジケーターは、市場のトレンドを特定して活用したいトレーダーにとって貴重なツールです。価格と BBs の関係を分析することで、トレーダーは市場がトレンド段階にあるか、レンジ段階にあるかを判断できます。 詳細については、[ Berma Home Blog ] をご覧ください。 バーマ バンドは、上部バーマ バンド、中部バーマ バンド、下部バーマ バンドの 3 つの異なる線で構成されています。これらの線は価格の周りにプロットされ、全体的な傾向に対する価格の動きを視覚的に表します。これらのバンド間の距離から、ボラティリティや潜在的な傾向の反転についての洞察を得ることができます。 バーマ バンドの線がそれぞれ離れると、市場が横ばいまたはレンジ相場の期間に入っていることを示すことがよくあります。これは、明確な方向性の偏りがないことを示しています。トレーダーは、これらの期間中にトレンドを特定するのが難しいと感じる可能性があり、より明確なトレンドが出現するまで待つ場合があります。 バーマ バンドの線が 1 本の線に収束すると、強いトレンド環境の兆候となること
ARIPoint is a powerful trading companion designed to generate high-probability entry signals with dynamic TP/SL/DP levels based on volatility. Built-in performance tracking shows win/loss stats, PP1/PP2 hits, and success rates all updated live. Key Features: Buy/Sell signals with adaptive volatility bands Real-time TP/SL/DP levels based on ATR Built-in MA Filter with optional ATR/StdDev volatility Performance stats panel (Success, Profit/Loss, PP1/PP2) Alerts via popup, sound, push, or email Cu
現在33%オフ 初心者にもエキスパートトレーダーにも最適なソリューション このインジケーターは独自の機能と新しい公式を多数内蔵しており、ユニークで高品質かつ手頃な取引ツールです。このアップデートでは、2つの時間枠ゾーンを表示できるようになります。より長いTFだけでなく、チャートTFとより長いTF(ネストゾーンを表示)の両方を表示できます。すべてのSupply Demandトレーダーの皆さんのお気に召すはずです。:) 重要情報の公開 Advanced Supply Demandの可能性を最大化するには、 https://www.mql5.com/ja/blogs/post/720245 にアクセスしてください。   エントリーまたはターゲットの正確なトリガーポイントを正確に特定できれば取引がどのように改善されるか想像してみてください。新しい基盤となるアルゴリズムに基づいて構築されているため、買い手と売り手の間の潜在的な不均衡をさらに簡単に特定できます。これは、最も強い需要と供給のゾーンと、過去のパフォーマンス(古いゾーンを表示)がグラフィカルに表現されるためです。これらの機能は、最適な
ICT PO3 (Power of 3) AMD Protocol Framework Indicator True Time & Structure Integration   |  Non-Repainting | Real-Time  | Multi-Asset  | MT4 Version Available Full Setup Guide & Strategy Playbook: https://www.mql5.com/en/blogs/post/768683 MT4 Version: https://www.mql5.com/en/market/product/171742 Indicator Overview The ICT PO3 AMD Protocol Framework is a complete structural overlay for MetaTrader 5 that maps the True Daily Cycle directly onto your lower-timeframe execution chart. It projects
トレンドトレーディング は、タイミングのプルバックとブレイクアウトにより、市場で起こっているトレンドから可能な限り利益を得るように設計された指標です。確立されたトレンドの中で価格が何をしているかを分析することにより、取引の機会を見つけます。 [ インストールガイド | 更新ガイド | トラブルシューティング | よくある質問 | すべての製品 ] 自信を持って効率的に金融市場を取引する むち打ちにならずに確立されたトレンドから利益を得る 収益性の高いプルバック、ブレイクアウト、早期の逆転を認識する この指標は、独自の品質とパフォーマンスを分析します 複数時間枠のダッシュボードを実装します インジケーターは再描画されていません 電子メール/音声/視覚アラートを実装します 確立されたトレンドは多くの取引機会を提供しますが、ほとんどのトレンド指標はそれらを完全に無視しています。インジケーターの解釈はかなり簡単です: (1) トレンドの変化 (2) トレンドの方向への後退 (3) トレンドの方向へのブレイクアウト 赤いダッシュ は下降トレンド中の修正です 青いダッシュ は上昇トレンド中
Introducing Indicator for PainX and GainX Indices Traders on Weltrade Get ready to experience the power of trading with our indicator, specifically designed for Weltrade   broker's PainX and GainX Indices.  Advanced Strategies for Unbeatable Insights Our indicator employs sophisticated strategies to analyze market trends, pinpointing optimal entry and exit points.  Optimized for Maximum Performance To ensure optimal results, our indicator is carefully calibrated for 5-minute timeframe charts on
Gartley Hunter Multi - An indicator for searching for harmonic patterns simultaneously on dozens of trading instruments and on all possible timeframes. Manual (Be sure to read before purchasing) | Version for MT4 Advantages 1. Patterns: Gartley, Butterfly, Shark, Crab. Bat, Alternate Bat, Deep Crab, Cypher 2. Simultaneous search for patterns on dozens of trading instruments and on all possible timeframes 3. Search for patterns of all possible sizes. From the smallest to the largest 4. All fou
優れたテクニカルインジケーター「Grabber」をご紹介します。これは、すぐに使える「オールインワン」トレーディング戦略として機能します。 ひとつのコードに、市場のテクニカル分析ツール、取引シグナル(矢印)、アラート機能、プッシュ通知が強力に統合されています。 このインジケーターを購入された方には、以下の特典を無料で提供します: Grabberユーティリティ:オープンポジションを自動で管理するツール ステップバイステップのビデオマニュアル:インジケーターのインストール、設定、取引方法を解説 カスタムセットファイル:インジケーターをすばやく自動設定し、最大限の成果を出すための設定ファイル 他の戦略はもう忘れてください!Grabberだけが、あなたを新たなトレードの高みへと導いてくれるのです。 Grabber戦略の主な特徴: 推奨タイムフレーム:M5〜H4 対応通貨ペア・資産:どれでも使用可能ですが、私が実際に検証した以下を推奨します(GBPUSD、GBPCAD、GBPCHF、AUDCAD、AUDUSD、AUDSGD、AUDCHF、NZDUSD、NZDCAD、EURCAD、EURUSD、E
AriX
Temirlan Kdyrkhan
1 (4)
AriX Indicator for MT5 A powerful trend-following and signal-evaluation tool AriX is a custom MT5 indicator that combines Moving Averages and ATR-based risk/reward logic to generate clear buy/sell signals. It visualizes dynamic SL/TP levels, evaluates past trade outcomes, and displays win/loss statistics in a clean on-chart panel. Key features include: Buy/Sell signals based on MA crossovers ATR-based SL/TP1/TP2/TP3 levels with visual lines and labels Signal outcome tracking with real-time stat
マーケットメーカーのためのツール。 Meravith は次の機能を提供します: すべての時間足を分析し、現在有効なトレンドを表示します。 強気と弱気の出来高が等しくなる流動性ゾーン(出来高均衡)を強調表示します。 異なる時間足のすべての流動性レベルをチャート上に直接表示します。 テキスト形式の市場分析を生成し、参考情報として表示します。 現在のトレンドに基づいて目標値、サポートレベル、ストップロスを計算します。 取引のリスクリワード比を算出します。 口座残高に基づいてポジションサイズを計算し、潜在的な利益を推定します。 また、市場に大きな変化があった場合には警告を表示します。 インジケーターの主要ライン: 強気/弱気の出来高エグゾーストライン ― 目標値として機能します。 市場のトレンドを示すライン。市場が強気か弱気かによって色が変わり、トレンドのサポートとして機能します。主にその色が市場センチメントを示します。 出来高均衡ライン(Eq)。Eq(Volume Equilibrium)ラインはシステムの中核です。これは買い手と売り手の出来高のバランスポイントを表します。市場の流動性を示し
12% OFF EASTER SALE The Trend Forecaster indicator utilizes a unique proprietary algorithm to determine entry points for a breakout trading strategy. The indicator identifies price clusters, analyzes price movement near levels, and provides a signal when the price breaks through a level. The Trend Forecaster indicator is suitable for all financial assets, including currencies (Forex), metals, stocks, indices, and cryptocurrencies. You can also adjust the indicator to work on any time frames, alt
FX Analysis is an all-in-one MT5 indicator dashboard that combines eight analytical tools in a single panel, helping traders identify high-probability setups without switching between charts or indicators. Designed for standard forex pairs on MetaTrader 5. Best results on M15 - H4 timeframes when all components are used together as part of the included workflow. Components Volatility Analyzer Displays historical average movement by hour and by day of the week. A real-time Pip Balance shows the
ご紹介     Quantum Breakout PRO は 、ブレイクアウト ゾーンの取引方法を変革する画期的な MQL5 インジケーターです。 13年以上の取引経験を持つ経験豊富なトレーダーのチームによって開発されました。     クォンタム ブレイクアウト プロ   は、革新的でダイナミックなブレイクアウト ゾーン戦略により、あなたのトレーディングの旅を新たな高みに押し上げるように設計されています。 クォンタム ブレイクアウト インジケーターは、5 つの利益ターゲット ゾーンを備えたブレイクアウト ゾーン上のシグナル矢印と、ブレイクアウト ボックスに基づいたストップロスの提案を提供します。 初心者トレーダーにもプロのトレーダーにも適しています。 量子EAチャネル:       ここをクリック 重要!購入後、インストールマニュアルを受け取るためにプライベートメッセージを送ってください。 推奨事項: 時間枠: M15 通貨ペア: GBPJPY、EURJPY、USDJPY、NZDUSD、XAUUSD アカウントの種類: ECN、Raw、またはスプレッドが非常に低い R
Shock Pullback
Suleiman Alhawamdah
5 (1)
簡単に言えば、現在のローソク足の横に「ピップス」として知られる白い数字の動きが現れ始めたら、取引を開始できます。白い「ピップス」は、買いまたは売りの取引が現在アクティブであり、白色で示されるように正しい方向に動いていることを示しています。白いピップスの動きが止まり、静的な緑色に変わったとき、それは現在のモメンタムの終了を示します。数字の緑色は、買いまたは売りの取引から得られた「ピップス」での総利益を表します。 さらに、インジケーター内の他の高度でプロフェッショナルな分析ツールに従って取引を開始することも可能です。インジケーターに表示されるシグナルや色を観察することで、高精度で多数のスキャルピングチャンスを捉えることができます。テスト中またはリアルチャート上でインジケーターの動作を理解しておくことをお勧めします。 ほとんどのFX市場に対応:金(ゴールド)や人気の株価指数市場(ダウ・ジョーンズ、S&P500、ナスダック、DAXなど)、およびEUR/USD、GBP/USD、USD/JPYなどの主要通貨ペアでの取引に最適です。また、ビットコイン、イーサリアム、ステーブルコインなどの主要な暗号
これはMT5のインジケーターで、再描画なしで取引に参入するための正確なシグナルを提供します。 外国為替、暗号通貨、金属、株式、インデックスなど、あらゆる金融資産に適用できます。かなり正確な見積もりを提供し、取引を開始して終了するのに最適な時期を教えてくれます。1つのシグナルを処理しただけでインジケーターの元が取れた例の 動画 (6:22)をご覧ください。Entry PointsPro インジケーターの助けを借りたほとんどのトレーダーの最初の1週間の結果が改善しています。 Telegramグループ に登録してください。Entry Points Proインジケーターのメリットは次の通りです。 再描画のないエントリーシグナル 再描画されるインジケーターでは一度表示されたシグナルが削除されて大きな金銭的損失につながることがありますが、これと異なり、表示されて確認されたシグナルは消えることがありません。 エラーなしの取引開始 インジケーターアルゴリズムによって取引を開始する(資産を売買する)理想的な瞬間を見つけることができます。それを使用するすべてのトレーダーの成功率が向上します。 あら
Introduction to X3 Chart Pattern Scanner X3 Cherart Pattern Scanner is the non-repainting and non-lagging indicator detecting X3 chart patterns including Harmonic pattern, Elliott Wave pattern, X3 patterns, and Japanese Candlestick patterns. Historical patterns match with signal patterns. Hence, you can readily develop the solid trading strategy in your chart. More importantly, this superb pattern scanner can detect the optimal pattern of its kind. In addition, you can switch on and off individu
このインジケーターは実践的なトレードに最適な自動波動分析のインジケーターです! 場合... 注:   Tang Lun (Tang Zhong Shuo Zen) の命名規則の影響で、私は波のグレーディングに西洋の名前を使用することに慣れていません。基本的な波を ペン 、二次波のバンドを セグメント と名付けました。同時に、 セグメント にはトレンドの方向が指定されます (この命名方法は将来のノートで使用されます。最初に言っておきます)。ただし、アルゴリズムは曲がりくねった理論とはほとんど関係がないため、付けるべきではありません。これは、私の市場分析 によって要約された、絶えず変化する複雑な運用ルール を反映しています。 バンドは標準化され、人によって異なることがないよう定義されており、市場参入を厳密に分析する上で重要な役割を果たす人為的な干渉の描画方法が排除されています。 このインジケーターを使用することは、取引インターフェイスの美しさを改善することと同等であり、元の K ライン取引を放棄し、取引の新しいレベルに連れて行きます。また、宣伝の観点から顧客の認識も向上します。 イ
発見が困難で頻度が少ないため、分岐は最も信頼できる取引シナリオの1つです。このインジケーターは、お気に入りのオシレーターを使用して、通常の隠れた分岐点を自動的に見つけてスキャンします。 [ インストールガイド | 更新ガイド | トラブルシューティング | よくある質問 | すべての製品 ] 取引が簡単 通常の隠れた発散を見つけます 多くのよく知られている発振器をサポート ブレイクアウトに基づいて取引シグナルを実装します 適切なストップロスおよび利益レベルを表示します 設定可能なオシレーターパラメーター カスタマイズ可能な色とサイズ バー単位でサイズ別に分岐をフィルタリング パフォーマンス統計を実装します 電子メール/音声/視覚アラートを実装します 幅広い市場の見通しを提供するために、異なるオシレーターを使用して、干渉なしで同じチャートにインジケーターを何度もロードできます。このインジケーターは、次のオシレーターをサポートしています。 RSI CCI MACD オスマ 確率的 勢い 素晴らしい発振器 加速器発振器 ウィリアムズパーセントレンジ 相対活力指数 特に外国為替市場では、
このインディケータは、価格アクション分析とドンチャンチャネルのみを使用して、ジグザグ方式で価格の反転を検出します。再描画やバックペインティングを一切行わずに、短期取引向けに特別に設計されています。それは彼らの操作のタイミングを増やすことを目指している賢明なトレーダーにとって素晴らしいツールです。 [ インストールガイド | 更新ガイド | トラブルシューティング | よくある質問 | すべての製品 ] 驚くほど簡単に取引できます すべての時間枠で価値を提供します 自己分析統計を実装します 電子メール/音声/視覚アラートを実装します 可変長のブレイクアウトと混雑ゾーンに基づいて、インディケータは価格アクションのみを使用して取引を選択し、市場が非常に高速に行っていることに反応します。 過去のシグナルの潜在的な利益が表示されます この指標は、独自の品質とパフォーマンスを分析します 負けブレイクアウトは強調表示され、説明されます インジケータは、非バックペインティングおよび非再ペイントです この指標は、日中のトレーダーが単一の価格反転を見逃さないようにするのに役立ちます。ただし、すべての
Ultimate SMC Indicator
Hicham Mahmoud Almoustafa
1 (1)
Ultimate SMC Indicator v2.20 — Smart Money Concepts All-in-One Stop switching between 5 different indicators. Ultimate SMC gives you everything Smart Money traders need — in one clean indicator with interactive controls. GUIDE What makes this different? Most SMC indicators show you Order Blocks or FVGs separately. You still have to figure out which zones actually matter. Ultimate SMC does the hard work: it scans for Order Blocks, Fair Value Gaps, Liquidity Sweeps, Supply & Demand zones, Fibo
この位置が買いに適しているかどうかの判断をサポートします。 この位置が売りに適しているかどうかの判断をサポートします。 4つの指標が同時に底に達した場合は、反発のチャンスに注目してください。 4つの指標が同時に天井付近にある場合は、下落のチャンスに注目してください。 本システムは、中国の先進的なアルゴリズム技術と高度な数学モデリング体系に基づいて構築されています。 私は主に XAUUSD M5 でこの指標を使用しており、この時間足が最も良い結果を示します。 この指標のアルゴリズムと数式は非常に複雑なため、テスト時に動作が遅くなる場合があります。テストでは、リペイントの有無と遅れの有無を確認してください。正式版では実際の使用時により安定します。 この指標システムはリペイントせず、未来データも使用しません。ご購入前にご自身でテストしてご確認いただけます。 この指標には完全にカスタマイズ可能なアラートシステムが搭載されており、以下のリンクからご確認いただけます。 正式に使用する前に、完全な使用説明を十分にお読みください。 ご不明な点がございましたら、どうぞお早めにご連絡ください。できるだけ早
作者のその他のプロダクト
This indicator provides the ability to recognize the SMC pattern, essentially a condensed version of the Wyckoff model. Once the pattern is confirmed by RTO, it represents a significant investment opportunity.    There are numerous indicators related to SMC beyond the market, but this is the first indicator to leverage patterns to identify specific actions of BigBoy to  navigate the market. Upgrade 2024-03-08: Add TP by RR feature. The SMC (Smart Money Concept)   pattern   is a market analysis m
This indicator shows when user set sessions are active and returns various tools + metrics using the closing price within active sessions as an input. Users have the option to change up to 4 session times. The indicator will increasingly lack accuracy when the chart timeframe is higher than 1 hour. Settings Sessions Enable Session: Allows to enable or disable all associated elements with a specific user set session. Session Time: Opening and closing times of the user set session in the  
This is a Forex Scalping Trading Sytem based on the Bollinger Bands.  Pairs:Major Time frame: 1M or higher. Spread max:0,0001.  Indicators (just suggestion) Bollinger bands (20, 2); ADX (14 period); RSI   (7 period ). Y ou should only trade this system between 2am to 5am EST, 8am to 12am EST and 7.30pm to 10pm EST. Do not scalp 30 minutes before a orange or red news  report and not for a hour afterwards.   Setup: is for price to move above the lower or lower Bollinger Bands, RSI raise above the
FREE
ICT Concepts
Minh Truong Pham
5 (2)
The ICT Concepts indicator regroups core concepts highlighted by trader and educator "The Inner Circle Trader" (ICT) into an all-in-one toolkit. Features include Market Structure (MSS & BOS), Order Blocks, Imbalances, Buyside/Sellside Liquidity, Displacements, ICT Killzones, and New Week/Day Opening Gaps. It’s one kind of Smart money concepts. USAGE: Please read this document  !    DETAILS Market Structure Market structure labels are constructed from price breaking a prior extreme point. T
The indicator returning pivot point based trendlines with highlighted breakouts . Trendline caculated by pivot point and other clue are ATR, Stdev. The indicator also includes integrated alerts for  trendlines  breakouts and foward message to Telegram channel or group if you want. Settings ·          Lookback bar: Default 200 is number of bar caculate when init indicator. ·          Length:  Pivot points  period ·          Slope Calculation Method: Determines how this lope is calculated. We supp
The SuperTrend AI indicator is a novel take on bridging the gap between the K-means clustering machine learning method & technical indicators. In this case, we apply K-Means clustering to the famous SuperTrend indicator.   USAGE Users can interpret the SuperTrend AI trailing stop similarly to the regular SuperTrend indicator. Using higher minimum/maximum factors will return longer-term signals. (image 1) The displayed performance metrics displayed on each signal allow for a deeper interpretat
This is addition of  Effective SV squeeze momentum  that add bolliger band and Keltner channel to chart window.  Squeeze momentum introduced by “John Carter”, the squeeze indicator for MT5 represents a volatility-based tool. Regardless, we can also consider the squeeze indicator as a momentum indicator, as many traders use it to identify the direction and strength of price moves. In fact, the Tradingview  squeeze indicator shows when a financial instrument is willing to change from a trending ma
FREE
The Inversion Fair Value Gaps (IFVG) indicator is based on the inversion FVG concept by ICT and provides support and resistance zones based on mitigated Fair Value Gaps (FVGs). Image 1   USAGE Once mitigation of an FVG occurs, we detect the zone as an "Inverted FVG". This would now be looked upon for potential support or resistance. Mitigation occurs when the price closes above or below the FVG area in the opposite direction of its bias. (Image 2) Inverted Bullish FVGs Turn into Potenti
Introduction One of the patterns in "RTM" is the "QM" pattern, also known as "Quasimodo". Its name is derived from the appearance of "Hunchback of Notre-Dame" from Victor Hugo's novel. It is a type of "Head and Shoulders" pattern.   Formation Method   Upward Trend In an upward trend, the left shoulder is formed, and the price creates a new peak higher than the left shoulder peak . After a decline, it manages to break the previous low and move upward again. We expect the price to
All about Smart Money Concepts Strategy: Market struture: internal or swing BOS, CHoCH; Orderblock; Liquity equal; Fair Value Gap with Consequent encroachment, Balanced price range; Level with Previous month, week, day level or in day level (PMH, PWH, PDH, HOD); BuySell Stops Liquidity (BSL, SSL); Liquidity Void Long Wicks; Premium and Discount; Candle pattern ... "Smart Money Concepts" ( SMC ) is a fairly new yet widely used term amongst price action traders looking to more accurately navigate
The indicator   returning pivot point based trendlines with highlighted breakouts . Trendline caculated by pivot point and other clue are ATR, Stdev.   The indicator also includes integrated alerts for  trendlines  breakouts   and foward message to Telegram channel or group if you want. Settings ·            Lookback bar: Default 200 is number of bar caculate when init indicator. ·            Length:  Pivot points  period ·            Slope Calculation Method: Determines how this lope is calcula
This all-in-one indicator displays real-time market structure (internal & swing BOS / CHoCH), order blocks, premium & discount zones, equal highs & lows, and much more...allowing traders to automatically mark up their charts with widely used price action methodologies. Following the release of our Fair Value Gap script, we received numerous requests from our community to release more features in the same category. //------------------------------------// Version 1.x has missing functions + PDAr
The Breaker Blocks with Signals indicator aims to highlight a complete methodology based on breaker blocks. Breakout signals between the price and breaker blocks are highlighted and premium/discount swing levels are included to provide potential take profit/stop loss levels. This script also includes alerts for each signal highlighted.   SETTINGS   Breaker Blocks Length: Sensitivity of the detected swings used to construct breaker blocks. Higher values will return longer term break
The ICT Concepts indicator regroups core concepts highlighted by trader and educator "The Inner Circle Trader" (ICT) into an all-in-one toolkit. Features include Market Structure (MSS & BOS), Order Blocks, Imbalances, Buyside/Sellside Liquidity, Displacements, ICT Killzones, and New Week/Day Opening Gaps. It’s one kind of Smart money concepts.   USAGE:   Please read this   document  !      DETAILS Market Structure Market structure labels are constructed from price breaking a prior extreme
The FollowLine indicator is a trend following indicator. The blue/red lines are activated when the price closes above the upper Bollinger band or below the lower one. Once the trigger of the trend direction is made, the FollowLine will be placed at High or Low (depending of the trend). An ATR filter can be selected to place the line at a more distance level than the normal mode settled at candles Highs/Lows. Some features: + Trend detech + Reversal signal + Alert teminar / mobile app
The ICT Silver Bullet indicator is inspired from the lectures of "The Inner Circle Trader" (ICT) and highlights the Silver Bullet (SB) window which is a specific 1-hour interval where a Fair Value Gap (FVG) pattern can be formed. A detail document about ICT Silver Bullet here . There are 3 different Silver Bullet windows (New York local time): The London Open Silver Bullet (3 AM — 4 AM ~ 03:00 — 04:00) The AM Session Silver Bullet (10 AM — 11 AM ~ 10:00 — 11:00) The PM Session Silver Bullet (2
This indicator shows when user set sessions are active and returns various tools + metrics using the closing price within active sessions as an input. Users have the option to change up to 4 session times. The indicator will increasingly lack accuracy when the chart timeframe is higher than 1 hour. Settings Sessions Enable Session: Allows to enable or disable all associated elements with a specific user set session. Session Time: Opening and closing times of the user set session in the  
The liquidity swings indicator highlights swing areas with existent trading activity. The number of times price revisited a swing area is highlighted by a zone delimiting the swing areas. Additionally, the accumulated volume within swing areas is highlighted by labels on the chart. An option to filter out swing areas with volume/counts not reaching a user-set threshold is also included. This indicator by its very nature is not real-time and is meant for descriptive analysis alongside other com
OVERVIEW A Lorentzian Distance Classifier (LDC) is a Machine Learning classification algorithm capable of categorizing historical data from a multi-dimensional feature space. This indicator demonstrates how Lorentzian Classification can also be used to predict the direction of future price movements when used as the distance metric for a novel implementation of an Approximate Nearest Neighbors (ANN) algorithm. This indicator provide signal as buffer, so very easy for create EA from this indi
This script automatically calculates and updates ICT's daily IPDA look back time intervals and their respective discount / equilibrium / premium, so you don't have to :) IPDA stands for Interbank Price Delivery Algorithm. Said algorithm appears to be referencing the past 20, 40, and 60 days intervals as points of reference to define ranges and related PD arrays. Intraday traders can find most value in the 20 Day Look Back box, by observing imbalances and points of interest. Longer term traders c
An Implied Fair Value Gap (IFVG) is a three candles imbalance formation conceptualized by ICT that is based on detecting a larger candle body & then measuring the average between the two adjacent candle shadows. This indicator automatically detects this imbalance formation on your charts and can be extended by a user set number of bars. The IFVG average can also be extended until a new respective IFVG is detected, serving as a support/resistance line. Alerts for the detection of bullish/be
Consolidation is when price is moving inside a clear trading range. When prices are consolidated it shows the market maker placing orders on both sides of the market. This is mainly due to manipulate the un informed money. This indicator automatically identifies consolidation zones and plots them on the chart. The method of determining consolidation zones is based on pivot points and ATR, ensuring precise identification. The indicator also sends alert notifications to users when a new consolida
This indicator presents an alternative approach to identify Market Structure. The logic used is derived from learning material created by   DaveTeaches (on X) Upgrade v1.10: add option to put protected high/low value to buffer (figure 11, 12) When quantifying Market Structure, it is common to use fractal highs and lows to identify "significant" swing pivots. When price closes through these pivots, we may identify a Market Structure Shift (MSS) for reversals or a Break of Structure (BOS) for co
Created by imjesstwoone and mickey1984, this trade model attempts to capture the expansion from the 10:00-14:00 EST 4h candle using just 3 simple steps. All of the information presented in this description has been outlined by its creators, all I did was translate it to MQL4. All core settings of the trade model may be edited so that users can test several variations, however this description will cover its default, intended behavior using NQ 5m as an example. Step 1 is to identify our Price Ra
The Buyside & Sellside Liquidity indicator aims to detect & highlight the first and arguably most important concept within the ICT trading methodology,   Liquidity   levels. SETTINGS Liquidity Levels Detection Length: Lookback period Margin: Sets margin/sensitivity for a liquidity level detection Liquidity Zones Buyside Liquidity Zones: Enables display of the buyside liquidity zones. Margin: Sets margin/sensitivity for the liquidity zone boundaries. Color: Color option for buysid
The   Liquidation Estimates (Real-Time)   experimental indicator attempts to highlight real-time long and short liquidations on all timeframes. Here with liquidations, we refer to the process of forcibly closing a trader's position in the market. By analyzing liquidation data, traders can gauge market sentiment, identify potential support and resistance levels, identify potential trend reversals, and make informed decisions about entry and exit points. USAGE (Img 1)    Liquidation refers
The   ICT Unicorn Model   indicator highlights the presence of "unicorn" patterns on the user's chart which is derived from the lectures of   "The Inner Circle Trader" (ICT) . Detected patterns are followed by targets with a distance controlled by the user.   USAGE (image 2) At its core, the ICT Unicorn Model relies on two popular concepts, Fair Value Gaps and Breaker Blocks. This combination highlights a future area of support/resistance. A   Bullish Unicorn Pattern   consists out of:
Overview The   Volume SuperTrend AI   is an advanced technical indicator used to predict trends in price movements by utilizing a combination of traditional SuperTrend calculation and AI techniques, particularly the k-nearest neighbors (KNN) algorithm. The Volume SuperTrend AI is designed to provide traders with insights into potential market trends, using both volume-weighted moving averages (VWMA) and the k-nearest neighbors (KNN) algorithm. By combining these approaches, the indicator
OVERVIEW K-means is a clustering algorithm commonly used in machine learning to group data points into distinct clusters based on their similarities. While K-means is not typically used directly for identifying support and resistance levels in financial markets, it can serve as a tool in a broader analysis approach. Support and resistance levels are price levels in financial markets where the price tends to react or reverse. Support is a level where the price tends to stop falling and m
Introducing the Reversal and Breakout Signals   This innovative tool is crafted to enhance your chart analysis by identifying potential reversal and breakout opportunities directly on your charts. It's designed with both novice and experienced traders in mind, providing intuitive visual cues for better decision-making. Let's dive into the key features and how it operates: ###   Key Features:   Dynamic Period Settings:   Customize the sensitivity of the indicator with user-def
フィルタ:
レビューなし
レビューに返信