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.

Önerilen ürünler
Golden Surfer EA
Aleksandr Chebotaev
5 (1)
Golden Surfer — Güçlü. İstikrarlı. Profesyonel ÖZEL LANSMAN FİYATI Sınırlı teklif — Sonraki 5 alıcı için $355 Sonrasında fiyat $455 ’a yükselecek. Canlı Sinyal:   https://www.mql5.com/en/signals/2360360 Golden Surfer, XAUUSD (ALTIN) otomatik alım satımı için tasarlanmış bir Uzman Danışmandır (EA). EA, kontrollü işlem yürütme ve önceden tanımlanmış risk için geliştirilmiştir. Ana kural: Uzman Danışman (EA) aynı anda sadece bir pozisyon tutar. Izgara yok. Martingale yok. Ortalama alma yok. Kurta
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)
MT4 versiyonu  |  FAQ Owl Smart Levels Indicator , Bill Williams'ın gelişmiş fraktalları , piyasanın doğru dalga yapısını oluşturan Valable ZigZag ve kesin giriş seviyelerini gösteren Fibonacci seviyeleri gibi popüler piyasa analiz araçlarını içeren tek gösterge içinde eksiksiz bir ticaret sistemidir. pazara ve kar elde edilecek yerlere. Stratejinin ayrıntılı açıklaması Gösterge ile çalışma talimatı Baykuş Yardımcısı ticaretinde Danışman Yardımcısı Kullanıcıların özel sohbeti -> Satın aldıktan
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 — Trend ve TP seviyelerinin akıllı göstergesi. Klasik Heiken Ashi'ye dayalı, tüccarlar için uyarlanmış, daha fazla esneklik ve netliğe sahip gelişmiş gösterge. Standart göstergenin aksine, AW Heiken Ashi trendi analiz etmeye, kar hedeflerini belirlemeye ve yanlış sinyalleri filtrelemeye yardımcı olarak daha güvenli ticaret kararları sağlar. Kurulum Kılavuzu ve Talimatlar - Burada / MT4 Sürümü - Burada AW Heiken Ashi'nin Avantajları: Herhangi bir varlık ve zaman diliminde çalışır,
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
Overview Auto Fibo Trend Signal is a comprehensive analysis tool designed to support discretionary traders in market environment recognition and trade execution. Featuring an interactive on-chart dashboard, it allows for seamless control over multiple technical indicators and dynamic drawing tools. This indicator eliminates the need to constantly open the properties window, enabling flexible, real-time analysis directly on the chart. Key Features Interactive Dashboard The dedicated control pane
FREE
Neon Trade — finansal özgürlüğe ve en yüksek seviye trading'e açılan kapıyı açan son teknoloji bir trading çözümü Hedeflerinden ve görevlerinden bağımsız olarak herhangi bir trader'ın ihtiyaçlarını karşılayabilecek benzersiz bir trading çözümü oluşturmaya çalıştım. Ana fikir, makine öğrenimini gelişmiş trading teknikleriyle birleştirerek ortak kullanımlarından maksimum fayda sağlamaktı. Sistem, 1-2 ay içinde küçük mevduatları büyütmek için de, yıllar boyunca uzun vadeli yatırım yapmak için de u
Göstergenin Hakkında Bu gösterge, bir finansal aracın kapanış fiyatları üzerinde yapılan Monte Carlo simülasyonlarına dayanmaktadır. Tanım olarak, Monte Carlo, daha önce gözlemlenen sonuçlara dayalı rastgele sayılar kullanarak bir süreçteki farklı sonuçların olasılıklarını modellemek için kullanılan bir istatistiksel tekniktir. Nasıl Çalışır? Bu gösterge, tarihsel verilere dayanarak zaman içinde rastgele fiyat değişikliklerini modelleyerek bir menkul kıymet için birden fazla fiyat senaryosu olu
##   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
ÜCRETSİZ AUX Göstergesini, EA desteğini ve tam kılavuzu alın, lütfen ziyaret edin – https://www.mql5.com/en/blogs/post/763955 Trend'i Belirle. Deseni Oku. Girişi Zamanla. 30 Saniyede 3 Adım! Kolayca işlem yapın — analiz gerektirmez, Akıllı yardımcınız iş akışınızı basitleştirmeye hazır Artık grafik yüklemesi yok. Akıllı yönelim tespiti ile güvenle işlem yapın. Tüm para birimleri, kripto, hisse senetleri, metaller, endeksler ve herhangi bir zaman dilimi ile uyumludur. Sadece tıklayın ve yürütün
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
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, Heiken-Ashi sinyallerini analiz etmenin gelişmiş bir yoludur. Brifing: Heiken-Ashi özellikle kısa vadeli dalgalanmaları filtreleme kabiliyeti nedeniyle değerlidir, bu da onu trendleri belirlemek ve takip etmek için tercih edilen bir araç haline getirir, giriş ve çıkış noktalarına ilişkin karar vermeye yardımcı olur ve yanlış sinyaller ile gerçek trend dönüşlerini ayırt etmeye yardımcı olur. Geleneksel mum grafiklerinin aksine, Heiken-Ashi mumları önceki çubukların ortalama değerleri
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
Croma10 PRO
Marco Alexandre Ferreira Feijo
Automated Supply & Demand System for XAUUSD CROMA10 PRO is a professional Expert Advisor designed and optimized exclusively for gold trading (XAUUSD) on the H1 timeframe. Based on institutional Supply & Demand methodology, it automatically identifies and trades key levels where major market participants intervene. I created CROMA10 because I was tired of watching perfect setups form... and missing them because of emotions. The zones were right, the levels were right — but my execution wasn't. Th
HAshi-E is an enhanced way to analyze Heiken-Ashi signals. Briefing: Heiken-Ashi is particularly valued for its ability to filter out short-term volatility, making it a preferred tool for identifying and following trends, helps in decision-making regarding entry and exit points, and assists in distinguishing between false signals and genuine trend reversals. Unlike traditional candlestick charts, Heiken-Ashi candles are calculated using average values of previous bars, creating a smoother, mo
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 — Otomatik Ticaret Sistemi Exclusive Black Pro Max MT5 , MetaTrader 5 için geliştirilmiş, gelişmiş piyasa analiz algoritmaları ve risk yönetimi stratejilerine dayalı bir Uzman Danışmandır (EA). EA tamamen otomatik çalışır ve trader’ın müdahalesini en aza indirir. Dikkat! Satın aldıktan hemen sonra benimle iletişime geçin , kurulum talimatlarını almak için! ÖNEMLİ: Tüm örnekler, ekran görüntüleri ve testler yalnızca gösterim amaçlıdır. Bir brokerda belirli bir döviz çi
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,
Bu ürünün alıcıları ayrıca şunları da satın alıyor
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
Divergence Bomber
Ihor Otkydach
4.89 (83)
Bu göstergeyi satın alan herkese aşağıdaki ekstra içerikler ücretsiz olarak sunulmaktadır: Her işlemi otomatik olarak yöneten, Stop Loss ve Take Profit seviyelerini ayarlayan ve işlemleri strateji kurallarına göre kapatan özel yardımcı araç: "Bomber Utility" Göstergenin farklı varlıklar üzerinde kullanılmasına yönelik ayar dosyaları (set dosyaları) Bomber Utility için 3 farklı modda kullanım sunan ayar dosyaları: "Minimum Risk", "Dengeli Risk" ve "Bekle-Gör Stratejisi" Bu ticaret stratejisini hı
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
Grabber System MT5
Ihor Otkydach
4.82 (22)
Size mükemmel bir teknik gösterge olan Grabber’ı tanıtıyorum. Bu araç, kullanıma hazır bir “her şey dahil” işlem stratejisi olarak çalışır. Tek bir yazılım kodu içinde güçlü piyasa teknik analiz araçları, işlem sinyalleri (oklar), uyarı işlevleri ve push bildirimleri entegre edilmiştir. Bu göstergeyi satın alan herkes aşağıdaki hediyeleri ücretsiz olarak alır: Açık emirleri otomatik yönetmek için Grabber Yardımcı Aracı Kurulum, yapılandırma ve nasıl işlem yapılacağını adım adım anlatan video kıl
Quantum TrendPulse
Bogdan Ion Puscasu
5 (22)
SuperTrend   ,   RSI   ve   Stochastic'in   gücünü tek bir kapsamlı göstergede birleştirerek işlem potansiyelinizi en üst düzeye çıkaran nihai işlem aracı olan   Quantum TrendPulse'u   tanıtıyoruz. Hassasiyet ve verimlilik arayan yatırımcılar için tasarlanan bu gösterge, piyasa trendlerini, momentum değişimlerini ve en uygun giriş ve çıkış noktalarını güvenle belirlemenize yardımcı olur. Temel Özellikler: SuperTrend Entegrasyonu:   Güncel piyasa trendlerini kolayca takip edin ve karlılık dalgası
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
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
RFI levels PRO MT5
Roman Podpora
3.67 (3)
Bu gösterge, fiyat dönüş noktalarını ve fiyat geri dönüş bölgelerini doğru bir şekilde gösterir.       Başlıca oyuncular   . Yeni trendlerin nerede oluştuğunu görüyorsunuz ve her işlem üzerinde kontrolü elinizde tutarak, azami hassasiyetle kararlar alıyorsunuz. TREND LINES PRO   göstergesiyle birlikte kullanıldığında maksimum potansiyelini ortaya koyar.  VERSION MT4 Göstergenin gösterdiği şey: Yeni bir trendin başlangıcında aktivasyonla birlikte tersine dönüş yapıları ve tersine dönüş seviyeler
Trend Screener Pro MT5
STE S.S.COMPANY
4.84 (101)
Trend Göstergesi, Trend Alım Satım ve Filtreleme için Çığır Açan Benzersiz Çözüm, Tüm Önemli Trend Özellikleriyle Tek Bir Araç İçinde Yerleştirildi! Forex, emtialar, kripto para birimleri, endeksler ve hisse senetleri gibi tüm sembollerde/araçlarda kullanılabilen %100 yeniden boyamayan çoklu zaman çerçevesi ve Çoklu para birimi göstergesidir. Trend Screener, grafikte noktalarla ok trend sinyalleri sağlayan etkili bir trend trend göstergesidir. Trend analizörü göstergesinde bulunan özellikler: 1.
TREND ÇİZGİLERİ PRO       Piyasanın gerçek yön değiştirdiği noktayı anlamaya yardımcı olur. Gösterge, gerçek trend dönüşlerini ve büyük oyuncuların piyasaya yeniden girdiği noktaları gösterir. Anlıyorsun   BOS hatları   Daha yüksek zaman dilimlerindeki trend değişiklikleri ve önemli seviyeler, karmaşık ayarlar veya gereksiz gürültü olmadan gösterilir. Sinyaller yeniden çizilmez ve çubuk kapandıktan sonra grafikte kalır. MT4 SÜRÜMÜ   -   RFI LEVELS PRO   göstergesiyle   birlikte kullanıldığında m
Order Block Pro (MQL5) – Sürüm 1.0 Yazar: KOUAME N'DA LEMISSA Platform: MetaTrader 5 Açıklama: Order Block Pro , grafiğinizdeki boğa ve ayı emir bloklarını (Order Blocks) otomatik olarak tespit eden gelişmiş bir göstergedir. Konsolidasyon mumlarını ve ardından gelen güçlü impuls mumlarını analiz ederek, fiyatın hızlanabileceği kritik bölgeleri belirler. Bu gösterge, şunları yapmak isteyen traderlar için idealdir: Kesin giriş ve çıkış noktalarını belirlemek Dinamik destek ve direnç bölgelerini t
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
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
Tanıtım       Quantum Breakout PRO   , Breakout Bölgeleri ile ticaret yapma şeklinizi değiştiren çığır açan MQL5 Göstergesi! 13 yılı aşkın ticaret tecrübesine sahip deneyimli tüccarlardan oluşan bir ekip tarafından geliştirilmiştir.       Kuantum Breakout PRO       yenilikçi ve dinamik koparma bölgesi stratejisiyle ticaret yolculuğunuzu yeni zirvelere taşımak için tasarlanmıştır. Kuantum Breakout Göstergesi, size 5 kar hedefi bölgesi ile kırılma bölgelerinde sinyal okları ve kırılma kutusuna da
RelicusRoad Pro: Kantitatif Piyasa İşletim Sistemi ÖMÜR BOYU ERİŞİMDE %70 İNDİRİM (SINIRLI SÜRE) - 2.000+ TRADER'A KATILIN Neden çoğu trader "mükemmel" indikatörlere rağmen başarısız olur? Çünkü tekil kavramları boşlukta trade ederler. Bağlamı olmayan bir sinyal kumardır. Sürekli kazanmak için KONFLÜANS (UYUM) gerekir. RelicusRoad Pro basit bir ok indikatörü değildir. Tam bir Kantitatif Piyasa Ekosistemi dir. Tescilli volatilite modellemesini kullanarak fiyatın ilerlediği "Adil Değer Yolu"nu har
Ultimate SMC Indicator
Hicham Mahmoud Almoustafa
1 (1)
Ultimate SMC PRO – Smart Money Concepts Indicator (Order Blocks, FVG, Liquidity, BOS) for MetaTrader 5 Ultimate SMC PRO is a professional trading indicator designed to visualize Smart Money Concepts directly on the chart. The indicator combines several institutional trading tools in one system to help traders identify potential high-probability trading zones. The indicator analyzes market structure, liquidity behavior and price imbalance to highlight areas where institutional activity may occu
Algo Pumping
Ihor Otkydach
4.76 (21)
PUMPING STATION – Kişisel “her şey dahil” stratejiniz Karşınızda PUMPING STATION — forex dünyasında işlem yapma şeklinizi heyecan verici ve etkili bir sürece dönüştürecek devrim niteliğinde bir gösterge. Bu sadece bir yardımcı değil, güçlü algoritmalarla donatılmış tam teşekküllü bir ticaret sistemidir ve daha istikrarlı işlem yapmanıza yardımcı olur. Bu ürünü satın aldığınızda ŞUNLARI ÜCRETSİZ olarak alırsınız: Özel ayar dosyaları: Otomatik kurulum ve maksimum performans için. Adım adım video e
Candle Smart Range
Gianny Alexander Lugo Sanchez
MetaTrader 5 için Candle Smart Range (CSR) Candle Smart Range, birden fazla zaman diliminde fiyat aralıklarının otomatik olarak tanımlanması için tasarlanmış teknik bir göstergedir. Bu araç, piyasa yapısını mum formasyonlarına ve fiyatın önceki en yüksek/en düşük seviyelerle olan etkileşimine dayanarak analiz eder. Ana Özellikler: Aralık Tespiti: İmpulsif hareketlerden önceki konsolidasyon bölgelerini tanımlar. Sahte Kırılma Tanımlama: Fiyatın önceki seviyeyi aştığı ancak mum kapanış kriterlerin
Yeni Başlayanlar veya Uzman Tüccarlar için En İyi Çözüm! Bu Gösterge benzersiz, yüksek kaliteli ve uygun fiyatlı bir ticaret aracıdır çünkü bir dizi tescilli özellik ve yeni bir formül ekledik. Sadece BİR grafik ile 28 Forex çifti için Döviz Gücünü okuyabilirsiniz! Yeni bir trendin veya scalping fırsatının tam tetik noktasını belirleyebildiğiniz için ticaretinizin nasıl gelişeceğini hayal edin? Kullanım kılavuzu:   buraya tıklayın Bu ilk olan, orijinal! Değersiz bir özenti klonunu almayın.
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
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
Btmm state engine pro
Garry James Goodchild
5 (2)
Get the user guide here  https://g-labs.software/guides/BTMM_State_Engine_Welcome_Pack.html 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
Easy SMC Trading
Israr Hussain Shah
4 (1)
Otomatik Risk/Ödül ve Yapı Kırılması (BOS) Tarayıcılı Yapı Trendi Sürüm: 1.0 Genel Bakış Otomatik Risk/Ödül ile Yapı Trendi, Fiyat Hareketine ve Piyasa Yapısına dayanan yatırımcılar için tasarlanmış kapsamlı bir işlem sistemidir. Yüksek olasılıklı işlem kurulumları oluşturmak için düzeltilmiş bir trend filtresini, Swing Noktası tespiti ve Yapı Kırılması (BOS) sinyalleriyle birleştirir. Bu aracın öne çıkan özelliği Otomatik Risk Yönetimidir. Geçerli bir Yapı Kırılması tespit edildiğinde, göste
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
Cyclic Impulse MT5 — Bu teknik gösterge, grafiklere döngüsel fiyat hareketlerini yapılandırır ve belirler. Ters yönlü döngüsel fiyat hareketlerini ve giriş sinyallerini bulmanızı sağlar. Gösterge Nasıl Çalışır? Döngüsel bir aşağı yönlü hareket tespit edildiğinde, mum kapandıktan sonra mavi bir aşağı yönlü çubuk oluşturulur. Mevcut mumda yanıp sönebilir ve sinyal henüz onaylanmamıştır. Mavi oklar fiyat grafiğinde çoğaltılır. Yukarı yönlü bir döngüsel hareket tespit edildiğinde, mum kapandıktan s
Öncelikle, bu Ticaret Aracının Non-Repainting, Non-Redrawing ve Non-Lagging Gösterge olduğunu vurgulamakta fayda var, bu da onu profesyonel ticaret için ideal hale getiriyor. Çevrimiçi kurs, kullanıcı kılavuzu ve demo. Akıllı Fiyat Hareketi Kavramları Göstergesi, hem yeni hem de deneyimli tüccarlar için çok güçlü bir araçtır. İleri ticaret fikirlerini, Inner Circle Trader Analizi ve Smart Money Concepts Ticaret Stratejileri gibi 20'den fazla kullanışlı göstergeyi bir araya getirerek bir araya
Göstergemiz, piyasada ilgi gösterilen bölgeleri vurgular ve ardından emir birikim bölgelerini gösterir. Büyük ölçekli bir emir defteri (order book) gibi çalışır. Bu, büyük sermaye için geliştirilmiş bir göstergedir. Performansı olağanüstüdür. Piyasada ne tür bir ilgi olursa olsun, onu görürsünüz . (Bu, tamamen yeniden yazılmış ve otomatikleştirilmiş bir versiyondur – artık manuel analiz gerekmez.) İşlem Hızı (Transaction Speed) , piyasada büyük emirlerin nerede ve ne zaman biriktiğini gösteren v
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
Berma Bands
Muhammad Elbermawi
5 (8)
Berma Bantları (BB'ler) göstergesi, piyasa trendlerini belirlemeyi ve bunlardan yararlanmayı amaçlayan yatırımcılar için değerli bir araçtır. Fiyat ile BB'ler arasındaki ilişkiyi analiz ederek, yatırımcılar bir piyasanın trend veya aralıklı fazda olup olmadığını ayırt edebilir. Daha fazla bilgi edinmek için [ Berma Home Blog ] adresini ziyaret edin. Berma Bantları üç belirgin çizgiden oluşur: Üst Berma Bandı, Orta Berma Bandı ve Alt Berma Bandı. Bu çizgiler fiyatın etrafına çizilir ve genel tren
Advanced Supply Demand MT5
Bernhard Schweigert
4.53 (15)
Herhangi bir Acemi veya Uzman Tüccar için En İyi Çözüm! Bu gösterge benzersiz, yüksek kaliteli ve uygun fiyatlı bir ticaret aracıdır çünkü bir dizi tescilli özelliği ve yeni bir formülü bir araya getirdik. Bu güncelleme ile çift zaman dilimi dilimlerini gösterebileceksiniz. Yalnızca daha yüksek bir TF gösteremeyeceksiniz, aynı zamanda TF grafiğini ve ARTIK daha yüksek TF'yi de gösterebileceksiniz: YUVARLAK BÖLGELERİ GÖSTERMEK. Tüm Arz Talebi tüccarları buna bayılacak. :) Önemli Bilgiler Açıkland
Yazarın diğer ürünleri
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
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 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 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
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
Filtrele:
İnceleme yok
İncelemeye yanıt