• 概述
  • 评论 (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 工具从最后一个高点拉伸到最后一个低点。 如果第一个点在时间上早于第二个点,交易者等待柱线收于中线上方。 如果第一个点在时间上晚于第二个点,交易者等待柱线收于中线下方。 根据上述条件,严格在 柱线收盘 后建仓。 换句话说,如果我们在小时图上进行交易,那么从最高点到最低点的时间距离必须超过24小时,最高点和最低点之间的点数必须大于或等于平均价格变动每天。 维持和改变市场地位 可以有多个未平仓头寸;每个头寸都可以单独修改。 VR Cu
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 Levels 允許您快速查看進入交易的信號,突出顯示下訂單的水平並向您發送有關已出現信號的通知。 優點很明顯: 清楚地顯示主要和更高時間框架的趨勢方向。 指示儀器信號的出現。 標記開單、止損設置和固定利潤的水平。 沒有多餘的,只有必要的結構! ZigZag   表示全球趨勢的方向,因此也表示貿易方向。 市場反轉點的短線清楚地表明在
这种用于从无穷远衡量货币强弱的创新指标是长期交易的黄牛和交易者不可或缺的助手。 分析货币强弱的系统早已被世界领先的交易者所熟知并在市场上使用。 没有这种分析,任何套利交易都是不完整的。 我们的指标很容易确定基础货币相对于彼此的强弱。 它显示所有或当前货币对的折线图,允许即时分析和搜索最强的入口点。 该指标直观,允许您快速找到并切换到任何一对,具有可放置在地下室和主图表上的移动面板。 通知货币强度变化的计时器模式使交易者有机会在手机上收到通知。  使用货币功率计无穷大指示器的几种策略: 1. 使用货币强度的线性显示图表搜索交叉点作为新兴趋势的信号 2. 在趋势反转信号出现后,向强势货币方向反弹 3. 使用货币强度发散分析扭转当前趋势 4. 使用其他无限指标向强势货币方向交易  如果您有任何问题或希望收到私人聊天的个人邀请,请写信给我:profitcamp@mail.ru
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
基于具有标准参数的MACD指标波 在最后两个MACD波上分别对正面和负面交易斐波纳契水平, 如果负波浪在MACD指标上结束,则颜色为绿色, 如果正波在MACD指标上结束,那么颜色为红色。 Wave的终止标准是两个滴答,MACD的符号不同。 在最近四次MACD波浪中绘制趋势线。 与专家合作很好  Figures MACD   https://www.mql5.com/ru/market/product/42031 更多截图: https://www.mql5.com/ru/charts/10581596/audusd-h1-alpari-international https://www.mql5.com/ru/charts/10631979/usdjpy-m1-alpari-international https://www.mql5.com/ru/charts/10628704/gbpusd-m15-alpari-international
GMMA Trade X is an EA based on GMMA. GMMA parameters such as MovingAveragePeriod1-24, MovingAverageMAShift1-24, MovingAverageShift1-24 and CandlestickShift1-24 can be adjusted. GMMA Trade X applies BTN TECHNOLOGY's state-of-the-art intelligent technology to help you create optimal results for your trades. May your dreams come true through GMMA Trade X. Good luck. = == == Inquiries = == == E-Mail:support@btntechfx.com
Gyroscopes
Nadiya Mirosh
Gyroscope        professional forex expert   (for EURUSD, GBPUSD, USDJPY, AUDUSD, USDCHF, EURGBP, EURJPY, NZDUSD, USDCAD, EURCHF, AUDJPY, CADJPY pairs)   alyzing the market using the Elliot Wave Index. Elliott wave theory is the interpretation of processes in financial markets through a system of visual models (waves) on price charts. The author of the theory, Ralph Elliott, identified eight variants of alternating waves (of which five are in the trend and three are against the trend). The mo
MACD Divergence
Sergey Deev
2.5 (2)
The indicator detects divergence signals - the divergences between the price peaks and the MACD oscillator values. The signals are displayed as arrows in the additional window and are maintained by the messages in a pop-up window, e-mails and push-notifications. The conditions which formed the signal are displayed by lines on the chart and in the indicator window. Indicator Parameters MacdFast - fast MACD line period MacdSlow - slow MACD line period MacdSignal - MACD signal line period MacdPri
5 signal in 1  Product     TimeFrame   Recommend   1m-5m recommend  signal   TF  5m    Banks Pro Binary Option is Indicator for binary option Can Use Manaul Trade or Robot on Platform  Mt2Trading  https://www.mt2trading.com/?ref=104    Time Trading   good work  EU session    Recommend  Curency   EUR  GBP USD        careful   AUD JPY      Recommend  Martingale 2-5 Step   Recommend  set profit  2%-5%/Day Setting Brake  News Event High volatility   recommend  15-30 min Have Problem Contract
Chart Patterns Detect 15 patterns (Ascending Triangle, Descending Triangle, Rising Wedge, Falling Wedge, Bullish Flag, Bearish Flag, Bullish Rectangle, Bearish Rectangle Symmetrical triangle, Head and Shoulders, Inverted Head and Shoulders, Triple top, Triple Bottom, Double Top, Double Bottom) Use historical data to calculate the probability of each pattern to succeed (possibility to filter notification according to the chance of success) gives graphic indication about the invalidation level and
Nice Trade Point
Muhammed Emin Ugur
This    Nice Trade Point     indicator is designed for signal trading. This indicator generates trend signals. It uses many algorithms and indicators to generate this signal. It tries to generate a signal from the points with the highest trend potential. This indicator is a complete trading product. This indicator does not need any additional indicators. The indicator certainly does not repaint. The point at which the signal is given does not change.     Features and Suggestions Time
Prophet
Andriy Sydoruk
Prophet is a trend indicator. Shows the direction of turning points. Can be used with an optimal risk-to-profit ratio. The arrows indicate favorable moments and directions for entering the market. Uses one parameter for setting (adjust from 1 to 3). The probability of a successful trend is very high. In the course of work, the take-profit is much larger than the stop-loss! Works on all currency pairs and on all timeframes.
MACD Display 是一个跨周期MACD背离,金死叉监控指标。 指标优势: 1、背离点位可以在主图和指标附图上画出来,观察方便,可通过参数设置隐藏或显示。 2、背离入场点在附图中通过箭头提示,清楚明确。 3、跨周期监控,可以同时监控该品种6个周期框架的MACD背离及金死叉情况。 4、顶背离、底背离、金叉、死叉信号出来后可通过窗口报警提示,有效减少盯盘时间。 5、可隐藏MACD柱体,方便信号观察。 更多来自作者的EA和指标 https://www.mql5.com/zh/users/chenshaofei/seller 参数说明: separator1 - 说明性参数,默认,不重要 FastMAPeriod - macd快线周期 SlowMAPeriod - macd慢线周期 SignalMAPeriod - macd信号周期 applied_price - macd应用价格 show_histogram - 是否显示macd柱体 separator2 - 说明性参数,默认,不重要 drawIndicatorTrendLines - 是否在指标附图上画背离线 drawPrice
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
Pandora Gold
Nguyen Hang Hai Ha
Auto-trading robot Pandora Gold  gives you the advantage of accuracy, quick execution of trade orders when trading signals appear. Pandora Gold EA analyzes price movements combining short-term trend patterns to select accurate trading signals with high probability. The EA does not use a hard Stop Loss, but it has a Closed all on Friday feature, it also uses different position management strategies for each situation to reduce risk. The EA is programmed specifically for the gold market ( XAUUSD
Smart Reversal Signal
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.
该产品的买家也购买
Atomic Analyst
Issam Kassas
5 (1)
首先值得强调的是,该交易指标是非重绘、非延迟的指标,这使其成为手动和机器人交易的理想选择。 Atomic Analyst是一种PA价格行动指标,利用价格的力量和动量来寻找市场上更好的机会。配备了高级过滤器,可帮助去除噪音和假信号,并提高交易潜力。使用多层复杂的指标,Atomic Analyst扫描图表,并将复杂的数学计算转化为任何初学者都能理解并用来做出一致交易决策的简单信号和颜色。 “Atomic Analyst”是专为新手和经验丰富的交易者量身定制的综合交易解决方案。它将高级指标和一流功能融合为一体的交易策略,使其成为所有类型交易者的多功能选择。 日内交易和剥头皮策略:专为快速准确的日内交易和短期交易而设计。 日内和摆动交易策略:可用作追求价格大幅波动的日内和摆动交易者的可靠工具。 多货币和市场:凭借其可靠的精度,在不同的工具和市场上运作。 多个时间框架:可在多个时间框架上使用,性能良好。 稳定性:所有指标均不重绘、不重绘和不滞后,确保可靠的信号。 信号清晰度:提供箭头信号,用于清晰的入场和出场点。 实时警报:通过交易入场、SL和TP警报通知交易者。 多个利润水平:使用
Advanced Currency Strength28 Indicator
Bernhard Schweigert
4.9 (663)
目前26%的折扣 任何新手或专家交易者的最佳解决方案! 这个指标是一个独特的、高质量的、可负担得起的交易工具,因为我们纳入了一些专有的功能和一个新的公式。只需一个图表,你就可以读出28个外汇对的货币强度!想象一下,你的交易将如何得到改善,因为你的交易是在你的手中进行的。想象一下,你的交易将如何改善,因为你能够准确地确定新趋势或剥头皮机会的触发点? 用户手册:点击这里  https://www.mql5.com/en/blogs/post/697384 这是第一本,原版的! 不要买一个毫无价值的崇拜者的克隆品。 特别的 子窗口中的箭头显示强劲的货币势头GAP将指导你的交易! 当基础货币或报价货币处于超卖/超买区域(外盘斐波那契水平)时,在个人图表的主窗口中出现警告信号。 当货币力量从外围区间回落时,回撤/反转警报。 十字星模式的特别警报 可选择多个时间框架,以快速查看趋势! 货币强度线在所有的时间框架中都非常平稳,当使用较高的时间框架来识别总体趋势,然后使用较短的时间框架来确定精确的入口时,效果非常好。你可以根据自己的意愿选择任何时间框架。每个时间框架都由其自身进
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           
目前八折优惠! 对任何新手或专家交易者来说都是最好的解决方案! 这个仪表板软件适用于28种货币对。它基于我们的两个主要指标(高级货币强度28和高级货币冲动)。它对整个外汇市场提供了一个伟大的概述。它显示高级货币强度值,货币运动速度和28个外汇对在所有(9)时间段的信号。想象一下,当你可以使用图表上的单一指标观察整个市场,以确定趋势和或剥头皮的机会时,你的交易将得到改善 我们已经在这个指标中建立了一些功能,使你更容易识别强势和弱势货币,同时识别和确认潜在的交易。该指标以图形方式显示货币的强势或弱势是增加还是减少,以及它在所有时间段的表现。 增加的新功能是动态市场斐波那契水平,它适应当前的市场条件变化,这是一个已经在我们的高级货币强度28和高级货币冲动指标中使用的成熟的加分项。 在交易时,总是将弱势货币和强势货币配对,这个新指标将帮助你做到这一点。 用户手册:点击这里  https://www.mql5.com/en/blogs/post/708783 特点  显示每个时间段的ACS28和GAP-speed(冲动)的货币强度值。 列:颜色代码以7种颜色
Scalper Inside PRO
Alexey Minkov
4.75 (55)
SALE NOW! Limited Time Offer! An exclusive indicator that utilizes an innovative algorithm to swiftly and accurately determine the market trend. The indicator automatically calculates opening, closing, and profit levels, providing detailed trading statistics. With these features, you can choose the most appropriate trading instrument for the current market conditions. Additionally, you can easily integrate your own arrow indicators into Scalper Inside Pro to quickly evaluate their statistics and
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   -  
Quantum Trend Sniper Indicator MT4
Bogdan Ion Puscasu
4.59 (39)
介绍   量子趋势狙击指标 ,突破性的 MQL5 指标,正在改变您识别和交易趋势反转的方式!由拥有超过13年交易经验的资深交易员团队开发,     量子趋势狙击指标   旨在通过其创新的方式以极高的准确度识别趋势反转,将您的交易之旅推向新的高度。 ***购买量子趋势狙击指标,即可免费获得量子突破指标!*** 当量子突破指标识别出趋势反转时,它会向您发出警报和信号箭头,并建议您三个止盈水平。 它既适合新手交易者,也适合专业交易者。 量子 EA 通道:       点击这里 MT5版本:       点击这里 建议: 时间范围:  所有时间范围。为了获得最佳结果,我们建议在 M15、M30 和 H1 时间范围内使用它。 货币对:欧元兑美元、英镑兑美元、澳元兑美元、欧元兑英镑, EURAUD, XAUUSD 账户类型:ECN、Raw 或 Razor,点差极低 经纪时间:任意 经纪商:IC Markets、Pepperstone with Raw 和 Razor 的点差最低 建议止损:50 点 建议止盈水平:20 点、50 点和 1
Quantum Breakout Indicator PRO
Bogdan Ion Puscasu
4.96 (26)
介绍     Quantum Breakout PRO   ,突破性的 MQL5 指标,正在改变您交易突破区域的方式!   Quantum Breakout PRO 由拥有超过 13 年交易经验的经验丰富的交易者团队开发,旨在通过其创新和动态的突破区域策略将您的交易之旅推向新的高度。 量子突破指标将为您提供带有 5 个利润目标区域的突破区域的信号箭头,以及基于突破框的止损建议。 它既适合新手交易者,也适合专业交易者。 量子 EA 通道:       点击这里 MT5版本:   点击这里 重要的!购买后请私信我领取安装手册。 建议: 时间范围:M15 货币对:GBPJPY、EURJPY、USDJPY、NZDUSD、XAUUSD 账户类型:ECN、Raw 或 Razor,点差极低 经纪商时间:GMT +3 经纪商:IC Markets、Pepperstone with Raw 和 Razor 的点差最低 规格: 不重漆! 最多 5 个建议利润目标区域 建议止损水平 可定制的盒子。您可以设置自己的 Box Time Start 和 Box Time E
Advanced Supply Demand
Bernhard Schweigert
4.92 (310)
现在优惠 33%! 任何新手或专业交易者的最佳解决方案! 该指标是一款独特、高质量、且价格合理的交易工具,因为我们已经整合了许多专有功能和新公式。 依据此更新,您将能够显示双重时间帧区域。 您不仅可以显示一个较高的时间帧,还可以同时显示图表时间帧,加上更高的时间帧:显示嵌套时区。 供需双方所有交易者都会喜欢它。 :) 重要信息披露 高级供需的最大潜力,请访问 https://www.mql5.com/zh/blogs/post/720245   想象您的交易如何得以改善,是因为您能够精准定位入场或目标位吗? 构建于新的底层算法,它可以更轻松地识别出买卖双方之间的潜在失衡。 这是因为它以图形方式展示供需最强劲区域,及其过去的表现(显示旧区域)。 这些功能旨在帮助您更轻松地发现最佳入场区域和价位。 现在您可以针对您的交易品种和时间帧来优化和编辑区域强度! 高级供需指标适用于所有产品和时间帧。 它是一个新的公式,非常新的功能是两个区域强度函数可由用户输入进行调整! 这在交易中是一大优势。 当您学习如何使用专有功能,例如带有价格游离最小 X 因子的区域强度时,您能够判断该区域强劲与否。 供
引入神奇外汇指标:释放精准交易的力量 你是否厌倦了寻找在所有时间框架上都能取得出色结果的完美外汇指标?别再继续寻找了!神奇外汇指标已经来到,改变您的交易体验,将您的利润推向新的高度。 神奇外汇指标基于尖端技术和多年的精心开发,堪称外汇市场上的强大和精确的巅峰之作。这个卓越的工具旨在满足各个层次的交易者需求,在追求持续盈利性方面提供无与伦比的优势。 神奇外汇指标的独特之处在于其无与伦比的适应性。无论您是日内交易者、波段交易者还是更喜欢长期持仓,该指标都经过优化,能在所有时间框架上取得出色的结果。然而,当在1小时时间框架上使用时,它的准确性和捕捉市场复杂走势的能力得到真正展示。 准备好对神奇外汇指标的准确性和可靠性感到惊讶。其先进的算法无缝结合了强大的指标、统计分析和趋势识别,实时为您提供全面的市场视图。指标的智能和动态信号使您能够自信地做出明智的交易决策,最大限度地提高获胜交易的机会。 不再犹豫和迷茫。神奇外汇指标消除了交易的猜测,使您在市场参与者中具有独特的优势。其用户友好的界面和直观的设计使得无论是经验丰富的专业人士还是初学者都能轻松掌握这一卓越工具的力量。 有了神奇外汇指标的支持,
Entry Points Pro
Yury Orlov
4.7 (225)
这是一款 MT4 的趋势指标,可提供准确的入场交易信号,且无重绘或延迟。 它可应用在任何金融资产:外汇、加密货币、贵金属、股票、指数。 最好的结果出现在 M15+ 的时间帧内。 指标的 MT5 版本 重要! 购买后请联系我,以便获取详细指南和奖励。 视频 (6:22) - 一个信号赢取的利润等于指标价格的三倍。 视频 (4:44) - 它如何在测试器中工作,我的提示和技巧。 视频 (1:44) - 有关它如何处理加密货币和指数的几句话。 大多数交易者在 Entry Points Pro 指标的帮助下,在第一个交易周内就改善了他们的交易结果。 Entry Points Pro 指标的益处 入场信号无重绘或延迟 如果信号出现,并得到确认(如果信号所在烛条已收盘),则它不会再消失;不像是重绘指标,它会导致重大的财产损失,因为它们可以在显示信号后再将其删除。 无差错开仓 指标算法可令您找到入场交易(买入或卖出资产)的理想时机,从而提高每位交易者的成功率。 Entry Points Pro 可操作任何资产 它允许您在 MT4 平台上交易任何经纪商提供的加密货币、股票、
TrendMaestro
Stefano Frisetti
5 (2)
note: this indicator is for METATRADER4, if you want the version for METATRADER5 this is the link: TRENDMAESTRO recognizes a new TREND in the bud, he never makes mistakes. The certainty of identifying a new TREND is priceless. DESCRIPTION TRENDMAESTRO identifies a new TREND in the bud, this indicator examines the volatility, volumes and momentum to identify the moment in which there is an explosion of one or more of these data and therefore the moment in which prices have strong probability of f
FX Power MT4 NG
Daniel Stein
5 (8)
通过 mql5 和 Telegram 上 的晨间简报获取每日市场更新,包括详细信息和屏幕截图 ! FX Power MT4 NG 是我们长期以来非常受欢迎的货币强度计算器 FX Power 的下一代产品。 这款下一代强度计算器能提供什么?您所喜爱的原版 FX Power 的所有功能 附加功能 黄金/XAU 强度分析 更精确的计算结果 可单独配置的分析周期 可自定义计算限制,以获得更好的性能 为希望查看更多信息的用户提供特殊的多实例设置 无尽的图形设置,可在每个图表中设置您最喜欢的颜色 无数的通知选项,让您再也不会错过任何重要信息 采用 Windows 11 和 macOS 风格的全新圆角设计 神奇的移动指标面板 FX Power 主要功能 所有主要货币的完整强势历史 所有时间框架内的货币强弱历史 所有经纪商和图表的计算结果完全相同 100% 可靠的实时计算 -> 无重绘 可通过下拉列表选择分析时段 通过自定义模式单独配置分析时段 可在一个图表中使用多个实例 可移动 FX Power 显示屏(通过拖放) 适用于高分辨率 QHD、UHD 和 4K 显示器 自动终端配置 针对平板电脑
Price Action Entry Alerts
Stephen Sanjeeve Sahayam
5 (3)
该指标筛选每个柱的买入或卖出压力,并识别 4 种具有最高交易量的蜡烛形态。然后使用多个线性过滤器过滤这些蜡烛以显示买入或卖出信号。结合更高的时间框架方向以及在高交易量时段进行交易时,信号效果最佳。所有过滤器都是可定制的并且独立工作。单击按钮即可查看单个方向的信号。 该指标还包含最重要的价格行为和智能货币概念,可以帮助您的决策过程。 信号和交易教育集于一工具之中。 特征 : 信号不会重新绘制。 识别吞没蜡烛、拒绝蜡烛、扩展范围蜡烛和 Pinbar 蜡烛。 显示每个有效信号的多个入场点、止损和多个止盈水平。 按高容量会话进行过滤。 按支撑/阻力位和蜡烛结构过滤。 按 MACD 柱状图过滤。 ICT 买方和卖方流动性水平(亚洲突袭/伦敦突袭/犹大摇摆)。 洁净空间或间隙检测。 识别停止搜寻级别。 基于纯粹的价格行为自动绘制支撑/阻力位。 前一日高点和前日低点。 心理数字和整点、半点和四分之一点的图表水平。 显示基于动态移动平均线的价格交叉和回调。 每日开盘价。 识别 HH、HL、LL 和 LH 点。 内置蜡烛倒计时和符号传播。 内置损益信息面板。 私人导师小组访问。 包括教育、分析和支
FX Volume
Daniel Stein
4.6 (35)
通过 mql5 和 Telegram 上 的 " 晨间简报 "获取每日市场更新,包括详细信息和屏幕截图 ! 外汇交易量(FX Volume)是第一个也是唯一一个从经纪商角度真正洞察市场情绪的交易量指标。 直接在您的图表上看到这些信息是真正改变游戏规则和突破性的交易解决方案。 受益于独特的市场数据洞察,如 比率(Ratios )显示货币多头和空头头寸的比率(百分比 比率变化 显示所选时间段内的多头比率及其百分比变化 总交易量 显示货币的总交易量(多头和空头),以手为单位 多头 交易量显示货币所有多头头寸的交易量 空头 交易量显示所有货币空头头寸的交易量 净多头 显示净多头交易量,即所有多头头寸减去所有空头头寸(以手为单位)。 净多头百分比 显示货币净多头交易量的变化 请阅读我们的基本教程 -> "如何使用外汇交易量进行交易 " 获取更多信息,如常见问题、交易技巧和教程视频,请访问我们的 外汇交易量公共信息频道 请 安装并运行 SI Connect 以建立与我们数据中心的持续连接 背景信息 我们都知道,外汇是一个分散的市场。这就是为什么我们必须打破常规思维,开发一个独
Up down v6T
Guner Koca
5 (1)
Thise indicator is up down v6  comes with tradingwiev version. purchased people, after installed on terminal ,contact me on mql5  to get BONUS  TradingView version. up-down indicator is no repaint and works all pairs and lower than weekly time frames charts. it is suitable also 1 m charts for all pairs. and hold long way to signal. dont gives too many signals. when red histogram cross trigger line that is up signal.and price probably will down when blue histogram cross trigger line that is dow
How to use Pair Trading Station Pair Trading Station is recommended for H1 time frame and you can use it for any currency pairs. To generate buy and sell signal, follow few steps below to apply Pair Trading Station to your MetaTrader terminal. When you load Pair Trading Station on your chart, Pair Trading station will assess available historical data in your MetaTrader platforms for each currency pair. On your chart, the amount of historical data available will be displayed for each currency pai
Cycle Sniper
Elmira Memish
4.4 (35)
NEW YEAR SALE PRICE FOR LIMITED TIME!!! Please contact us after your purchase and we will send you the complimentary indicators to complete the system Cycle Sniper is not a holy grail but when you use it in a system which is explained in the videos, you will feel the difference. If you are not willing to focus on the charts designed with Cycle Sniper and other free tools we provide, we recommend not buying this indicator. We recommend watching the videos about the indiactor and system before pu
PTS Precision Index Oscillator V2
PrecisionTradingSystems
5 (1)
精密指数振荡器(Pi-Osc)由Precision Trading Systems的Roger Medcalf开发 版本2经过精心重新编码,以在您的图表上加载速度非常快,还加入了一些其他技术改进,以提高体验。 Pi-Osc旨在提供准确的交易定时信号,旨在找到极端的耗尽点,这些点是市场被迫去触及,以清理每个人的止损单。 该产品解决了一个古老的问题,即知道极端点在哪里,这使得交易员的生活变得更加简单。 这是一个高度复杂的共识指标,与行业标准的振荡器相比,具有一些强大的区别。 它使用的一些特征包括需求指数、资金流动、RSI、随机指标、模式识别、成交量分析、标准偏差极端点以及不同长度上述各种变化的分歧。 乍一看,对于未经培训的人来说,它似乎与任何其他振荡器没有什么不同,但当与其他振荡器(如RSI或动量等)相对比时,这个指标的真正威力开始显现。 据我所知,没有其他振荡器可以频繁地精确指出顶部和底部,具有相同的定期效率。 精密指数振荡器由许多不同的数学方程组成,用于测量多个时间框架采样中的价格和成交量变动,从而高度准确地预测趋势可能发生转折的位置。 PTS P
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 美元! 您可以在 Strategy Tester 上测试该指标(启用可视模式)。如果您喜欢在实时图表上进行测试,也可以给我发消息以获取 7 天试用版。 视频教程也可在说明下方获得更多详细信息。 如果您有任何问题或需要任何帮助,请与我联系。 TakePropips Donchian Trend Pro 指标适用于所有外汇对、金属、商品、指数和加密货币。 主要特点 交易信号 - 检测多个时间范围内所有货币对的买卖机会。它将为您提供警报并在图表上绘制交易信号,最多 3 个止盈价和一个止
GOLD Impulse with Alert
Bernhard Schweigert
4.56 (9)
这个指标是我们2个产品 Advanced Currency IMPULSE with ALERT  +   Currency Strength Exotics 的一个超级组合。 它适用于所有时间框架,并以图形方式显示8种主要货币和一种符号的强势或弱势冲动! 该指标专门用于显示任何符号的货币强度加速,如黄金、异国货币对、商品、指数或期货。这是它的第一个指标,任何符号都可以被添加到第9行,以显示黄金、白银、石油、DAX、US30、MXN、TRY、CNH等的真实货币强度加速(冲动或速度)。 建立在新的基础算法上,它使识别和确认潜在的交易更加容易。这是因为它以图形方式显示了一种货币的强势或弱势是否正在加速,并测量了这种加速的速度--把它想象成你汽车中的速度表。当你加速时,事情显然会发生得更快,这在外汇市场上也是一样的,即如果你配对的货币正在向相反的方向加速,你就会发现一个潜在的有利可图的交易。 动态市场斐波那契28水平被用作警报触发器,将适应市场活动。如果冲动击中黄色触发线,你将收到警报。然后你就知道作为一个交易员应该做什么。货币对和方向已经给出。只需点击警报按钮,就可以
PTS Divergence Buy Finder
PrecisionTradingSystems
PTS - Divergence Buy Finder 由Precision Trading Systems制作 Precision Divergence Finder旨在精确找到市场底部,并经常成功。在技术分析中,挑选底部通常比挑选顶部容易得多,这个工具正是为了完成这个任务而设计的。在识别出牛市背离后,等待趋势上升再购买是明智的。您可以使用10或20个周期的最高点进场,或者使用15-30周期的移动平均线上升来识别趋势变化。 这个复杂的算法会实时逐根柱状图寻找并计算活跃的需求指数背离的数量。 该模型观察市场价格何时创出新低,而需求指数未创新低,从而产生背离。 该指标使用两个设置。     • 需求指数(DI)长度,它将为指标提供寻找的对象,并将为您选择的长度上的任何DI背离进行查找。     • 差异,这是[DI值现在]与[DI值长达200个周期以前]之间的背离量,对于它从各种回望期间找到的每个背离,它将在指标窗口中生成[1]输出。 最多检查20个周期,最大输出值将显示为20。 建议的设置 需求指数长度从15到100都可以使用,但最佳范围在20到60之间。 背离的差异为0.1至2
PTS Divergence Sell Finder V2
PrecisionTradingSystems
PTS Divergence Finder Sell Indicator(Roger Medcalf出品) - Precision Trading Systems。 该指标只提供看跌 - 卖出信号。 首先,我多次被问及为什么多年来一直提供买入信号的差异指标,而没有提供卖出差异指标。 我回答说,卖出差异信号不如买入差异信号可靠,这仍然是事实。 我们找到了一些解决办法,不是屈服于同行的压力,也不是修改我在十五年前制作的这个指标,而是通过更改默认设置来使其更加严格。 PTS差异查找器卖出指标是如何工作的? PTS差异查找器卖出指标准确测量了发生在需求指数中的差异数量,这是一个基于成交量的指标。由于MT4提供的是交易量而不是成交量,因此基础需求指数指标中发生的波动大约要小10倍,因此必须减小下面所述的差异输入。 这是一个子图二的柱状图样式指标,它绘制出看起来像是从底部升起的石笋一样的尖峰。 该指标检查了您指定的长度的基于成交量的需求指数指标的多个回溯期。它找到了价格中的高点,其中DI没有形成新的“局部”高点,并且与您输入的“差异”设置相差较远。 在众多人投票市场方向的流动市场中,效果最好。 每
TPA True Price Action indicator reveals the true price action of the market makers through 100% non-repainting signals (except early signals mode) strictly at the close of a candle! TPA shows entries and re-entries, every time the bulls are definitely stronger than the bears and vice versa. Not to confuse with red/green candles. The shift of power gets confirmed at the earliest stage and is ONE exit strategy of several. There are available now two free parts of the TPA User Guide for our custo
Indicator : RealValueIndicator Description : RealValueIndicator is a powerful tool designed specifically for trading on the EURUSD pair. This indicator analyzes all EUR and USD pairs, calculates their real currency strength values, and displays them as a single realistic value to give you a head start on price. This indicator will tell you moves before they happen if you use it right. RealValueIndicator allows you to get a quick and accurate overview of the EURUSD currency pair tops and bottoms,
XQ Indicator MetaTrader 4
Marzena Maria Szmit
3 (2)
Step into the realm of Forex trading with confidence and precision using XQ, a cutting-edge Forex indicator designed to elevate your trading game to unprecedented heights. Whether you're a seasoned trader or just stepping into the world of currency exchange,   XQ Forex Indicator   empowers you with the insights and signals needed to make informed trading decisions. The signal conditions are a combination of three indicators, and XQ Forex Indicator only display  medium and long-term trends . The
介绍 ON Trade Waves Patterns Harmonic Elliot Wolfe,这是一款高级指标,旨在使用手动和自动方法检测各种市场模式。以下是它的工作原理: 谐波模式: 该指标可以识别出现在您图表上的谐波模式。这些模式对于练习谐波交易理论的交易者非常重要,正如Scott Carney的书《谐波交易第1卷和第2卷》所描述的那样。无论您是手动绘制它们还是依赖自动检测,ON Trade Waves Patterns都可以胜任。 控制面板: 我们配备了一个用户友好的控制面板,它会保存您的图表和时间帧设置,使您可以轻松切换不同配置。您甚至可以最小化它以最大化图表空间。如果您更喜欢使用其他分析工具,只需单击关闭按钮即可隐藏所有指标数据。 模板保存: 当您自定义设置或添加其他指标,如移动平均线或布林带时,该指标会自动保存您的模板。这意味着您可以随时轻松加载您喜欢的设置。 优化显示: 对于Windows 10用户,我们建议调整您的DPI设置以获得高清设备上的最佳屏幕体验。右键单击MetaTrader图标,选择“兼容性”,然后选择“更改高DPI设置”,将其设置为“系统(增强)”。
Currency Strength Exotics
Bernhard Schweigert
4.88 (33)
目前8折优惠! 对任何新手或专家交易者来说都是最好的解决方案! 这个指标是专门用来显示任何符号的货币强度,如异国货币对、商品、指数或期货。它是同类产品中的第一个,任何符号都可以添加到第9行,以显示黄金、白银、石油、DAX、US30、MXN、TRY、CNH等的真实货币强度。这是一个独特的、高质量的、负担得起的交易工具,因为我们已经纳入了一些专有的功能和一个新的公式。想象一下,你的交易将如何改善,因为你能够准确地确定新趋势或剥头皮机会的触发点? 用户手册:点击这里   https://www.mql5.com/en/blogs/post/708876 它适用于所有时间框架。你将很快能够看到TREND! 根据新的基础算法设计,它使识别和确认潜在交易变得更加容易。这是因为它以图形方式显示了8种主要货币和一种符号的强弱。 该指标显示了8种主要货币(澳元加元瑞士法郎欧元英镑日元新西兰美元)的强弱线,再加上一个符号! 该指标显示了符号的真实价值。例如:对于XAUUSD(黄金):价格以美元报价。如果黄金在上涨,你怎么能知道是黄金的强势还是美元的弱势?只有当黄金走强时,我们才会进行
Royal Scalping Indicator M4
Vahidreza Heidar Gholami
4.17 (6)
Royal Scalping Indicator is an advanced price adaptive indicator designed to generate high-quality trading signals. Built-in multi-timeframe and multi-currency capabilities make it even more powerful to have configurations based on different symbols and timeframes. This indicator is perfect for scalp trades as well as swing trades. Royal Scalping is not just an indicator, but a trading strategy itself. Features Price Adaptive Trend Detector Algorithm Multi-Timeframe and Multi-Currency Trend Low
Gartley Hunter Multi MT4
Siarhei Vashchylka
4.67 (3)
Gartley Hunter Multi - An indicator for searching for harmonic patterns simultaneously on dozens of trading instruments and on all classic timeframes: (m1, m5, m15, m30, H1, H4, D1, Wk, Mn). Manual (Be sure to read before purchasing) | Version for MT5 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 classic timeframes 3. Search for patterns of all possible sizes. Fr
作者的更多信息
This all-in-one indicator displays real-time market structure (internal & swing BOS / CHoCH), order blocks, premium & discount zones, equal highs & lows, and much more...allowing traders to automatically mark up their charts with widely used price action methodologies. Following the release of our Fair Value Gap script, we received numerous requests from our community to release more features in the same category. "Smart Money Concepts" (SMC) is a fairly new yet widely used term amongst price a
The Bheurekso Pattern Indicator for MT5 helps traders automatically identify candlestick pattern that formed on the chart base on some japanese candle pattern and other indicator to improve accurate. This indicator scans all candles, recognizes and then displays any candle patterns formed on the chart. The candle displayed can be Bullish or Bearish Engulfing, Bullish or Bearish Harami, and so on. There are some free version now but almost that is repaint and lack off alert function. With this ve
This indicator provides the ability to recognize the SMC pattern, essentially a condensed version of the Wyckoff model. Once the pattern is confirmed by RTO, it represents a significant investment opportunity.    There are numerous indicators related to SMC beyond the market, but this is the first indicator to leverage patterns to identify specific actions of BigBoy to  navigate the market. Upgrade 2024-03-08: Add TP by RR feature. The SMC (Smart Money Concept)   pattern   is a market analysis m
Breaker Blocks with Signals
Minh Truong Pham
5 (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 te
Overview The   Volume SuperTrend AI   is an advanced technical indicator used to predict trends in price movements by utilizing a combination of traditional SuperTrend calculation and AI techniques, particularly the k-nearest neighbors (KNN) algorithm. The Volume SuperTrend AI is designed to provide traders with insights into potential market trends, using both volume-weighted moving averages (VWMA) and the k-nearest neighbors (KNN) algorithm. By combining these approaches, the indicat
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 builds upon the previously posted Nadaraya-Watson Estimator. Here we have created an envelope indicator based on kernel smoothing with integrated alerts from crosses between the price and envelope extremities. Unlike the Nadaraya-Watson Estimator, this indicator follows a contrarian methodology. Please note that the indicator is subject to repainting. The triangle labels are designed so that the indicator remains useful in real-time applications. Settings Window Size: Dete
The Inversion Fair Value Gaps (IFVG) indicator is based on the inversion FVG concept by ICT and provides support and resistance zones based on mitigated Fair Value Gaps (FVGs). Image 1   USAGE Once mitigation of an FVG occurs, we detect the zone as an "Inverted FVG". This would now be looked upon for potential support or resistance. Mitigation occurs when the price closes above or below the FVG area in the opposite direction of its bias. (Image 2) Inverted Bullish FVGs Turn into P
The Breaker Blocks with Signals indicator aims to highlight a complete methodology based on breaker blocks. Breakout signals between the price and breaker blocks are highlighted and premium/discount swing levels are included to provide potential take profit/stop loss levels. This script also includes alerts for each signal highlighted.   SETTINGS   Breaker Blocks Length: Sensitivity of the detected swings used to construct breaker blocks. Higher values will return longer te
The ICT Silver Bullet indicator is inspired from the lectures of "The Inner Circle Trader" (ICT) and highlights the Silver Bullet (SB) window which is a specific 1-hour interval where a Fair Value Gap (FVG) pattern can be formed. A detail document about ICT Silver Bullet here . There are 3 different Silver Bullet windows (New York local time): The London Open Silver Bullet (3 AM — 4 AM ~ 03:00 — 04:00) The AM Session Silver Bullet (10 AM — 11 AM ~ 10:00 — 11:00) The PM Session Silver Bullet
This indicator presents an alternative approach to identify Market Structure. The logic used is derived from learning material created by   DaveTeaches (on X) When quantifying Market Structure, it is common to use fractal highs and lows to identify "significant" swing pivots. When price closes through these pivots, we may identify a Market Structure Shift (MSS) for reversals or a Break of Structure (BOS) for continuations. The main difference with this "protected" logic is in how we determine
The Buyside & Sellside Liquidity indicator aims to detect & highlight the first and arguably most important concept within the ICT trading methodology,   Liquidity   levels. SETTINGS Liquidity Levels Detection Length: Lookback period Margin: Sets margin/sensitivity for a liquidity level detection Liquidity Zones Buyside Liquidity Zones: Enables display of the buyside liquidity zones. Margin: Sets margin/sensitivity for the liquidity zone boundaries. Color: Color option
This all-in-one indicator displays real-time market structure (internal & swing BOS / CHoCH), order blocks, premium & discount zones, equal highs & lows, and much more...allowing traders to automatically mark up their charts with widely used price action methodologies. Following the release of our Fair Value Gap script, we received numerous requests from our community to release more features in the same category. //------------------------------------// Version 1.x has missing functions + PDAr
The   ICT Unicorn Model   indicator highlights the presence of "unicorn" patterns on the user's chart which is derived from the lectures of   "The Inner Circle Trader" (ICT) . Detected patterns are followed by targets with a distance controlled by the user.   USAGE (image 2) At its core, the ICT Unicorn Model relies on two popular concepts, Fair Value Gaps and Breaker Blocks. This combination highlights a future area of support/resistance. A   Bullish Unicorn Pattern   consists ou
This is a Forex Scalping Trading Sytem based on the Bollinger Bands.  Pairs:Major Time frame: 1M or higher. Spread max:0,0001.  Indicators (just suggestion) Bollinger bands (20, 2); ADX (14 period); RSI   (7 period ). Y ou should only trade this system between 2am to 5am EST, 8am to 12am EST and 7.30pm to 10pm EST. Do not scalp 30 minutes before a orange or red news  report and not for a hour afterwards.   Setup: is for price to move above the lower or lower Bollinger Bands, RSI raise above the
FREE
This is addition of  Effective SV squeeze momentum  that add bolliger band and Keltner channel to chart window.  Squeeze momentum introduced by “John Carter”, the squeeze indicator for MT5 represents a volatility-based tool. Regardless, we can also consider the squeeze indicator as a momentum indicator, as many traders use it to identify the direction and strength of price moves. In fact, the Tradingview  squeeze indicator shows when a financial instrument is willing to change from a trending ma
FREE
Sessions by LUX in MT5
Minh Truong Pham
5 (1)
This indicator shows when user set sessions are active and returns various tools + metrics using the closing price within active sessions as an input. Users have the option to change up to 4 session times. The indicator will increasingly lack accuracy when the chart timeframe is higher than 1 hour. Settings Sessions Enable Session: Allows to enable or disable all associated elements with a specific user set session. Session Time: Opening and closing times of the user set session
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
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
ICT Concepts
Minh Truong Pham
5 (2)
The ICT Concepts indicator regroups core concepts highlighted by trader and educator "The Inner Circle Trader" (ICT) into an all-in-one toolkit. Features include Market Structure (MSS & BOS), Order Blocks, Imbalances, Buyside/Sellside Liquidity, Displacements, ICT Killzones, and New Week/Day Opening Gaps. It’s one kind of Smart money concepts. USAGE: Please read this document  !    DETAILS Market Structure Market structure labels are constructed from price breaking a prior extreme point. T
The FollowLine indicator is a trend following indicator. The blue/red lines are activated when the price closes above the upper Bollinger band or below the lower one. Once the trigger of the trend direction is made, the FollowLine will be placed at High or Low (depending of the trend). An ATR filter can be selected to place the line at a more distance level than the normal mode settled at candles Highs/Lows. Some features: + Trend detech + Reversal signal + Alert teminar / mobile app
There are many linear regression indicators out there, most of them draw lines or channels, but this one actually draws a chart. The beauty of the indicator like Heiken Ashi is it removes a lot of market noise. 4 (OHLC) arrays are filled with Linear Regression(LR) values of each price for the LR period (default=14). The period of the Linear Regression is adjustable dependant on the market conditions. The SMA (default=14) also has period adjustment. Candles are generated with Green for 'Up' cand
The ICT Silver Bullet indicator is inspired from the lectures of "The Inner Circle Trader" (ICT) and highlights the Silver Bullet (SB) window which is a specific 1-hour interval where a Fair Value Gap (FVG) pattern can be formed. A detail document about ICT Silver Bullet   here . There are 3 different Silver Bullet windows (New York local time): The London Open Silver Bullet (3 AM — 4 AM ~ 03:00 — 04:00) The AM Session Silver Bullet (10 AM — 11 AM ~ 10:00 — 11:00) The PM Session Silver Bulle
A problem when indicator call webrequest is "The WebRequest() function is synchronous, which means its breaks the program execution and waits for the response from the requested server. Since the delays in receiving a response can be large, the function is not available for calls from indicators, because indicators run in a common thread shared by all indicators and charts on one symbol. Indicator performance delay on one of the charts of a symbol may stop updating of all charts of the same symb
FREE
An Implied Fair Value Gap (IFVG) is a three candles imbalance formation conceptualized by ICT that is based on detecting a larger candle body & then measuring the average between the two adjacent candle shadows. This indicator automatically detects this imbalance formation on your charts and can be extended by a user set number of bars. The IFVG average can also be extended until a new respective IFVG is detected, serving as a support/resistance line. Alerts for the detection of bull
OVERVIEW K-means is a clustering algorithm commonly used in machine learning to group data points into distinct clusters based on their similarities. While K-means is not typically used directly for identifying support and resistance levels in financial markets, it can serve as a tool in a broader analysis approach. Support and resistance levels are price levels in financial markets where the price tends to react or reverse. Support is a level where the price tends to stop falling
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
筛选:
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