• 미리보기
  • 리뷰 (1)
  • 코멘트
  • 새 소식

ML Lorentzian Classification by jdehorty

5

█ OVERVIEW

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

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

█ BACKGROUND

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

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

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

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

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

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

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

█ HOW TO USE

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

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

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

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

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

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

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

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


█ WORKS CITED

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

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

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

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

Note for buffer

Incase create EA with signal from this indicator please use iCustom (detail in word document at here)

리뷰 1
samaara
19
samaara 2024.04.26 07:32 
 

When I bought this indicator, I was facing issues with using it in my EA. The indicator was slow and caused errors. So, I reached out to the author of this indicator and asked for help. He always responded to my questions, removed the errors I was facing and even gave me a working sample EA so that I could use it. The indicator now works smoothly and gives good signals!

추천 제품
VR Cub
Vladimir Pastushak
VR Cub 은 고품질 진입점을 얻는 지표입니다. 이 지표는 수학적 계산을 용이하게 하고 포지션 진입점 검색을 단순화하기 위해 개발되었습니다. 지표가 작성된 거래 전략은 수년 동안 그 효율성을 입증해 왔습니다. 거래 전략의 단순성은 초보 거래자라도 성공적으로 거래할 수 있다는 큰 장점입니다. VR Cub은 포지션 개시 지점과 이익 실현 및 손절매 목표 수준을 계산하여 효율성과 사용 편의성을 크게 높입니다. 간단한 거래 규칙을 이해하려면 아래 전략을 사용한 거래 스크린샷을 살펴보세요. 설정, 세트 파일, 데모 버전, 지침, 문제 해결 등은 다음에서 얻을 수 있습니다. [블로그] 다음에서 리뷰를 읽거나 작성할 수 있습니다. [링크] 버전 [MetaTrader 5] 진입점 계산 규칙 포지션 개설 진입점을 계산하려면 VR Cub 도구를 마지막 최고점에서 마지막 최저점까지 늘려야 합니다. 첫 번째 지점이 두 번째 지점보다 빠른 경우, 거래자는 막대가 중간선 위에서 마감될 때까지 기다립
Trend PA
Mikhail Nazarenko
5 (3)
The Trend PA indicator uses   Price Action   and its own filtering algorithm to determine the trend. This approach helps to accurately determine entry points and the current trend on any timeframe. The indicator uses its own algorithm for analyzing price changes and Price Action. Which gives you the advantage of recognizing, without delay, a new nascent trend with fewer false positives. Trend filtering conditions can be selected in the settings individually for your trading style. The indicator
Infinity Trend Pro
Yaroslav Varankin
1 (1)
This is a trend indicator without redrawing Developed instead of the binary options strategy (by the color of the Martingale candlestick) Also works well in forex trading When to open trades (binary options) A signal will appear in the place with a candle signaling the current candle It is recommended to open a deal for one candle of the current timeframe M1 and M5 When a blue dot appears, open a deal up When a red dot appears, open a trade down. How to open trades on Forex. When a signal is rec
Owl smart levels
Sergey Ermolov
4.63 (54)
MT5 버전  |   FAQ Owl Smart Levels Indicator 는   Bill Williams 의 고급 프랙탈, 시장의 올바른 파동 구조를 구축하는 Valable ZigZag, 정확한 진입 수준을 표시하는 피보나치 수준과 같은 인기 있는 시장 분석 도구를 포함하는 하나의 지표 내에서 완전한 거래 시스템입니다. 시장과 이익을 취하는 장소로. 전략에 대한 자세한 설명 표시기 작업에 대한 지침 고문-거래 올빼미 도우미의 조수 개인 사용자 채팅 ->구입 후 나에게 쓰기,나는 개인 채팅에 당신을 추가하고 거기에 모든 보너스를 다운로드 할 수 있습니다 힘은 단순함에 있습니다! Owl Smart Levels   거래 시스템은 사용하기 매우 쉽기 때문에 전문가와 이제 막 시장을 연구하고 스스로 거래 전략을 선택하기 시작한 사람들 모두에게 적합합니다. 전략 및 지표에는 눈에 보이지 않는 비밀 공식 및 계산 방법이 없으며 모든 전략 지표는 공개되어 있습니다. Owl Smart Lev
Black series MT4
Dmitriy Kashevich
1 (1)
Black series MT4 - The indicator is designed for trading on binary options with Timeframe M1-M5-M15 Multicurrency (Works on cryptocurrency and currency pairs) The signal appears when the candle opens Up to 90% correct signals There is no signal redrawing at all Can be used with other indicators. Good for scalping! In Settings there is: -Indicator working methods -I Allert Arrow color Red signal down Blue signal up Also watch the video how the indicator works and signals
Smooth price for Monarch MT4
Konstantin Gruzdev
3.67 (3)
The Smooth Price technical indicator is used for plotting a smoothed line as close to the price of the financial instrument as possible, and serves to eliminate its noise components. The indicator is part of the Monarch trading system, but here it is presented as an independent technical analysis tool. The indicator is based on the cluster digital filter , which, unlike the ClusterSMA , is applied directly to the price time series. Smooth Price does not redraw (except the very last, zero bar) an
Towers
Yvan Musatov
Towers - Trend indicator, shows signals, can be used with optimal risk ratio. It uses reliable algorithms in its calculations. Shows favorable moments for entering the market with arrows, that is, using the indicator is quite simple. It combines several filters to display market entry arrows on the chart. Given this circumstance, a speculator can study the history of the instrument's signals and evaluate its effectiveness. As you can see, trading with such an indicator is easy. I waited for an a
Indicador Taurus All4
Fabio Oliveira Magalhaes
Taurus All4 Taurus All4 is a high-performance indicator, it will tell you the strength of the trend, and you will be able to observe the strength of the candle. Our indicator has more than 4 trend confirmations. It is very simple and easy to use. Confirmation Modes Candle Trend Confirmations: When the candle switches to light green the trend is high. When the candle switches to light red the trend is reverting down. When the candle changes to dark red the trend is low. Trendline Trend Conf
Powerful Binary Options
Ellan Dirgantara Tholkhah
This is the binary options signal you all have been looking for. This in a modified version of the Garuda Scalper, that has been modified for Binary Options traders. Signals are very unique! Why this is so effective for binary options is because  it is a trend following system, it understands that the trend is your friend. It takes advantage of the buying/selling after the pullback in continuation of the current trend wave.  Because  signals are generated after the pullback,   you can place shor
ECM Channel MT4
Paulo Rocha
5 (1)
ECM Elite Channel is a volatility-based indicator, developed with a specific time algorithm, which consists of finding possible corrections in the market. This indicator shows two outer lines, an inner line (retracement line) and an arrow sign, where the channel theory is to help identify overbought and oversold conditions in the market. The market price will generally fall between the boundaries of the channel. If prices touch or move outside the channel, it's a trading opportunity. The
Trendiness Index
Libertas LLC
5 (3)
"The trend is your friend" is one of the best known sayings in investing, because capturing large trendy price movements can be extremely profitable. However, trading with the trend is often easier said than done, because many indicators are based on price reversals not trends. These aren't very effective at identifying trendy periods, or predicting whether trends will continue. We developed the Trendiness Index to help address this problem by indicating the strength and direction of price trend
Strength and weakness of currencies : Shows the currency status at any time, values between 50 and -50 are neutral, everything outside indicates a trend change  Waves : Current state of waves, daily, weekly monthly and yearly Recommended volume for trading a specific number of waves Yearly High Low Drawn waves on which the market will react in advance, without redrawing Yearly candle with bonus levels used to display deviations  For more info contact me
Based on MACD indicator waves with standard parameters Applies Fibonacci levels to the last two MACD waves, positive and negative respectively, if at the moment the MACD indicator runs out of negative Wave - the color is green, if at the moment the MACD indicator runs out of positive Wave - the color is red. The Wave termination criterion is two ticks with a different MACD sign. Applies trend lines on the last four MACD Waves. Works well with the expert Figures MACD   https://www.mql5.com/ru/mar
GMMA Trade X is an EA based on GMMA. GMMA parameters such as MovingAveragePeriod1-24, MovingAverageMAShift1-24, MovingAverageShift1-24 and CandlestickShift1-24 can be adjusted. GMMA Trade X applies BTN TECHNOLOGY's state-of-the-art intelligent technology to help you create optimal results for your trades. May your dreams come true through GMMA Trade X. Good luck. = == == Inquiries = == == E-Mail:support@btntechfx.com
MACD Divergence
Sergey Deev
2.5 (2)
The indicator detects divergence signals - the divergences between the price peaks and the MACD oscillator values. The signals are displayed as arrows in the additional window and are maintained by the messages in a pop-up window, e-mails and push-notifications. The conditions which formed the signal are displayed by lines on the chart and in the indicator window. Indicator Parameters MacdFast - fast MACD line period MacdSlow - slow MACD line period MacdSignal - MACD signal line period MacdPri
5 signal in 1  Product     TimeFrame   Recommend   1m-5m recommend  signal   TF  5m    Banks Pro Binary Option is Indicator for binary option Can Use Manaul Trade or Robot on Platform  Mt2Trading  https://www.mt2trading.com/?ref=104    Time Trading   good work  EU session    Recommend  Curency   EUR  GBP USD        careful   AUD JPY      Recommend  Martingale 2-5 Step   Recommend  set profit  2%-5%/Day Setting Brake  News Event High volatility   recommend  15-30 min Have Problem Contract
Gyroscopes
Nadiya Mirosh
Gyroscope        professional forex expert   (for EURUSD, GBPUSD, USDJPY, AUDUSD, USDCHF, EURGBP, EURJPY, NZDUSD, USDCAD, EURCHF, AUDJPY, CADJPY pairs)   alyzing the market using the Elliot Wave Index. Elliott wave theory is the interpretation of processes in financial markets through a system of visual models (waves) on price charts. The author of the theory, Ralph Elliott, identified eight variants of alternating waves (of which five are in the trend and three are against the trend). The mo
Chart Patterns Detect 15 patterns (Ascending Triangle, Descending Triangle, Rising Wedge, Falling Wedge, Bullish Flag, Bearish Flag, Bullish Rectangle, Bearish Rectangle Symmetrical triangle, Head and Shoulders, Inverted Head and Shoulders, Triple top, Triple Bottom, Double Top, Double Bottom) Use historical data to calculate the probability of each pattern to succeed (possibility to filter notification according to the chance of success) gives graphic indication about the invalidation level and
Nice Trade Point
Muhammed Emin Ugur
This    Nice Trade Point     indicator is designed for signal trading. This indicator generates trend signals. It uses many algorithms and indicators to generate this signal. It tries to generate a signal from the points with the highest trend potential. This indicator is a complete trading product. This indicator does not need any additional indicators. The indicator certainly does not repaint. The point at which the signal is given does not change.     Features and Suggestions Time
Prophet
Andriy Sydoruk
Prophet is a trend indicator. Shows the direction of turning points. Can be used with an optimal risk-to-profit ratio. The arrows indicate favorable moments and directions for entering the market. Uses one parameter for setting (adjust from 1 to 3). The probability of a successful trend is very high. In the course of work, the take-profit is much larger than the stop-loss! Works on all currency pairs and on all timeframes.
MACD Display is a MACD disaplay and cross monitoring indicator,which can works on 6 timeframe at same time. Indicator advantage: 1. Deviation from the point can be drawn on the main picture and indicator drawing. It is convenient to observe and can be hidden or displayed by parameter setting. 2. Deviation from the entry point is clearly indicated by the arrow in the drawing. 3. Cross-cycle monitoring can simultaneously monitor the MACD deviation and the golden dead fork of the six-cycle framewor
PipFinite Trend PRO
Karlo Wilson Vendiola
4.9 (2775)
Breakthrough Solution For Trend Trading And Filtering With All Important Features Built Inside One Tool! Trend PRO's smart algorithm detects the trend, filters out market noise and gives entry signals with exit levels. The new features with enhanced rules for statistical calculation improved the overall performance of this indicator. Important Information Revealed Maximize the potential of Trend Pro, please visit www.mql5.com/en/blogs/post/713938 The Powerful Expert Advisor Version Automa
US30 Scalper EA MT4
Lo Thi Mai Loan
5 (4)
Launch promo! Only a few copies left at 399$! Next price: 499$ Final price: 999$ Live signal:  https://www.mql5.com/en/signals/2220893?source=Site+Profile+Seller MT5:   https://www.mql5.com/en/market/product/107337?source=Site+Profile+Seller For more top Expert Advisors and Indicators, visit:   https://www.mql5.com/en/users/lothimailoan/seller I am Los, please subscribe to receive more updates:   https://www.mql5.com/en/users/lothimailoan/news US30 Scalper EA는 거래 및 코딩 분야에서 높은 경험을 가진 팀에 의해 개발된
Distinctive
Tatiana Savkevych
Distinctive is a forex trending arrow indicator for identifying potential entry points. I like it, first of all, because it has a simple mechanism of work, adaptation to all time periods and trading tactics. Created on the basis of a regression channel with filters. Plotting the Lawrence indicator signals on a price function chart using a mathematical approach. How it works - when the price breaks out in the overbought / oversold zone (channel levels), a buy or sell signal is generated. Every
FX Flow
Eva Stella Conti
FX Flow   indicator can be used as an anticipator of the next trend, preferably confirmed by Price Action or another oscillator (RSi, Stochastic ..). It takes the money flows of the major currencies USD EUR GBP AUD NZD CAD CHF JPY into account, and processes them. Excellent tool for indices, but also for correlations between currencies. Works on each timeframes.  Blue line: Bull market Yellow line: Bear market Note : if the indicator opens the window, but does not draw lines, load the histo
Smart Reversal Signal
Evgeny Belyaev
3 (2)
Smart Reversal Signal  is a professional indicator for the MetaTrader 4 platform; it has been developed by a group of professional traders. This indicator is designed for Forex and binary options trading. By purchasing this indicator, you will receive: Excellent indicator signals. Free product support. Regular updates. Various notification options: alert, push, emails. You can use it on any financial instrument (Forex, CFD, options) and timeframe. Indicator Parameters Perod - indicator calcula
Hidden Cross Binary Options
Ellan Dirgantara Tholkhah
The latest Binary Options arrow indicator in the Garuda Signals product line. Binary options signal based on multiple time frame cross over analysis. Gets confirmation from the most consistent signals known to man; Ichimoku, SMA, Bollinger Bands; and also uses the 1 Hour time frame as trend confirmation , so you don't have to open up multiple chart and waste time. - Can be used for all time frames up to 1 hour, but is most POWERFUL for 1 and 5 min options. - Place your Call/PUT based on the Arro
ShinZuka
Muhammad Asyraf Bin Mohamad
Using MACD value for direction. Using RSI as reversal indicator. Using open trading hour. (Recommend Hour 10,11,15 & 19 : MT4-Time) Counter trade if signal failed. Cutloss trade if signal failed. Auto lot calculate based on target profit & takeprofit. Able to set counter trade value. Suitable for commodities & currency.  Timeframe H1. Able to set limit lot open. Able to select day to trade.
BinaryUniversal
Andrey Spiridonov
BinaryUniversal is a signal indicator for binary options and Forex. In its work, the indicator uses a complex algorithm for generating signals. Before forming a signal, the indicator analyzes volatility, candlestick patterns, important support and resistance levels. The indicator has the ability to adjust the accuracy of the signals, which makes it possible to apply this indicator for both aggressive and conservative trading. The indicator is set in the usual way, it works on any time period and
이 제품의 구매자들이 또한 구매함
Advanced Currency Strength28 Indicator
Bernhard Schweigert
4.9 (663)
현재 26% 할인 초보자 또는 전문가 트레이더를 위한 최고의 솔루션! 이 지표는 우리가 독점 기능과 새로운 공식을 통합했기 때문에 독특하고 고품질이며 저렴한 거래 도구입니다. 단 하나의 차트로 28 Forex 쌍의 통화 강도를 읽을 수 있습니다! 새로운 추세 또는 스캘핑 기회의 정확한 트리거 포인트를 정확히 찾아낼 수 있기 때문에 거래가 어떻게 개선될지 상상해 보십시오. 사용 설명서: 여기를 클릭  https://www.mql5.com/en/blogs/post/697384 그것이 첫 번째, 원본입니다! 쓸모없는 지망생 클론을 사지 마십시오. 더 스페셜  강력한 통화 모멘텀을 보여주는 하위 창의 화살표 GAP가 거래를 안내합니다! 기본 또는 호가 통화가 과매도/과매도 영역(외부 시장 피보나치 수준)에 있을 때 개별 차트의 기본 창에 경고 표시가 나타납니다. 통화 강도가 외부 범위에서 떨어질 때 풀백/반전 경고. 교차 패턴의 특별 경고 추세를 빠르게 볼 수 있는
Atomic Analyst
Issam Kassas
5 (3)
우선적으로 언급할 점은이 거래 지표가 다시 그리지 않고 지연되지 않으며 이를 통해 수동 및 로봇 거래 모두에 이상적이라는 점입니다. 사용자 매뉴얼: 설정, 입력 및 전략. Atomic Analyst는 가격의 강도와 모멘텀을 활용하여 시장에서 더 나은 이점을 찾는 PA Price Action Indicator입니다. 고급 필터를 장착하여 잡음과 거짓 신호를 제거하고 거래 잠재력을 높이는 데 도움이 됩니다. 복잡한 지표의 다중 레이어를 사용하여 Atomic Analyst는 차트를 스캔하고 복잡한 수학적 계산을 간단한 신호와 색상으로 변환하여 초보 트레이더가 이해하고 일관된 거래 결정을 내릴 수 있도록합니다. "Atomic Analyst"는 새로운 및 경험이 풍부한 트레이더를위한 종합적인 거래 솔루션입니다. 프리미엄 지표와 최고 수준의 기능을 하나의 거래 전략에 결합하여 모든 종류의 트레이더에 대한 다재다능한 선택지가되었습니다. 인트라데이 거래 및 스캘핑 전략 : 빠르고 정확한
Advanced Supply Demand
Bernhard Schweigert
4.92 (310)
현재 33% 할인! 초보자나 전문 트레이더를 위한 최고의 솔루션! 이 보조지표는 우리가 다수의 독창적 기능과 새로운 공식을 통합한 독특하고 고품질이며 저렴한 거래 도구입니다. 이 업데이트를 통해 이중 시간대를 표시할 수 있습니다. 더 높은 TF를 표시할 수 있을 뿐만 아니라 차트 TF와 더 높은 TF 모두를 표시할 수 있습니다: 중첩 영역 표시. 모든 Supply Demand 트레이더들이 좋아할 것입니다. :) 중요한 정보 공개 Advanced Supply Demand의 잠재력을 극대화하려면 다음을 방문하십시오. https://www.mql5.com/ko/blogs/post/720245   진입 또는 목표의 명확한 트리거 포인트를 정확히 찾아냄으로 해서 거래가 어떻게 개선될지 상상해 보십시오. 새로운 알고리즘을 기반으로 매수자와 매도자 간의 잠재적인 불균형을 훨씬 더 쉽게 분간할 수 있습니다. 왜냐하면 가장 강한 공급영역과 가장 강한 수요 영역과 과거에 어떻게 진행 되었는지를(이
TPSpro RFI Levels
Roman Podpora
5 (13)
A key element in trading is zones or levels from which decisions to buy or sell a trading instrument are made. Despite attempts by major players to conceal their presence in the market, they inevitably leave traces. Our task was to learn how to identify these traces and interpret them correctly. Reversal First Impulse levels (RFI)   -  Version MT5                INSTRUCTIONS                 RUS                 ENG                                       R ecommended to use with an indicator   -  
TPSproTREND PrO
Roman Podpora
5 (15)
TPSpro TRENDPRO  - is a trend indicator that automatically analyzes the market and provides information about the trend and each of its changes, as well as giving signals for entering trades without redrawing! The indicator uses each candle, analyzing them separately. referring to different impulses - up or down impulse. Exact entry points into transactions for currencies, crypto, metals, stocks, indices!  -  Version MT5               DETAILED DESCRIPTION        /       TRADING SETUPS           
Dragon Multi Indicator MT4
Mansour Babasafary
5 (1)
74% discount for the next 10 buyers (original price $605): 1 left Get a 50% bonus by buying (or even renting) any of our products. After buying (or renting), send a message for more information. 3 Indicators in 1 indicator Strategy based on price action Made specifically for the best forex currency pairs Can be used in the best time frame of the market at a very reasonable price This indicator is basically 3 different indicatos . But we have combined these 3 indicators in 1 indicator so th
ON Trade Optuma Astro
Abdullah Alrai
5 (4)
물론입니다. 아래는 제공해주신 텍스트의 한국어 번역입니다: MT4용 천문학 지표 소개: 귀하의 최상급 하늘 트레이딩 동반자 트레이딩 경험을 천체의 높이로 끌어올리기 준비가 되셨나요? MT4용 천문학 지표를 소개합니다. 이 혁신적인 도구는 복잡한 알고리즘의 힘을 활용하여 탁월한 천문학적 통찰과 정밀한 계산을 제공합니다. 정보의 우주를 손에 담다: 천문학적 데이터의 보물함을 드러내는 포괄적인 패널을 살펴보세요. 행성의 지오/헬리오센트릭 좌표, 태양/지구 거리, 크기, 길이, 별자리, 황도 좌표 및 적도 좌표, 심지어 수평 좌표 등 각각이 정밀하게 계산되고 아름답게 제시됩니다. 지표에 의해 생성된 수직선은 시간 값에 해당하여 트레이딩 여정에 우주적인 시각을 부여합니다. 행성 라인과 관계: 수정 가능한 스케일과 각도로 차트를 장식하는 행성 라인의 마법을 경험해보세요. 직관적인 컨트롤 패널을 통해 각 행성의 라인의 가시성을 손쉽게 전환할 수 있습니다. 쥰션이나 섹스타일, 사분각, 삼분각, 트
Quantum Trend Sniper Indicator MT4
Bogdan Ion Puscasu
4.59 (39)
소개       Quantum Trend Sniper Indicator는   추세 반전을 식별하고 거래하는 방식을 변화시키는 획기적인 MQL5 지표입니다! 13년 이상의 거래 경험을 가진 숙련된 트레이더 팀이 개발한       Quantum Trend Sniper 표시기       매우 높은 정확도로 추세 반전을 식별하는 혁신적인 방법으로 거래 여정을 새로운 차원으로 끌어올리도록 설계되었습니다. ***Quantum Trend Sniper Indicator를 구입하면 Quantum Breakout Indicator를 무료로 받을 수 있습니다!*** Quantum Trend Sniper Indicator는 추세 반전을 식별하고 세 가지 이익실현 수준을 제안할 때 경고, 신호 화살표를 제공합니다. 초보자 거래자와 전문 거래자 모두에게 적합합니다. Quantum EA 채널:       여기를 클릭하세요 MT5 버전:       여기를 클릭하세요
ON Trade Waves Patterns Harmonic Elliot Wolfe를 소개합니다. 이는 수동 및 자동 방법을 사용하여 다양한 시장 패턴을 감지하기 위해 개발된 고급 지표입니다. 다음은 그 작동 방식입니다: 조화적 패턴: 이 지표는 차트에 나타나는 조화적 패턴을 식별할 수 있습니다. 이러한 패턴은 Scott Carney의 "Harmonic Trading vol 1 및 2"에서 설명한 것처럼 조화적 거래 이론을 연습하는 트레이더에게 중요합니다. 수동으로 그리든 자동 감지를 사용하든 ON Trade Waves Patterns가 도움을 줄 것입니다. 컨트롤 패널: 이 지표에는 사용자 친화적인 컨트롤 패널이 있습니다. 차트 및 시간 프레임 설정을 저장하여 다양한 구성 간에 쉽게 전환할 수 있습니다. 차트 공간을 최대화하려면 최소화할 수도 있습니다. 다른 분석 도구를 사용하는 것을 선호하는 경우 닫기 버튼을 클릭하여 모든 지표 데이터를 숨길 수 있습니다. 템플릿 저장: 설정을 사
Trend Screener
STE S.S.COMPANY
4.83 (88)
트렌드 표시기, 트렌드 트레이딩 및 필터링을 위한 획기적인 고유 솔루션, 하나의 도구 안에 내장된 모든 중요한 트렌드 기능! Forex, 상품, 암호 화폐, 지수 및 주식과 같은 모든 기호/도구에 사용할 수 있는 100% 다시 칠하지 않는 다중 시간 프레임 및 다중 통화 표시기입니다. Trend Screener는 차트에 점이 있는 화살표 추세 신호를 제공하는 효율적인 지표 추세 추종 지표입니다. 추세 분석기 표시기에서 사용할 수 있는 기능: 1. 트렌드 스캐너. 2. 최대 이익 분석이 있는 추세선. 3. 추세 통화 강도 측정기. 4. 경고가 있는 추세 반전 점. 5. 경고가 있는 강력한 추세 점. 6. 추세 화살표 Trend Screener Indicator가 있는 일일 분석 예, 일일 신호 성능...등은 여기에서 찾을 수 있습니다.   여기를 클릭하십시오. LIMITED TIME OFFER : Trend Screener Indicator는 50 $ 및 평생 동안만 사용할 수 있
on free demo press zoom out button to see back.. cnt number is bar numbers.you can change up to 3000 related to chart bars numbers. minimum value is 500. there is g value set to 1.01. no need to change it. this indicator almost grail,no repaint and all pairs ,all timeframe indicator. there is red and blue histograms. if gold x sign comes on red histogram that is sell signal. if blue x sign comes on blue histogram that is buy signal. this indicator on thise version works all pairs.al timeframes
FX Power MT4 NG
Daniel Stein
5 (9)
모닝 브리핑 여기 mql5 와 텔레그램에서 FX Power MT4 NG 는 오랫동안 인기 있는 통화 강도 측정기인 FX Power의 차세대 버전입니다. 이 차세대 강도 측정기는 무엇을 제공합니까? 기존 FX Power에서 좋아했던 모든 것 PLUS GOLD/XAU 강도 분석 더욱 정밀한 계산 결과 개별 구성 가능한 분석 기간 더 나은 성능을 위한 사용자 정의 가능한 계산 한도 특별 멀티더 많은 것을보고 싶은 사람들을위한 특별한 다중 인스턴스 설정 모든 차트에서 좋아하는 색상을위한 끝없는 그래픽 설정 수많은 알림 옵션, 중요한 것을 다시는 놓치지 않도록 Windows 11 및 macOS 스타일의 둥근 모서리가 있는 새로운 디자인 마법처럼 움직이는 인디케이터 패널 FX 파워 키 특징 모든 주요 통화의 완전한 강세 이력 모든 시간대에 걸친 통화 강세 이력 모든 브로커 및 차트에서 고유 계산 결과 100% 신뢰할 수있는 실시간100 % 신뢰할 수있는 실시간 계산-> 다시 칠하지 않음
Scalper Inside PRO
Alexey Minkov
4.75 (57)
An exclusive indicator that utilizes an innovative algorithm to swiftly and accurately determine the market trend. The indicator automatically calculates opening, closing, and profit levels, providing detailed trading statistics. With these features, you can choose the most appropriate trading instrument for the current market conditions. Additionally, you can easily integrate your own arrow indicators into Scalper Inside Pro to quickly evaluate their statistics and profitability. Scalper Inside
Shepherd Harmonic Pattern
Abdullah Alrai
4.68 (59)
이 지표는 수동 및 자동 방법으로 차트에 그려진 고조파 패턴을 감지합니다. 사용자 매뉴얼은 다음 링크에서 확인할 수 있습니다. 리뷰를 작성하고 문의하면 무료 버전으로 MT4에서 제품을 시도할 수 있습니다. Gartley 및 Nenstar 패턴을 감지하는 데 사용할 수 있습니다. https://www.mql5.com/en/market/product/30181 전체 MT4 버전을 구입하려면 다음에서 구입할 수 있습니다. https://www.mql5.com/en/market/product/15212 참고 사항 지표에는 제어 패널이 있으며 모든 (차트 및 시간대) 설정을 저장합니다. 차트에서 더 많은 공간을 확보하려면 최소화할 수 있으며, 다른 분석 도구로 작업하는 것이 선호되는 경우 모든 지표 데이터를 숨기려면 닫기 버튼을 누를 수 있습니다. 이 지표를 사용하고 설정을 변경하면 이동 평균 또는 볼린저 밴드와 같은 지표를 추가하면 자동으로 템플릿을 저장하고 필요할 때 언제든지 로드할 수
현재 20% 할인 ! 초보자 또는 전문가 트레이더를 위한 최고의 솔루션! 이 대시보드 소프트웨어는 28개의 통화 쌍에서 작동합니다. 2가지 주요 지표(Advanced Currency Strength 28 및 Advanced Currency Impulse)를 기반으로 합니다. 전체 Forex 시장에 대한 훌륭한 개요를 제공합니다. 고급 통화 강도 값, 통화 이동 속도 및 모든(9) 시간대의 28 Forex 쌍에 대한 신호를 보여줍니다. 추세 및/또는 스캘핑 기회를 정확히 파악하기 위해 차트의 단일 지표를 사용하여 전체 시장을 볼 수 있을 때 거래가 어떻게 개선될지 상상해 보십시오! 잠재적인 거래를 식별하고 확인하면서 강력한 통화와 약한 통화를 더욱 쉽게 식별할 수 있도록 이 지표에 기능을 내장했습니다. 이 표시기는 통화의 강세 또는 약세가 증가 또는 감소하는지 여부와 모든 시간대에서 수행되는 방식을 그래픽으로 보여줍니다. 추가된 새로운 기능은 현재 시장 조건 변화에 적
TrendMaestro
Stefano Frisetti
5 (2)
note: this indicator is for METATRADER4, if you want the version for METATRADER5 this is the link:  https://www.mql5.com/it/market/product/108106 TRENDMAESTRO ver 2.4 TRENDMAESTRO recognizes a new TREND in the bud, he never makes mistakes. The certainty of identifying a new TREND is priceless. DESCRIPTION TRENDMAESTRO identifies a new TREND in the bud, this indicator examines the volatility, volumes and momentum to identify the moment in which there is an explosion of one or more of these data a
Up down v6T
Guner Koca
5 (1)
Thise indicator is up down v6  comes with tradingwiev pinescript. purchased people, after installed on terminal ,contact me on mql5  to get BONUS  TradingView pinescript. up-down indicator is no repaint and works all pairs and lower than weekly time frames charts. it is suitable also 1 m charts for all pairs. and hold long way to signal. dont gives too many signals. when red histogram cross trigger line that is up signal.and price probably will down when blue histogram cross trigger line that
Quantum Breakout Indicator PRO
Bogdan Ion Puscasu
4.96 (26)
소개       Quantum Breakout PRO   , 브레이크아웃 존 거래 방식을 변화시키는 획기적인 MQL5 지표! 13년 이상의 거래 경험을 가진 숙련된 트레이더 팀이 개발한   Quantum Breakout PRO는   혁신적이고 역동적인 브레이크아웃 영역 전략으로 거래 여정을 새로운 차원으로 끌어올리도록 설계되었습니다. Quantum Breakout Indicator는 5개의 이익 목표 영역이 있는 브레이크아웃 영역의 신호 화살표와 브레이크아웃 상자를 기반으로 한 손절 제안을 제공합니다. 초보자 거래자와 전문 거래자 모두에게 적합합니다. Quantum EA 채널:       여기를 클릭하세요 MT5 버전 :   여기를 클릭하세요 중요한! 구매 후 설치 매뉴얼을 받으려면 개인 메시지를 보내주십시오. 추천: 기간: M15 통화쌍: GBPJPY, EURJPY, USDJPY,NZDUSD, XAUUSD 계정 유형: 스프레드가 매우 낮은 ECN, Ra
Volatility Trend System - a trading system that gives signals for entries. The volatility system gives linear and point signals in the direction of the trend, as well as signals to exit it, without redrawing and delays. The trend indicator monitors the direction of the medium-term trend, shows the direction and its change. The signal indicator is based on changes in volatility and shows market entries. The indicator is equipped with several types of alerts. Can be applied to various trading
MetaTrend M4
Vahidreza Heidar Gholami
5 (1)
Meta Trend Indicator is an efficient way to forecast and detect the trend in any market. It reveals the trend, support and resistance levels, volatility and the maximum potential target, all in one indicator. To adapt to the price and to decrease consecutive trend failures, the internal trend detector algorithm studies the market and dynamically chooses the right values for the internal parameters. This indicator is a perfect trend filter for any strategy or expert advisor. Features Super Adapti
FX Volume
Daniel Stein
4.6 (35)
모닝 브리핑을 통해 세부 정보와 스크린샷으로 매일 시장 업데이트를 받으세요 여기 mql5 및 텔레그램에서 FX 거래량은 브로커의 관점에서 시장 심리에 대한 실제 통찰력을 제공하는 최초이자 유일한 거래량 지표입니다. 브로커와 같은 기관 시장 참여자가 외환 시장에서 어떤 포지션을 취하고 있는지에 대한 훌륭한 통찰력을 COT 보고서보다 훨씬 빠르게 제공합니다. 차트에서 이 정보를 직접 확인하는 것은 트레이딩의 진정한 판도를 바꾸고 획기적인 솔루션입니다. 다음과 같은 고유한 시장 데이터 인사이트의 이점 비율 는 통화의 매수/매도 포지션 비율을 백분율로 표시 비율 변화 는 선택한 기간 내 매수 비율과 비율 변화를 표시 총 거래량 는 해당 통화의 총 거래량(롱 및 숏)을 로트 단위로 보여줍니다 Volumes Long 는 해당 통화의 모든 롱 포지션의 거래량을 보여줍니다 Volumes Short 는 해당 통화의 모든 숏 포지션의 거래량을 보여줍니다 Net Long 는 순 롱 포지션의 거래량
MetaForecast M4
Vahidreza Heidar Gholami
5 (1)
MetaForecast는 가격 데이터의 조화를 기반으로 모든 시장의 미래를 예측하고 시각화합니다. 시장이 항상 예측 가능한 것은 아니지만 가격에 패턴이 있다면 MetaForecast는 가능한 정확하게 미래를 예측할 수 있습니다. 다른 유사한 제품과 비교했을 때, MetaForecast는 시장 동향을 분석하여 더 정확한 결과를 생성할 수 있습니다. 입력 매개변수 Past size (과거 크기) MetaForecast가 미래 예측을 생성하기 위한 모델을 만드는 데 사용하는 막대의 수를 지정합니다. 모델은 선택한 막대 위에 그려진 노란색 선으로 표시됩니다. Future size (미래 크기) 예측해야 할 미래 막대의 수를 지정합니다. 예측된 미래는 핑크색 선으로 표시되며 그 위에 파란색 회귀선이 그려집니다. Degree (차수) 이 입력은 MetaForecast가 시장에서 수행할 분석 수준을 결정합니다. Degree 설명  0 차수 0의 경우, "Past size" 입력에 모든 봉우리
Max Min Cycle
Vitalyi Belyh
Cyclical indicator for trading and predicting the direction of the market. Shows the cyclical behavior of the price in the form of an oscillator. Gives signals for opening deals when rebounding from the upper and lower boundaries of the oscillator. In the form of a histogram, it shows the smoothed strength of the trend. Will complement any trading strategy, from scalping to intraday. The indicator does not redraw. Suitable for use on all symbols/instruments. Suitable time frames for short-term
Allows multiple indicators to be combined into a single indicator, both visually and in terms of an alert. Indicators can include standard indicators, e.g. RSI, CCI, etc., and also Custom Indicators, even those purchased through Market, or where just have the ex4 file. An early alert is provided, say when 4 out 5 indicators have lined up, and a confirmed alert when all are in agreement. A‌lso features a statistics panel reporting the success of the combined indicator by examining the current cha
GOLD Impulse with Alert
Bernhard Schweigert
4.56 (9)
이 지표는 Advanced Currency IMPULSE with ALERT  +   Currency Strength Exotics  의 2가지 제품의 슈퍼 조합입니다. 그것은 모든 시간 프레임에 대해 작동하며 8개의 주요 통화와 하나의 기호에 대한 강약의 충동을 그래픽으로 보여줍니다! 이 표시기는 금, 이국적인 쌍, 상품, 지수 또는 선물과 같은 기호에 대한 통화 강도 가속을 표시하는 데 특화되어 있습니다. 금, 은, 오일, DAX, US30, MXN, TRY, CNH 등의 진정한 통화 강도 가속(충동 또는 속도)을 표시하기 위해 9번째 줄에 모든 기호를 추가할 수 있습니다. 새로운 기본 알고리즘을 기반으로 구축되어 잠재적인 거래를 훨씬 더 쉽게 식별하고 확인할 수 있습니다. 이는 통화의 강세 또는 약세가 가속되는지 여부를 그래픽으로 표시하고 가속 속도를 측정하기 때문입니다. 자동차의 속도계처럼 생각하면 됩니다. 가속화할 때 Forex 시장에서 동일한 일이 분명히
Price Action Entry Alerts
Stephen Sanjeeve Sahayam
5 (3)
이 지표는 매수 또는 매도 압력에 대한 모든 막대를 선별하고 볼륨이 가장 높은 4가지 유형의 캔들 패턴을 식별합니다. 이 양초는 여러 선형 필터를 사용하여 필터링되어 매수 또는 매도 신호를 표시합니다. 신호는 더 높은 시간 프레임 방향과 함께 거래량이 많은 시간에 거래될 때 가장 잘 작동합니다. 모든 필터는 사용자 정의가 가능하며 독립적으로 작동합니다. 버튼 클릭으로 단일 방향의 신호를 볼 수 있습니다. 또한 이 지표에는 의사 결정 과정을 지원할 수 있는 가장 중요한 가격 조치 및 스마트 머니 개념이 포함되어 있습니다. 하나의 도구에서 신호 및 거래 교육을 모두 제공합니다. 특징: 신호는 다시 칠하지 않습니다. Engulfing candles, Rejection candles, Expanded range candles 및 Pinbars를 식별합니다. 각 유효한 신호에 대해 여러 항목, 손절매 및 여러 이익 실현 수준을 표시합니다. 대량 세션으로 필터링합니다. 지원/저항 수준 및
WARNING: PRICE IS SUBJECT TO RISE AT ANY TIME. GET YOUR COPY TODAY TO AVOID MORE COST! Dear Traders I am so glad to introduce to you my other tool called the Forex Sniper Entries Indicator. This tool is designed to help serious traders and investors capture big moves in the currency price movements. The philosophy behind this tool is all about winning big and riding the price movement from its beginning until the maximum point. We want to capture those big moves in both down and up markets as mu
Smart Ai Levels
Aditya Jayswal
Smart Ai Levels  Accumulation & Distribution indicator Smart Ai Levels are Ai controlled indicator which is based on Wyckoff Price cycle theory . It automatically scans the Accumulation & Distribution phases on chart and Ai draws the possible areas before Mark up and Mark down which acts as hot zones and can be traded with confirmation to catch those big price movements . It's a great tool for both Reversal and Breakout Trades suitable to all Trading Styles such as Scalping - Intraday - Swing 
TakePropips Donchian Trend Pro
Eric John Pajarillaga Aldana
4.82 (17)
TakePropips Donchian Trend Pro   (MT4)는 Donchian 채널을 사용하여 추세의 방향을 자동으로 감지하고 진입 및 퇴장 거래 신호를 제공하는 강력하고 효과적인 도구입니다! 이 다기능 지표에는 추세 스캐너, 거래 신호, 통계 패널, 스크리너, 거래 세션 및 경고 내역 대시보드가 포함됩니다. 거래 신호를 제공하고 차트 분석 시간을 절약하도록 설계되었습니다! 다음 블로그 게시물에서 사용자 설명서 및 설치 가이드를 다운로드할 수 있습니다.   https://www.mql5.com/en/blogs/post/751368 오늘 50% 할인을 받으세요! 가격이 $98에서 $49로 인하되었습니다! 전략 테스터에서 이 지표를 테스트할 수 있습니다(비주얼 모드 활성화).  자세한 내용은 설명 아래에 비디오 자습서도 제공됩니다. 질문이 있거나 도움이 필요하면 저에게 연락하십시오. TakePropips Donchian Trend Pro 지표는 모든 Forex 쌍, 금속
NO REPAINT ADVANCED CHART PATTERN INDICATOR By definition, a price ( chart)  pattern is a recognizable configuration of price movement that is identified using a series of  trendlines  and/or curves. When a price pattern signals a change in trend direction, it is known as a reversal pattern; a continuation pattern occurs when the trend continues in its existing direction following a brief pause. Advanced Chart Pattern Tracker is designed to find the MOST ACCURATE patterns. A special script is
제작자의 제품 더 보기
This indicator provides the ability to recognize the SMC pattern, essentially a condensed version of the Wyckoff model. Once the pattern is confirmed by RTO, it represents a significant investment opportunity.    There are numerous indicators related to SMC beyond the market, but this is the first indicator to leverage patterns to identify specific actions of BigBoy to  navigate the market. Upgrade 2024-03-08: Add TP by RR feature. The SMC (Smart Money Concept)   pattern   is a market analysis m
This indicator builds upon the previously posted Nadaraya-Watson Estimator. Here we have created an envelope indicator based on kernel smoothing with integrated alerts from crosses between the price and envelope extremities. Unlike the Nadaraya-Watson Estimator, this indicator follows a contrarian methodology. Please note that the indicator is subject to repainting. The triangle labels are designed so that the indicator remains useful in real-time applications. Settings Window Size: Dete
This all-in-one indicator displays real-time market structure (internal & swing BOS / CHoCH), order blocks, premium & discount zones, equal highs & lows, and much more...allowing traders to automatically mark up their charts with widely used price action methodologies. Following the release of our Fair Value Gap script, we received numerous requests from our community to release more features in the same category. "Smart Money Concepts" (SMC) is a fairly new yet widely used term amongst price a
Introducing the Reversal and Breakout Signals   This innovative tool is crafted to enhance your chart analysis by identifying potential reversal and breakout opportunities directly on your charts. It's designed with both novice and experienced traders in mind, providing intuitive visual cues for better decision-making. Let's dive into the key features and how it operates: ###   Key Features:   Dynamic Period Settings:   Customize the sensitivity of the indicator with use
Introduction "Smart money" is money invested by knowledgeable individuals at the right time, and this investment can yield the highest returns. The concept we focus on in this indicator is whether the market is in an uptrend or downtrend. The market briefly takes a weak and reversal trend with "Minor BoS" without being able to break the major pivot. In the next step, it returns to its main trend with a strong bullish move and continues its trend with a "Major BoS". The "order bloc
The Inversion Fair Value Gaps (IFVG) indicator is based on the inversion FVG concept by ICT and provides support and resistance zones based on mitigated Fair Value Gaps (FVGs). Image 1   USAGE Once mitigation of an FVG occurs, we detect the zone as an "Inverted FVG". This would now be looked upon for potential support or resistance. Mitigation occurs when the price closes above or below the FVG area in the opposite direction of its bias. (Image 2) Inverted Bullish FVGs Turn into P
The Bheurekso Pattern Indicator for MT5 helps traders automatically identify candlestick pattern that formed on the chart base on some japanese candle pattern and other indicator to improve accurate. This indicator scans all candles, recognizes and then displays any candle patterns formed on the chart. The candle displayed can be Bullish or Bearish Engulfing, Bullish or Bearish Harami, and so on. There are some free version now but almost that is repaint and lack off alert function. With this ve
Breaker Blocks with Signals
Minh Truong Pham
3.67 (3)
The Breaker Blocks with Signals indicator aims to highlight a complete methodology based on breaker blocks. Breakout signals between the price and breaker blocks are highlighted and premium/discount swing levels are included to provide potential take profit/stop loss levels. This script also includes alerts for each signal highlighted.   SETTINGS   Breaker Blocks Length: Sensitivity of the detected swings used to construct breaker blocks. Higher values will return longer te
This indicator presents an alternative approach to identify Market Structure. The logic used is derived from learning material created by   DaveTeaches (on X) When quantifying Market Structure, it is common to use fractal highs and lows to identify "significant" swing pivots. When price closes through these pivots, we may identify a Market Structure Shift (MSS) for reversals or a Break of Structure (BOS) for continuations. The main difference with this "protected" logic is in how we determine
Consolidation is when price is moving inside a clear trading range. When prices are consolidated it shows the market maker placing orders on both sides of the market. This is mainly due to manipulate the un informed money. This indicator automatically identifies consolidation zones and plots them on the chart. The method of determining consolidation zones is based on pivot points and ATR, ensuring precise identification. The indicator also sends alert notifications to users when a new consolida
Sessions by LUX in MT5
Minh Truong Pham
5 (1)
This indicator shows when user set sessions are active and returns various tools + metrics using the closing price within active sessions as an input. Users have the option to change up to 4 session times. The indicator will increasingly lack accuracy when the chart timeframe is higher than 1 hour. Settings Sessions Enable Session: Allows to enable or disable all associated elements with a specific user set session. Session Time: Opening and closing times of the user set session
The Buyside & Sellside Liquidity indicator aims to detect & highlight the first and arguably most important concept within the ICT trading methodology,   Liquidity   levels. SETTINGS Liquidity Levels Detection Length: Lookback period Margin: Sets margin/sensitivity for a liquidity level detection Liquidity Zones Buyside Liquidity Zones: Enables display of the buyside liquidity zones. Margin: Sets margin/sensitivity for the liquidity zone boundaries. Color: Color option
This is a Forex Scalping Trading Sytem based on the Bollinger Bands.  Pairs:Major Time frame: 1M or higher. Spread max:0,0001.  Indicators (just suggestion) Bollinger bands (20, 2); ADX (14 period); RSI   (7 period ). Y ou should only trade this system between 2am to 5am EST, 8am to 12am EST and 7.30pm to 10pm EST. Do not scalp 30 minutes before a orange or red news  report and not for a hour afterwards.   Setup: is for price to move above the lower or lower Bollinger Bands, RSI raise above the
FREE
This all-in-one indicator displays real-time market structure (internal & swing BOS / CHoCH), order blocks, premium & discount zones, equal highs & lows, and much more...allowing traders to automatically mark up their charts with widely used price action methodologies. Following the release of our Fair Value Gap script, we received numerous requests from our community to release more features in the same category. //------------------------------------// Version 1.x has missing functions + PDAr
The   ICT Unicorn Model   indicator highlights the presence of "unicorn" patterns on the user's chart which is derived from the lectures of   "The Inner Circle Trader" (ICT) . Detected patterns are followed by targets with a distance controlled by the user.   USAGE (image 2) At its core, the ICT Unicorn Model relies on two popular concepts, Fair Value Gaps and Breaker Blocks. This combination highlights a future area of support/resistance. A   Bullish Unicorn Pattern   consists ou
This is addition of  Effective SV squeeze momentum  that add bolliger band and Keltner channel to chart window.  Squeeze momentum introduced by “John Carter”, the squeeze indicator for MT5 represents a volatility-based tool. Regardless, we can also consider the squeeze indicator as a momentum indicator, as many traders use it to identify the direction and strength of price moves. In fact, the Tradingview  squeeze indicator shows when a financial instrument is willing to change from a trending ma
FREE
Overview The   Volume SuperTrend AI   is an advanced technical indicator used to predict trends in price movements by utilizing a combination of traditional SuperTrend calculation and AI techniques, particularly the k-nearest neighbors (KNN) algorithm. The Volume SuperTrend AI is designed to provide traders with insights into potential market trends, using both volume-weighted moving averages (VWMA) and the k-nearest neighbors (KNN) algorithm. By combining these approaches, the indicat
All about Smart Money Concepts Strategy: Market struture: internal or swing BOS, CHoCH; Orderblock; Liquity equal; Fair Value Gap with Consequent encroachment, Balanced price range; Level with Previous month, week, day level or in day level (PMH, PWH, PDH, HOD); BuySell Stops Liquidity (BSL, SSL); Liquidity Void Long Wicks; Premium and Discount; Candle pattern ... "Smart Money Concepts" ( SMC ) is a fairly new yet widely used term amongst price action traders looking to more accurately navigate
The indicator returning pivot point based trendlines with highlighted breakouts . Trendline caculated by pivot point and other clue are ATR, Stdev. The indicator also includes integrated alerts for  trendlines  breakouts and foward message to Telegram channel or group if you want. Settings ·          Lookback bar: Default 200 is number of bar caculate when init indicator. ·          Length:  Pivot points  period ·          Slope Calculation Method: Determines how this lope is calculated. We supp
Trendlines with Breaks MT4
Minh Truong Pham
5 (1)
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
Smart Market structure concept
Minh Truong Pham
3.75 (4)
All about Smart Money Concepts Strategy: Market struture: internal or swing BOS, CHoCH; Orderblock; Liquity equal; Fair Value Gap with Consequent encroachment, Balanced price range; Level with Previous month, week, day level or in day level (PMH, PWH, PDH, HOD); BuySell Stops Liquidity (BSL, SSL); Liquidity Void Long Wicks; Premium and Discount; Candle pattern ... "Smart Money Concepts" ( SMC ) is a fairly new yet widely used term amongst price action traders looking to more accurately navigate
The Breaker Blocks with Signals indicator aims to highlight a complete methodology based on breaker blocks. Breakout signals between the price and breaker blocks are highlighted and premium/discount swing levels are included to provide potential take profit/stop loss levels. This script also includes alerts for each signal highlighted.   SETTINGS   Breaker Blocks Length: Sensitivity of the detected swings used to construct breaker blocks. Higher values will return longer te
There are many linear regression indicators out there, most of them draw lines or channels, but this one actually draws a chart. The beauty of the indicator like Heiken Ashi is it removes a lot of market noise. 4 (OHLC) arrays are filled with Linear Regression(LR) values of each price for the LR period (default=14). The period of the Linear Regression is adjustable dependant on the market conditions. The SMA (default=14) also has period adjustment. Candles are generated with Green for 'Up' cand
ICT Concepts
Minh Truong Pham
5 (2)
The ICT Concepts indicator regroups core concepts highlighted by trader and educator "The Inner Circle Trader" (ICT) into an all-in-one toolkit. Features include Market Structure (MSS & BOS), Order Blocks, Imbalances, Buyside/Sellside Liquidity, Displacements, ICT Killzones, and New Week/Day Opening Gaps. It’s one kind of Smart money concepts. USAGE: Please read this document  !    DETAILS Market Structure Market structure labels are constructed from price breaking a prior extreme point. T
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 ICT Silver Bullet indicator is inspired from the lectures of "The Inner Circle Trader" (ICT) and highlights the Silver Bullet (SB) window which is a specific 1-hour interval where a Fair Value Gap (FVG) pattern can be formed. A detail document about ICT Silver Bullet here . There are 3 different Silver Bullet windows (New York local time): The London Open Silver Bullet (3 AM — 4 AM ~ 03:00 — 04:00) The AM Session Silver Bullet (10 AM — 11 AM ~ 10:00 — 11:00) The PM Session Silver Bullet
A problem when indicator call webrequest is "The WebRequest() function is synchronous, which means its breaks the program execution and waits for the response from the requested server. Since the delays in receiving a response can be large, the function is not available for calls from indicators, because indicators run in a common thread shared by all indicators and charts on one symbol. Indicator performance delay on one of the charts of a symbol may stop updating of all charts of the same symb
FREE
An Implied Fair Value Gap (IFVG) is a three candles imbalance formation conceptualized by ICT that is based on detecting a larger candle body & then measuring the average between the two adjacent candle shadows. This indicator automatically detects this imbalance formation on your charts and can be extended by a user set number of bars. The IFVG average can also be extended until a new respective IFVG is detected, serving as a support/resistance line. Alerts for the detection of bull
OVERVIEW K-means is a clustering algorithm commonly used in machine learning to group data points into distinct clusters based on their similarities. While K-means is not typically used directly for identifying support and resistance levels in financial markets, it can serve as a tool in a broader analysis approach. Support and resistance levels are price levels in financial markets where the price tends to react or reverse. Support is a level where the price tends to stop falling
The FollowLine indicator is a trend following indicator. The blue/red lines are activated when the price closes above the upper Bollinger band or below the lower one. Once the trigger of the trend direction is made, the FollowLine will be placed at High or Low (depending of the trend). An ATR filter can be selected to place the line at a more distance level than the normal mode settled at candles Highs/Lows. Some features: + Trend detech + Reversal signal + Alert teminar / mobile app
필터:
samaara
19
samaara 2024.04.26 07:32 
 

When I bought this indicator, I was facing issues with using it in my EA. The indicator was slow and caused errors. So, I reached out to the author of this indicator and asked for help. He always responded to my questions, removed the errors I was facing and even gave me a working sample EA so that I could use it. The indicator now works smoothly and gives good signals!

리뷰 답변
버전 1.8 2024.04.22
Fix error on divider 0 when learn
버전 1.7 2024.01.31
Fix categories number
버전 1.6 2024.01.31
Add "categories" - prediction value to buffer.
버전 1.5 2023.12.06
add buffer for easier make EA from this indicator
버전 1.4 2023.11.01
fix bug zero division
버전 1.1 2023.09.27
Fix bug display horizontal line when buffer 0