• Visão global
  • Comentários (1)
  • Discussão
  • O que há de novo

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)

Comentários 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!

Produtos recomendados
VR Cub
Vladimir Pastushak
VR Cub é um indicador para obter pontos de entrada de alta qualidade. O indicador foi desenvolvido para facilitar cálculos matemáticos e simplificar a busca por pontos de entrada em uma posição. A estratégia de negociação para a qual o indicador foi escrito tem provado a sua eficácia há muitos anos. A simplicidade da estratégia de negociação é a sua grande vantagem, o que permite que até mesmo os comerciantes novatos negociem com sucesso com ela. VR Cub calcula os pontos de abertura de posição e
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)
Versão MT5  |  FAQ O   Indicador Owl Smart Levels   é um sistema de negociação completo dentro de um indicador que inclui ferramentas populares de análise de mercado, como   fractais avançados de Bill Williams , Valable ZigZag que constrói a   estrutura de onda correta   do mercado e   níveis de Fibonacci que marcam os níveis exatos de entrada no mercado e lugares para obter lucros. Descrição detalhada da estratégia Instruções para trabalhar com o indicador Consultor de negociação Owl Helper Ch
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 O Taurus All4 é um indicador de alta performance, ele vai te indicar a força da tendência, e você vai conseguir observar a força dos candle. Nosso indicador possuir mais de 4 confirmações da tendência. Ele é bem simples e fácil de usar. Modos de confirmações Confirmações de Tendência da Vela:  Quando a vela mudar para verde claro a tendência é de alta. Quando a vela mudar para vermelho claro a tendência está revertendo para baixo. Quando a vela mudar para vermelho escuro a t
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 é um indicador baseado na volatilidade, desenvolvido com um algoritmo de tempo especifico, que consiste em encontrar possíveis correções no mercado. Este indicador mostra duas linhas exteriores, uma interior (linha de retração) e um sinal de seta, onde a teoria do canal consiste em ajudar a identificar condições de sobrecompra e sobrevenda no mercado. O preço do mercado cairá geralmente entre os limites do canal. Se os preços tocarem ou se moverem para fora do canal é uma
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
Baseado em ondas indicadoras MACD com parâmetros padrão Aplica os níveis de Fibonacci às duas últimas ondas MACD, positivas e negativas, respectivamente, se no momento em que o indicador MACD fica sem onda negativa - a cor é verde, se no momento em que o indicador MACD fica sem onda positiva - a cor é vermelha. O critério de terminação Wave é dois ticks com um sinal MACD diferente. Aplica linhas de tendência nas últimas quatro ondas MACD. Funciona bem com o especialista  Figures MACD
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 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
Gyroscopes
Nadiya Mirosh
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
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
US30 Scalper EA MT4
Lo Thi Mai Loan
5 (4)
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 O US30 Scalper EA é um robô 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
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 histo
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.
BinaryUniversal
Andrey Spiridonov
BinaryUniversal is a signal indicator for binary options and Forex. In its work, the indicator uses a complex algorithm for generating signals. Before forming a signal, the indicator analyzes volatility, candlestick patterns, important support and resistance levels. The indicator has the ability to adjust the accuracy of the signals, which makes it possible to apply this indicator for both aggressive and conservative trading. The indicator is set in the usual way, it works on any time period and
Os compradores deste produto também adquirem
ACTUALMENTE COM 26% DE DESCONTO A melhor solução para qualquer novato ou comerciante especializado! Este Indicador é uma ferramenta comercial única, de alta qualidade e acessível, porque incorporámos uma série de características proprietárias e uma nova fórmula. Com apenas UM gráfico, pode ler a força da moeda para 28 pares de Forex! Imagine como a sua negociação irá melhorar porque é capaz de apontar o ponto exacto do gatilho de uma nova tendência ou oportunidade de escalada? Manual do u
Atomic Analyst
Issam Kassas
5 (3)
Primeiramente, vale ressaltar que este Indicador de Negociação não repinta, não redesenha e não apresenta atrasos, tornando-o ideal tanto para negociação manual quanto automatizada. Manual do utilizador: configurações, entradas e estratégia. O Analista Atômico é um Indicador de Ação de Preço PA que utiliza a força e o momentum do preço para encontrar uma vantagem melhor no mercado. Equipado com filtros avançados que ajudam a remover ruídos e sinais falsos, e aumentam o potencial de negociação.
Advanced Supply Demand
Bernhard Schweigert
4.92 (310)
Atualmente com 33% de desconto! A melhor solução para qualquer Trader Novato ou especialista! Este indicador é uma ferramenta de negociação exclusiva, de alta qualidade e acessível porque incorporamos uma série de recursos proprietários e uma nova fórmula. Com esta atualização, você poderá mostrar fusos horários duplos. Você não só será capaz de mostrar um TF mais alto, mas também mostrar ambos, o TF do gráfico, MAIS o TF mais alto: MOSTRANDO ZONAS ANINHADAS. Todos os traders de Oferta e Demanda
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   -  
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           
Dragon Multi Indicator MT4
Mansour Babasafary
5 (1)
74% discount for the next 10 buyers (original price $605): 1 left Get a 50% bonus by buying (or even renting) any of our products. After buying (or renting), send a message for more information. 3 Indicators in 1 indicator Strategy based on price action Made specifically for the best forex currency pairs Can be used in the best time frame of the market at a very reasonable price This indicator is basically 3 different indicatos . But we have combined these 3 indicators in 1 indicator so th
Claro, aqui está a tradução para o português: Apresentando o Indicador de Astronomia para MT4: Seu Companheiro Celestial Definitivo no Trading Você está pronto para elevar sua experiência de trading a alturas celestiais? Não procure mais do que o nosso revolucionário Indicador de Astronomia para MT4. Essa ferramenta inovadora transcende os indicadores de trading tradicionais, aproveitando o poder de algoritmos complexos para fornecer insights astronômicos incomparáveis e cálculos de precisão. Um
Apresentando       Quantum Trend Sniper Indicator   , o inovador Indicador MQL5 que está transformando a maneira como você identifica e negocia as reversões de tendência! Desenvolvido por uma equipe de traders experientes com experiência comercial de mais de 13 anos,       Indicador de Atirador de Tendência Quântica       foi projetado para impulsionar sua jornada de negociação a novos patamares com sua forma inovadora de identificar reversões de tendência com precisão extremamente alta. ***C
Apresentamos o ON Trade Waves Patterns Harmonic Elliot Wolfe, um indicador avançado projetado para detectar diversos tipos de padrões no mercado, usando métodos manuais e automáticos. Aqui está como ele funciona: Padrões Harmônicos: Este indicador pode identificar padrões harmônicos que aparecem em seu gráfico. Esses padrões são essenciais para traders que praticam a teoria de negociação harmônica, conforme popularizada no livro de Scott Carney "Harmonic Trading vol 1 e 2". Seja desenhando-os m
Trend Screener
STE S.S.COMPANY
4.83 (88)
Indicador de tendência, solução única inovadora para negociação e filtragem de tendências com todos os recursos de tendências importantes construídos dentro de uma ferramenta! É um indicador multi-timeframe e multi-moedas 100% sem repintura que pode ser usado em todos os símbolos/instrumentos: forex, commodities, criptomoedas, índices e ações. O Trend Screener é um indicador eficiente que segue a tendência do indicador que fornece sinais de tendência de seta com pontos no gráfico. Os recursos qu
on free demo press zoom out button to see back.. cnt number is bar numbers.you can change up to 3000 related to chart bars numbers. minimum value is 500. there is g value set to 1.01. no need to change it. this indicator almost grail,no repaint and all pairs ,all timeframe indicator. there is red and blue histograms. if gold x sign comes on red histogram that is sell signal. if blue x sign comes on blue histogram that is buy signal. this indicator on thise version works all pairs.al timeframes
FX Power MT4 NG
Daniel Stein
5 (9)
Receba a sua atualização diária do mercado com detalhes e screenshots através do nosso Morning Briefing aqui no mql5 e no Telegram ! O FX Power MT4 NG é a próxima geração do nosso medidor de força de moeda muito popular de longa data, o FX Power. E o que é que este medidor de força da próxima geração oferece? Tudo o que adorou no FX Power original MAIS Análise de força GOLD/XAU Resultados de cálculo ainda mais precisos Períodos de análise configuráveis individualmente Limite de cálculo personal
Scalper Inside PRO
Alexey Minkov
4.75 (57)
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 profitability. Scalper Inside
Shepherd Harmonic Pattern
Abdullah Alrai
4.68 (59)
Este indicador detectará padrões harmônicos desenhados no gráfico por métodos manuais e automáticos. Você pode ver o manual do usuário neste link: Adicione sua avaliação e entre em contato conosco para obtê-lo Existe uma versão gratuita para experimentar este produto no mt4. Você pode usá-lo para detectar padrões de Gartley e Nenstar: https://www.mql5.com/en/market/product/30181 Você pode comprar a versão completa do MT4 em: https://www.mql5.com/en/market/product/15212 Notas O indicador possui u
Actualmente 20% OFF ! A melhor solução para qualquer novato ou comerciante especializado! Este software de painel de instrumentos está a funcionar em 28 pares de moedas. É baseado em 2 dos nossos principais indicadores (Advanced Currency Strength 28 e Advanced Currency Impulse). Dá uma grande visão geral de todo o mercado Forex. Mostra valores avançados de força da moeda, velocidade de movimento da moeda e sinais para 28 pares de divisas em todos os (9) períodos de tempo. Imagine como a sua
TrendMaestro
Stefano Frisetti
5 (2)
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.4 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 a
Up down v6T
Guner Koca
5 (1)
Thise indicator is up down v6  comes with tradingwiev pinescript. purchased people, after installed on terminal ,contact me on mql5  to get BONUS  TradingView pinescript. 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
Quantum Breakout Indicator PRO
Bogdan Ion Puscasu
4.96 (26)
Apresentando       Quantum Breakout PRO   , o inovador Indicador MQL5 que está transformando a maneira como você negocia Breakout Zones! Desenvolvido por uma equipe de traders experientes com experiência em negociação de mais de 13 anos,   o Quantum Breakout PRO   foi projetado para impulsionar sua jornada comercial a novos patamares com sua estratégia inovadora e dinâmica de zona de rompimento. O Quantum Breakout Indicator lhe dará setas de sinal em zonas de breakout com 5 zonas-alvo de luc
Volatility Trend System - um sistema de negociação que dá sinais para entradas. O sistema de volatilidade fornece sinais lineares e pontuais na direção da tendência, bem como sinais para sair dela, sem redesenho e atrasos. O indicador de tendência monitora a direção da tendência de médio prazo, mostra a direção e sua mudança. O indicador de sinal é baseado em mudanças na volatilidade e mostra entradas no mercado. O indicador está equipado com vários tipos de alertas. Pode ser aplicado a vários i
MetaTrend M4
Vahidreza Heidar Gholami
5 (1)
Meta Trend Indicator is an efficient way to forecast and detect the trend in any market. It reveals the trend, support and resistance levels, volatility and the maximum potential target, all in one indicator. To adapt to the price and to decrease consecutive trend failures, the internal trend detector algorithm studies the market and dynamically chooses the right values for the internal parameters. This indicator is a perfect trend filter for any strategy or expert advisor. Features Super Adapti
FX Volume
Daniel Stein
4.6 (35)
Receba a sua atualização diária do mercado com detalhes e screenshots através do nosso Morning Briefing aqui no mql5 e no Telegram ! O Volume FX é o PRIMEIRO e ÚNICO indicador de volume que fornece uma visão REAL do sentimento do mercado do ponto de vista de um corretor. Ele fornece uma visão incrível de como os participantes do mercado institucional, como corretores, estão posicionados no mercado Forex, muito mais rápido do que os relatórios COT. Ver essas informações diretamente no seu gráfi
MetaForecast M4
Vahidreza Heidar Gholami
5 (1)
MetaForecast prevê e visualiza o futuro de qualquer mercado com base nas harmonias nos dados de preços. Embora o mercado nem sempre seja previsível, se houver um padrão nos preços, o MetaForecast pode prever o futuro com a maior precisão possível. Em comparação com outros produtos similares, o MetaForecast pode gerar resultados mais precisos ao analisar as tendências do mercado. Parâmetros de entrada Past size (Tamanho do passado) Especifica o número de barras que o MetaForecast usa para criar
Cyclical indicator for trading and predicting the direction of the market. Shows the cyclical behavior of the price in the form of an oscillator. Gives signals for opening deals when rebounding from the upper and lower boundaries of the oscillator. In the form of a histogram, it shows the smoothed strength of the trend. Will complement any trading strategy, from scalping to intraday. The indicator does not redraw. Suitable for use on all symbols/instruments. Suitable time frames for short-term
Allows multiple indicators to be combined into a single indicator, both visually and in terms of an alert. Indicators can include standard indicators, e.g. RSI, CCI, etc., and also Custom Indicators, even those purchased through Market, or where just have the ex4 file. An early alert is provided, say when 4 out 5 indicators have lined up, and a confirmed alert when all are in agreement. A‌lso features a statistics panel reporting the success of the combined indicator by examining the current cha
GOLD Impulse with Alert
Bernhard Schweigert
4.56 (9)
Este indicador é uma super combinação dos nossos 2 produtos Advanced Currency IMPULSE with ALERT  +   Currency Strength Exotics . Funciona para todos os períodos de tempo e mostra graficamente impulso de força ou fraqueza para as 8 principais moedas mais um Símbolo! Este Indicador é especializado para mostrar a aceleração da força da moeda para quaisquer símbolos como Ouro, Pares Exóticos, Commodities, Índices ou Futuros. É o primeiro do seu género, qualquer símbolo pode ser adicionado à
Price Action Entry Alerts
Stephen Sanjeeve Sahayam
5 (3)
Este indicador analisa cada barra de pressão de compra ou venda e identifica 4 tipos de padrões de velas com o maior volume. Essas velas são filtradas usando vários filtros lineares para mostrar sinais de compra ou venda. Os sinais funcionam melhor, em conjunto com a direção do período de tempo mais alto e quando negociados durante as horas de alto volume. Todos os filtros são personalizáveis ​​e funcionam de forma independente. Pode visualizar sinais de uma única direção com o clique de um bot
WARNING: PRICE IS SUBJECT TO RISE AT ANY TIME. GET YOUR COPY TODAY TO AVOID MORE COST! Dear Traders I am so glad to introduce to you my other tool called the Forex Sniper Entries Indicator. This tool is designed to help serious traders and investors capture big moves in the currency price movements. The philosophy behind this tool is all about winning big and riding the price movement from its beginning until the maximum point. We want to capture those big moves in both down and up markets as mu
Smart Ai Levels  Accumulation & Distribution indicator Smart Ai Levels are Ai controlled indicator which is based on Wyckoff Price cycle theory . It automatically scans the Accumulation & Distribution phases on chart and Ai draws the possible areas before Mark up and Mark down which acts as hot zones and can be traded with confirmation to catch those big price movements . It's a great tool for both Reversal and Breakout Trades suitable to all Trading Styles such as Scalping - Intraday - Swing 
TakePropips Donchian Trend Pro
Eric John Pajarillaga Aldana
4.82 (17)
TakePropips Donchian Trend Pro   (MT4) é uma ferramenta poderosa e eficaz que detecta automaticamente a direção da tendência usando o Canal Donchian e fornece sinais de negociação de entrada e saída! Este indicador multifuncional inclui um scanner de tendências, sinais de negociação, painel estatístico, rastreador, sessões de negociação e painel de histórico de alertas. Ele foi projetado para fornecer sinais de negociação e economizar horas analisando os gráficos! Você pode baixar o manual do us
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
Mais do autor
This indicator provides the ability to recognize the SMC pattern, essentially a condensed version of the Wyckoff model. Once the pattern is confirmed by RTO, it represents a significant investment opportunity.    There are numerous indicators related to SMC beyond the market, but this is the first indicator to leverage patterns to identify specific actions of BigBoy to  navigate the market. Upgrade 2024-03-08: Add TP by RR feature. The SMC (Smart Money Concept)   pattern   is a market analysis m
This indicator 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
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
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 use
Introduction "Smart money" is money invested by knowledgeable individuals at the right time, and this investment can yield the highest returns. The concept we focus on in this indicator is whether the market is in an uptrend or downtrend. The market briefly takes a weak and reversal trend with "Minor BoS" without being able to break the major pivot. In the next step, it returns to its main trend with a strong bullish move and continues its trend with a "Major BoS". The "order bloc
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
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 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
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
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 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 is a Forex Scalping Trading Sytem based on the Bollinger Bands.  Pairs:Major Time frame: 1M or higher. Spread max:0,0001.  Indicators (just suggestion) Bollinger bands (20, 2); ADX (14 period); RSI   (7 period ). Y ou should only trade this system between 2am to 5am EST, 8am to 12am EST and 7.30pm to 10pm EST. Do not scalp 30 minutes before a orange or red news  report and not for a hour afterwards.   Setup: is for price to move above the lower or lower Bollinger Bands, RSI raise above the
FREE
This 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   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 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
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
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
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
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 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 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
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
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
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
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
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!

Responder ao comentário
Versão 1.8 2024.04.22
Fix error on divider 0 when learn
Versão 1.7 2024.01.31
Fix categories number
Versão 1.6 2024.01.31
Add "categories" - prediction value to buffer.
Versão 1.5 2023.12.06
add buffer for easier make EA from this indicator
Versão 1.4 2023.11.01
fix bug zero division
Versão 1.1 2023.09.27
Fix bug display horizontal line when buffer 0