• Información general
  • Comentarios (1)
  • Discusión
  • Novedades

ML Lorentzian Classification by jdehorty

5

█ 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)

Comentarios 1
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!

Productos recomendados
VR Cub
Vladimir Pastushak
VR Cub es un indicador para obtener puntos de entrada de alta calidad. El indicador fue desarrollado para facilitar los cálculos matemáticos y simplificar la búsqueda de puntos de entrada a una posición. La estrategia comercial para la cual se diseñó el indicador ha demostrado su eficacia durante muchos años. La simplicidad de la estrategia comercial es su gran ventaja, que permite que incluso los operadores novatos negocien con éxito con ella. VR Cub calcula los puntos de apertura de posiciones
Trend PA
Mikhail Nazarenko
5 (3)
The Trend PA indicator uses   Price Action   and its own filtering algorithm to determine the trend. This approach helps to accurately determine entry points and the current trend on any timeframe. The indicator uses its own algorithm for analyzing price changes and Price Action. Which gives you the advantage of recognizing, without delay, a new nascent trend with fewer false positives. Trend filtering conditions can be selected in the settings individually for your trading style. The indicator
Infinity Trend Pro
Yaroslav Varankin
1 (1)
This is a trend indicator without redrawing Developed instead of the binary options strategy (by the color of the Martingale candlestick) Also works well in forex trading When to open trades (binary options) A signal will appear in the place with a candle signaling the current candle It is recommended to open a deal for one candle of the current timeframe M1 and M5 When a blue dot appears, open a deal up When a red dot appears, open a trade down. How to open trades on Forex. When a signal is rec
Owl smart levels
Sergey Ermolov
4.63 (54)
Versión MT5  |   FAQ El   Indicador Owl Smart Levels   es un sistema comercial completo dentro de un indicador que incluye herramientas de análisis de mercado tan populares como   los fractales avanzados de Bill Williams , Valable ZigZag que construye   la estructura de onda correcta   del mercado y   los niveles de Fibonacci   que marcan los niveles exactos de entrada. en el mercado y lugares para tomar ganancias. Descripción detallada de la estrategia Instrucciones para trabajar con el indi
Este innovador indicador de medición de la fuerza de la moneda de INFINITY es un ayudante indispensable para los revendedores y comerciantes que negocian en el largo plazo. El sistema de Análisis de fortaleza / debilidad de las monedas ha sido conocido y utilizado en el mercado por los principales operadores del mundo. Cualquier comercio de arbitraje no está completo sin este análisis. Nuestro indicador determina fácilmente la fuerza de las monedas subyacentes entre sí. Muestra gráficos de líne
Black series MT4
Dmitriy Kashevich
1 (1)
Black series MT4 - The indicator is designed for trading on binary options with Timeframe M1-M5-M15 Multicurrency (Works on cryptocurrency and currency pairs) The signal appears when the candle opens Up to 90% correct signals There is no signal redrawing at all Can be used with other indicators. Good for scalping! In Settings there is: -Indicator working methods -I Allert Arrow color Red signal down Blue signal up Also watch the video how the indicator works and signals
Smooth price for Monarch MT4
Konstantin Gruzdev
3.67 (3)
The Smooth Price technical indicator is used for plotting a smoothed line as close to the price of the financial instrument as possible, and serves to eliminate its noise components. The indicator is part of the Monarch trading system, but here it is presented as an independent technical analysis tool. The indicator is based on the cluster digital filter , which, unlike the ClusterSMA , is applied directly to the price time series. Smooth Price does not redraw (except the very last, zero bar) an
Towers
Yvan Musatov
Towers - Trend indicator, shows signals, can be used with optimal risk ratio. It uses reliable algorithms in its calculations. Shows favorable moments for entering the market with arrows, that is, using the indicator is quite simple. It combines several filters to display market entry arrows on the chart. Given this circumstance, a speculator can study the history of the instrument's signals and evaluate its effectiveness. As you can see, trading with such an indicator is easy. I waited for an a
Indicador Taurus All4
Fabio Oliveira Magalhaes
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 Conf
Powerful Binary Options
Ellan Dirgantara Tholkhah
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 Channel MT4
Paulo Rocha
5 (1)
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
Trendiness Index
Libertas LLC
5 (3)
"The trend is your friend" is one of the best known sayings in investing, because capturing large trendy price movements can be extremely profitable. However, trading with the trend is often easier said than done, because many indicators are based on price reversals not trends. These aren't very effective at identifying trendy periods, or predicting whether trends will continue. We developed the Trendiness Index to help address this problem by indicating the strength and direction of price trend
Strength and weakness of currencies : Shows the currency status at any time, values between 50 and -50 are neutral, everything outside indicates a trend change  Waves : Current state of waves, daily, weekly monthly and yearly Recommended volume for trading a specific number of waves Yearly High Low Drawn waves on which the market will react in advance, without redrawing Yearly candle with bonus levels used to display deviations  For more info contact me
Basado en ondas indicadoras MACD con parámetros estándar Aplica los niveles de Fibonacci a las dos últimas ondas MACD, positivas y negativas respectivamente, si en el momento en que el indicador MACD se queda sin Onda negativa - el color es verde, si en el momento en que el indicador MACD se queda sin Onda positiva - el color es rojo. El criterio de terminación de onda son dos ticks con un signo MACD diferente. Aplica líneas de tendencia en las últimas cuatro ondas MACD. Trabaja bien
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
Gyroscope        professional forex expert   (for EURUSD, GBPUSD, USDJPY, AUDUSD, USDCHF, EURGBP, EURJPY, NZDUSD, USDCAD, EURCHF, AUDJPY, CADJPY pairs)   alyzing the market using the Elliot Wave Index. Elliott wave theory is the interpretation of processes in financial markets through a system of visual models (waves) on price charts. The author of the theory, Ralph Elliott, identified eight variants of alternating waves (of which five are in the trend and three are against the trend). The mo
MACD Divergence
Sergey Deev
2.5 (2)
The indicator detects divergence signals - the divergences between the price peaks and the MACD oscillator values. The signals are displayed as arrows in the additional window and are maintained by the messages in a pop-up window, e-mails and push-notifications. The conditions which formed the signal are displayed by lines on the chart and in the indicator window. Indicator Parameters MacdFast - fast MACD line period MacdSlow - slow MACD line period MacdSignal - MACD signal line period MacdPri
5 signal in 1  Product     TimeFrame   Recommend   1m-5m recommend  signal   TF  5m    Banks Pro Binary Option is Indicator for binary option Can Use Manaul Trade or Robot on Platform  Mt2Trading  https://www.mt2trading.com/?ref=104    Time Trading   good work  EU session    Recommend  Curency   EUR  GBP USD        careful   AUD JPY      Recommend  Martingale 2-5 Step   Recommend  set profit  2%-5%/Day Setting Brake  News Event High volatility   recommend  15-30 min Have Problem Contract
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
Nice Trade Point
Muhammed Emin Ugur
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
Prophet
Andriy Sydoruk
Prophet is a trend indicator. Shows the direction of turning points. Can be used with an optimal risk-to-profit ratio. The arrows indicate favorable moments and directions for entering the market. Uses one parameter for setting (adjust from 1 to 3). The probability of a successful trend is very high. In the course of work, the take-profit is much larger than the stop-loss! Works on all currency pairs and on all timeframes.
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.9 (2775)
Breakthrough Solution For Trend Trading And Filtering With All Important Features Built Inside One Tool! Trend PRO's smart algorithm detects the trend, filters out market noise and gives entry signals with exit levels. The new features with enhanced rules for statistical calculation improved the overall performance of this indicator. Important Information Revealed Maximize the potential of Trend Pro, please visit www.mql5.com/en/blogs/post/713938 The Powerful Expert Advisor Version Automa
Launch promo! Only a few copies left at 399$! Next price: 499$ Final price: 999$ Live signal:  https://www.mql5.com/en/signals/2220893?source=Site+Profile+Seller MT5:   https://www.mql5.com/en/market/product/107337?source=Site+Profile+Seller For more top Expert Advisors and Indicators, visit:   https://www.mql5.com/en/users/lothimailoan/seller I am Los, please subscribe to receive more updates:   https://www.mql5.com/en/users/lothimailoan/news US30 Scalper EA es un robot de scalping de últi
Distinctive
Tatiana Savkevych
Distinctive is a forex trending arrow indicator for identifying potential entry points. I like it, first of all, because it has a simple mechanism of work, adaptation to all time periods and trading tactics. Created on the basis of a regression channel with filters. Plotting the Lawrence indicator signals on a price function chart using a mathematical approach. How it works - when the price breaks out in the overbought / oversold zone (channel levels), a buy or sell signal is generated. Every
FX Flow
Eva Stella Conti
El indicador FX Flow se puede utilizar como un anticipo de la próxima tendencia, preferiblemente confirmada por Price Action u otro oscilador (RSi, Stochastic ..). Toma en cuenta los flujos de dinero de las principales divisas USD EUR GBP AUD NZD CAD CHF JPY y los procesa. Excelente herramienta para índices, pero también para correlaciones entre monedas. Funciona en todos los períodos de tiempo. Línea azul: mercado alcista Línea amarilla: mercado bajista Nota : si el indicado
Smart Reversal Signal  is a professional indicator for the MetaTrader 4 platform; it has been developed by a group of professional traders. This indicator is designed for Forex and binary options trading. By purchasing this indicator, you will receive: Excellent indicator signals. Free product support. Regular updates. Various notification options: alert, push, emails. You can use it on any financial instrument (Forex, CFD, options) and timeframe. Indicator Parameters Perod - indicator calcula
Hidden Cross Binary Options
Ellan Dirgantara Tholkhah
The latest Binary Options arrow indicator in the Garuda Signals product line. Binary options signal based on multiple time frame cross over analysis. Gets confirmation from the most consistent signals known to man; Ichimoku, SMA, Bollinger Bands; and also uses the 1 Hour time frame as trend confirmation , so you don't have to open up multiple chart and waste time. - Can be used for all time frames up to 1 hour, but is most POWERFUL for 1 and 5 min options. - Place your Call/PUT based on the Arro
ShinZuka
Muhammad Asyraf Bin Mohamad
Using MACD value for direction. Using RSI as reversal indicator. Using open trading hour. (Recommend Hour 10,11,15 & 19 : MT4-Time) Counter trade if signal failed. Cutloss trade if signal failed. Auto lot calculate based on target profit & takeprofit. Able to set counter trade value. Suitable for commodities & currency.  Timeframe H1. Able to set limit lot open. Able to select day to trade.
Los compradores de este producto también adquieren
Atomic Analyst
Issam Kassas
5 (2)
En primer lugar, vale la pena enfatizar que este Indicador de Trading no repinta, no redibuja y no se retrasa, lo que lo hace ideal tanto para el trading manual como para el automatizado. El Analista Atómico es un Indicador de Acción del Precio PA que utiliza la fuerza y el impulso del precio para encontrar una mejor ventaja en el mercado. Equipado con filtros avanzados que ayudan a eliminar ruidos y señales falsas, y aumentan el potencial de trading. Utilizando múltiples capas de indicadores
TPSproTREND PrO
Roman Podpora
5 (15)
TPSpro TRENDPRO  - is a trend indicator that automatically analyzes the market and provides information about the trend and each of its changes, as well as giving signals for entering trades without redrawing! The indicator uses each candle, analyzing them separately. referring to different impulses - up or down impulse. Exact entry points into transactions for currencies, crypto, metals, stocks, indices!  -  Version MT5               DETAILED DESCRIPTION        /       TRADING SETUPS           
TPSpro RFI Levels
Roman Podpora
5 (13)
A key element in trading is zones or levels from which decisions to buy or sell a trading instrument are made. Despite attempts by major players to conceal their presence in the market, they inevitably leave traces. Our task was to learn how to identify these traces and interpret them correctly. Reversal First Impulse levels (RFI)   -  Version MT5                INSTRUCTIONS                 RUS                 ENG                                       R ecommended to use with an indicator   -  
ACTUALMENTE 26% DE DESCUENTO ¡La mejor solución para cualquier operador novato o experto! Este indicador es una herramienta única, de alta calidad y asequible porque hemos incorporado una serie de características propias y una nueva fórmula. ¡Con sólo UN gráfico puede leer la Fuerza de la Divisa para 28 pares de Divisas! Imagínese cómo mejorará su operativa porque podrá señalar el punto exacto de activación de una nueva tendencia o de una oportunidad de scalping. Manual del usuario: haga
¡Actualmente 20% OFF ! ¡La mejor solución para cualquier novato o trader experto! Este software funciona con 28 pares de divisas. Se basa en 2 de nuestros principales indicadores (Advanced Currency Strength 28 y Advanced Currency Impulse). Proporciona una gran visión general de todo el mercado de divisas. Muestra los valores de Advanced Currency Strength, la velocidad de movimiento de las divisas y las señales para 28 pares de divisas en todos los (9) marcos temporales. Imagine cómo mejorar
Scalper Inside PRO
Alexey Minkov
4.75 (55)
SALE NOW! Limited Time Offer! An exclusive indicator that utilizes an innovative algorithm to swiftly and accurately determine the market trend. The indicator automatically calculates opening, closing, and profit levels, providing detailed trading statistics. With these features, you can choose the most appropriate trading instrument for the current market conditions. Additionally, you can easily integrate your own arrow indicators into Scalper Inside Pro to quickly evaluate their statistics and
FX Power MT4 NG
Daniel Stein
5 (8)
Obtenga su actualización diaria del mercado con detalles y capturas de pantalla a través de nuestro Morning Briefing aquí en mql5 y en Telegram ! FX Power MT4 NG es la nueva generación de nuestro popular medidor de fuerza de divisas, FX Power. ¿Y qué ofrece este medidor de fuerza de nueva generación? Todo lo que le encantaba del FX Power original PLUS Análisis de fuerza de ORO/XAU Resultados de cálculo aún más precisos Períodos de análisis configurables individualmente Límite de cálculo persona
Introduciendo       Indicador Quantum Trend Sniper   , el innovador indicador MQL5 que está transformando la forma en que identificas y negocias los cambios de tendencia. Desarrollado por un equipo de comerciantes experimentados con experiencia comercial de más de 13 años,       Indicador de francotirador de tendencia cuántica       está diseñado para impulsar su viaje comercial a nuevas alturas con su forma innovadora de identificar cambios de tendencia con una precisión extremadamente alta.
Trend Screener
STE S.S.COMPANY
4.83 (86)
Indicador de tendencia, solución única e innovadora para el comercio y filtrado de tendencias con todas las funciones de tendencias importantes integradas en una sola herramienta. Es un indicador 100% sin repintar de marcos temporales y monedas múltiples que se puede usar en todos los símbolos/instrumentos: divisas, materias primas, criptomonedas, índices y acciones. Trend Screener es un indicador de seguimiento de tendencia eficiente que proporciona señales de tendencia de flecha con puntos en
FX Volume
Daniel Stein
4.6 (35)
Obtenga su actualización diaria del mercado con detalles y capturas de pantalla a través de nuestro Morning Briefing aquí en mql5 y en Telegram ! FX Volume es el PRIMER y ÚNICO indicador de volumen que proporciona una visión REAL del sentimiento del mercado desde el punto de vista de un bróker. Proporciona una visión impresionante de cómo los participantes institucionales del mercado, como los brokers, están posicionados en el mercado Forex, mucho más rápido que los informes COT. Ver esta info
Quantum Breakout Indicator PRO
Bogdan Ion Puscasu
4.96 (26)
Introduciendo       Quantum Breakout PRO   , el innovador indicador MQL5 que está transformando la forma en que comercia con Breakout Zones. Desarrollado por un equipo de operadores experimentados con experiencia comercial de más de 13 años,   Quantum Breakout PRO   está diseñado para impulsar su viaje comercial a nuevas alturas con su innovadora y dinámica estrategia de zona de ruptura. El indicador de ruptura cuántica le dará flechas de señal en las zonas de ruptura con 5 zonas objetivo de
Presentamos el Indicador Milagroso de Forex: Desata el Poder del Trading Preciso ¿Estás cansado de buscar el mejor indicador de Forex que realmente ofrezca resultados excepcionales en todos los marcos temporales? ¡No busques más! Ha llegado el Indicador Milagroso de Forex para revolucionar tu experiencia de trading y llevar tus ganancias a nuevas alturas. Construido sobre una base de tecnología de vanguardia y años de desarrollo meticuloso, el Indicador Milagroso de Forex se erige como el pinácu
Advanced Supply Demand
Bernhard Schweigert
4.92 (310)
¡Actualmente con 33% de descuento! ¡La mejor solución para cualquier tráder principiante o experto! Este indicador es una herramienta comercial única, de alta calidad y asequible, porque incorpora una serie de características patentadas y una nueva fórmula. Con esta actualización, podrá mostrar zonas de doble marco temporal. No solo podrá mostrar un marco temporal más alto, sino también mostrar ambos, el marco temporal del gráfico MÁS el marco temporal más alto: MOSTRANDO ZONAS ANIDADAS. A todos
Price Action Entry Alerts
Stephen Sanjeeve Sahayam
5 (3)
Este indicador analiza cada barra en busca de presión de compra o venta e identifica 4 tipos de patrones de velas con el volumen más alto. Estas velas luego se filtran utilizando varios filtros lineales para mostrar señales de compra o venta. Las señales funcionan mejor, junto con una dirección de marco de tiempo más alta y cuando se negocian durante horas de alto volumen. Todos los filtros son personalizables y funcionan de forma independiente. Puede ver señales de una sola dirección con el cli
TrendMaestro
Stefano Frisetti
5 (2)
note: this indicator is for METATRADER4, if you want the version for METATRADER5 this is the link: TRENDMAESTRO recognizes a new TREND in the bud, 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 and momentum to identify the moment in which there is an explosion of one or more of these data and therefore the moment in which prices have strong probability of f
Entry Points Pro
Yury Orlov
4.7 (225)
Este es un genial indicador para MT4 que ofrece señales precisas para entrar en una transacción sin redibujar. Se puede aplicar a cualquier activo financiero: fórex, criptomonedas, metales, acciones, índices. Nos dará valoraciones bastante precisas y nos dirá cuándo es mejor abrir y cerra una transacción. Eche un vistazo  al vídeo  (6:22), ¡contiene un ejemplo de procesamiento de una sola señal que ha amortizado el indicador! La mayoría de los tráders mejoran sus resultados comerciales durante l
Indicator : RealValueIndicator Description : RealValueIndicator is a powerful tool designed specifically for trading on the EURUSD pair. This indicator analyzes all EUR and USD pairs, calculates their real currency strength values, and displays them as a single realistic value to give you a head start on price. This indicator will tell you moves before they happen if you use it right. RealValueIndicator allows you to get a quick and accurate overview of the EURUSD currency pair tops and bottoms,
How to use Pair Trading Station Pair Trading Station is recommended for H1 time frame and you can use it for any currency pairs. To generate buy and sell signal, follow few steps below to apply Pair Trading Station to your MetaTrader terminal. When you load Pair Trading Station on your chart, Pair Trading station will assess available historical data in your MetaTrader platforms for each currency pair. On your chart, the amount of historical data available will be displayed for each currency pai
PTS Precision Index Oscillator V2
PrecisionTradingSystems
5 (1)
El Oscilador de Índice de Precisión (Pi-Osc) de Roger Medcalf de Precision Trading Systems La versión 2 ha sido cuidadosamente recodificada para cargar rápidamente en su gráfico y se han incorporado algunas otras mejoras técnicas para mejorar la experiencia. El Pi-Osc fue creado para proporcionar señales precisas de temporización de operaciones diseñadas para encontrar puntos de agotamiento extremos, los puntos a los que los mercados se ven obligados a llegar solo para eliminar las órdenes
Royal Scalping Indicator M4
Vahidreza Heidar Gholami
4.17 (6)
Royal Scalping Indicator is an advanced price adaptive indicator designed to generate high-quality trading signals. Built-in multi-timeframe and multi-currency capabilities make it even more powerful to have configurations based on different symbols and timeframes. This indicator is perfect for scalp trades as well as swing trades. Royal Scalping is not just an indicator, but a trading strategy itself. Features Price Adaptive Trend Detector Algorithm Multi-Timeframe and Multi-Currency Trend Low
GOLD Impulse with Alert
Bernhard Schweigert
4.56 (9)
Este indicador es una super combinación de nuestros 2 productos Advanced Currency IMPULSE with ALERT  +   Currency Strength Exotics . ¡Funciona para todos los marcos de tiempo y muestra gráficamente el impulso de fuerza o debilidad para las 8 divisas principales más un Símbolo! Este Indicador está especializado en mostrar la aceleración de la fuerza de la divisa para cualquier símbolo como Oro, Pares Exóticos, Materias Primas, Índices o Futuros. Es el primero de su clase, cualquier símbol
PTS - Buscador de Compras por Divergencia de Precision Trading Systems El Buscador de Divergencias de Precisión fue diseñado para encontrar los mínimos del mercado con una precisión milimétrica y lo hace con frecuencia. En el análisis técnico, la habilidad de identificar mínimos generalmente es mucho más fácil que identificar máximos, y este elemento está diseñado precisamente para esa tarea. Después de identificar una divergencia alcista, es prudente esperar a que la tendencia se vuelva al
El Indicador de Venta PTS Divergence Finder de Roger Medcalf - Precision Trading Systems. Este indicador solo proporciona indicaciones bajistas - de venta. En primer lugar, muchas veces me han preguntado por qué no proporcioné un indicador de divergencia de venta mientras proporcionaba felizmente un buscador de divergencias de señal de compra durante muchos años. Di la respuesta de que las divergencias de venta son menos confiables que las divergencias de compra, lo cual sigue siendo cierto. Se
TPA True Price Action indicator reveals the true price action of the market makers through 100% non-repainting signals (except early signals mode) strictly at the close of a candle! TPA shows entries and re-entries, every time the bulls are definitely stronger than the bears and vice versa. Not to confuse with red/green candles. The shift of power gets confirmed at the earliest stage and is ONE exit strategy of several. There are available now two free parts of the TPA User Guide for our custo
Cycle Sniper
Elmira Memish
4.4 (35)
NEW YEAR SALE PRICE FOR LIMITED TIME!!! 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 pu
Up down v6T
Guner Koca
5 (1)
Thise indicator is up down v6  comes with tradingwiev version. purchased people, after installed on terminal ,contact me on mql5  to get BONUS  TradingView version. up-down indicator is no repaint and works all pairs and lower than weekly time frames charts. it is suitable also 1 m charts for all pairs. and hold long way to signal. dont gives too many signals. when red histogram cross trigger line that is up signal.and price probably will down when blue histogram cross trigger line that is dow
Reversal Sniper
Elmira Memish
5 (3)
Reversal Sniper is designed to find the extreme reversals of the price. Indicator collects data of Cycle Sniper Indicator. NOTE: REVERSAL SNIPER Indicator is made for Cycle Sniper Users as an additional tool.  However, it can be used by the traders who look for finding out strong reversal levels. Indicator works on all timeframes and all instruments. Reversal  Sniper  Checks: Harmonic Patterns RSI Zig Zag and Harmonic Swings Cycle Sniper Indicator's Buy / Sell Signals The complex algo i
XPointer
Andrey Kozak
5 (3)
XPointer is a completely ready trading system. It shows the trader when to open and close a trade. It works on all currency pairs and all time frames. Very easy to use and does not require additional indicators for its operation. Even a beginner trader can start working with XPointer. But it will also be useful for professional traders to confirm the opening of orders. Features of the XPointer indicator It does not redraw its values. It works on all currency pairs and all time frames. It has a
XQ Indicator MetaTrader 4
Marzena Maria Szmit
3 (2)
Step into the realm of Forex trading with confidence and precision using XQ, a cutting-edge Forex indicator designed to elevate your trading game to unprecedented heights. Whether you're a seasoned trader or just stepping into the world of currency exchange,   XQ Forex Indicator   empowers you with the insights and signals needed to make informed trading decisions. The signal conditions are a combination of three indicators, and XQ Forex Indicator only display  medium and long-term trends . The
NO REPAINT ADVANCED CHART PATTERN INDICATOR By definition, a price ( chart)  pattern is a recognizable configuration of price movement that is identified using a series of  trendlines  and/or curves. When a price pattern signals a change in trend direction, it is known as a reversal pattern; a continuation pattern occurs when the trend continues in its existing direction following a brief pause. Advanced Chart Pattern Tracker is designed to find the MOST ACCURATE patterns. A special script is
Otros productos de este autor
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
Breaker Blocks with Signals
Minh Truong Pham
3.67 (3)
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 te
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. "Smart Money Concepts" (SMC) is a fairly new yet widely used term amongst price a
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
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 builds upon the previously posted Nadaraya-Watson Estimator. Here we have created an envelope indicator based on kernel smoothing with integrated alerts from crosses between the price and envelope extremities. Unlike the Nadaraya-Watson Estimator, this indicator follows a contrarian methodology. Please note that the indicator is subject to repainting. The triangle labels are designed so that the indicator remains useful in real-time applications. Settings Window Size: Dete
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 P
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 indicat
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
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
This indicator presents an alternative approach to identify Market Structure. The logic used is derived from learning material created by   DaveTeaches (on X) 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 continuations. The main difference with this "protected" logic is in how we determine
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
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   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 ou
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
Sessions by LUX in MT5
Minh Truong Pham
5 (1)
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
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
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 calculated. We supp
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
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
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 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 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 te
There are many linear regression indicators out there, most of them draw lines or channels, but this one actually draws a chart. The beauty of the indicator like Heiken Ashi is it removes a lot of market noise. 4 (OHLC) arrays are filled with Linear Regression(LR) values of each price for the LR period (default=14). The period of the Linear Regression is adjustable dependant on the market conditions. The SMA (default=14) also has period adjustment. Candles are generated with Green for 'Up' cand
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 Bulle
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 bull
A problem when indicator call webrequest is "The WebRequest() function is synchronous, which means its breaks the program execution and waits for the response from the requested server. Since the delays in receiving a response can be large, the function is not available for calls from indicators, because indicators run in a common thread shared by all indicators and charts on one symbol. Indicator performance delay on one of the charts of a symbol may stop updating of all charts of the same symb
FREE
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
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
Filtro:
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!

Respuesta al comentario
Versión 1.8 2024.04.22
Fix error on divider 0 when learn
Versión 1.7 2024.01.31
Fix categories number
Versión 1.6 2024.01.31
Add "categories" - prediction value to buffer.
Versión 1.5 2023.12.06
add buffer for easier make EA from this indicator
Versión 1.4 2023.11.01
fix bug zero division
Versión 1.1 2023.09.27
Fix bug display horizontal line when buffer 0