ML Lorentzian Classification by jdehorty

4

█ 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 (detail in word document at here)

Отзывы 3
samaara
19
samaara 2024.04.26 07:32 
 

When I bought this indicator, I was facing issues with using it in my EA. The indicator was slow and caused errors. So, I reached out to the author of this indicator and asked for help. He always responded to my questions, removed the errors I was facing and even gave me a working sample EA so that I could use it. The indicator now works smoothly and gives good signals!

CC Bourse
21
CC Bourse 2024.05.23 13:02 
 

It works perfectly ! Beware of updating the path of the indicator name in the iCustom function if using it in an EA. Otherwise it won't find the indicator...

It's a very efficient indicator. Great job !

Рекомендуем также
CRT Candle Range Theory HTF MT4.   Ultimate CRT Indicator: Advanced ICT Concepts and Malaysian SnR Trading System Master the Market Maker's Footprints with the Most Advanced Candle Range Theory Indicator Unlock the true power of  Smart Money Concepts (SMC)  and trade precisely like the institutions with the  Ultimate CRT Indicator . Built exclusively for serious traders, this indicator automates the highly effective  Candle Range Theory (CRT) , a core pillar of  ICT Concepts (Inner Circle Trader
Alpha Trend sign - это мой давний и очень популярный торговый инструмент, который проверяет нашу торговую систему и четко сигнализирует о транзакциях, которые не дрейфуют.   Основные функции:   • В зависимости от того, показывает ли рынок активную область, показатели могут быть очень интуитивными, чтобы определить, является ли текущая конъюнктура трендовой или шоковой.   И в соответствии с индикатором стрелка врезается на рынок, зеленая стрела подсказывает купить, красная стрела подсказывает
AW Heiken Ashi
AW Trading Software Limited
AW Heiken Ashi — Умный индикатор тренда и уровней TP. Продвинутый индикатор на основе классического Heiken Ashi, адаптированный для трейдеров, с большей гибкостью гибкость и наглядность. В отличие от стандартного индикатора, AW Heiken Ashi  помогает анализировать тренд, определять цели по прибыли и фильтровать ложные сигналы, обеспечивая более уверенные торговые решения. Гайд по настройке и инструкция - Здесь  / MT5 Версия - Здесь Преимущества AW Heiken Ashi: Работает на любых активах и таймфрей
Trend PA
Mikhail Nazarenko
5 (3)
Индикатор Trend PA для определения тренда использует  Price Action  и собственный алгоритм фильтрации. Такой подход помогает точно определять точки входа и текущий тренд на любом таймфрейме. Индикатор использует собственный алгоритм анализа изменения цены и Price Action. Что дает Вам преимущество без задержек распознать новый зарождающийся тренд с меньшим количеством ложных срабатываний. Условия фильтрации тренда можно подобрать в настройках индивидуально под Ваш стиль торговли. Индикатор отмеча
Divergence Matrix Pro for MetaTrader 4 Divergence Matrix Pro is a confirmed multi-oscillator divergence indicator for MetaTrader 4. It detects regular and hidden divergence between price and selected oscillators, then presents the confirmed structure through divergence lines, pivot labels, action markers, an optional current-timeframe Matrix Panel and optional alerts. The indicator is an analysis and confirmation tool. It does not open or close trades, and the signal score is not a win rate or a
Towers -  Индикатор тренда, показывает сигналы, можно использовать с оптимальным коэффициентом риска. В расчетах использует надежные алгоритмы. Показывает благоприятные моменты для входа в рынок стрелками, то есть использовать индикатор достаточно просто. Он сочетает в себе несколько фильтров, отображая на графике стрелки входа в рынок. Учитывая это обстоятельство, спекулянт может изучить историю сигналов инструмента и оценить его эффективность. Как видите торговать с таким индикатором легко. До
Индикатор Crypto_Forex "Auto FIBO Pro" - отличный вспомогательный инструмент в торговле! - Индикатор автоматически рассчитывает и размещает на графике уровни Фибоначчи и локальные линии тренда (красного цвета). - Уровни Фибоначчи указывают ключевые области, где цена может развернуться. - Наиболее важными уровнями являются 23,6%, 38,2%, 50% и 61,8%. - Вы можете использовать его для скальпинга на разворот или для торговли по зональной сетке. - Существует множество возможностей улучшить вашу текущ
Advanced UT Bot & HTS Indicator This indicator is an advanced technical analysis tool that combines two methods: UT Bot and HTS (Higher Timeframe Smoothing) , to generate accurate buy and sell signals. 1. Indicator Structure Works within the main chart window and utilizes 11 buffers to store various data points, including arrows (buy/sell signals) and bands from both UT Bot and HTS systems. Uses colored arrows to represent different trading conditions: Blue arrows : Normal buy signals. Red arro
Taurus All4 Taurus All4 is a high-performance indicator, it will tell you the strength of the trend, and you will be able to observe the strength of the candle. Our indicator has more than 4 trend confirmations. It is very simple and easy to use. Confirmation Modes Candle Trend Confirmations: When the candle switches to light green the trend is high. When the candle switches to light red the trend is reverting down. When the candle changes to dark red the trend is low. Trendline Trend Confirm
This is the binary options signal you all have been looking for. This in a modified version of the Garuda Scalper, that has been modified for Binary Options traders. Signals are very unique! Why this is so effective for binary options is because  it is a trend following system, it understands that the trend is your friend. It takes advantage of the buying/selling after the pullback in continuation of the current trend wave.  Because  signals are generated after the pullback,   you can place shor
ECM Elite Channel is a volatility-based indicator, developed with a specific time algorithm, which consists of finding possible corrections in the market. This indicator shows two outer lines, an inner line (retracement line) and an arrow sign, where the channel theory is to help identify overbought and oversold conditions in the market. The market price will generally fall between the boundaries of the channel. If prices touch or move outside the channel, it's a trading opportunity. The ind
Crypto_Forex Indicator HTF Ichimoku для MT4. - Индикатор Ichimoku - один из самых мощных трендовых индикаторов. HTF означает - Higher Time Frame. - Этот индикатор отлично подходит для трендовых трейдеров, а также в сочетании с входами Price Action. - Индикатор HTF Ichimoku позволяет прикрепить Ichimoku с более высокого таймфрейма к текущему графику. - Восходящий тренд - красная линия над синей (и обе линии над облаком) / Нисходящий тренд - красная линия под синей (и обе линии под облаком). - О
"Тренд - друг трейдера" . Это одна из самых известных пословиц в трейдинге, потому что правильное определение тренда может помочь заработать. Однако проще сказать о торговле по тренду, чем сделать, потому что многие индикаторы основаны на развороте цены, а не на анализе тренда. Они не очень эффективны при определении периодов тренда или в определении того, сохранится ли этот тренд. Мы разработали индикатор Trendiness Index , чтобы попытаться решить эту проблему. Индикатор определяет силу и напра
Gold Angel
Dmitriq Evgenoeviz Ko
Советник Gold Angel MT4 предназначен для автоматизированной торговли золотом на платформе MetaTrader 4, обеспечивая трейдерам уникальные инструменты и стратегии для достижения максимальной прибыли. Используя сложные алгоритмы анализа рыночных данных, данный советник способен выявлять выгодные точки входа и выхода, что значительно снижает риски и увеличивает возможности успешной торговли. полный список для Вашего удобства доступен https://www.mql5.com/ru/users/pants-dmi/seller Gold Angel MT4 пр
Основан на Волнах индикатора MACD со стандартными параметрами Наносит Уровни Фибоначчи по двум последним Волнам MACD, по положительной и отрицательной соответственно, если в текущий момент по индикатору MACD закончилась отрицательная Волна - то цвет зеленый, если в текущий момент по индикатору MACD закончилась положительная Волна - то цвет красный. Критерий окончания Волны- два тика с другим знаком по MACD. Наносит Трендовые линии по четырем последним Волнам MACD. Хорошо работает с экспертом  Fi
GMMA Trade X is an EA based on GMMA. GMMA parameters such as MovingAveragePeriod1-24, MovingAverageMAShift1-24, MovingAverageShift1-24 and CandlestickShift1-24 can be adjusted. GMMA Trade X applies BTN TECHNOLOGY's state-of-the-art intelligent technology to help you create optimal results for your trades. May your dreams come true through GMMA Trade X. Good luck. = == == Inquiries = == == E-Mail:support@btntechfx.com
Индикатор определяет сигналы дивергенции - расхождения пиков цены и показаний осцилятора MACD. Сигналы отображаются стрелками в дополнительном окне и сопровождаются сообщениями во всплывающем окне, на электронную почту и на мобильное устройство.  Параметры индикатора MacdFast , MacdSlow , MacdSignal , MacdPrice - параметры индикатора MACD PeakPoints - количество точек для определения пиков; PeakDistance - минимальное расстояние между соседними пиками deltaPrice,deltaOscillator - минимальные отк
BRANZ ULTIMATE V14.5 – The Next Generation of Gold Trading Elevate your trading with a sophisticated tool designed specifically for the high volatility of XAUUSD (GOLD) . BRANZ ULTIMATE combines aggressive trend-following logic with institutional-grade safety features to protect your capital while maximizing daily returns. Core Premium Features: Institutional Ghost Mode (Invisible Defense) Stop worrying about "Stop Hunting" or spread manipulation by brokers. With Ghost Mode ENABLED , all y
Meraz Trend V4 – High Accuracy 1-Minute Binary Options Signal Indicator Meraz Trend V4 is specially designed for binary options traders who trade on the 1-minute timeframe. It Best Work On Any OTC Pair Any Broker The indicator provides clear Buy and Sell arrow signals directly on the chart. When an arrow appears on a candle, you must enter the trade at the opening of the next candle. Expiry time is strictly 1 minute (1 candle). Entry Rules: If a Buy Arrow appears → Open a BUY (CALL)
Профессиональный эксперт форекс   Gyroscope (для пар EURUSD, GBPUSD, USDJPY, AUDUSD, USDCHF, EURGBP, EURJPY, NZDUSD, USDCAD, EURCHF, AUDJPY, CADJPY)  ализирующий рынок при помощи индекса волн эллиота. Волновая теория Эллиотта — интерпретация процессов на финансовых рынках через систему визуальных моделей (волн) на ценовых графиках.  Автор теории Ральф Эллиотт выделил восемь вариантов чередующихся волн (из них пять по тренду и три против тренда). Движение цен на рынках принимает форму пяти волн
Chart Patterns Detect 15 patterns (Ascending Triangle, Descending Triangle, Rising Wedge, Falling Wedge, Bullish Flag, Bearish Flag, Bullish Rectangle, Bearish Rectangle Symmetrical triangle, Head and Shoulders, Inverted Head and Shoulders, Triple top, Triple Bottom, Double Top, Double Bottom) Use historical data to calculate the probability of each pattern to succeed (possibility to filter notification according to the chance of success) gives graphic indication about the invalidation level and
This    Nice Trade Point     indicator is designed for signal trading. This indicator generates trend signals. It uses many algorithms and indicators to generate this signal. It tries to generate a signal from the points with the highest trend potential. This indicator is a complete trading product. This indicator does not need any additional indicators. The indicator certainly does not repaint. The point at which the signal is given does not change.     Features and Suggestions Time Frame
Prophet - индикатор тренда. Показывает направление точек разворота. Можно использовать с оптимальным коэффициентом риска к прибыли.  Стрелками показывает благоприятные моменты и направления для входа в рынок. Использует один параметр для настройки (регулировать от 1 до 3). Вероятность успешного тренда очень высока.При работе тейк-профит значительно больше стоп-лосса! Работает на всех валютных парах и на всех таймфреймах.
MACD Display is a MACD disaplay and cross monitoring indicator,which can works on 6 timeframe at same time. Indicator advantage: 1. Deviation from the point can be drawn on the main picture and indicator drawing. It is convenient to observe and can be hidden or displayed by parameter setting. 2. Deviation from the entry point is clearly indicated by the arrow in the drawing. 3. Cross-cycle monitoring can simultaneously monitor the MACD deviation and the golden dead fork of the six-cycle framewor
PipFinite Trend PRO
Karlo Wilson Vendiola
4.88 (2251)
Стратегия пробоя для торговли по тренду, фильтрация и все необходимые функции, встроенные в один инструмент! Интеллектуальный алгоритм индикатора Trend Pro с точностью определяет тренд, отфильтровывает рыночный шум и генерирует входные сигналы и уровни выхода. Новые функции с расширенными правилами статистического расчета улучшают общую производительность этого индикатора. Важная информация Для максимального использования потенциала Trend Pro прочитайте полное описание www.mql5.com/en/blogs/p
"Adjustable Fractals" - это расширенная версия индикатора фракталов, очень полезный инструмент для торговли! - Как мы знаем, стандартный индикатор fractals MT4 вообще не имеет настроек - это очень неудобно для трейдеров. - Adjustable Fractals решил эту проблему - в нем есть все необходимые настройки: - Настраиваемый период индикатора (рекомендуемые значения - выше 7). - Настраиваемое расстояние от максимумов/минимумов цены. - Настраиваемый дизайн фрактальных стрелок. - Индикатор имеет встроенны
Distinctive это трендовый стрелочный индикатор форекс для определения потенциальный точек входа. Нравится он, прежде всего, тем, что в нём заложен простой механизм работы, адаптация ко всем временным периодам и торговым тактикам. СОздан на основе канала регрессии с фильрами. Отображаем сигналы индикатора Lawrence на графике функции цены используя математический подход.  Принцип работы - при пробитии цены в зоне перекупленности/перепроданности (уровней канала) генерируется сигнал на покупку или
Это трендовый индикатор без перерисовки Разработан вместо стратегии бля бинарках опционов (по цвету свечи мартингейл) Так же хорошо работает в торговле на рынке форекс Когда открывать сделки ( бинарные опционы ) Сигнал появится в месте с свечой сигналит на текущую свечу  Открывать сделку стоит на одну свечу текущего таймфрейма рекомендуется м1 и М5 При появлении синей точки открываем сделку вверх При появлении красной точки открываем сделку в низ. Как открывать сделки на Форекс. При получени
FX Flow   indicator can be used as an anticipator of the next trend, preferably confirmed by Price Action or another oscillator (RSi, Stochastic ..). It takes the money flows of the major currencies USD EUR GBP AUD NZD CAD CHF JPY into account, and processes them. Excellent tool for indices, but also for correlations between currencies. Works on each timeframes.  Blue line: Bull market Yellow line: Bear market Note : if the indicator opens the window, but does not draw lines, load the historie
Smart Reversal Signal  - это профессиональный индикатор для платформы MT4, разработанный группой профессиональных трейдеров. Этот индикатор подойдет для работы на Forex и на бинарных опционах. Приобретая данный индикатор вы получаете: Отличные сигналы индикатора. Бесплатную поддержку по продукту. Регулярные обновления. Возможность получать сигналы различными способами: алерт, на телефон, по почте. Можно использовать на любом финансовом инструменте(Forex, CFD, опционы) и периоде. Параметры ин
С этим продуктом покупают
Super Signal – Skyblade Edition Профессиональная система трендовых сигналов без перерисовки и без задержек с исключительным процентом выигрышей | Для MT4 / MT5 Лучше всего работает на младших таймфреймах, таких как 1 минута, 5 минут и 15 минут. Основные характеристики: Super Signal – Skyblade Edition — это интеллектуальная система сигналов, специально разработанная для трендовой торговли. Она использует многоуровневую фильтрацию, чтобы выявлять только сильные направленные движения, подкреплённ
Neuro Poseidon - новый индикатор от Дарьи Резуевой. Он сочетает точные торговые сигналы с адаптивными уровнями TP/SL , в результате создавая максимально выгодные сделки! TO SWITCH TO   ENG   PLEASE CHOOSE IT IN THE UPPER-RIGHT CORNER OF THE WEBSITE Напишите мне после покупки и получите Neuro Poseidon Assistant в подарок для автоматизации вашей торговли! Что отличает его от других индикаторов? 1. Доказанная прибыльность на всех активах и таймфреймах 2. На графике присутствуют только подтвержденн
Scalper Inside PRO помогает читать внутридневной тренд и планировать сделку до входа в рынок. Индикатор использует эксклюзивные встроенные алгоритмы для оценки направления рынка и расчёта ключевых целевых уровней в момент появления сигнала, поэтому вы всегда заранее видите потенциальный вход, стоп-лосс и цели по прибыли. Индикатор также показывает подробную статистику эффективности на исторических данных, чтобы вы могли увидеть, как вели себя разные инструменты и стратегии, и выбрать то, что под
Currency Strength Wizard — очень мощный индикатор, предоставляющий вам комплексное решение для успешной торговли. Индикатор рассчитывает силу той или иной форекс-пары, используя данные всех валют на нескольких тайм фреймах. Эти данные представлены в виде простых в использовании индексов валют и линий силы валют, которые вы можете использовать, чтобы увидеть силу той или иной валюты. Все, что вам нужно, это прикрепить индикатор к графику, на котором вы хотите торговать, и индикатор покажет вам ре
BTMM State Engine Pro is a MetaTrader 4 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
MTF Supply Demand Zones
Georgios Kalomoiropoulos
4.82 (22)
Следующее поколение автоматизированных зон спроса и предложения. Новый инновационный алгоритм, работающий на любом графике. Все зоны создаются динамически в соответствии с ценовым действием рынка. ДВА ТИПА СИГНАЛОВ --> 1) ПРИ ПОПАДАНИИ ЦЕНЫ В ЗОНУ 2) ПРИ ФОРМИРОВАНИИ НОВОЙ ЗОНЫ Вы не получите еще один бесполезный индикатор. Вы получаете полную торговую стратегию с проверенными результатами.     Новые особенности:     Оповещения, когда цена достигает зоны спроса/предложения     Оповещения
M1 SNIPER — это простая в использовании торговая система. Это стрелочный индикатор, разработанный для тайм фрейма M1. Индикатор можно использовать как отдельную систему для скальпинга на тайм фрейме M1, а также как часть вашей существующей торговой системы. Хотя эта торговая система была разработана специально для торговли на M1, ее можно использовать и с другими тайм фреймами. Первоначально я разработал этот метод для торговли XAUUSD и BTCUSD. Но я считаю этот метод полезным и для торговли на д
Congestioni
Stefano Frisetti
5 (1)
This indicator is very usefull to TRADE Trading Ranges and helps identify the following TREND. Every Trader knows that any market stay 80% of the time in trading ranges and only 20% of the time in TREND; this indicator has been built to help traders trade trading ranges. Now instead of waiting for the next TREND, You can SWING TRADE on trading ranges with this simple yet very effective indicator. TRADING with CONGESTIONI INDICATOR: The CONGESTIONI Indicator identify a new trading range and ale
В НАСТОЯЩЕЕ ВРЕМЯ СКИДКА 20%! Лучшее решение для новичка или трейдера-эксперта! Этот индикатор специализирован для отображения силы валюты для любых символов, таких как экзотические пары, товары, индексы или фьючерсы. Впервые в своем роде, любой символ может быть добавлен в 9-ю строку, чтобы показать истинную силу валюты золота, серебра, нефти, DAX, US30, MXN, TRY, CNH и т.д. Это уникальный, высококачественный и доступный торговый инструмент, потому что мы включили в него ряд собственных функци
Gold Signal Swing Pro XAUUSD with Auto TP SL (MT4) — Система из 7 фильтров + Гарантия RR для свинг-трейдинга XAUUSD Без перерисовки. Без перерисовки. Без задержек. Все сигналы фиксируются после подтверждения. Бонус для покупателей: Получите AI Zone Radar (стоимость $59) + PDF-руководство бесплатно при покупке. Напишите мне сообщение на MQL5 после покупки. AI Zone Radar: https://www.mql5.com/en/market/product/175834 Версия MT5 также доступна:  https://www.mql5.com/ja/market/product/177643?source=
В настоящее время скидка 30%! Эта приборная панель - очень мощное программное обеспечение, работающее на нескольких символах и до 9 таймфреймов. Он основан на нашем основном индикаторе (Лучшие отзывы: Advanced Supply Demand ).   Приборная панель дает отличный обзор. Она показывает:  Отфильтрованные значения спроса и предложения, включая рейтинг силы зон, расстояния между пунктами в зонах и внутри зон, Выделяются вложенные зоны, Выдает 4 вида предупреждений для выбранных символов на всех (9) та
Money Flow Profile MT5 HERE   Here   our more valuable tools SMC Trend Trading   ,  Easy SMC Trading  ,  Institutional SMC Architect Volume Analysis Tools  ,  Volume flow Profile  ,  Market volume profile  , FVG with Volume  , Liquidity Heatmap Profile  ,  Volume Spread Analysis This Master Edition is engineered for clarity and speed, featuring a unique Auto-Theme Sync system that instantly beautifies your chart layout upon loading. Key Features: True Money Flow Calculation: Goes beyond stand
TrendMaestro
Stefano Frisetti
4 (4)
Attention: beware of SCAMS, TRENDMAESTRO is only ditributed throught MQL5.com market place. note: this indicator is for METATRADER4, if you want the version for METATRADER5 this is the link:  https://www.mql5.com/it/market/product/108106 TRENDMAESTRO ver 2.5 TRENDMAESTRO recognizes a new TREND from the start, he never makes mistakes. The certainty of identifying a new TREND is priceless. DESCRIPTION TRENDMAESTRO identifies a new TREND in the bud, this indicator examines the volatility, volumes a
PZ Day Trading
PZ TRADING SLU
3.67 (3)
Этот индикатор обнаруживает разворот цены зигзагообразно, используя только анализ ценового действия и канал Дончиана. Он был специально разработан для краткосрочной торговли, без перекраски или перекраски вообще. Это фантастический инструмент для проницательных трейдеров, стремящихся увеличить сроки своих операций. [ Руководство по установке | Руководство по обновлению | Устранение неполадок | FAQ | Все продукты ] Удивительно легко торговать Это обеспечивает ценность на каждом таймфрейме Реал
There is always a need to measure if the market is "quiet" or it is volatile. One of the possible way is to use standard deviations, but the issue is simple : We do not have some levels that could help us find out if the market is in a state of lower or higher volatility. This indicator is attempting to do that : •           values above level 0 are indicating state of higher volatility (=GREEN buffer) •           values below level 0 are indicating state of lower volatility (=RED buffer)
Cycle Sniper
Elmira Memish
4.39 (36)
Please contact us after your purchase and we will send you the complimentary indicators to complete the system Cycle Sniper is not a holy grail but when you use it in a system which is explained in the videos, you will feel the difference. If you are not willing to focus on the charts designed with Cycle Sniper and other free tools we provide, we recommend not buying this indicator. We recommend watching the videos about the indiactor and system before purchasing. Videos, settings  and descri
KURAMA GOLD SIGNAL PRO (MT4) — 7-уровневый фильтр · Автоматический TP/SL · Оценка качества · Сохранение истории сигналов | Полная торговая система для XAUUSD Без перерисовки в реальном времени. В момент появления сигнала стрелка, вход, TP и SL фиксируются на месте и больше никогда не смещаются. Вы торгуете именно этот сигнал в реальном времени. А в версии 7.20 каждый фактически отправленный сигнал автоматически сохраняется и точно восстанавливается после перезапуска. БОНУС ДЛ
Trend Trading - это индикатор, предназначенный для получения максимальной прибыли от трендов, происходящих на рынке, путем определения времени отката и прорыва. Он находит торговые возможности, анализируя, что делает цена во время установленных тенденций. [ Руководство по установке | Руководство по обновлению | Устранение неполадок | FAQ | Все продукты ] Торгуйте на финансовых рынках с уверенностью и эффективностью Прибыль от устоявшихся тенденций без проволочек Признать прибыльные откаты, пр
Это, пожалуй, самый полный индикатор автоматического распознавания гармонического ценообразования, который вы можете найти для платформы MetaTrader. Он обнаруживает 19 различных паттернов, воспринимает проекции Фибоначчи так же серьезно, как и вы, отображает зону потенциального разворота (PRZ) и находит подходящие уровни стоп-лосс и тейк-профит. [ Руководство по установке | Руководство по обновлению | Устранение неполадок | FAQ | Все продукты ] Он обнаруживает 19 различных гармонических ценов
Этот индикатор разработан для интеграции с теорией Эллиотта и предоставляет два различных способа работы: Автоматический режим: В этом режиме индикатор работает автономно, обнаруживая все пять мотивационных волн на графике в соответствии с теорией Эллиотта. Он предсказывает и идентифицирует потенциальные зоны разворота. Кроме того, он способен генерировать предупреждения и уведомления для оповещения трейдеров о значимых событиях. Эта автоматизированная функциональность упрощает процесс идентифик
А. Что такое A2SR?   * Это опережающий технический индикатор (без перерисовки, без запаздывания) . -- Учебники : -- на https://www.mql5.com/ru/blogs/post/734748/page4#comment_16532516   -- и https://www.mql5.com/ru/users/yohana/blog A2SR имеет особую технику определения уровней Поддержки (спроса) и Сопротивления (предложения). В отличие от обычного способа, который мы видели в сети, A2SR имеет оригинальную концепцию определения фактических уровней SR. Оригинальная техника не была взята из Интерн
Quant Direction
Georgios Kalomoiropoulos
Quant Direction — это инструмент трехмерного анализа рынка. Он обеспечивает полностью объективный, основанный на алгоритмах анализ рынка, одновременно вычисляя точные процентные отклонения по нескольким параметрам. Разработанный с использованием передовых инструментов моделирования на основе искусственного интеллекта и тщательно протестированный, алгоритм предназначен для интерпретации рынка с уникальной точностью. Он может анализировать любую валютную пару или финансовый инструмент на вашей пла
Этот индикатор представляет собой индикатор автоматического волнового анализа, который идеально подходит для практической торговли! Случай... Примечание.   Я не привык использовать западные названия для классификации волн. Из-за влияния соглашения об именах Тан Лунь (Тан Чжун Шуо Дзен) я назвал основную волну   ручкой   , а вторичную полосу волн —   сегментом   Ат. в то же время сегмент имеет направление тренда. Именование   в основном является трендовым сегментом   (этот метод именования буде
MagicTrigger — индикатор подтверждения дивергенции HD/RD на нескольких таймфреймах MagicTrigger — это мультитаймфреймовый механизм поиска дивергенций, который ищет структурную дивергенцию на старшем таймфрейме (HD) и ожидает её подтверждения совпадающими дивергенциями на младших таймфреймах (RD) в той же ценовой зоне. Сигнал отмечается только тогда, когда структура на старшем таймфрейме и подтверждения на младших таймфреймах совпадают, вместе с предполагаемым уровнем входа, стоп-лоссом и двумя у
Индикатор точно показывает точки разворота и зоны возврата цены, где входят крупные игроки . Вы видите, где формируется новый тренд, и принимаете решения с максимальной точностью, держа контроль над каждой сделкой. VERSION MT5     -     Раскрывает свой максимальный потенциал в связке с индикатором  TREND LINES PRO Что показывает индикатор: Разворотные конструкции и разворотные уровни с активацией в начале нового тренда. Отображение уровней  TAKE PROFIT  и  STOP LOSS  с минимальным соотношением
Сложно найти и дефицит по частоте, дивергенции являются одним из самых надежных торговых сценариев. Этот индикатор автоматически находит и сканирует регулярные и скрытые расхождения, используя ваш любимый осциллятор. [ Руководство по установке | Руководство по обновлению | Устранение неполадок | FAQ | Все продукты ] Легко торговать Находит регулярные и скрытые расхождения Поддерживает много известных генераторов Реализует торговые сигналы на основе прорывов Отображает подходящие уровни стоп-
ИНСТРУКЦИЯ RUS  /  INSTRUCTIONS  ENG   -    VERSION  MT5 Основные функции: Отображения активных зон продавцов и покупателей! Индикатор отображает все правильные первые импульсные уровни/зоны для покупок и продаж. При активации этих уровней/зон, где начинается поиск точек входа, уровни изменяют цвет и заливаются определенными цветами. Также появляются стрелки для более интуитивного восприятия ситуации. LOGIC AI - Отображения зон (кружки) поиска точек входа при активации шаблона   Для улучшения ви
Dynamic Forex28 Navigator — инструмент для торговли на рынке Форекс нового поколения. В НАСТОЯЩЕЕ ВРЕМЯ СКИДКА 49%. Dynamic Forex28 Navigator — это эволюция наших популярных индикаторов, объединяющая мощь трех в одном: Advanced Currency Strength28 Indicator (695 отзывов) + Advanced Currency IMPULSE with ALERT (520 отзывов) + CS28 Combo Signals (бонус). Подробности об индикаторе https://www.mql5.com/en/blogs/post/758844 Что предлагает индикатор Strength нового поколения?  Все, что вам нравило
First time on MetaTrader, introducing IQ Star Lines - an original Vedic Astrology based indicator. "Millionaires don't use astrology, billionaires do" . - J.P. Morgan, Legendary American financier and banker. Welcome to  the new and updated  IQ Star Lines , the ultimate fusion of ancient planetary harmonic cycles and modern quantitative trading. published for the   first time on Metatrader. This is an indicator built by the developer, who has spent almost 2 decades trading while studying Vedic
Технический индикатор производящий структуризацию графиков и выявляющий циклические движения цены. Может работать на любых графиках. Несколько типов оповещений. Есть дополнительные стрелки на самом графике. Без перерисовки на истории, работает на закрытии свечи. Рекомендуемые TF от M5 и выше. Прост в использовании и настройке параметров. При использовании 2 индикаторов с разными параметрами можно использовать без других индикаторов. Имеет 2 входных параметра Цикличность и Продолжительность сиг
Другие продукты этого автора
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
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 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
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 Bheurekso Pattern Indicator for MT5 helps traders automatically identify candlestick pattern that formed on the chart base on some japanese candle pattern and other indicator to improve accurate. This indicator scans all candles, recognizes and then displays any candle patterns formed on the chart. The candle displayed can be Bullish or Bearish Engulfing, Bullish or Bearish Harami, and so on. There are some free version now but almost that is repaint and lack off alert function. With this ve
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
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
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
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
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 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:
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
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
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
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
Фильтр:
Andrew Goodwin
35
Andrew Goodwin 2025.01.10 13:32 
 

Just purchased this indicator and having the same problem locating the file path after created the EA. Please could you let me know on how to fix this issue?

Minh Truong Pham
19464
Ответ разработчика Minh Truong Pham 2025.01.11 07:06
just send you example EA that read buffer
CC Bourse
21
CC Bourse 2024.05.23 13:02 
 

It works perfectly ! Beware of updating the path of the indicator name in the iCustom function if using it in an EA. Otherwise it won't find the indicator...

It's a very efficient indicator. Great job !

samaara
19
samaara 2024.04.26 07:32 
 

When I bought this indicator, I was facing issues with using it in my EA. The indicator was slow and caused errors. So, I reached out to the author of this indicator and asked for help. He always responded to my questions, removed the errors I was facing and even gave me a working sample EA so that I could use it. The indicator now works smoothly and gives good signals!

Ответ на отзыв