• Aperçu
  • Avis (1)
  • Commentaires
  • Nouveautés

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)

Avis 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!

Produits recommandés
VR Cub
Vladimir Pastushak
VR Cub est un indicateur permettant d'obtenir des points d'entrée de haute qualité. L'indicateur a été développé pour faciliter les calculs mathématiques et simplifier la recherche de points d'entrée dans un poste. La stratégie de trading pour laquelle l'indicateur a été rédigé prouve son efficacité depuis de nombreuses années. La simplicité de la stratégie de trading est son grand avantage, qui permet même aux traders débutants de négocier avec succès avec elle. VR Cub calcule les points d'ouve
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)
Version MT5  |  FAQ L' indicateur Owl Smart Levels   est un système de trading complet au sein d'un seul indicateur qui comprend des outils d'analyse de marché populaires tels que   les fractales avancées de Bill Williams , Valable ZigZag qui construit   la structure d'onde correcte   du marché et   les niveaux de Fibonacci   qui marquent les niveaux exacts d'entrée. sur le marché et les endroits où prendre des bénéfices. Description détaillée de la stratégie Mode d'emploi de l'indicateur Conse
Cet indicateur innovant de mesure de la force des devises de INFINITY est une aide indispensable pour les scalpers et les commerçants qui négocient à long terme. Le système d'analyse De la force/faiblesse des devises est connu depuis longtemps et utilisé sur le marché par les principaux traders du monde. Tout commerce d'arbitrage n'est pas complet sans cette analyse. Notre indicateur détermine facilement la force des devises sous-jacentes les unes par rapport aux autres. Il affiche des graphiqu
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
Based on MACD indicator waves with standard parameters Applies Fibonacci levels to the last two MACD waves, positive and negative respectively, if at the moment the MACD indicator runs out of negative Wave - the color is green, if at the moment the MACD indicator runs out of positive Wave - the color is red. The Wave termination criterion is two ticks with a different MACD sign. Applies trend lines on the last four MACD Waves. Works well with the expert Figures MACD   https://www.mql5.com/ru/mar
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
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
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
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+Market+Product+Page 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 est un robot de scalping de n
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
Pandora Gold
Nguyen Hang Hai Ha
Auto-trading robot Pandora Gold  gives you the advantage of accuracy, quick execution of trade orders when trading signals appear. Pandora Gold EA analyzes price movements combining short-term trend patterns to select accurate trading signals with high probability. The EA does not use a hard Stop Loss, but it has a Closed all on Friday feature, it also uses different position management strategies for each situation to reduce risk. The EA is programmed specifically for the gold market ( XAUUSD
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.
Les acheteurs de ce produit ont également acheté
Atomic Analyst
Issam Kassas
5 (1)
Tout d'abord, il convient de souligner que cet indicateur de trading n'est ni repainting, ni redrawing et ne présente aucun délai, ce qui le rend idéal à la fois pour le trading manuel et automatisé. L'Analyste Atomique est un indicateur d'action sur les prix PA qui utilise la force et le momentum du prix pour trouver un meilleur avantage sur le marché. Équipé de filtres avancés qui aident à éliminer les bruits et les faux signaux, et à augmenter le potentiel de trading. En utilisant plusieur
Gold Stuff
Vasiliy Strukov
4.89 (250)
Gold Stuff est un indicateur de tendance conçu spécifiquement pour l'or et peut également être utilisé sur n'importe quel instrument financier. L'indicateur ne se redessine pas et ne traîne pas. Délai recommandé H1. Au niveau de l'indicateur de travail, l'Expert Advisor EA Gold Stuff est entièrement automatique. Vous pouvez le trouver sur mon profil. Contactez-moi immédiatement après l'achat pour obtenir les réglages et un bonus personnel !   RÉGLAGES Dessiner la flèche - on off. dessin
ACTUELLEMENT 26% DE RÉDUCTION La meilleure solution pour tout débutant ou trader expert ! Cet indicateur est un outil de trading unique, de haute qualité et abordable car nous avons incorporé un certain nombre de caractéristiques exclusives et une nouvelle formule. Avec seulement UN graphique, vous pouvez lire la force de la devise pour 28 paires Forex ! Imaginez comment votre trading va s'améliorer parce que vous êtes capable de repérer le point de déclenchement exact d'une nouvelle tendan
Actuellement 20% de réduction ! La meilleure solution pour tout débutant ou trader expert ! Ce logiciel de tableau de bord fonctionne sur 28 paires de devises. Il est basé sur 2 de nos principaux indicateurs (Advanced Currency Strength 28 et Advanced Currency Impulse). Il donne un excellent aperçu de l'ensemble du marché Forex. Il montre les valeurs de l'Advanced Currency Strength, la vitesse de mouvement des devises et les signaux pour 28 paires de devises dans tous les (9) délais. Imagine
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           
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
Présentation       Quantum Trend Sniper Indicator   , l'indicateur révolutionnaire MQL5 qui transforme la façon dont vous identifiez et négociez les inversions de tendance ! Développé par une équipe de traders expérimentés avec une expérience commerciale de plus de 13 ans,       Indicateur Quantum Trend Sniper       est conçu pour propulser votre parcours de trading vers de nouveaux sommets grâce à sa manière innovante d'identifier les inversions de tendance avec une précision extrêmement élevée
Quantum Breakout Indicator PRO
Bogdan Ion Puscasu
4.96 (26)
Présentation       Quantum Breakout PRO   , l'indicateur révolutionnaire MQL5 qui transforme la façon dont vous négociez les zones d'évasion ! Développé par une équipe de traders expérimentés avec une expérience de trading de plus de 13 ans,   Quantum Breakout PRO   est conçu pour propulser votre parcours de trading vers de nouveaux sommets grâce à sa stratégie de zone de discussion innovante et dynamique. Quantum Breakout Indicator vous donnera des flèches de signalisation sur les zones d
Advanced Supply Demand
Bernhard Schweigert
4.92 (310)
CURRENTLY 26% OFF !! Best Solution for any Newbie or Expert Trader! This indicator is a unique, high quality and affordable trading tool because we have incorporated a number of proprietary features and a new formula. With this update, you will be able to show double timeframe zones. You will not only be able to show a higher TF but to show both, the chart TF, PLUS the higher TF: SHOWING NESTED ZONES. All Supply Demand traders will love it. :) Important Information Revealed Maximize the potenti
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   -  
Présentation de l'indicateur miraculeux Forex : Libérez la puissance du trading précis En avez-vous assez de chercher le meilleur indicateur Forex qui fournisse réellement des résultats exceptionnels sur tous les délais ? Ne cherchez plus ! L'indicateur miraculeux Forex est là pour révolutionner votre expérience de trading et propulser vos gains vers de nouveaux sommets. Basé sur une technologie de pointe et des années de développement minutieux, l'indicateur miraculeux Forex se positionne comme
Entry Points Pro
Yury Orlov
4.7 (225)
Indicateur supérieur pour MT4 fournissant des signaux précis pour entrer dans un trade sans repeindre ! Il peut être appliqué à tous les actifs financiers : forex, cryptocurrencies, métaux, actions, indices.  La version MT5 est ici Il fournira des signaux de trading assez précis et vous dira quand il est préférable d'ouvrir un trade et de le fermer. Regardez la vidéo (6:22) avec un exemple de traitement d'un seul signal qui a rapporté à l'indicateur ! La plupart des traders améliorent l
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
FX Power MT4 NG
Daniel Stein
5 (8)
Obtenez votre mise à jour quotidienne du marché avec des détails et des captures d'écran via notre Morning Briefing ici sur mql5 et sur Telegram ! FX Power MT4 NG est la nouvelle génération de notre très populaire indicateur de force des devises, FX Power. Et qu'est-ce que ce compteur de force de nouvelle génération offre ? Tout ce que vous avez aimé de l'original FX Power PLUS Analyse de la force de l'OR/XAU Des résultats de calcul encore plus précis Périodes d'analyse configurables individuel
Price Action Entry Alerts
Stephen Sanjeeve Sahayam
5 (3)
Cet indicateur examine chaque barre pour la pression d'achat ou de vente et identifie 4 types de modèles de bougies avec le volume le plus élevé. Ces bougies sont ensuite filtrées à l'aide de plusieurs filtres linéaires pour afficher les signaux d'achat ou de vente. Les signaux fonctionnent mieux, en conjonction avec une direction temporelle plus élevée et lorsqu'ils sont négociés pendant les heures de volume élevé. Tous les filtres sont personnalisables et fonctionnent indépendamment. Peut aff
FX Volume
Daniel Stein
4.6 (35)
Obtenez votre mise à jour quotidienne du marché avec des détails et des captures d'écran via notre Morning Briefing ici sur mql5 et sur Telegram ! FX Volume est le PREMIER et SEUL indicateur de volume qui fournit un VRAI aperçu du sentiment du marché du point de vue d'un courtier. Il fournit des informations impressionnantes sur la façon dont les acteurs institutionnels du marché, comme les courtiers, sont positionnés sur le marché des changes, bien plus rapidement que les rapports COT. Voir c
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
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
PTS Precision Index Oscillator V2
PrecisionTradingSystems
5 (1)
L'oscillateur de l'indice de précision (Pi-Osc) de Roger Medcalf de Precision Trading Systems La version 2 a été soigneusement recodée pour être ultra-rapide à charger sur votre graphique, et quelques autres améliorations techniques ont été incorporées pour améliorer l'expérience. Le Pi-Osc a été créé pour fournir des signaux de synchronisation de trading précis conçus pour trouver des points d'épuisement extrêmes, les points auxquels les marchés sont contraints d'aller simplement pour élim
TakePropips Donchian Trend Pro
Eric John Pajarillaga Aldana
4.82 (17)
TakePropips Donchian Trend Pro   (MT4) est un outil puissant et efficace qui détecte automatiquement la direction de la tendance à l'aide du canal Donchian et vous fournit des signaux de trading d'entrée et de sortie ! Cet indicateur multifonction comprend un scanner de tendance, des signaux de trading, un panneau statistique, un filtre, des sessions de trading et un tableau de bord de l'historique des alertes. Il est conçu pour vous fournir des signaux de trading et vous faire gagner des heures
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
GOLD Impulse with Alert
Bernhard Schweigert
4.56 (9)
Cet indicateur est une super combinaison de nos 2 produits Advanced Currency IMPULSE with ALERT  +   Currency Strength Exotics . Il fonctionne pour tous les cadres temporels et montre graphiquement l'impulsion de force ou de faiblesse pour les 8 principales devises plus un symbole ! Cet indicateur est spécialisé pour montrer l'accélération de la force des devises pour tout symbole comme l'or, les paires exotiques, les matières premières, les indices ou les contrats à terme. C'est le premi
PTS - Divergence Buy Finder par Precision Trading Systems Le Precision Divergence Finder a été conçu pour trouver les points bas du marché avec une précision extrême, et il le fait fréquemment. En analyse technique, l'art de choisir les creux est généralement beaucoup plus facile que de choisir les sommets, et cet outil est précisément conçu pour cette tâche. Après avoir identifié une divergence haussière, il est sage d'attendre que la tendance s'inverse avant d'acheter. Vous pouvez utilise
L'indicateur de vente PTS Divergence Finder de Roger Medcalf - Precision Trading Systems. Cet indicateur ne fournit que des indications baissières de vente. Tout d'abord, on m'a souvent demandé pourquoi je n'avais pas fourni un indicateur de divergence de vente tout en fournissant volontiers un outil de recherche de divergence de signaux d'achat depuis de nombreuses années. J'ai répondu que les divergences de vente sont moins fiables que les divergences d'achat, ce qui est toujours vrai. Certain
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
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,
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
Currency Strength Exotics
Bernhard Schweigert
4.88 (33)
ACTUELLEMENT 20% DE RÉDUCTION ! La meilleure solution pour tout débutant ou trader expert ! Cet indicateur est spécialisé pour montrer la force de la devise pour tous les symboles comme les paires exotiques, les matières premières, les indices ou les contrats à terme. C'est le premier de son genre, n'importe quel symbole peut être ajouté à la 9ème ligne pour montrer la force réelle de la devise de l'or, l'argent, le pétrole, DAX, US30, MXN, TRY, CNH etc. Il s'agit d'un outil de trading uniq
Nous vous présentons ON Trade Waves Patterns Harmonic Elliot Wolfe, un indicateur avancé conçu pour détecter divers types de schémas sur le marché à l'aide de méthodes manuelles et automatiques. Voici comment il fonctionne : Schémas Harmoniques : Cet indicateur peut identifier les schémas harmoniques qui apparaissent sur votre graphique. Ces schémas sont essentiels pour les traders qui pratiquent la théorie du trading harmonique, telle qu'elle est décrite dans le livre de Scott Carney "Harmonic
Trend Scanner GS
Vasiliy Strukov
5 (30)
Trend Scanner analyse les tendances du marché à partir de cadres multi-symboles et multi-temps et les affiche sur un panneau mobile sur le graphique. Il utilise l'indicateur Gold stuff pour l'analyse. Les fonctionnalités incluent des alertes et des e-mails, ainsi que des notifications push. Le commerçant peut sélectionner plusieurs paires de son choix pour l'affichage. Trend Scanner est un excellent outil pour voir la direction de la tendance et peut être utilisé pour le trading manuel ou le tr
Plus de l'auteur
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
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
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
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
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
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
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
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
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
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
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 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 a Forex Scalping Trading Sytem based on the Bollinger Bands.  Pairs:Major Time frame: 1M or higher. Spread max:0,0001.  Indicators (just suggestion) Bollinger bands (20, 2); ADX (14 period); RSI   (7 period ). Y ou should only trade this system between 2am to 5am EST, 8am to 12am EST and 7.30pm to 10pm EST. Do not scalp 30 minutes before a orange or red news  report and not for a hour afterwards.   Setup: is for price to move above the lower or lower Bollinger Bands, RSI raise above the
FREE
This is addition of  Effective SV squeeze momentum  that add bolliger band and Keltner channel to chart window.  Squeeze momentum introduced by “John Carter”, the squeeze indicator for MT5 represents a volatility-based tool. Regardless, we can also consider the squeeze indicator as a momentum indicator, as many traders use it to identify the direction and strength of price moves. In fact, the Tradingview  squeeze indicator shows when a financial instrument is willing to change from a trending ma
FREE
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
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
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
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
Filtrer:
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!

Répondre à l'avis
Version 1.8 2024.04.22
Fix error on divider 0 when learn
Version 1.7 2024.01.31
Fix categories number
Version 1.6 2024.01.31
Add "categories" - prediction value to buffer.
Version 1.5 2023.12.06
add buffer for easier make EA from this indicator
Version 1.4 2023.11.01
fix bug zero division
Version 1.1 2023.09.27
Fix bug display horizontal line when buffer 0