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
# RSI Pro Alert - Advanced RSI Indicator A powerful professional-grade RSI indicator with intelligent alerts, scheduled snapshots, and multi-dimensional notifications to help you capture market opportunities with precision! --- ## Key Features ### Smart Signal Detection - **Precision Cross Detection** : Automatically identifies critical moments when RSI crosses overbought/oversold levels - **State Tracking Mechanism** : Real-time monitoring of market state changes (Overbought/Overso
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 — это краткосрочная внутридневная торговая стратегия для фьючерсов на золото, которая сочетает в себе два подхода: трендовое следование и внутридневные развороты. Она позволяет не только получать прибыль при трендовом движении, но и своевременно фиксировать прибыль при развороте рынка, открывая позиции в новом направлении. Данная стратегия на протяжении 15 лет подряд входила в десятку самых прибыльных торговых стратегий по версии американского журнала Futures Truth. Она
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ó
HAS RSI Signal — Профессиональный трендовый индикатор с расчетом SL/TP HAS RSI Signal — это мощный торговый инструмент, объединяющий проверенную классику и современные алгоритмы фильтрации шума. Индикатор анализирует рынок через призму сглаженных свечей Heiken Ashi и осциллятора RSI, предоставляя трейдеру четкие сигналы на вход в моменты разворота тренда или выхода из зон перекупленности/перепроданности. Основные преимущества: Двойная фильтрация: Использование Heiken Ashi Smoothed позволяет искл
AW Heiken Ashi MT5
AW Trading Software Limited
AW Heiken Ashi — Умный индикатор тренда и уровней TP. Продвинутый индикатор на основе классического Heiken Ashi, адаптированный для трейдеров, с большей гибкостью гибкость и наглядность. В отличие от стандартного индикатора, AW Heiken Ashi  помогает анализировать тренд, определять цели по прибыли и фильтровать ложные сигналы, обеспечивая более уверенные торговые решения. Гайд по настройке и инструкция - Здесь  / MT4 Версия - Здесь Преимущества AW Heiken Ashi: Работает на любых активах и таймфрей
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
-         What it does? Opens BUY (or SELL) orders automatically every X pips you decide. Closes each trade at your personal TP .  Works on any symbol: SP500, NAS100, GOLD, EURUSD, BTC... 100 % YOUR SETTINGS   What can you enter in the settings? - Trading direction: Buy or Sell - Entry level - Entry volume - Maximum number of buy orders - Maximum number of sell orders - Pips required for each new entry - Pips to take profit per trade - Stop Loss Level - Close all trades when SL level is hit Exam
Neon Trade — суперсовременное торговое решение, которое открывает вам путь к финансовой свободе и наивысшему уровню трейдинга Я стремился создать уникальное торговое решение, способное удовлетворить потребности любого трейдера независимо от его целей и задач. Основной идеей стало объединение машинного обучения с продвинутыми торговыми приёмами таким образом, чтобы извлечь максимум из их совместного использования. Система применима как для разгона небольших депозитов за 1–2 месяца, так и для мак
О индикаторе Этот индикатор основан на моделировании Монте-Карло закрывающих цен финансового инструмента. По определению, Монте-Карло — это статистический метод, используемый для моделирования вероятности различных исходов в процессе, включающем случайные числа, основанные на ранее наблюдаемых результатах. Как это работает? Этот индикатор генерирует несколько сценариев цен для ценной бумаги, моделируя случайные изменения цен с течением времени на основе исторических данных. Каждый пробный запус
##   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 вдохновленный EA Профессиональная торговая система зон спроса и предложения с подтверждением на нескольких таймфреймах Обзор Этот продвинутый Expert Advisor автоматически определяет и торгует высоковероятные зоны спроса и предложения, используя принципы институциональной торговли. EA сочетает классическое определение зон спроса/предложения с современными фильтрами подтверждения, включая Break of Structure (BoS), Fair Value Gaps (FVG) и валидацию на старших таймфреймах. Ссыл
FREE
Индикатор определяет сигналы дивергенции - расхождения пиков цены и показаний осцилятора MACD. Сигналы отображаются стрелками в дополнительном окне и сопровождаются сообщениями во всплывающем окне, на электронную почту и на мобильное устройство. На графике и в окне индикатора линиями отмечаются условия, при которых сформирован сигнал. Параметры индикатора MacdFast - период быстрой линии MACD MacdSlow - период медленной линии MACD MacdSignal - период сигнальной линии MACD MacdPrice - цены индика
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
PipsPro Scalper Gold
Hayyu Imam Muhammad
1 (1)
*This product special for XAUUSD* pair. Therefore, all additional features and strategies in future updates will be included in this product . Published at 2026.04.18 |   --> NEXT PRICE $359 USD BONUS:   [EtherPro Scalper EA]  -  Send a private message after you make a purchase to get a free EA bonus, depending on your subscription. [LIVE SIGNAL ]   Added new features --> AI Position Management System PipsPro Scalper Gold (MT5) is an Expert Advisor developed exclusively for XAUUSD trading. It
Bober Real MT5
Arnold Bobrinskii
4.88 (16)
Bober Real MT5 — полностью автоматический советник для торговли на рынке Forex. Робот создан в 2014 году и за этот период сделал множество прибыльных сделок, показав более 7000% прироста депозита на моем личном счете. Было выпущено много обновлений, но версия 2019 года считается самой стабильной и прибыльной. Робот можно запускать на любых инструментах, но лучшие результаты достигаются на EURGBP , GBPUSD , таймфрейм M5 . Робот не покажет хорошие результаты в тестере или на реальном счете, если
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. Краткое описание: Хейкен-Аши особенно ценится за способность отфильтровывать краткосрочную волатильность, что делает его предпочтительным инструментом для выявления и отслеживания трендов, помогает принимать решения о точках входа и выхода, а также отличать ложные сигналы от настоящих разворотов тренда. В отличие от традиционных свечных графиков, свечи Хейкен-Аши рассчитываются с использованием средних значений предыдущих
PipFinite Trend PRO MT5
Karlo Wilson Vendiola
4.84 (557)
Стратегия пробоя для торговли по тренду, фильтрация и все необходимые функции, встроенные в один инструмент! Интеллектуальный алгоритм индикатора Trend Pro с точностью определяет тренд, отфильтровывает рыночный шум и генерирует входные сигналы и уровни выхода. Новые функции с расширенными правилами статистического расчета улучшают общую производительность этого индикатора. Важная информация Для максимального использования потенциала Trend Pro прочитайте полное описание www.mql5.com/en/blogs/p
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. Краткое описание: Хейкен-Аши особенно ценится за способность отфильтровывать краткосрочную волатильность, что делает его предпочтительным инструментом для выявления и отслеживания трендов, помогает принимать решения о точках входа и выхода, а также отличать ложные сигналы от настоящих разворотов тренда. В отличие от традиционных свечных графиков, свечи Хейкен-Аши рассчитываются с использованием средних значений предыдущих
Classic SNR EA Эксперт для MetaTrader 5 | Мульти-символьная торговля по уровням Support & Resistance с трендовой логикой Обзор Classic SNR Breakout EA - это профессиональный торговый робот, который определяет структурные уровни поддержки и сопротивления (Support & Resistance) с использованием дневных точек разворота и совершает сделки на основе ценового действия часового таймфрейма (H1) относительно этих уровней. EA применяет   двойную логику : на восходящем тренде продает при отбое (закрытии H1
Exclusive black Pro Max MT5 — автоматизированная торговая система Exclusive black Pro Max MT5 — это эксперт-советник для MetaTrader 5, основанный на алгоритмах анализа рынка и управлении рисками. Советник работает в полностью автоматическом режиме и требует минимального вмешательства со стороны трейдера. Внимание! Свяжитесь со мной сразу после покупки , чтобы получить инструкции по настройке! ВАЖНО: Все примеры, скриншоты и тесты приведены исключительно в демонстрационных целях. Если у одного бр
Order Blocks All-in-One — SMC Indicator for MT5 For MT4 version :  https://www.mql5.com/en/market/product/166056 The only Order Block indicator you'll ever need. Track the complete lifecycle of every Order Block — from formation to mitigation to breakout — all in one single, powerful indicator. Built on Smart Money Concepts (SMC) originally introduced by the ICT community , this tool brings institutional-level market structure analysis dire
PR EA - Торговая система по паттернам Engulfing Автоматическое определение паттернов Engulfing с подтверждением скользящей средней PR EA - это советник для MetaTrader 5, который идентифицирует и торгует бычьи/медвежьи паттерны Engulfing при подтверждении фильтром скользящей средней. Оптимизирован для работы на 30-минутных таймфреймах с совместимостью с M15 и H1. Ключевые особенности: Распознавание паттернов - Выявляет действительные формации Engulfing Подтверждение тренда - Фильтр SMA 23
С этим продуктом покупают
Neuro Poseidon - новый индикатор от Дарьи Резуевой. Он сочетает точные торговые сигналы с адаптивными уровнями TP/SL , в результате создавая максимально выгодные сделки! TO SWITCH TO   ENG   PLEASE CHOOSE IT IN THE UPPER-RIGHT CORNER OF THE WEBSITE Напишите мне и получите  Neuro Poseidon Assistant  в подарок для автоматизации вашей торговли! Что отличает его от других индикаторов? 1. Доказанная прибыльность на всех активах и таймфреймах 2. На графике присутствуют только подтвержденные сигналы н
PrimeScalping 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 e
Каждый покупатель этого индикатора получает дополнительно Бесплатно: Авторскую утилиту "Bomber Utility", которая автоматически сопровождает каждю торговую операцию, устанавливает уровни Стоп Лосс и Тейк профит и закрывает сделки согласно правилам этой стратегии, Сет-файлы для настройки этого индикатора на различных активах, Сет-файлы для настройки Bomber Utility в режимы: "Минимум Риска", "Взвешенный Риск" и "Стратегия Выжидания", Пошаговый видео-мануал, который поможет вам быстро установить, на
SignalTech MT5 is an unique fully rule based trading system for EURUSD, USDCHF, USDJPY, AUDUSD, NZDUSD, EURJPY, AUDJPY, NZDJPY, CADJPY.  All the winning trades with chart setups are published on the comments page. 2026-05 4107 Pips (Until 05-29 NY Closed) 2026-04 2243 Pips 2026-03 2165 Pips 2026-02 2937 Pips 2026-01 2624 Pips 2025-12 1174 Pips It can generate signals with Buy/Sell Arrows and Pop-Up/Sound Alerts. Each signal has clear Entry and Stop Loss levels, which should be automatically flag
Представляем       Quantum Breakout PRO   , новаторский индикатор MQL5, который меняет ваш способ торговли в зонах прорыва! Разработан командой опытных трейдеров со стажем торговли более 13 лет,       Квантовый прорыв PRO       разработан, чтобы поднять ваше торговое путешествие к новым высотам с его инновационной и динамичной стратегией зоны прорыва. Quantum Breakout Indicator покажет вам сигнальные стрелки на зонах прорыва с 5 целевыми зонами прибыли и предложением стоп-лосса на основе поля
Azimuth Pro
Ottaviano De Cicco
5 (7)
Azimuth Pro V2: Синтетический фрактальный структурный анализ и подтверждённые входы для MT5 Обзор Azimuth Pro — многоуровневый индикатор свинговой структуры от Merkava Labs . Четыре вложенных уровня свингов, привязанный к свингам VWAP, определение ABC-паттернов, трёхтаймфреймная структурная фильтрация и подтверждённые входы на закрытой свече — один график, один рабочий процесс от микро-свингов до макро-циклов. Это не слепой сигнальный продукт. Это рабочий процесс, основанный на структуре, для т
Quantum TrendPulse
Bogdan Ion Puscasu
5 (25)
Представляем   Quantum TrendPulse   , совершенный торговый инструмент, который объединяет мощь   SuperTrend   ,   RSI   и   Stochastic   в один комплексный индикатор, чтобы максимизировать ваш торговый потенциал. Разработанный для трейдеров, которые ищут точность и эффективность, этот индикатор помогает вам уверенно определять рыночные тренды, сдвиги импульса и оптимальные точки входа и выхода. Основные характеристики: Интеграция SuperTrend:   легко следуйте преобладающим рыночным тенденциям и п
Этот продукт был обновлен для рынка 2026 года и оптимизирован для последних сборок MT5. УВЕДОМЛЕНИЕ ОБ ИЗМЕНЕНИИ ЦЕНЫ: Smart Price Action Concepts сейчас доступен за $200 . Цена увеличится до $299 после следующих 30 покупок . СПЕЦИАЛЬНОЕ ПРЕДЛОЖЕНИЕ: После покупки отправьте мне личное сообщение, чтобы получить БЕСПЛАТНЫЙ бонус + подарок . Прежде всего, стоит подчеркнуть, что этот торговый инструмент является индикатором без перерисовки, без перерисовывания истории и без запаздывания, что делает
RelicusRoad Pro: Квантовая Рыночная Операционная Система СКИДКА 70% ПОЖИЗНЕННЫЙ ДОСТУП (ОГРАНИЧЕНО) - ПРИСОЕДИНЯЙТЕСЬ К 2000+ ТРЕЙДЕРАМ Почему большинство трейдеров теряют деньги даже с «идеальными» индикаторами? Потому что они торгуют Единичными Концепциями в вакууме. Сигнал без контекста — это лотерея. Чтобы выигрывать стабильно, вам нужна КОНФЛЮЭНЦИЯ . RelicusRoad Pro — это не простой стрелочный индикатор. Это полная Количественная Рыночная Экосистема . Она отображает «Дорогу Справедливой Сто
ARIPoint
Temirlan Kdyrkhan
1 (1)
ARIBot 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 Cus
META TREND PRO   — это трендовый инструмент, который убирает догадки из торговли и показывает, где рынок уже принял решение. Индикатор выявляет ключевые точки, в которых происходит смена тенденции, тренда и структуры, а также подсвечивает зоны, куда возвращается цена для набора позиций крупными игроками. Вы видите не просто движение — вы понимаете логику, стоящую за ним. Все сигналы фиксируются после закрытия свечи, не перерисовываются и сохраняются на графике, позволяя уверенно анализировать си
Свинг-версия M30/H1/H4 доступна Хотите ловить большие движения? Gold Signal Swing Pro (M30/H1/H4). Цель: $20-$80+ за сделку. https://www.mql5.com/en/market/product/177643 KURAMA GOLD SIGNAL PRO (MT5) — Полная Торговая Система XAUUSD с 7-Слойным Фильтром Без перерисовки. Без перепрорисовки. Без задержки. Каждый сигнал остаётся зафиксированным после подтверждения. Бонус покупателю: Каждый, кто приобретает полную лицензию, получает AI Zone Radar (стоим
Meridian Pro
Ottaviano De Cicco
5 (2)
Meridian Pro 2.00: профессиональная multi-timeframe матрица тренда для MT5 Meridian Pro 2.00 - профессиональная адаптивная матрица тренда для MetaTrader 5. Она объединяет оригинальный трендовый движок Meridian, чистый chart ribbon, сигнальные стрелки по закрытому бару, dashboard на 8 таймфреймов, Fuel momentum, weighted consensus, synthetic HTF processing и chart-native линии контекста старших таймфреймов. Цель простая: читать текущий тренд, multi-timeframe структуру, силу, momentum и EA-ready с
M1 Quantum — это профессиональная торговая система для таймфрейма M1, которая предоставляет быстрые и точные торговые сигналы со встроенными уровнями Stop Loss, Take Profit и интеллектуальным управлением капиталом. M1 Quantum содержит профессиональную систему управления капиталом, разработанную для быстрого роста счета за счет серии непрерывных прибыльных сделок . Основные возможности индикатора M1 Quantum Разработан для таймфрейма M1 и всех основных валютных пар Каждая сделка имеет Stop Loss и
MetaForecast M5
Vahidreza Heidar Gholami
5 (3)
MetaForecast предсказывает и визуализирует будущее любого рынка на основе гармонии в данных о ценах. Хотя рынок не всегда предсказуем, если существует узнаваемый паттерн в ценах, то MetaForecast способен предсказать будущее с наибольшей точностью. По сравнению с другими аналогичными продуктами, MetaForecast способен генерировать более точные результаты, анализируя тренды на рынке. Входные параметры Past size (Размер прошлых данных) Указывает количество баров, которые MetaForecast использует для
Инструмент маркет-мейкеров. Meravith будет: Анализировать все таймфреймы и отображать текущий действующий тренд. Выделять зоны ликвидности (объёмное равновесие), где бычий и медвежий объём равны. Показывать все уровни ликвидности с разных таймфреймов прямо на вашем графике. Генерировать и отображать текстовый анализ рынка для вашего ориентирования. Рассчитывать цели, уровни поддержки и стоп-лосс в соответствии с текущим трендом. Вычислять соотношение риск/прибыль для ваших сделок. Определять раз
Большинство стрелочных индикаторов дают сигнал и оставляют вас самостоятельно разбираться со всем остальным. KT Alpha Hunter Arrows дает вам полный торговый план. Каждая сигнальная стрелка появляется вместе с уже готовым планом: линия входа, стоп-лосс, четыре уровня тейк-профита и живой вердикт по преимуществу, который показывает, стоит ли сейчас торговать данный символ и таймфрейм. В комплект входит Trade Manager EA, который берет на себя сопровождение сделки после вашего входа, помогая сохраня
Свинг-трейдинг - это первый индикатор, предназначенный для обнаружения колебаний в направлении тренда и возможных разворотов. Он использует базовый подход свинговой торговли, широко описанный в торговой литературе. Индикатор изучает несколько векторов цен и времени для отслеживания направления совокупного тренда и выявляет ситуации, когда рынок перепродан или перекуплен и готов к исправлению. [ Руководство по установке | Руководство по обновлению | Устранение неполадок | FAQ | Все продукты ] П
Btmm state engine pro
Garry James Goodchild
5 (5)
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
UZFX {SSS} Scalping Smart Signals MT5 — это высокоэффективный торговый индикатор без перерисовки, разработанный для скальперов, дейтрейдеров и свинг-трейдеров, которым требуются точные сигналы в режиме реального времени на быстро меняющихся рынках. Разработанный компанией (UZFX-LABS), этот индикатор сочетает в себе анализ ценового действия, подтверждение тренда и интеллектуальную фильтрацию для генерации сигналов на покупку и продажу с высокой вероятностью на всех валютных парах и таймфреймах.
Умный многослойный детектор пробоя и отката для MetaTrader 5 «Умно. Просто. Быстро!» Устали упускать точки входа с высокой вероятностью пробоя? Тратите часы на просмотр нескольких графиков, пытаясь совместить пробои с направлением тренда и динамикой валют — и всё равно упускаете движение? Break Pullback решает всё это с помощью одного индикатора. Что такое Break Pullback? Break Pullback — это профессиональный индикатор MetaTrader 5, созданный специально для трейдеров, торгующих по структуре ры
Current event:  https://c.mql5.com/1/326/A2SR2025_NoMusic.gif A2SR для MT5 Индикатор: Автоматизированный фактический спрос и предложение (S/R). + Торговые инструменты. Product description in English here. --   Guidance   : -- at   https://www.mql5.com/en/blogs/post/734748/page4#comment_16532516 -- and  https://www.mql5.com/en/users/yohana/blog Мощный, подлинный и экономящий время для более разумных торговых решений + Объекты, совместимые с EA. Основные преимущества Опережающие фактические
CRT Multi-Timeframe Market Structure & Liquidity Sweep Indicator Non-Repainting | Multi-Asset | MT4 Version Available MT4 Version: https://www.mql5.com/en/market/product/162556 Full Setup Guide: https://www.mql5.com/en/blogs/post/767525 Indicator Overview CRT Ghost Candle HTF Fractal is a complete institutional-grade market structure toolkit for MetaTrader 5. It projects higher-timeframe candle structure, CRT trap levels, session levels, previous period highs and lows, pivot points, and a real
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
Индикатор Trend Forecaster использует уникальный авторский алгоритм для определения точек входа в сделку по пробойной стратегии. Индикатор определяет ценовые скопления и анализирует движение цены возле уровней и показывает сигнал, когда цена пробивает уровень. Индикатор Trend Forecaster подходит для любых финансовых активов: валюты (Форекс), металлы, акции, индексы, криптовалюты. Также индикатор можно настроить для работы на любых тайм-фреймах, однако в качестве рабочего тайм-фрейма все же реком
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
Precision Spike Detector
Francisco Mandomo Simbine
5 (1)
Precision Spike Detector V3 – Institutional-Grade AI Trading System Attention: The price increases by US$50 for every 10 purchases.  Final price: US$599 Precision Spike Detector V3   is a   state-of-the-art, institutional-grade market analysis system   for   MetaTrader 5 , designed to detect   high-probability market movements   in synthetic indices such as   Boom, Crash, GainX, and PainX . After purchase, please contact me through the MQL5 messaging system to receive the order management tool
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
Индикатор точно показывает точки разворота и зоны возврата цены, где входят   крупные игроки . Вы видите, где формируется новый тренд, и принимаете решения с максимальной точностью, держа контроль над каждой сделкой. VERSION MT4     -    Раскрывает свой максимальный потенциал в связке с индикатором  TREND LINES PRO Что показывает индикатор: Разворотные конструкции и разворотные уровни с активацией в начале нового тренда. Отображение уровней  TAKE PROFIT  и  STOP LOSS  с минимальным соотношением
Представляю Вам отличный технический индикатор GRABBER, который работает, как готовая торговая стратегия "Все включено"! В одном программном коде интегрированы мощные инструменты для технического анализа рынка, торговые сигналы (стрелки), функции алертов и Push уведомлений.  Каждый покупатель этого индикатора получает дополнительно БЕСПЛАТНО:  Grabber Утилиту для автоматического управления открытыми ордерами, Пошаговый видео-мануал : как установить, настроить и торговать, Авторские сет-файлы дл
Другие продукты этого автора
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
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
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 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
Multiple Wicks forming at OverSold & OverBought levels create Buying and Selling Pressure. This indicator tries to capture the essence of the buy and sell pressure created by those wicks. Wick pressure shows that the trend is Exhausted. Order block should display when buying or selling pressure wick. When price go inside buy order block and up to outside order block, trader should consider a buy order. If price go inside buy order block and down to outside order block, trader should consider a s
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
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
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
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
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
Фильтр:
Нет отзывов
Ответ на отзыв