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.

추천 제품
Golden Surfer EA
Aleksandr Chebotaev
5 (1)
골든 서퍼 — 강력하고 안정적이며 전문적입니다. 특별 출시 가격 한정 혜택 — 다음 5명에게 $299.99. 이후 가격은 $399로 인상됩니다. 라이브 시그널:   https://www.mql5.com/en/signals/2360360 Golden Surfer는 XAUUSD(금) 자동 거래를 위한 전문가 어드바이저(EA)입니다. 이 EA는 통제된 실행과 사전 정의된 위험 수준을 위해 설계되었습니다. 주요 규칙: EA는 한 번에 하나의 포지션만 유지합니다. 그리드 전략, 마틴게일 전략, 평균화 전략, 복구 시스템은 사용하지 않습니다. 작동 방식 제 이름은   알렉산더   입니다 . 저는 프로그래머이자 알고리즘 트레이더이며, 자동 거래 분야에서 오랫동안 일해 왔습니다.   이 기간 동안 저는 시장에 공격적인 "괴물" EA들이 넘쳐나는 것을 목격했습니다. 화려한 백테스트 결과, 복잡한 로직, 과도한 조작, 그리고 실제 운용 환경에서의 실용성은 거의 찾아볼 수 없는 EA들이죠. 많은
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 버전  |  FAQ Owl Smart Levels Indicator 는 Bill Williams 의 고급 프랙탈, 시장의 올바른 파동 구조를 구축하는 Valable ZigZag, 정확한 진입 수준을 표시하는 피보나치 수준과 같은 인기 있는 시장 분석 도구를 포함하는 하나의 지표 내에서 완전한 거래 시스템입니다. 시장과 이익을 취하는 장소로. 전략에 대한 자세한 설명 표시기 작업에 대한 지침 고문-거래 올빼미 도우미의 조수 개인 사용자 채팅 ->구입 후 나에게 쓰기,나는 개인 채팅에 당신을 추가하고 거기에 모든 보너스를 다운로드 할 수 있습니다 힘은 단순함에 있습니다! Owl Smart Levels 거래 시스템은 사용하기 매우 쉽기 때문에 전문가와 이제 막 시장을 연구하고 스스로 거래 전략을 선택하기 시작한 사람들 모두에게 적합합니다. 전략 및 지표에는 눈에 보이지 않는 비밀 공식 및 계산 방법이 없으며 모든 전략 지표는 공개되어 있습니다. Owl Smart Levels를 사
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 하이켄 아시(AW Heiken Ashi) - 추세 및 목표가를 보여주는 스마트 지표입니다. 기존 하이켄 아시를 기반으로 트레이더에게 최적화된 고급 지표로, 더욱 유연하고 명확합니다. 일반 지표와 달리 AW 하이켄 아시는 추세 분석, 수익 목표 설정, 잘못된 신호 필터링을 지원하여 더욱 신뢰할 수 있는 매매 결정을 내릴 수 있도록 도와줍니다. 설정 가이드 및 지침 - 여기 / MT4 버전 - 여기 AW 하이켄 아시의 장점: 모든 자산 및 기간에서 작동합니다. 트레이더의 스타일에 매우 적응 가능 진입 및 종료 수준의 동적 계산 사용자 친화적인 인터페이스 + 단말기 부하 최소화 본격적인 거래 전략으로 사용하기에 적합합니다. 가능성: 1) 고급 추세 시각화: 현재 트렌드 방향에 맞춰 다양한 색상의 하이켄 아시 캔들을 제작합니다. 시장 상황을 편리하고 시각적으로 해석한 것입니다. 2) 유연한 이익실현 수준(TP1 및 TP2): 시각적 목표는 차트에 직접 기록되며, 각 목표에 대한 목표
Maximum Trend Arrows OT MT5
Mulweli Valdaz Makulana
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
지표에 대하여 이 지표는 금융 상품의 종가에 대한 몬테카를로 시뮬레이션을 기반으로 합니다. 몬테카를로는 통계적 기법으로, 이전에 관찰된 결과에 기반한 랜덤 숫자를 사용하여 다양한 결과가 나올 확률을 모델링하는 데 사용됩니다. 어떻게 작동하나요? 이 지표는 과거 데이터를 바탕으로 시간에 따른 랜덤 가격 변화를 모델링하여 특정 종목에 대한 여러 가격 시나리오를 생성합니다. 각 시뮬레이션은 종가 변동을 반영하기 위해 랜덤 변수를 사용하여, 주어진 기간 동안 미래 시장 움직임을 효과적으로 모방합니다. 몬테카를로 시뮬레이션의 장점 - 몬테카를로 시뮬레이션은 다양한 미래 시나리오에 대한 테스트를 통해 여러 거래 전략의 리스크를 분석하는 데 도움을 줍니다. - 희귀한 극단적 사건(꼬리 위험)을 포함하여 다양한 시장 상황에서 전략의 성과를 확인할 수 있습니다. - 단일 예측에 의존하지 않고, 몬테카를로는 관련 확률과 함께 잠재적 결과의 범위를 제공합니다. 이는 수익 또는 손실 가능성을 이해하는
##   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
무료 AUX 지표, EA 지원 및 전체 가이드를 얻으시려면 방문하세요 – https://www.mql5.com/en/blogs/post/763955 트렌드를 포착하세요. 패턴을 읽으세요. 진입 시점을 타이밍하세요. 30초 이내의 3단계! 분석 없이도 쉽게 거래하세요 — 당신의 스마트 어시스턴트가 워크플로우를 단순화해 드립니다. 더 이상 차트 과부하 없음. 스마트 바이어스 감지로 자신감 있게 거래하세요. 모든 통화, 암호화폐, 주식, 금속, 지수 및 모든 시간대와 호환됩니다. 그냥 클릭하고 실행하세요 — 정말 간단합니다. 속도와 명확성을 원하는 바쁜 트레이더에게 이상적입니다. TPTSyncX는 추세, 패턴, 그리고 캔들스틱 트리거 분석을 하나로 통합하여 깨끗하고 지능적인 시각 시스템으로 동기화하는 강력한 올인원 MetaTrader 5 인디케이터입니다. 명확성, 정밀성, 속도를 원하는 트레이더를 위해 설계되었으며, 가격 행동, 구조적 패턴 및 시장 타이밍 도구의 조합을 통해 높은 확
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 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
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 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 — 자동화 거래 시스템 Exclusive Black Pro Max MT5 는 MetaTrader 5용 전문가 어드바이저(EA)로, 고급 시장 분석 알고리즘과 리스크 관리 전략을 기반으로 합니다. EA는 완전 자동으로 작동하며 트레이더의 개입은 최소화됩니다. 주의! 구매 후 즉시 저에게 연락하세요 . 설정 지침을 보내드립니다! 중요: 모든 예시, 스크린샷 및 테스트는 데모 목적일 뿐입니다. 특정 통화쌍이 한 브로커에서 좋은 결과를 보여도 다른 브로커에서도 동일하다는 보장은 없습니다. 각 브로커는 고유한 시세, 스프레드 및 거래 조건을 가지고 있으므로 각 통화쌍은 사용자가 직접 최적화해야 합니다 그리고 실계좌에서는 단일 통화 모드 로만 실행해야 합니다. 멀티 통화 모드 스크린샷은 단순한 예시입니다. 중요 정보: EA의 데모 버전은 평가용으로만 제공됩니다. 최적화 없이 진행된 테스트 결과는 알고리즘의 실제 성능을 반영하지 않습니다. 완전한
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 – 경사진 가격 이동 채널을 구축하는 기술 분석 도구로, 시장 현황을 평가하고 거래 신호를 찾는 데 독특한 기회를 제공합니다. 지표의 주요 특징: 경사진 가격 이동 채널 : 이 지표는 지지와 저항 수준을 시각화하는 데 도움을 주며, 이는 추세의 반전 또는 지속 가능성을 나타낼 수 있습니다. 다양한 선 색상 및 배경 강조 : 경사진 지지 및 저항 수준은 다양한 색상으로 표시되며, 채널 자체는 배경이 추가로 강조되어 차트의 시각적 분석을 단순화합니다. 선 계산을 위한 세 가지 옵션 : 지표는 회귀 분석을 사용하여 채널 라인을 구성합니다. 세 가지 방법 중 하나를 선택할 수 있습니다: Robust (기본값) – 이상치에 강한 방법입니다. OLS (최소제곱법) . Median (중앙값 계산) . 최적의 모델 선택 : SlopeChannelB는 다섯 가지 품질 기준의 분석을 기반으로 가장 적합한 채널 라인 변형을 자동으로 선택합니다. 품질 매개변수는 차트에
# 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
이 제품의 구매자들이 또한 구매함
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)
이 지표를 구매하신 분께는 다음과 같은 혜택이 무료로 제공됩니다: 각 거래를 자동으로 관리하고, 손절/익절 수준을 설정하며, 전략 규칙에 따라 거래를 종료하는 전용 도우미 툴 "Bomber Utility" 다양한 자산에 맞게 지표를 설정할 수 있는 셋업 파일(Set Files) "최소 위험", "균형 잡힌 위험", "관망 전략" 모드로 설정 가능한 Bomber Utility의 셋업 파일 이 전략을 빠르게 설치, 설정, 시작할 수 있도록 돕는 단계별 영상 매뉴얼 주의: 위의 모든 보너스를 받기 위해서는 MQL5 개인 메시지 시스템을 통해 판매자에게 연락해 주세요. 독창적인 커스텀 지표인 “Divergence Bomber(다이버전스 봄버)”를 소개합니다. 이 지표는 MACD 다이버전스(괴리) 전략을 기반으로 한 올인원(All-in-One) 거래 시스템입니다. 이 기술 지표의 주요 목적은 가격과 MACD 지표 간의 다이버전스를 감지하고, **향후 가격이 어느 방향으로 움직일지를 알려주는
RFI levels PRO MT5
Roman Podpora
3.67 (3)
이 지표는 추세 반전 지점과 가격 반등 영역을 정확하게 보여줍니다.       주요 투자자들   . 새로운 트렌드가 형성되는 곳을 파악하고 최대한 정확하게 의사결정을 내리며 모든 거래를 완벽하게 통제합니다. TREND LINES PRO   지표와 함께 사용할 때 최대의 잠재력을 발휘합니다.  VERSION MT4 지표가 보여주는 내용: 새로운 추세의 시작 시 활성화되는 반전 구조 및 반전 수준. 최소한의 위험 대비 수익률을 갖는 이익 실현   (TAKE PROFIT)   및   손절매(STOP LOSS)   레벨 표시       RR 1:2   . 지능형 손실 감소 로직이 적용된 손절매 기능. 지정된 지표에서 두 가지 추세 유형에 대한 반전 패턴을 표시합니다. 지표: 트렌드를 따라   트렌드 라인 프로   (글로벌 트렌드 변화) 트렌드 프로   (빠른 트렌드 변화) 간단하고 효과적입니다       스캐너       실시간 추세 (신규). 다중 시간 프레임 도구 필터링. 표시하다  
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
Trend Lines PRO MT5
Roman Podpora
5 (1)
트렌드 라인즈 프로       이 지표는 시장이 실제로 어떤 방향으로 전환되는지 파악하는 데 도움이 됩니다. 실제 추세 반전 지점과 주요 시장 참여자들이 다시 진입하는 지점을 보여줍니다. 보시다시피       BOS 라인       복잡한 설정이나 불필요한 노이즈 없이 더 높은 시간대의 추세 변화와 주요 레벨을 확인할 수 있습니다. 신호는 차트에 다시 그려지지 않고 캔들이 마감된 후에도 계속 표시됩니다. MT4 버전   -   RFI LEVELS PRO   표시기   와 결합 시 최대 잠재력을 발휘합니다. 지표가 보여주는 내용: 실제 변화       추세(BOS 라인) 한 번 신호가 나타나면 그 신호는 계속 유효합니다! 이는 신호를 발생시킨 후 변경될 수 있는 리페인팅 방식의 지표와 중요한 차이점입니다. 리페인팅 방식의 지표는 잠재적으로 자금 손실로 이어질 수 있습니다. 이제 더욱 높은 확률과 정확도로 시장에 진입할 수 있습니다. 또한 화살표가 나타난 후 목표가(익절)에 도달하거나
Quantum TrendPulse
Bogdan Ion Puscasu
5 (20)
SuperTrend   ,   RSI   ,   Stochastic   의 힘을 하나의 포괄적인 지표로 결합하여 트레이딩 잠재력을 극대화하는 궁극의 트레이딩 도구   인 Quantum TrendPulse를   소개합니다. 정밀성과 효율성을 추구하는 트레이더를 위해 설계된 이 지표는 시장 추세, 모멘텀 변화, 최적의 진입 및 종료 지점을 자신 있게 식별하는 데 도움이 됩니다. 주요 특징: SuperTrend 통합:   주요 시장 추세를 쉽게 따라가고 수익성의 물결을 타세요. RSI 정밀도:   매수 과다 및 매도 과다 수준을 감지하여 시장 반전 시점을 파악하는 데 적합하며 SuperTrend 필터로 사용 가능 확률적 정확도:   변동성이 큰 시장에서 숨겨진 기회를 찾기 위해 확률적 진동   을 활용하고 SuperTrend의 필터로 사용 다중 시간대 분석:   M5부터 H1 또는 H4까지 다양한 시간대에 걸쳐 시장을 최신 상태로 유지하세요. 맞춤형 알림:   맞춤형 거래 조건이 충족되면
Grabber System MT5
Ihor Otkydach
4.82 (22)
탁월한 기술적 지표인 Grabber를 소개합니다. 이 도구는 즉시 사용 가능한 “올인원(All-Inclusive)” 트레이딩 전략으로 작동합니다. 하나의 코드 안에 강력한 시장 기술 분석 도구, 매매 신호(화살표), 알림 기능, 푸시 알림이 통합되어 있습니다. 이 인디케이터를 구매하신 모든 분들께는 다음의 항목이 무료로 제공됩니다: Grabber 유틸리티: 오픈 포지션을 자동으로 관리하는 도구 단계별 영상 매뉴얼: 설치, 설정, 그리고 실제 거래 방법을 안내 맞춤형 세트 파일: 인디케이터를 빠르게 자동 설정하여 최고의 성과를 낼 수 있도록 도와줍니다 다른 전략은 이제 잊어버리세요! Grabber만이 여러분을 새로운 트레이딩의 정점으로 이끌어 줄 수 있습니다. Grabber 전략의 주요 특징: 거래 시간 프레임: M5부터 H4까지 거래 가능한 자산: 어떤 자산이든 사용 가능하지만, 제가 직접 테스트한 종목들을 추천드립니다 (GBPUSD, GBPCAD, GBPCHF, AUDCAD, AU
RelicusRoad Pro MT5
Relicus LLC
5 (24)
RelicusRoad Pro: 퀀트 시장 운영 체제 70% 할인 평생 이용권 (한정 시간) - 2,000명 이상의 트레이더와 함께하세요 왜 대부분의 트레이더는 "완벽한" 지표를 가지고도 실패할까요? 진공 상태에서 단일 개념 만으로 거래하기 때문입니다. 문맥 없는 신호는 도박입니다. 지속적인 승리를 위해서는 컨플루언스(중첩) 가 필요합니다. RelicusRoad Pro는 단순한 화살표 지표가 아닙니다. 완전한 퀀트 시장 생태계 입니다. 독점적인 변동성 모델링을 사용하여 가격이 이동하는 "공정 가치 로드"를 매핑하고, 단순 노이즈와 실제 구조적 돌파를 구분합니다. 추측은 그만두세요. 기관급 로드 로직으로 거래를 시작하세요. 핵심 엔진: "Road" 알고리즘 시스템의 중심에는 시장 상황에 실시간으로 적응하는 동적 변동성 채널인 Road Algo 가 있습니다. 세이프 라인(평형) 과 가격이 수학적으로 반전될 가능성이 높은 확장 레벨 을 투영합니다. Simple Road: 일반적인 시장을 위
Entry Points Pro for MT5
Yury Orlov
4.48 (138)
다시 색을 칠하지 않고 거래에 진입할 수 있는 정확한 신호를 제공하는 MT5용 지표입니다. 외환, 암호화폐, 금속, 주식, 지수 등 모든 금융 자산에 적용할 수 있습니다. 매우 정확한 추정값을 제공하고 매수와 매도의 가장 좋은 시점을 알려줍니다. 하나의 시그널로 수익을 내는 지표의 예와 함께 비디오 (6:22)시청하십시오! 대부분의 거래자는 Entry Points Pro 지표의 도움으로 첫 거래 주 동안 트레이딩 결과를 개선합니다. 저희의   Telegram Group 을 구독하세요! Entry Points 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
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
" Dynamic Scalper System MT5 " 지표는 추세 파동 내에서 스캘핑 방식으로 거래하도록 설계되었습니다. 주요 통화쌍 및 금에서 테스트되었으며, 다른 거래 상품과의 호환성이 가능합니다. 추가적인 가격 변동 지원을 통해 추세에 따라 단기 포지션 진입 신호를 제공합니다. 지표의 원리 큰 화살표는 추세 방향을 결정합니다. 작은 화살표 형태의 스캘핑 신호를 생성하는 알고리즘은 추세 파동 내에서 작동합니다. 빨간색 화살표는 상승 방향을, 파란색 화살표는 하락 방향을 나타냅니다. 민감한 가격 변동선은 추세 방향으로 그려지며, 작은 화살표의 신호와 함께 작용합니다. 신호는 다음과 같이 작동합니다. 적절한 시점에 선이 나타나면 진입 신호가 형성되고, 선이 있는 동안 미결제 포지션을 유지하며, 완료되면 거래를 종료합니다. 권장되는 작업 시간대는 M1~H4입니다. 화살표는 현재 캔들에 형성되며, 다음 캔들이 이미 시작되었더라도 이전 캔들의 화살표는 다시 그려지지 않습니다. 입
소개       Quantum Breakout PRO   , 브레이크아웃 존 거래 방식을 변화시키는 획기적인 MQL5 지표! 13년 이상의 거래 경험을 가진 숙련된 트레이더 팀이 개발한       퀀텀 브레이크아웃 PRO       혁신적이고 역동적인 브레이크아웃 존 전략으로 거래 여정을 새로운 차원으로 끌어올리도록 설계되었습니다. Quantum Breakout Indicator는 5개의 이익 목표 영역이 있는 브레이크아웃 영역의 신호 화살표와 브레이크아웃 상자를 기반으로 한 손절 제안을 제공합니다. 초보자 거래자와 전문 거래자 모두에게 적합합니다. Quantum EA 채널:       여기를 클릭하세요 중요한! 구매 후 설치 매뉴얼을 받으려면 개인 메시지를 보내주십시오. 추천: 기간: M15 통화쌍: GBPJPY, EURJPY, USDJPY,NZDUSD, XAUUSD 계정 유형: 스프레드가 매우 낮은 ECN, Raw 또는 Razor 브로커 시간: GMT +3 중개인 :
Advanced Supply Demand MT5
Bernhard Schweigert
4.53 (15)
현재 33% 할인! 초보자나 전문 트레이더를 위한 최고의 솔루션! 이 보조지표는 우리가 다수의 독창적 기능과 새로운 공식을 통합한 독특하고 고품질이며 저렴한 거래 도구입니다. 이 업데이트를 통해 이중 시간대를 표시할 수 있습니다. 더 높은 TF를 표시할 수 있을 뿐만 아니라 차트 TF와 더 높은 TF 모두를 표시할 수 있습니다: 중첩 영역 표시. 모든 Supply Demand 트레이더들이 좋아할 것입니다. :) 중요한 정보 공개 Advanced Supply Demand의 잠재력을 극대화하려면 다음을 방문하십시오. https://www.mql5.com/ko/blogs/post/720245   진입 또는 목표의 명확한 트리거 포인트를 정확히 찾아냄으로 해서 거래가 어떻게 개선될지 상상해 보십시오. 새로운 알고리즘을 기반으로 매수자와 매도자 간의 잠재적인 불균형을 훨씬 더 쉽게 분간할 수 있습니다. 왜냐하면 가장 강한 공급영역과 가장 강한 수요 영역과 과거에 어떻게 진행 되었는지를(이전
TrendMaestro5
Stefano Frisetti
note: this indicator is for METATRADER4, if you want the version for METATRADER5 this is the link:  https://www.mql5.com/it/market/product/108106 TRENDMAESTRO ver 2.5 TRENDMAESTRO recognizes a new TREND from the start, he never makes mistakes. The certainty of identifying a new TREND is priceless. DESCRIPTION TRENDMAESTRO identifies a new TREND in the bud, this indicator examines the volatility, volumes and momentum to identify the moment in which there is an explosion of one or more of these da
PZ Divergence Trading MT5
PZ TRADING SLU
3.71 (7)
Unlock hidden profits: accurate divergence trading for all markets Tricky to find and scarce in frequency, divergences are one of the most reliable trading scenarios. This indicator finds and scans for regular and hidden divergences automatically using your favourite oscillator. [ Installation Guide | Update Guide | Troubleshooting | FAQ | All Products ] Easy to trade Finds regular and hidden divergences Supports many well known oscillators Implements trading signals based on breakouts Displays
Scalping Lines System MT5 - 은 M1-H1 시간 프레임에서 금(XAUUSD) 자산을 거래하기 위해 특별히 설계된 스캘핑 트레이딩 시스템입니다. 추세, 변동성, 과매수/과매도 시장 분석 지표를 하나의 오실레이터로 통합하여 단기 신호를 식별합니다. 신호선의 주요 내부 매개변수는 사전 설정되어 있습니다. "Trend Wave Duration"은 이동평균선 추세를 사용하여 추세 방향으로 일련의 신호 지속 시간을 조절하고, "Apply Smoothing to Signal Line"은 신호선 생성 방식을 조정하는 매개변수로, 수동으로 조정할 수 있습니다. 시가에서 신호선을 계산할 때는 차트가 다시 그려지지 않습니다. 다른 가격대에서는 신호 화살표가 깜빡일 수 있습니다. 신호는 캔들 마감 후에 나타나며, 다양한 알림 유형을 사용할 수 있습니다. 권장 시간 프레임: M1, M5, M15, M30, H1. 이 지표는 원래 금 거래를 위해 설계되었지만, 스프레드가 낮은 변
PZ Trend Trading MT5
PZ TRADING SLU
3.8 (5)
Capture every opportunity: your go-to indicator for profitable trend trading Trend Trading is an indicator designed to profit as much as possible from trends taking place in the market, by timing pullbacks and breakouts. It finds trading opportunities by analyzing what the price is doing during established trends. [ Installation Guide | Update Guide | Troubleshooting | FAQ | All Products ] Trade financial markets with confidence and efficiency Profit from established trends without getting whip
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
우선적으로, 이 거래 도구는 전문적인 거래에 이상적인 비-다시 그리기 및 지연되지 않는 지표입니다.  온라인 강좌, 사용자 매뉴얼 및 데모. 스마트 가격 액션 컨셉트 인디케이터는 신규 및 경험 많은 트레이더 모두에게 매우 강력한 도구입니다. Inner Circle Trader Analysis 및 Smart Money Concepts Trading Strategies와 같은 고급 거래 아이디어를 결합하여 20가지 이상의 유용한 지표를 하나로 결합합니다. 이 인디케이터는 스마트 머니 컨셉트에 중점을 두어 대형 기관의 거래 방식을 제공하고 이동을 예측하는 데 도움을 줍니다.  특히 유동성 분석에 뛰어나 기관이 어떻게 거래하는지 이해하는 데 도움을 줍니다. 시장 트렌드를 예측하고 가격 변동을 신중하게 분석하는 데 탁월합니다. 귀하의 거래를 기관 전략에 맞추어 시장의 동향에 대해 더 정확한 예측을 할 수 있습니다. 이 인디케이터는 시장 구조를 분석하고 중요한 주문 블록을 식별하고 다양
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
Institutional Secret Method
Tshidiso Sydwell Moiloa
The Institutional Secret Method  represents a paradigm shift in market analysis, moving away from lagging indicators and into the realm of Topological Finance . It is engineered to decode the hidden geometry of price movement by calculating the most efficient path—the Geodesic —between current price action and institutional liquidity targets. The system views the market as a physical landscape where price is naturally drawn toward massive pools of liquidity (Stops). It uses two primary calculati
Transaction Speed MT5
Ivan Stefanov
5 (3)
이 지표는 시장에서 관심이 나타나는 영역 을 강조 표시한 후, 주문이 누적되는 영역 을 보여줍니다. 이는 **대규모 오더북(호가창)**처럼 작동합니다. 이것은 거대한 자금 을 위한 인디케이터입니다. 성능은 탁월하며, 시장에서 어떤 관심이 있든 반드시 포착할 수 있습니다 . (이것은 완전히 새로 작성되고 자동화된 버전 입니다 – 이제 수동 분석은 필요하지 않습니다.) **거래 속도(Transaction Speed)**는 새로운 개념의 인디케이터로, 시장에 대규모 주문이 언제, 어디에 쌓이는지를 보여주며 , 그 이점을 분석합니다. 매우 초기 단계에서 트렌드 전환 을 감지할 수 있습니다. FX 시장에서 흔히 사용하는 "거래량(volume)"은 오해입니다. 실제로는 시간당 가격 변화량 이므로, 올바른 용어는 거래 속도 입니다. 우리가 어떻게 사고하고, 행동하며, 분석하느냐 가 가장 중요합니다. 분석 패러다임의 전환 은 필수적입니다. 이 인디케이터는 외환 시장에서의 볼륨 개념을 논리적으로
Berma Bands
Muhammad Elbermawi
5 (8)
Berma Bands(BBs) 지표는 시장 동향을 파악하고 이를 활용하려는 트레이더에게 귀중한 도구입니다. 가격과 BBs 간의 관계를 분석함으로써 트레이더는 시장이 추세 단계인지 범위 단계인지를 분별할 수 있습니다. 자세한 내용을 알아보려면 [ Berma Home Blog ]를 방문하세요. 버마 밴드는 세 개의 뚜렷한 선으로 구성되어 있습니다. 어퍼 버마 밴드, 미들 버마 밴드, 로어 버마 밴드입니다. 이 선들은 가격 주위에 그려져 전체 추세에 대한 가격 움직임을 시각적으로 표현합니다. 이 밴드들 사이의 거리는 변동성과 잠재적인 추세 반전에 대한 통찰력을 제공할 수 있습니다. 버마 밴드 라인이 각각에서 분리될 때, 그것은 종종 시장이 횡보 또는 범위 이동 기간에 접어들고 있음을 시사합니다. 이는 명확한 방향 편향이 없음을 나타냅니다. 트레이더는 이러한 기간 동안 추세를 파악하기 어려울 수 있으며 더 명확한 추세가 나타날 때까지 기다릴 수 있습니다. 버마 밴드 라인이 단일 라인으로
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
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
Quantum Entry 는 트레이더들 사이에서 가장 인기 있고 널리 알려진 전략 중 하나인 "브레이크아웃 전략"을 기반으로 구축된 강력한 가격 행동 거래 시스템입니다! 이 지표는 주요 지지 및 저항 구역의 돌파를 기반으로 명확한 매수 및 매도 신호를 생성합니다. 일반적인 브레이크아웃 지표와 달리 고급 계산을 사용하여 돌파를 정확하게 확인합니다! 돌파가 발생하면 즉시 알림을 받을 수 있습니다. 지연 없고 재표시 없음 : 모든 신호는 실시간으로 제공되며 지연 없이 과거 신호가 재표시되지 않습니다! 권장 사항 Quantum Entry는 모든 시간대와 모든 거래 심볼에서 작동합니다. 우리는 개인적으로   XAUUSD(금) 의   M1, M5 및 M15   시간대에서 이 지표를 사용합니다! 당신의 거래 실력을 향상시킬 기회를 놓치지 마세요. 지금 바로   Quantum Entry 를 확보하고 자신감과 정확성으로 거래를 시작하세요! MT4 version -  https://www.mql5.
PZ Swing Trading MT5
PZ TRADING SLU
5 (5)
Protect against whipsaws: revolutionize your swing trading approach Swing Trading is the first indicator designed to detect swings in the direction of the trend and possible reversal swings. It uses the baseline swing trading approach, widely described in trading literature. The indicator studies several price and time vectors to track the aggregate trend direction and detects situations in which the market is oversold or overbought and ready to correct. [ Installation Guide | Update Guide | Tro
ARIScalping
Temirlan Kdyrkhan
ARIScalp 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 Cus
제작자의 제품 더 보기
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
Inversion Fair Value Gaps MT4
Minh Truong Pham
4.5 (2)
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
SV Harmozup Pattern
Minh Truong Pham
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
Breaker Blocks with Signals
Minh Truong Pham
3 (2)
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
ICT Concepts in MT4
Minh Truong Pham
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  
Liquidity Swings
Minh Truong Pham
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
필터:
리뷰 없음
리뷰 답변