ML Lorentzian Classification for MT5

█ OVERVIEW

A Lorentzian Distance Classifier (LDC) is a Machine Learning classification algorithm capable of categorizing historical data from a multi-dimensional feature space. This indicator demonstrates how Lorentzian Classification can also be used to predict the direction of future price movements when used as the distance metric for a novel implementation of an Approximate Nearest Neighbors (ANN) algorithm.

This indicator provide signal as buffer, so very easy for create EA from this indicator

█ BACKGROUND

In physics, Lorentzian space is perhaps best known for its role in describing the curvature of space-time in Einstein's theory of General Relativity (2). Interestingly, however, this abstract concept from theoretical physics also has tangible real-world applications in trading.

Recently, it was hypothesized that Lorentzian space was also well-suited for analyzing time-series data (4), (5). This hypothesis has been supported by several empirical studies that demonstrate that Lorentzian distance is more robust to outliers and noise than the more commonly used Euclidean distance (1), (3), (6). Furthermore, Lorentzian distance was also shown to outperform dozens of other highly regarded distance metrics, including Manhattan distance, Bhattacharyya similarity, and Cosine similarity (1), (3). Outside of Dynamic Time Warping based approaches, which are unfortunately too computationally intensive for PineScript at this time, the Lorentzian Distance metric consistently scores the highest mean accuracy over a wide variety of time series data sets (1).

Euclidean distance is commonly used as the default distance metric for NN-based search algorithms, but it may not always be the best choice when dealing with financial market data. This is because financial market data can be significantly impacted by proximity to major world events such as FOMC Meetings and Black Swan events. This event-based distortion of market data can be framed as similar to the gravitational warping caused by a massive object on the space-time continuum. For financial markets, the analogous continuum that experiences warping can be referred to as "price-time".

Below is a side-by-side comparison of how neighborhoods of similar historical points appear in three-dimensional Euclidean Space and Lorentzian Space (image 2)

This figure demonstrates how Lorentzian space can better accommodate the warping of price-time since the Lorentzian distance function compresses the Euclidean neighborhood in such a way that the new neighborhood distribution in Lorentzian space tends to cluster around each of the major feature axes in addition to the origin itself. This means that, even though some nearest neighbors will be the same regardless of the distance metric used, Lorentzian space will also allow for the consideration of historical points that would otherwise never be considered with a Euclidean distance metric.

Intuitively, the advantage inherent in the Lorentzian distance metric makes sense. For example, it is logical that the price action that occurs in the hours after Chairman Powell finishes delivering a speech would resemble at least some of the previous times when he finished delivering a speech. This may be true regardless of other factors, such as whether or not the market was overbought or oversold at the time or if the macro conditions were more bullish or bearish overall. These historical reference points are extremely valuable for predictive models, yet the Euclidean distance metric would miss these neighbors entirely, often in favor of irrelevant data points from the day before the event. By using Lorentzian distance as a metric, the ML model is instead able to consider the warping of price-time caused by the event and, ultimately, transcend the temporal bias imposed on it by the time series.

For more information on the implementation details of the Approximate Nearest Neighbors (ANN) algorithm used in this indicator, please refer to the detailed comments in the source code.

█ HOW TO USE

The image 3 is an explanatory breakdown of the different parts of this indicator as it appears in the interface

The image 4 is an explanation of the different settings for this indicator

General Settings:
  • Source - This has a default value of "hlc3" and is used to control the input data source.
  • Neighbors Count - This has a default value of 8, a minimum value of 1, a maximum value of 100, and a step of 1. It is used to control the number of neighbors to consider.
  • Max Bars Back - This has a default value of 2000.
  • Feature Count - This has a default value of 5, a minimum value of 2, and a maximum value of 5. It controls the number of features to use for ML predictions.
  • Color Compression - This has a default value of 1, a minimum value of 1, and a maximum value of 10. It is used to control the compression factor for adjusting the intensity of the color scale.
  • Show Exits - This has a default value of false. It controls whether to show the exit threshold on the chart.
  • Use Dynamic Exits - This has a default value of false. It is used to control whether to attempt to let profits ride by dynamically adjusting the exit threshold based on kernel regression.

Feature Engineering Settings:
Note: The Feature Engineering section is for fine-tuning the features used for ML predictions. The default values are optimized for the 4H to 12H timeframes for most charts, but they should also work reasonably well for other timeframes. By default, the model can support features that accept two parameters (Parameter A and Parameter B, respectively). Even though there are only 4 features provided by default, the same feature with different settings counts as two separate features. If the feature only accepts one parameter, then the second parameter will default to EMA-based smoothing with a default value of 1. These features represent the most effective combination I have encountered in my testing, but additional features may be added as additional options in the future.
  • Feature 1 - This has a default value of "RSI" and options are: "RSI", "WT", "CCI", "ADX".
  • Feature 2 - This has a default value of "WT" and options are: "RSI", "WT", "CCI", "ADX".
  • Feature 3 - This has a default value of "CCI" and options are: "RSI", "WT", "CCI", "ADX".
  • Feature 4 - This has a default value of "ADX" and options are: "RSI", "WT", "CCI", "ADX".
  • Feature 5 - This has a default value of "RSI" and options are: "RSI", "WT", "CCI", "ADX".

Filters Settings:
  • Use Volatility Filter - This has a default value of true. It is used to control whether to use the volatility filter.
  • Use Regime Filter - This has a default value of true. It is used to control whether to use the trend detection filter.
  • Use ADX Filter - This has a default value of false. It is used to control whether to use the ADX filter.
  • Regime Threshold - This has a default value of -0.1, a minimum value of -10, a maximum value of 10, and a step of 0.1. It is used to control the Regime Detection filter for detecting Trending/Ranging markets.
  • ADX Threshold - This has a default value of 20, a minimum value of 0, a maximum value of 100, and a step of 1. It is used to control the threshold for detecting Trending/Ranging markets.

Kernel Regression Settings:
  • Trade with Kernel - This has a default value of true. It is used to control whether to trade with the kernel.
  • Show Kernel Estimate - This has a default value of true. It is used to control whether to show the kernel estimate.
  • Lookback Window - This has a default value of 8 and a minimum value of 3. It is used to control the number of bars used for the estimation. Recommended range: 3-50
  • Relative Weighting - This has a default value of 8 and a step size of 0.25. It is used to control the relative weighting of time frames. Recommended range: 0.25-25
  • Start Regression at Bar - This has a default value of 25. It is used to control the bar index on which to start regression. Recommended range: 0-25

Display Settings:
  • Show Bar Colors - This has a default value of true. It is used to control whether to show the bar colors.
  • Show Bar Prediction Values - This has a default value of true. It controls whether to show the ML model's evaluation of each bar as an integer.
  • Use ATR Offset - This has a default value of false. It controls whether to use the ATR offset instead of the bar prediction offset.
  • Bar Prediction Offset - This has a default value of 0 and a minimum value of 0. It is used to control the offset of the bar predictions as a percentage from the bar high or close.

Backtesting Settings:
  • Show Backtest Results - This has a default value of true. It is used to control whether to display the win rate of the given configuration.


█ WORKS CITED

(1) R. Giusti and G. E. A. P. A. Batista, "An Empirical Comparison of Dissimilarity Measures for Time Series Classification," 2013 Brazilian Conference on Intelligent Systems, Oct. 2013, DOI: 10.1109/bracis.2013.22.
(2) Y. Kerimbekov, H. Ş. Bilge, and H. H. Uğurlu, "The use of Lorentzian distance metric in classification problems," Pattern Recognition Letters, vol. 84, 170–176, Dec. 2016, DOI: 10.1016/j.patrec.2016.09.006.
(3) A. Bagnall, A. Bostrom, J. Large, and J. Lines, "The Great Time Series Classification Bake Off: An Experimental Evaluation of Recently Proposed Algorithms." ResearchGate, Feb. 04, 2016.
(4) H. Ş. Bilge, Yerzhan Kerimbekov, and Hasan Hüseyin Uğurlu, "A new classification method by using Lorentzian distance metric," ResearchGate, Sep. 02, 2015.
(5) Y. Kerimbekov and H. Şakir Bilge, "Lorentzian Distance Classifier for Multiple Features," Proceedings of the 6th International Conference on Pattern Recognition Applications and Methods, 2017, DOI: 10.5220/0006197004930501.
(6) V. Surya Prasath et al., "Effects of Distance Measure Choice on KNN Classifier Performance - A Review." .

=======================

Note on "repainting":
To be clear, once a bar has closed, this indicator will NOT repaint. This is true for both the ML predictions and the Kernel estimate.

Note on bar requirement for "learning":
That's a valuable recommendation. Using a timeframe of H4 or lower when working with this indicator because of this require historical price data for learning and analysis is a practical approach. It ensures that you have an adequate number of historical bars to enable the indicator to learn and adapt effectively to price behavior (MT4 have just about1000 bar in chart with bigger timeframe). If you have any more insights or questions related to trading or indicators, feel free to share or ask.

Note for buffer

Incase create EA with signal from this indicator please use iCustom. The index when use iCustom as following:

+ index 0 is line value

+ index 2 is line direction: 1 is going up; -1 is going down

+  index 4 is signal: 1 is buy; 2 is close buy; -1 is sell; -2 is close sell

+  index 5 is prediction

Remember that indicator only calculated closed bar. So you need shift 1 in copyBuffer.

Prodotti consigliati
Golden Surfer EA
Aleksandr Chebotaev
5 (1)
Golden Surfer — Potente.Stabile.Professionale PREZZO DI LANCIO SPECIALE Offerta limitata — $355 per i prossimi 5 acquirenti. Successivamente, il prezzo aumenterà a $455 Segnale in tempo reale:   https://www.mql5.com/en/signals/2360360 Golden Surfer è un Expert Advisor per il trading automatizzato di XAUUSD (ORO). L'EA è progettato per un'esecuzione controllata e un rischio predefinito. Regola principale: l'EA mantiene una sola posizione alla volta. Nessuna griglia. Nessuna martingala. Nessuna
Gecko EA MT5
Profalgo Limited
5 (1)
NEW PROMO: Only a few copies copies available at 349$ Next price: 449$ Make sure to check out our " Ultimate EA combo package " in our   promo blog ! Gecko runs a simple, yet very effective, proven strategy.  It looks for important recent support and resistance levels and will trade the breakouts.  This is a "real" trading system, which means it will use a SL to protect the account.  It also means it will not use any dangerous techniques like martingale, grid or averaging down. The EA shows its
Trend Lines Scalper
Magdalena Estefania Colonna
TREND LINES Scalper Professional Indicator OVERVIEW Trend Lines Scalper is a highly accurate, advanced indicator designed specifically for professional traders looking to maximize their scalping opportunities by automatically detecting trend lines and high-probability signals. This powerful algorithm combines classic technical analysis with modern technology, automatically identifying price patterns and generating accurate, real-time signals for successful scalping trades. MAIN FEATURES
Owl Smart Levels MT5
Sergey Ermolov
4.03 (32)
Versione MT4  |  FAQ L' indicatore Owl Smart Levels è un sistema di trading completo all'interno dell'unico indicatore che include strumenti di analisi di mercato popolari come i frattali avanzati di Bill Williams , Valable ZigZag che costruisce la corretta struttura a onde del mercato, e i livelli di Fibonacci che segnano i livelli esatti di entrata nel mercato e luoghi per prendere profitti. Descrizione dettagliata della strategia Istruzioni per lavorare con l'indicatore Consulente-assistente
Engulfing with EMAs Indicator Unlock the power of advanced candlestick pattern detection with the Engulfing with EMAs Indicator , a cutting-edge tool designed for MetaTrader 5. This futuristic indicator combines the precision of engulfing pattern analysis with the trend-following strength of Exponential Moving Averages (EMA 21 and EMA 50), empowering traders to identify high-probability setups across all currency pairs and timeframes. Key Features: Comprehensive Engulfing Detection : Detects b
Short Description Swing Timing Breakout EA is a smart Expert Advisor for MetaTrader 5 that combines trend filtering, momentum timing, and dynamic risk management to capture high-probability swing and breakout opportunities. Full Description Swing Timing Breakout EA is a professional trading robot designed for MetaTrader 5, suitable for traders who want a balance between automation, control, and disciplined risk management. This EA uses a trend-following and momentum confirmation approach ,
AW Heiken Ashi MT5
AW Trading Software Limited
AW Heiken Ashi — Indicatore intelligente di trend e livelli di TP. Indicatore avanzato basato sul classico Heiken Ashi, adattato ai trader, con maggiore flessibilità e chiarezza. A differenza dell'indicatore standard, AW Heiken Ashi aiuta ad analizzare il trend, a determinare gli obiettivi di profitto e a filtrare i falsi segnali, fornendo decisioni di trading più affidabili. Guida all'installazione e istruzioni - Qui / Versione MT4 - Qui Vantaggi di AW Heiken Ashi: Funziona su qualsiasi risorsa
STRICTLY FOR BOOM INDEX ONLY!!!!! Here I bring the Maximum Trend Arrows OT1.0 MT5 indicator. This indicator is made up of a combination of different trend indicators for entries and exits, for entries an orange arrow will paint on the chart below the current market and a red flag for closing of trades and it produces buy arrows only. When the orange arrow appears, it will appear along with it's sound to notify you. The 1H timeframe is recommended, don't use it anywhere else than on the 1H timefr
Informazioni sull'indicatore Questo indicatore si basa sulle simulazioni Monte Carlo sui prezzi di chiusura di uno strumento finanziario. Per definizione, Monte Carlo è una tecnica statistica utilizzata per modellare la probabilità di diversi risultati in un processo che coinvolge numeri casuali basati su risultati osservati in precedenza. Come funziona? Questo indicatore genera diversi scenari di prezzo per un titolo modellando i cambiamenti di prezzo casuali nel tempo sulla base dei dati stor
##   ONLY GOLD ##   Тiльки Золото ## **Mercaria Professional Trading Zones - Complete Guide** ## **Mercaria Professional Trading Zones - Повний посібник** ### **How Mercaria Zones Work / Як працюють зони Mercaria** **English:** Mercaria Zones is an advanced trading indicator that identifies high-probability support and resistance areas using ZigZag extremes combined with mathematical zone calculations. The indicator works on multiple timeframes simultaneously, providing a comprehensive view
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. The indicator parameters MacdFast - fast MACD line period MacdSlow - slow MACD line period MacdSignal - MACD signal line period Macd
All about time and price by ICT. This indicator provides a comprehensive view of ICT killzones, Silver Bullet times, and ICT Macros, enhancing your trading experience.  In those time windows price either seeks liquidity or imbalances and you often find the most energetic price moves and turning points. Features: Automatic Adaptation: The ICT killzones intelligently adapt to the specific chart you are using. For Forex charts, it follows the ICT Forex times: In EST timezone: Session: Asia: 20h00-0
Ottieni l’indicatore AUX GRATUITO, il supporto EA e la guida completa, visita per favore – https://www.mql5.com/en/blogs/post/763955 Individua la tendenza. Leggi il pattern. Cronometra l'ingresso. 3 passaggi in meno di 30 secondi! Opera senza sforzo — nessuna analisi richiesta, il tuo assistente intelligente è pronto a semplificare il tuo flusso di lavoro Basta sovraccarico di grafici. Opera con fiducia utilizzando il rilevamento intelligente del bias. Compatibile con tutte le valute, criptova
Bober Real MT5
Arnold Bobrinskii
4.76 (17)
Bober Real MT5 is a fully automatic Forex trading Expert Advisor. This robot was made in 2014 year and did a lot of profitbale trades during this period. So far over 7000% growth on my personal account. There was many updates but 2019 update is the best one. The robot can run on any instrument, but the results are better with EURGBP, GBPUSD, on the M5 timeframe. Robot doesn't show good results in tester or live account if you run incorrect sets. Set files for Live accounts availible only for cu
Renko System
Marco Montemari
This indicator can be considered as a trading system. It offers a different view to see the currency pair: full timeless indicator, can be used for manual trading or for automatized trading with some expert advisor. When the price reaches a threshold a new block is created according to the set mode. The indicator beside the Renko bars, shows also 3 moving averages. Features renko mode median renko custom median renko 3 moving averages wicks datetime indicator for each block custom notification
Gold Trader Pro is an advanced analytical tool specifically engineered for professional trading on XAUUSD (Gold). It provides an immediate comprehensive overview of market structure across 7 different timeframes, allowing traders to identify flow direction and signal strength through a modern, draggable, and interactive interface. Key Features Multi-Timeframe Analysis: Real-time monitoring of M1, M5, M15, M30, H1, H4, and D1. Two Operational Modes: MODE_SCALPING: Optimized for fast-paced analys
FREE
HAshi-E è un modo migliorato di analizzare i segnali Heiken-Ashi. Briefing: L'Heiken-Ashi è particolarmente apprezzato per la sua capacità di filtrare la volatilità a breve termine, che lo rende uno strumento privilegiato per identificare e seguire le tendenze, aiuta a prendere decisioni sui punti di entrata e di uscita e aiuta a distinguere tra falsi segnali e vere inversioni di tendenza. A differenza dei tradizionali grafici a candele, le candele Heiken-Ashi sono calcolate utilizzando i val
PipFinite Trend PRO MT5
Karlo Wilson Vendiola
4.84 (558)
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 Automatin
Advanced 4xZeovo MT5 Indicator (MetaTrader 5)   Product Description  4xZeovo is a powerful trading indicator system monitoring 24/7 financial markets. Metatrader5 tool designed to find the best buying/selling opportunities and notifies the user.    Making life easy for traders in helping with the two most difficult decisions with the use of advanced innovate trading indicators aiming to encourage users to hold the winning positions and take profit at the best times.    Equipped with a unique tra
Gold EA: Proven Power for 1-Minute Gold Trading Transform your trading with our Gold EA, meticulously crafted for 1-minute charts and delivering over 2000% growth in 5 years from just $100-$1000 . No Martingale, No AI Gimmicks : Pure, time-tested strategies with robust money management, stop loss, and take profit for reliable performance across multiple charts. Flexible Trading Modes : Choose Fixed Balance for safe profits, Mark IV for bold growth, or %Balance for high rewards—combine Mark IV an
Kingtrend
Antonio Blazquez
KingTrend — Price Action Trend Analysis Tool KingTrend is a trend-following indicator based on long-standing price action principles involving Highs, Lows, Open, and Close. The logic behind this tool comes from concepts passed on to me by my mentor and translated into code for consistent structure recognition. Features: Identifies market structure using price action logic Detects trend direction and key turning points Marks Higher Highs, Lower Lows, and extensions Suitable for discretionary or
HAshi-E è un modo migliorato di analizzare i segnali Heiken-Ashi. Briefing: L'Heiken-Ashi è particolarmente apprezzato per la sua capacità di filtrare la volatilità a breve termine, che lo rende uno strumento privilegiato per identificare e seguire le tendenze, aiuta a prendere decisioni sui punti di entrata e di uscita e aiuta a distinguere tra falsi segnali e vere inversioni di tendenza. A differenza dei tradizionali grafici a candele, le candele Heiken-Ashi sono calcolate utilizzando i val
Prime Flow SMC is a technical analysis tool designed to identify market structure shifts and price imbalances based on Smart Money Concepts (SMC). The indicator analyzes price action in real-time to detect Fair Value Gaps (FVG), Break of Structure (BOS), and Change of Character (ChoCh) events. The core algorithm focuses on reaction speed. Unlike traditional indicators that wait for a candle to close, Prime Flow SMC monitors current Bid and Ask prices to identify potential entry points at the mom
BlueBoat – Prime Cycle is a technical indicator for MetaTrader 5 that visualizes market cycles based on the Fimathe cycle model (Marcelo Ferreira) . It identifies and displays historic and live cycle structures such as CA, C1, C2, C3, etc., helping traders understand the rhythm and timing of price movement across multiple sessions. This tool is ideal for manual analysis or as a supporting signal in discretionary strategies. Key Features Historical Cycle Analysis – Backtest and visualize as many
Exclusive Black Pro Max MT5 — Sistema di Trading Automatizzato Exclusive Black Pro Max MT5 è un Expert Advisor per MetaTrader 5, basato su algoritmi avanzati di analisi di mercato e strategie di gestione del rischio. L’EA funziona in modalità completamente automatica e richiede un intervento minimo da parte del trader. Attenzione! Contattami immediatamente dopo l’acquisto per ricevere le istruzioni di configurazione! IMPORTANTE: Tutti gli esempi, gli screenshot e i test sono forniti esclusivamen
PREngulfing
Slobodan Manovski
PR EA - Engulfing Pattern Trading System Automated Engulfing Pattern Detection with MA Confirmation The PR EA is a Meta Trader 5 expert advisor that identifies and trades bullish/bearish engulfing candlestick patterns when confirmed by a moving average filter. Designed for swing trading on 30-minute charts with compatibility for M15 and H1 time frames. Key Features: Pattern Recognition - Detects valid bullish/bearish engulfing candle formations Trend Confirmation - 238-period SMA filter
Market Maestro: Your Ideal Partner for Automated Forex Trading If you're looking for a reliable assistant for trading in the currency market, Market Maestro is exactly what you need. This modern Forex bot is built using the latest technologies and algorithms, allowing it to effectively analyze market data and make informed trading decisions in real-time. Key Features of Market Maestro 1. Multicurrency Capability for Broad Opportunities Market Maestro can work with a wide range of currency pairs,
Basic working principles of EA will have 2 main systems. 1. Timed order opening means that at the specified time the EA will open 1 Buy order and 1 Sell order. 2. When the graph is strong, the EA will remember the speed of the graph. is the number of points per second which can be determined You can set the number of orders in the function ( Loop Order ). The order closing system uses the trailling moneym Loss system, but I set it as a percentage to make it easier to calculate when the capital
SlopeChannelB MT5
MIKHAIL VINOGRADOV
SlopeChannelB – uno strumento di analisi tecnica che costruisce un canale di movimento del prezzo inclinato, offrendo opportunità uniche per valutare la situazione attuale del mercato e trovare segnali di trading. Caratteristiche principali dell'indicatore: Canale di movimento del prezzo inclinato : L'indicatore aiuta a visualizzare i livelli di supporto e resistenza, che possono indicare potenziali punti di inversione o continuazione del trend. Vari colori delle linee e evidenziazione dell
# DRAWDOWN INDICATOR V4.0 - The Essential Tool to Master Your Trading ## Transform Your Trading with a Complete Real-Time Performance Overview In the demanding world of Forex and CFD trading, **knowing your real-time performance** isn't a luxury—it's an **absolute necessity**. The **Drawdown Indicator V4.0** is much more than a simple indicator: it's your **professional dashboard** that gives you a clear, precise, and instant view of your trading account status. --- ## Why This Indicator
Gli utenti di questo prodotto hanno anche acquistato
ARICoins
Temirlan Kdyrkhan
ARICoin is a powerful trading companion designed to generate high-probability entry signals with dynamic TP/SL/DP levels based on volatility. Built-in performance tracking shows win/loss stats, PP1/PP2 hits, and success rates all updated live. Key Features: Buy/Sell signals with adaptive volatility bands Real-time TP/SL/DP levels based on ATR Built-in MA Filter with optional ATR/StdDev volatility Performance stats panel (Success, Profit/Loss, PP1/PP2) Alerts via popup, sound, push, or email Cust
AriX
Temirlan Kdyrkhan
1 (4)
AriX Indicator for MT5 A powerful trend-following and signal-evaluation tool AriX is a custom MT5 indicator that combines Moving Averages and ATR-based risk/reward logic to generate clear buy/sell signals. It visualizes dynamic SL/TP levels, evaluates past trade outcomes, and displays win/loss statistics in a clean on-chart panel. Key features include: Buy/Sell signals based on MA crossovers ATR-based SL/TP1/TP2/TP3 levels with visual lines and labels Signal outcome tracking with real-time stat
Divergence Bomber
Ihor Otkydach
4.89 (83)
Ogni acquirente dell’indicatore riceverà inoltre gratuitamente: L’utilità esclusiva “Bomber Utility”, che gestisce automaticamente ogni operazione, imposta i livelli di Stop Loss e Take Profit e chiude le posizioni secondo le regole della strategia I file di configurazione (set file) per adattare l’indicatore a diversi asset I set file per configurare il Bomber Utility in tre modalità: “Rischio Minimo”, “Rischio Bilanciato” e “Strategia di Attesa” Una guida video passo-passo per installare, conf
Market Flow Pro
Gabriele Sabatino
4 (1)
Market Flow Pro Market Flow Pro is an intelligent trading advisor for the MetaTrader 5 platform, designed for automatic trading on financial markets using algorithmic analysis and strict risk management. -Key features: - Fully automatic trading 24/5 - Adaptive trend and momentum entry algorithm -  Built-in risk management - Flexible lot settings (fixed/auto-calculation) - Support for major currency pairs and indices - Optimised for operation on various timeframes  How it works Market
Grabber System MT5
Ihor Otkydach
4.82 (22)
Ti presento un eccellente indicatore tecnico: Grabber, che funziona come una strategia di trading "tutto incluso", pronta all’uso. In un solo codice sono integrati strumenti potenti per l’analisi tecnica del mercato, segnali di trading (frecce), funzioni di allerta e notifiche push. Ogni acquirente di questo indicatore riceve anche gratuitamente: L’utility Grabber: per la gestione automatica degli ordini aperti Video tutorial passo dopo passo: per imparare a installare, configurare e utilizzare
RFI levels PRO MT5
Roman Podpora
3.67 (3)
L'indicatore mostra accuratamente i punti di inversione e le zone di ritorno dei prezzi in cui il       Principali attori   . Vedi dove si formano le nuove tendenze e prendi decisioni con la massima precisione, mantenendo il controllo su ogni operazione. VERSION MT4     -    Rivela il suo massimo potenziale se combinato con l'indicatore   TREND LINES PRO Cosa mostra l'indicatore: Strutture di inversione e livelli di inversione con attivazione all'inizio di un nuovo trend. Visualizzazione dei li
Quantum TrendPulse
Bogdan Ion Puscasu
5 (22)
Ecco   Quantum TrendPulse   , lo strumento di trading definitivo che combina la potenza di   SuperTrend   ,   RSI   e   Stocastico   in un unico indicatore completo per massimizzare il tuo potenziale di trading. Progettato per i trader che cercano precisione ed efficienza, questo indicatore ti aiuta a identificare con sicurezza le tendenze di mercato, i cambiamenti di momentum e i punti di entrata e uscita ottimali. Caratteristiche principali: Integrazione SuperTrend:   segui facilmente l'andame
Azimuth Pro
Ottaviano De Cicco
5 (4)
LAUNCH PROMO Azimuth Pro price is initially set at 299$ for the first 100 buyers. Final price will be 499$ . THE DIFFERENCE BETWEEN RETAIL AND INSTITUTIONAL ENTRIES ISN'T THE INDICATOR — IT'S THE LOCATION. Most traders enter at arbitrary price levels, chasing momentum or reacting to lagging signals. Institutions wait for price to reach structured levels where supply and demand actually shift. Azimuth Pro maps these levels automatically: swing-anchored VWAP, multi-timeframe structure lines, an
RelicusRoad Pro: Sistema Operativo Quantitativo di Mercato 70% DI SCONTO ACCESSO A VITA (TEMPO LIMITATO) - UNISCITI A 2.000+ TRADER Perché la maggior parte dei trader fallisce anche con indicatori "perfetti"? Perché operano su Singoli Concetti isolati. Un segnale senza contesto è una scommessa. Per vincere serve CONFLUENZA . RelicusRoad Pro non è un semplice indicatore. È un Ecosistema Quantitativo completo . Mappa la "Fair Value Road", distinguendo tra rumore e rotture strutturali. Smetti di in
Top indicator for MT5   providing accurate signals to enter a trade without repainting! It can be applied to any financial assets:   forex, cryptocurrencies, metals, stocks, indices .  Watch  the video  (6:22) with an example of processing only one signal that paid off the indicator! MT4 version is here It will provide pretty accurate trading signals and tell you when it's best to open a trade and close it. Most traders improve their trading results during the first trading week with the help of
Trend Lines PRO MT5
Roman Podpora
5 (1)
LINEE DI TENDENZA PRO  Aiuta a capire dove il mercato sta realmente cambiando direzione. L'indicatore mostra reali inversioni di tendenza e punti in cui i principali operatori rientrano. Vedi   Linee BOS   Cambiamenti di tendenza e livelli chiave su timeframe più ampi, senza impostazioni complesse o rumore inutile. I segnali non vengono ridisegnati e rimangono sul grafico dopo la chiusura della barra. VERSIONE MT4   -   Svela il suo massimo potenziale se abbinato all'indicatore   RFI LEVELS PRO
ARIPoint
Temirlan Kdyrkhan
ARIPoint is a powerful trading companion designed to generate high-probability entry signals with dynamic TP/SL/DP levels based on volatility. Built-in performance tracking shows win/loss stats, PP1/PP2 hits, and success rates all updated live. Key Features: Buy/Sell signals with adaptive volatility bands Real-time TP/SL/DP levels based on ATR Built-in MA Filter with optional ATR/StdDev volatility Performance stats panel (Success, Profit/Loss, PP1/PP2) Alerts via popup, sound, push, or email Cu
Presentazione       Quantum Breakout PRO   , l'innovativo indicatore MQL5 che sta trasformando il modo in cui scambi le zone di breakout! Sviluppato da un team di trader esperti con un'esperienza di trading di oltre 13 anni,       Quantum Breakout PRO       è progettato per spingere il tuo viaggio di trading a nuovi livelli con la sua strategia innovativa e dinamica della zona di breakout. Quantum Breakout Indicator ti fornirà frecce di segnalazione sulle zone di breakout con 5 zone target di
CGE Trading Suite
Carl Gustav Johan Ekstrom
5 (1)
CGE Trading Suite delivers the analytical edge typically reserved for professional trading desks. The platform integrates a full suite of analytical tools into one seamless workflow: dynamic grid mapping, liquidity behavior analysis, ECM, trend lines, MIDAS, trade cycles, and directional channel projections. Together, these provide a unified view of market structure and momentum. Directional clarity is further enhanced by the capital flow index, which measures currency basket strength to identif
Candle Smart Range
Gianny Alexander Lugo Sanchez
Candle Smart Range (CSR) per MetaTrader 5 Candle Smart Range è un indicatore tecnico progettato per l'identificazione automatica dei range di prezzo su più timeframe. Questo strumento analizza la struttura del mercato basandosi sulle formazioni delle candele e sull'interazione del prezzo con i massimi e i minimi precedenti. Caratteristiche principali: Rilevamento Range: Identifica le zone di consolidamento prima dei movimenti impulsivi. Identificazione Falsi Breakout: Segnala quando il prezzo su
Trend Forecaster
Alexey Minkov
5 (7)
The Trend Forecaster indicator utilizes a unique proprietary algorithm to determine entry points for a breakout trading strategy. The indicator identifies price clusters, analyzes price movement near levels, and provides a signal when the price breaks through a level. The Trend Forecaster indicator is suitable for all financial assets, including currencies (Forex), metals, stocks, indices, and cryptocurrencies. You can also adjust the indicator to work on any time frames, although it is recommen
Bill Williams Advanced
Siarhei Vashchylka
5 (10)
Bill Williams Advanced is designed for automatic chart analysis using Bill Williams' "Profitunity" system. The indicator analyzes four timeframes at once. Manual (Be sure to read before purchasing) Advantages 1. Analyzes the chart using Bill Williams' "Profitunity" system. Signals are displayed in a table in the corner of the screen and on the price chart. 2. Finds all known AO and AC signals, as well as zone signals. Equipped with a trend filter based on the Alligator. 3. Finds "Divergence Bar
L'indicatore " Dynamic Scalper System MT5 " è progettato per il metodo di scalping, ovvero per il trading all'interno di onde di trend. Testato sulle principali coppie di valute e sull'oro, è compatibile con altri strumenti di trading. Fornisce segnali per l'apertura di posizioni a breve termine lungo il trend, con ulteriore supporto al movimento dei prezzi. Il principio dell'indicatore. Le frecce grandi determinano la direzione del trend. Un algoritmo per generare segnali per lo scalping sott
La soluzione migliore per ogni principiante o trader esperto! Questo indicatore è uno strumento di trading unico, di alta qualità e conveniente perché abbiamo incorporato una serie di caratteristiche proprietarie e una nuova formula. Con un solo grafico è possibile leggere la forza delle valute per 28 coppie Forex! Immaginate come migliorerà il vostro trading perché sarete in grado di individuare l'esatto punto di innesco di una nuova tendenza o di un'opportunità di scalping? Manuale d'uso:  
MetaBands M5
Vahidreza Heidar Gholami
4.5 (2)
MetaBands uses powerful and unique algorithms to draw channels and detect trends so that it can provide traders with potential points for entering and exiting trades. It’s a channel indicator plus a powerful trend indicator. It includes different types of channels which can be merged to create new channels simply by using the input parameters. MetaBands uses all types of alerts to notify users about market events. Features Supports most of the channel algorithms Powerful trend detection algorith
Easy SMC Trading
Israr Hussain Shah
Structure Trend con Auto RR e Scanner BOS Versione: 1.0 Panoramica Structure Trend con Auto RR è un sistema di trading completo progettato per i trader che si affidano all'azione del prezzo e alla struttura del mercato. Combina un filtro di tendenza levigato con il rilevamento dei punti swing e i segnali di rottura della struttura (BOS) per generare configurazioni di trading ad alta probabilità. La caratteristica distintiva di questo strumento è la gestione automatica del rischio. Al rilevame
Gartley Hunter Multi
Siarhei Vashchylka
5 (11)
Gartley Hunter Multi - An indicator for searching for harmonic patterns simultaneously on dozens of trading instruments and on all possible timeframes. Manual (Be sure to read before purchasing) | Version for MT4 Advantages 1. Patterns: Gartley, Butterfly, Shark, Crab. Bat, Alternate Bat, Deep Crab, Cypher 2. Simultaneous search for patterns on dozens of trading instruments and on all possible timeframes 3. Search for patterns of all possible sizes. From the smallest to the largest 4. All fou
Innanzitutto, vale la pena sottolineare che questo Strumento di Trading è un Indicatore Non-Ridipingente, Non-Ridisegnante e Non-Laggante, il che lo rende ideale per il trading professionale. Corso online, manuale utente e demo. L'Indicatore Smart Price Action Concepts è uno strumento molto potente sia per i nuovi che per i trader esperti. Racchiude più di 20 utili indicatori in uno solo, combinando idee di trading avanzate come l'Analisi del Trader del Circolo Interno e le Strategie di Tradin
Cyclic Impulse MT5 — Questo indicatore tecnico struttura i grafici e identifica i movimenti ciclici dei prezzi. Permette di individuare inversioni cicliche dei prezzi e segnali di ingresso. Come funziona l'indicatore Quando viene rilevato un movimento ciclico al ribasso, viene generata una barra blu verso il basso dopo la chiusura della candela. Potrebbe lampeggiare sulla candela corrente e il segnale non è ancora stato confermato. Le frecce blu sono duplicate sul grafico dei prezzi. Quando vie
L’indicatore evidenzia le zone in cui viene dichiarato interesse sul mercato , per poi mostrare la zona di accumulo degli ordini . Funziona come un book degli ordini su larga scala . Questo è l’indicatore per i grandi capitali . Le sue prestazioni sono eccezionali. Qualsiasi interesse ci sia nel mercato, lo vedrai chiaramente . (Questa è una versione completamente riscritta e automatizzata – non è più necessaria un’analisi manuale.) La velocità di transazione è un indicatore concettualmente nuo
Ultimate SMC Indicator
Hicham Mahmoud Almoustafa
1 (1)
ULTIMATE SMC INDICATOR — PRO EDITION     Trade Like Institutional Traders Are you tired of losing trades because you don't  know WHERE the big money is positioned? The Ultimate SMC Indicator reveals the hidden  footprints of banks and institutions directly on  your chart — giving you the edge that professional  traders use every day. WHAT IS SMC
Btmm state engine pro
Garry James Goodchild
5 (1)
BTMM State Engine Pro — the   all-in-one Banks   & Institutions Market Maker indicator for Meta Trader 5. Built for   BTMM traders who follow the Asian   session breakout methodology with Kill Zone timing , level stacking, peak formation detection , and multi-pair scanning — all   from a single chart. Combines   a full BTMM State Engine   with a built-in multi-pair Scanner dashboard, eliminating the need to flip between charts or run multiple indicators. WHAT IT DOES Automatically detec
Berma Bands
Muhammad Elbermawi
5 (8)
L'indicatore Berma Bands (BBs) è uno strumento prezioso per i trader che cercano di identificare e capitalizzare i trend di mercato. Analizzando la relazione tra il prezzo e le BBs, i trader possono discernere se un mercato è in una fase di trend o di range. Visita il [ Berma Home Blog ] per saperne di più. Le Berma Bands sono composte da tre linee distinte: la Upper Berma Band, la Middle Berma Band e la Lower Berma Band. Queste linee sono tracciate attorno al prezzo, creando una rappresentazion
Advanced Supply Demand MT5
Bernhard Schweigert
4.53 (15)
La migliore soluzione per qualsiasi principiante o trader esperto! Questo indicatore è uno strumento di trading unico, di alta qualità e conveniente perché abbiamo incorporato una serie di funzionalità proprietarie e una nuova formula. Con questo aggiornamento, sarai in grado di mostrare fusi orari doppi. Non solo potrai mostrare una TF più alta, ma anche entrambe, la TF del grafico, PIÙ la TF più alta: SHOWING NESTED ZONES. Tutti i trader di domanda di offerta lo adoreranno. :) Informazioni imp
1. Tool Description The   Dynamic Liquidity HeatMap Profile   is an advanced technical indicator originally designed by BigBeluga (Pine Script) and ported to MQL5. Unlike a standard Volume Profile which shows where volume   has   occurred, this tool attempts to visualize where liquidity (limit orders and stop losses) is   likely waiting   (resting liquidity). It works by identifying pivots (local highs and lows) weighted by volume and ATR.   Crucially, if price moves through a level, that liquid
Altri dall’autore
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 in the  
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 Inversion Fair Value Gaps (IFVG) indicator is based on the inversion FVG concept by ICT and provides support and resistance zones based on mitigated Fair Value Gaps (FVGs). Image 1   USAGE Once mitigation of an FVG occurs, we detect the zone as an "Inverted FVG". This would now be looked upon for potential support or resistance. Mitigation occurs when the price closes above or below the FVG area in the opposite direction of its bias. (Image 2) Inverted Bullish FVGs Turn into Potenti
Introduction One of the patterns in "RTM" is the "QM" pattern, also known as "Quasimodo". Its name is derived from the appearance of "Hunchback of Notre-Dame" from Victor Hugo's novel. It is a type of "Head and Shoulders" pattern.   Formation Method   Upward Trend In an upward trend, the left shoulder is formed, and the price creates a new peak higher than the left shoulder peak . After a decline, it manages to break the previous low and move upward again. We expect the price to
This all-in-one indicator displays real-time market structure (internal & swing BOS / CHoCH), order blocks, premium & discount zones, equal highs & lows, and much more...allowing traders to automatically mark up their charts with widely used price action methodologies. Following the release of our Fair Value Gap script, we received numerous requests from our community to release more features in the same category. "Smart Money Concepts" (SMC) is a fairly new yet widely used term amongst price a
This 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
The Hull  Butterfly  Oscillator (HBO) is an oscillator constructed from the difference between a regular  Hull Moving Average  (  HMA  ) and another with coefficients flipped horizontally . Levels are obtained from cumulative means of the absolute value of the oscillator. These are used to return dots indicating potential reversal points . This indicator draw line in separate window, plus blue dot (for buy signal) when hull oscillator is peak and red when sell signal. It  also includes integrate
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 is addition of  Effective SV squeeze momentum  that add bolliger band and Keltner channel to chart window.  Squeeze momentum introduced by “John Carter”, the squeeze indicator for MT5 represents a volatility-based tool. Regardless, we can also consider the squeeze indicator as a momentum indicator, as many traders use it to identify the direction and strength of price moves. In fact, the Tradingview  squeeze indicator shows when a financial instrument is willing to change from a trending ma
FREE
The 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 SuperTrend AI indicator is a novel take on bridging the gap between the K-means clustering machine learning method & technical indicators. In this case, we apply K-Means clustering to the famous SuperTrend indicator.   USAGE Users can interpret the SuperTrend AI trailing stop similarly to the regular SuperTrend indicator. Using higher minimum/maximum factors will return longer-term signals. (image 1) The displayed performance metrics displayed on each signal allow for a deeper interpretat
The concept of Harmonic Patterns was established by H.M. Gartley in 1932. Gartley wrote about a 5-point (XABCD) pattern (known as Gartley) in his book Profits in the Stock Market. This indicator scan and alert when 4th point (C) is complete and predict where D should be.  In traditional, Gartley pattern include BAT pattern, Gartley pattern, butterfly pattern, crab pattern, deep crab pattern, shark pattern. Each pattern has its own set of fibonacci. In this indicator, we add more extended patter
The indicator show Higher timeframe candles for ICT technical analisys Higher time frames reduce the 'noise' inherent in lower time frames, providing a clearer, more accurate picture of the market's movements. By examining higher time frames, you can better identify trends, reversals, and key areas of support and resistance. The Higher Time Frame Candles indicator overlays higher time frame data directly onto your current chart. You can easily specify the higher time frame candles you'd li
All about Smart Money Concepts Strategy: Market struture: internal or swing BOS, CHoCH; Orderblock; Liquity equal; Fair Value Gap with Consequent encroachment, Balanced price range; Level with Previous month, week, day level or in day level (PMH, PWH, PDH, HOD); BuySell Stops Liquidity (BSL, SSL); Liquidity Void Long Wicks; Premium and Discount; Candle pattern ... "Smart Money Concepts" ( SMC ) is a fairly new yet widely used term amongst price action traders looking to more accurately navigate
The indicator   returning pivot point based trendlines with highlighted breakouts . Trendline caculated by pivot point and other clue are ATR, Stdev.   The indicator also includes integrated alerts for  trendlines  breakouts   and foward message to Telegram channel or group if you want. Settings ·            Lookback bar: Default 200 is number of bar caculate when init indicator. ·            Length:  Pivot points  period ·            Slope Calculation Method: Determines how this lope is calcula
This all-in-one indicator displays real-time market structure (internal & swing BOS / CHoCH), order blocks, premium & discount zones, equal highs & lows, and much more...allowing traders to automatically mark up their charts with widely used price action methodologies. Following the release of our Fair Value Gap script, we received numerous requests from our community to release more features in the same category. //------------------------------------// Version 1.x has missing functions + PDAr
The Breaker Blocks with Signals indicator aims to highlight a complete methodology based on breaker blocks. Breakout signals between the price and breaker blocks are highlighted and premium/discount swing levels are included to provide potential take profit/stop loss levels. This script also includes alerts for each signal highlighted.   SETTINGS   Breaker Blocks Length: Sensitivity of the detected swings used to construct breaker blocks. Higher values will return longer term break
The ICT Concepts indicator regroups core concepts highlighted by trader and educator "The Inner Circle Trader" (ICT) into an all-in-one toolkit. Features include Market Structure (MSS & BOS), Order Blocks, Imbalances, Buyside/Sellside Liquidity, Displacements, ICT Killzones, and New Week/Day Opening Gaps. It’s one kind of Smart money concepts.   USAGE:   Please read this   document  !      DETAILS Market Structure Market structure labels are constructed from price breaking a prior extreme
The FollowLine indicator is a trend following indicator. The blue/red lines are activated when the price closes above the upper Bollinger band or below the lower one. Once the trigger of the trend direction is made, the FollowLine will be placed at High or Low (depending of the trend). An ATR filter can be selected to place the line at a more distance level than the normal mode settled at candles Highs/Lows. Some features: + Trend detech + Reversal signal + Alert teminar / mobile app
The ICT Silver Bullet indicator is inspired from the lectures of "The Inner Circle Trader" (ICT) and highlights the Silver Bullet (SB) window which is a specific 1-hour interval where a Fair Value Gap (FVG) pattern can be formed. A detail document about ICT Silver Bullet here . There are 3 different Silver Bullet windows (New York local time): The London Open Silver Bullet (3 AM — 4 AM ~ 03:00 — 04:00) The AM Session Silver Bullet (10 AM — 11 AM ~ 10:00 — 11:00) The PM Session Silver Bullet (2
Sessions by Lux
Minh Truong Pham
This indicator shows when user set sessions are active and returns various tools + metrics using the closing price within active sessions as an input. Users have the option to change up to 4 session times. The indicator will increasingly lack accuracy when the chart timeframe is higher than 1 hour. Settings Sessions Enable Session: Allows to enable or disable all associated elements with a specific user set session. Session Time: Opening and closing times of the user set session in the  
The liquidity swings indicator highlights swing areas with existent trading activity. The number of times price revisited a swing area is highlighted by a zone delimiting the swing areas. Additionally, the accumulated volume within swing areas is highlighted by labels on the chart. An option to filter out swing areas with volume/counts not reaching a user-set threshold is also included. This indicator by its very nature is not real-time and is meant for descriptive analysis alongside other com
OVERVIEW A Lorentzian Distance Classifier (LDC) is a Machine Learning classification algorithm capable of categorizing historical data from a multi-dimensional feature space. This indicator demonstrates how Lorentzian Classification can also be used to predict the direction of future price movements when used as the distance metric for a novel implementation of an Approximate Nearest Neighbors (ANN) algorithm. This indicator provide signal as buffer, so very easy for create EA from this indi
This script automatically calculates and updates ICT's daily IPDA look back time intervals and their respective discount / equilibrium / premium, so you don't have to :) IPDA stands for Interbank Price Delivery Algorithm. Said algorithm appears to be referencing the past 20, 40, and 60 days intervals as points of reference to define ranges and related PD arrays. Intraday traders can find most value in the 20 Day Look Back box, by observing imbalances and points of interest. Longer term traders c
An Implied Fair Value Gap (IFVG) is a three candles imbalance formation conceptualized by ICT that is based on detecting a larger candle body & then measuring the average between the two adjacent candle shadows. This indicator automatically detects this imbalance formation on your charts and can be extended by a user set number of bars. The IFVG average can also be extended until a new respective IFVG is detected, serving as a support/resistance line. Alerts for the detection of bullish/be
Consolidation is when price is moving inside a clear trading range. When prices are consolidated it shows the market maker placing orders on both sides of the market. This is mainly due to manipulate the un informed money. This indicator automatically identifies consolidation zones and plots them on the chart. The method of determining consolidation zones is based on pivot points and ATR, ensuring precise identification. The indicator also sends alert notifications to users when a new consolida
This indicator presents an alternative approach to identify Market Structure. The logic used is derived from learning material created by   DaveTeaches (on X) Upgrade v1.10: add option to put protected high/low value to buffer (figure 11, 12) When quantifying Market Structure, it is common to use fractal highs and lows to identify "significant" swing pivots. When price closes through these pivots, we may identify a Market Structure Shift (MSS) for reversals or a Break of Structure (BOS) for co
Created by imjesstwoone and mickey1984, this trade model attempts to capture the expansion from the 10:00-14:00 EST 4h candle using just 3 simple steps. All of the information presented in this description has been outlined by its creators, all I did was translate it to MQL4. All core settings of the trade model may be edited so that users can test several variations, however this description will cover its default, intended behavior using NQ 5m as an example. Step 1 is to identify our Price Ra
The Buyside & Sellside Liquidity indicator aims to detect & highlight the first and arguably most important concept within the ICT trading methodology,   Liquidity   levels. SETTINGS Liquidity Levels Detection Length: Lookback period Margin: Sets margin/sensitivity for a liquidity level detection Liquidity Zones Buyside Liquidity Zones: Enables display of the buyside liquidity zones. Margin: Sets margin/sensitivity for the liquidity zone boundaries. Color: Color option for buysid
The   Liquidation Estimates (Real-Time)   experimental indicator attempts to highlight real-time long and short liquidations on all timeframes. Here with liquidations, we refer to the process of forcibly closing a trader's position in the market. By analyzing liquidation data, traders can gauge market sentiment, identify potential support and resistance levels, identify potential trend reversals, and make informed decisions about entry and exit points. USAGE (Img 1)    Liquidation refers
Filtro:
Nessuna recensione
Rispondi alla recensione