ML Lorentzian Classification for MT5

█ OVERVIEW

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

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

█ BACKGROUND

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

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

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

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

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

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

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

█ HOW TO USE

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

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

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

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

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

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

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

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


█ WORKS CITED

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

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

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

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

Note for buffer

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

+ index 0 is line value

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

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

+  index 5 is prediction

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

推荐产品
CRT Candle Range Theory HTF MT5.   Ultimate CRT Indicator: Advanced ICT Concepts and Malaysian SnR Trading System Master the Market Maker's Footprints with the Most Advanced Candle Range Theory Indicator Discounted   Price $50  !!     Secure your lifetime access now before it switches to subscription-only ! Unlock the true power of Smart Money Concepts (SMC) and trade precisely like the institutions with the Ultimate CRT Indicator . Built exclusively for serious traders, this indicator automate
Gecko EA MT5
Profalgo Limited
5 (1)
NEW PROMO: Only a few copies copies available at 349$ Next price: 449$ Make sure to check out our " Ultimate EA combo package " in our   promo blog ! Gecko runs a simple, yet very effective, proven strategy.  It looks for important recent support and resistance levels and will trade the breakouts.  This is a "real" trading system, which means it will use a SL to protect the account.  It also means it will not use any dangerous techniques like martingale, grid or averaging down. The EA shows its
Short Description Swing Timing Breakout EA is a smart Expert Advisor for MetaTrader 5 that combines trend filtering, momentum timing, and dynamic risk management to capture high-probability swing and breakout opportunities. Full Description Swing Timing Breakout EA is a professional trading robot designed for MetaTrader 5, suitable for traders who want a balance between automation, control, and disciplined risk management. This EA uses a trend-following and momentum confirmation approach ,
AW Heiken Ashi MT5
AW Trading Software Limited
AW Heiken Ashi — 智能趋势和止盈位指标。这款高级指标基于经典 Heiken Ashi 打造,专为交易者打造,灵活性更高、更清晰易懂。与标准指标不同, AW Heiken Ashi 有助于分析趋势、确定盈利目标并过滤虚假信号,从而提供更自信的交易决策。 设置指南和说明 - 此处 / MT4 版本 - 此处 Ventajas de AW Heiken Ashi: Funciona con cualquier activo y en cualquier plazo. Altamente adaptable al estilo del trader, Cálculo dinámico de niveles de entrada y salida, Interfaz fácil de usar + carga mínima en el terminal, Adecuado para su uso como estrategia comercial completa. Posibilidades: 1) Visualización avanzada de tendencias: C
Chỉ báo này sẽ thông báo cho bạn nếu cấu hình xu hướng thành công. Tín hiệu theo xu hướng không nên được tăng theo, nhưng tín hiệu mua ở mức giá thấp theo mô hình giao dịch thông thường của bạn, hoặc tín hiệu bán ở mức giá tốt, là một lựa chọn rất tốt. Hãy thiết lập nó trên khung thời gian lớn hơn và theo dõi các khung thời gian nhỏ hơn, bám sát các xu hướng chính. Tôi thường thiết lập ba khung thời gian gần nhau nhất và không bao giờ đi ngược tín hiệu của INdicator này. INdicator   này không có
Engulfing with EMAs Indicator Unlock the power of advanced candlestick pattern detection with the Engulfing with EMAs Indicator , a cutting-edge tool designed for MetaTrader 5. This futuristic indicator combines the precision of engulfing pattern analysis with the trend-following strength of Exponential Moving Averages (EMA 21 and EMA 50), empowering traders to identify high-probability setups across all currency pairs and timeframes. Key Features: Comprehensive Engulfing Detection : Detects b
Maximum Trend Arrows OT MT5
Mulweli Valdaz Makulana
STRICTLY FOR BOOM INDEX ONLY!!!!! Here I bring the Maximum Trend Arrows OT1.0 MT5 indicator. This indicator is made up of a combination of different trend indicators for entries and exits, for entries an orange arrow will paint on the chart below the current market and a red flag for closing of trades and it produces buy arrows only. When the orange arrow appears, it will appear along with it's sound to notify you. The 1H timeframe is recommended, don't use it anywhere else than on the 1H timefr
RBreaker
Zhong Long Wu
RBreaker Gold Indicators 是黄金期货一种短线日内交易策略,它结合了趋势跟踪和日内反转两种交易方式,既能捕捉趋势行情的利润,又能在行情反转时及时止盈并顺势反手。 该策略曾连续15年被美国《Futures Truth》杂志评选为前十大最赚钱的交易策略之一,具有很长的生命周期,至今仍在国内外普遍使用与研究。 本指标结合了2026年期货黄金的走势,依据14日ATR指标,分别定义了突破系数A,观察系数B,反转系数R更合理的数值,非常不错的指标,已实现年稳定盈利,值得推荐~ 以上指标适合高波动品种,参数适合期货黄金,股指期货等,如果需要其他品种行情,需要单独设定 突破系数A,观察系数B,反转系数R,进行回测才能使用。 欢迎指标售后有问题可以加+V:504282029
Has rsi signal
Evgenii Savinov
HAS RSI Signal — 带有止损/止盈计算的专业趋势指标 HAS RSI Signal 是一款强大的交易工具,结合了经典指标与现代噪声过滤算法。该指标通过 Heiken Ashi Smoothed (HAS) 平滑蜡烛图和 RSI 震荡指标进行市场分析,在趋势反转或价格退出超买/超卖区域时,为交易者提供清晰的人场信号。 主要优势: 双重过滤: 使用 Heiken Ashi Smoothed 算法消除市场“噪音”,同时通过 RSI 确认动能强度。 自动计算点位: 指标不仅提供信号,还会根据当前市场波动率 (ATR) 自动计算 止损 (Stop Loss) 和 止盈 (Take Profit) 点位。 视觉直观: 信号以彩色蜡烛图的形式直接显示在主图表上,保持交易界面的整洁有序。 多维度通知: 内置终端弹窗警报、声音提示以及手机推送通知 (Push),确保您不会错过任何交易机会。 核心原理: 指标持续监控 RSI 的极端区域。当价格离开临界区且 HAS 算法确认方向转变时,即生成交易信号。ATR 参数允许止损和止盈根据市场当前的波动性进行动态调整。 核心参数设置: InpPeri
-         What it does? Opens BUY (or SELL) orders automatically every X pips you decide. Closes each trade at your personal TP .  Works on any symbol: SP500, NAS100, GOLD, EURUSD, BTC... 100 % YOUR SETTINGS   What can you enter in the settings? - Trading direction: Buy or Sell - Entry level - Entry volume - Maximum number of buy orders - Maximum number of sell orders - Pips required for each new entry - Pips to take profit per trade - Stop Loss Level - Close all trades when SL level is hit Exam
BTC Trend Scalper MT5 趋势捕捉版 — 针对 BTCUSD 的精准动量交易 大家好,交易者们! 我是   BTC Trend Scalper MT5   — 一个智能的比特币交易专家顾问,旨在通过纪律严明的风险管理捕捉动量行情。 我 不是 马丁格尔策略。 我 不是 网格系统。 我 不是 赌博机器人。 我是一个 趋势跟踪型 scalper ,专为那些明白保护资本比追逐每一根蜡烛更重要的交易者而设计。 我的专长是什么? 比特币 (BTCUSD) 我的使命是什么? 在严格控险的同时,捕捉高概率的方向性行情。 为什么叫“趋势捕捉”? 许多比特币 EA 试图预测顶部和底部。 许多 scalper 对市场的每一次波动都过度交易。 我采取不同的方法。 我等待。 我通过蜡烛结构识别动量,通过趋势分析确认方向,然后仅在市场条件一致时入场。 当动量出现时,我参与。 当动量消失时,我离开。 没有情绪。 没有犹豫。 我的三层智能系统 第一层:动量蜡烛识别 我的入场系统刻意简单而有效。 对于买入: 前一根蜡烛收盘看涨。 对于卖出: 前一根蜡烛收盘看跌。 如果启
Divergence Matrix Pro for MetaTrader 5 Divergence Matrix Pro is a confirmed multi-oscillator divergence indicator for MetaTrader 5. It detects regular and hidden divergence between price and selected oscillators, then presents the confirmed structure through divergence lines, pivot labels, action markers, an optional current-timeframe Matrix Panel and optional alerts. The indicator is an analysis and confirmation tool. It does not open or close trades, and the signal score is not a win rate or a
Renko System
Marco Montemari
This indicator can be considered as a trading system. It offers a different view to see the currency pair: full timeless indicator, can be used for manual trading or for automatized trading with some expert advisor. When the price reaches a threshold a new block is created according to the set mode. The indicator beside the Renko bars, shows also 3 moving averages. Features renko mode median renko custom median renko 3 moving averages wicks datetime indicator for each block custom notification
Supply and Demand DE 灵感 EA 专业供需区交易系统与多时间框架确认 概述 这个高级专家顾问使用机构交易原则自动识别和交易高概率供需区。EA将经典的供需区检测与现代确认过滤器相结合,包括结构突破(BoS)、公允价值缺口(FVG)和更高时间框架验证。 设置文件链接: https://drive.google.com/drive/folders/1nkK8_dy0gi7G2bFvy-Gdq9vZxq8Gsd0q?usp=drive_link 核心交易策略 区域检测: 基于斐波那契脉冲验证自动识别供需区(默认2.6倍扩展) 使用强劲的方向性运动和最小回撤来验证区域 同时跟踪多达50个区域并自动管理区域 可视化区域绘制,可自定义颜色和透明度 入场方法: 检测有效的供需区形成 等待价格完全离开区域 监控价格回调至区域(在接近阈值内) 在较低时间框架上确认突破(默认M5) 执行市价订单,带有计算的止损和止盈 区域失效: 当价格收盘突破区域超过容忍阈值(默认10%)时,区域失效 失效区域显示为灰色并停止生成新信号 自动清理区域以保持图表清晰 高级过滤系统 结构突破(BoS)过
FREE
PipsPro Scalper Gold
Hayyu Imam Muhammad
3 (2)
*This product special for XAUUSD* pair. Therefore, all additional features and strategies in future updates will be included in this product . Published at 2026.04.18 |   --> NEXT PRICE $399 USD Please to send a private message after you make a purchase !!! PipsPro Scalper Gold (MT5) is an Expert Advisor developed exclusively for XAUUSD trading. It is compatible with both 2-digit and 3-digit brokers for the XAUUSD symbol. Before opening any position, the EA applies multiple filters to identify
# RSI Pro Alert - 高级RSI指标 一款功能强大的专业级RSI指标,具备智能警报、定时快照和多维度通知功能,助您精准把握市场机会! --- ## 核心特性 ### 智能信号识别 - **精准交叉检测** :自动识别RSI穿越超买/超卖水平的关键时刻 - **状态跟踪机制** :实时监控市场状态变化(超买/超卖/中性) - **首次加载通知** :指标加载时立即报告当前市场状态 ### 多维度警报系统 - **弹窗警报** :MT5原生弹窗提醒 - **声音警报** :支持自定义买入/卖出提示音 - **文件通知** :自动生成带时间戳的警报日志文件 - **冷却机制** :可自定义警报间隔,避免频繁打扰 ### 定时快照功能 - **定期报告** :可设置15分钟/30分钟/60分钟等间隔自动生成市场快照 - **完整信息** :快照包含RSI值、价格、状态、交易建议等完整信息 - **历史记录** :所有快照自动保存,便于复盘分析 ### 个性化定制 - **自定义水平** :支持调整超买(默认70)和超卖(默认30)
##   ONLY GOLD ##   Тiльки Золото ## **Mercaria Professional Trading Zones - Complete Guide** ## **Mercaria Professional Trading Zones - Повний посібник** ### **How Mercaria Zones Work / Як працюють зони Mercaria** **English:** Mercaria Zones is an advanced trading indicator that identifies high-probability support and resistance areas using ZigZag extremes combined with mathematical zone calculations. The indicator works on multiple timeframes simultaneously, providing a comprehensive view
All about time and price by ICT. This indicator provides a comprehensive view of ICT killzones, Silver Bullet times, and ICT Macros, enhancing your trading experience.  In those time windows price either seeks liquidity or imbalances and you often find the most energetic price moves and turning points. Features: Automatic Adaptation: The ICT killzones intelligently adapt to the specific chart you are using. For Forex charts, it follows the ICT Forex times: In EST timezone: Session: Asia: 20h00-0
Universal Alert
Dinara Sarvarova
Universal Alert 是一个通用的提醒指标。它可以与任何自定义指标配合使用,跟踪其读数,并在生成信号时通知交易者。 灵活的设置可以让你设置所有主要类型的信号,同时找到信号延迟与虚假信号的最佳平衡。 在为你的策略寻找指标时, Universal Alert 可以帮你验证任意自定义指标信号的可靠性。在日常交易中, Universal Alert 让你不必一直盯着指标的数值。 指标的主要功能和特点: 适用于任何自定义指标。 可以识别多达七种信号类型: IntersectionPrice - 价格与指标线交叉; IntersectionOscillator - 振荡器线穿过指定水平; RepulsedPrice - 价格从指标线反弹; RepulsedOscillator - 振荡器线从指定水平反弹; Bend - 指标线弯曲; Emergence - 指标缓冲区从空值或零值变为任意值; CrossingLine - 两条指标线相交。 当信号出现时,它可以: 在图表上显示提醒。 播放音频文件。 向您的手机发送推送通知。 发送电子邮件。 简单且通用的指标,具有最必要的输入参数,可精确调
关于指标 该指标基于金融工具收盘价的蒙特卡罗模拟。按照定义,蒙特卡罗是一种统计技术,用于通过基于之前观察的结果的随机数来模拟不同结果的概率。 它是如何工作的? 该指标通过基于历史数据模拟随时间变化的随机价格变动,为证券生成多个价格情景。每次模拟试验使用随机变量来有效地模拟未来在给定时间范围内的市场波动,重点在 收盘价 的波动。 蒙特卡罗模拟的优势 - 蒙特卡罗模拟通过在多种可能的未来情景下进行测试,有助于分析不同交易策略的风险。 - 它有助于确定策略在不同市场条件下的表现,包括罕见的极端事件(尾部风险)。 - 与依赖单点预测不同,蒙特卡罗提供了具有相关概率的潜在结果范围。这有助于理解盈利或亏损的可能性。 对于希望基于不同结果的概率而不是绝对预测来管理风险的交易者来说,蒙特卡罗是一个有用的工具。
Multi-Timeframe Heiken Ashi (Smoothed with Dashboard) Professional Market Structure Visualization with Weighted Confluence Scoring Transform your trading with crystal-clear multi-timeframe analysis. This indicator combines smoothed Heiken Ashi candles with an intelligent weighted scoring system to give you unprecedented clarity in any market condition. YOUR TRADING QUESTIONS – ANSWERED INSTANTLY: 1. What's the REAL trend direction? Dashboard Reveals:   Higher timeframe (MN1, W1, D1, H4) trend a
The indicator detects divergence signals - the divergences between the price peaks and the MACD oscillator values. The signals are displayed as arrows in the additional window and are maintained by the messages in a pop-up window, e-mails and push-notifications. The conditions which formed the signal are displayed by lines on the chart and in the indicator window. The indicator parameters MacdFast - fast MACD line period MacdSlow - slow MACD line period MacdSignal - MACD signal line period Macd
Classic SNR EA MetaTrader 5 智能交易系统 | 多品种支撑阻力交易,基于趋势逻辑 概述 Classic SNR Breakout EA 是一款专业的交易机器人,使用日线摆动点识别结构性支撑与阻力水平(Support & Resistance),并根据 H1 价格行为相对于这些水平的表现执行交易。EA 应用 双重逻辑 :在上涨趋势中,当 H1 收盘于 SNR 水平下方(拒绝信号)时做空;在下跌趋势中,当 H1 收盘于 SNR 水平上方(拒绝信号)时做多。当 H1 收盘价果断突破水平时,也会交易突破信号。 EA 可同时扫描多达 14 个交易品种,自动解析经纪商特定的品种名称和后缀。 本策略适用于理解结构性水平可根据市场环境既充当支撑/阻力又充当突破触发器的交易者。 工作原理 EA 分析日线收盘价,在可配置的回溯期内识别高点和低点。这些摆动点成为结构性的支撑和阻力水平。然后 EA 监控 H1 K线收盘价相对于每个 SNR 水平的表现,并应用 基于趋势的逻辑 来确定交易方向。 核心交易逻辑 EA 并非简单地单向交易突破。相反,它会评估价格位置和 H1 收盘行为: 价格
HAWK 4.0 — 黄金信号指标 最精准的交易信号指标 专为 XAUUSD(黄金)交易而设计。 基于 ATR 波段 + 枢轴点检测。 信号仅出现在真实反转点位。 不重绘。无延迟。无噪音。 您将获得 → 清晰的 BUY / SELL 箭头 → 自动 TP1 / TP2 / TP3 水平 → 自动 SL 止损水平 → 内置时间过滤器(UTC) → 实时成功率统计 → 完整的警报系统 专为以下设计 交易品种: XAUUSD(黄金) 时间周期: M3 / M5 交易时段: 伦敦 + 纽约 交易表现 成功率:       81% 不重绘:        运行时间:     2024年至今 订阅方案 1 个月  ——  $3000 3 个月  ——  $6000 6 个月  ——  $9000 包含更新 + 技术支持 + 设置文件。
HAshi-E is an enhanced way to analyze Heiken-Ashi signals. Briefing: Heiken-Ashi is particularly valued for its ability to filter out short-term volatility, making it a preferred tool for identifying and following trends, helps in decision-making regarding entry and exit points, and assists in distinguishing between false signals and genuine trend reversals. Unlike traditional candlestick charts, Heiken-Ashi candles are calculated using average values of previous bars, creating a smoother, mo
Supertrend   indicator uses a combination of a moving average and average true range to detect the trend of a trading instrument. Supertrend indicator for MetaTrader 5 easily shows the trend as a line following the price. You can use the second my indicator: You will see 3 supertrends and EMA 200 lines on the screen. Working with my product : https://www.mql5.com/en/market/product/80692
多模式江恩角度指标 (MT5) 使用此指标的真实交易表现信号可在以下链接查看: https://www.mql5.com/ru/signals/2376159 Multi-Mode Gann Angles 指标在点击选定K线后绘制趋势线扇形结构。该结构类似传统江恩角度,用于图表结构分析。 角度比例可以使用固定数值,也可以基于指定数量历史K线的平均价格波动进行计算。这种方式允许用户根据不同交易品种和时间周期进行调整。 指标在每个时间周期上独立运行。趋势线仅在创建它们的时间周期中显示。每个实例使用包含标识符和当前时间周期的唯一对象前缀。删除操作仅影响当前实例创建的趋势线。 计算模式 (MethodInput) fixedScaleMode — 使用 FixedScale 固定值 alternativeOpenCloseMode — 计算 Open 到 Close 的平均波动 alternativeHighLowMode — 计算 High 到 Low 的平均波动 方向控制 支持 Rising 和 Falling 模式。 仅当选定K线相对于相邻K线形成局部极值时绘制角度。 主要参数 Me
Gold Liquidity Master Pro H4
Oscar Dario Murillo Delgado
Gold Liquidity Master Pro is a high-precision algorithmic trading system designed exclusively for Gold (XAUUSD). Unlike conventional bots that use lagging indicators, this Expert Advisor (EA) operates based on Price Action and Institutional Liquidity Taking, identifying false breakouts on 4-hour (H4) candles where large banks typically "clean up" weak hands before a major move. Recommendations Symbol: XAUUSD (Gold) Timeframe: H4 Minimum Deposit: $500  Account Type: ECN / Raw Spread with low
PipFinite Trend PRO MT5
Karlo Wilson Vendiola
4.84 (558)
Breakthrough Solution For Trend Trading And Filtering With All Important Features Built Inside One Tool! Trend PRO's smart algorithm detects the trend, filters out market noise and gives entry signals with exit levels. The new features with enhanced rules for statistical calculation improved the overall performance of this indicator. Important Information Revealed Maximize the potential of Trend Pro, please visit www.mql5.com/en/blogs/post/713938 The Powerful Expert Advisor Version Automatin
HAshi-E is an enhanced way to analyze Heiken-Ashi signals. Briefing: Heiken-Ashi is particularly valued for its ability to filter out short-term volatility, making it a preferred tool for identifying and following trends, helps in decision-making regarding entry and exit points, and assists in distinguishing between false signals and genuine trend reversals. Unlike traditional candlestick charts, Heiken-Ashi candles are calculated using average values of previous bars, creating a smoother, mo
该产品的买家也购买
Trend Sniper X
Sarvarbek Abduvoxobov
5 (6)
Trend Sniper X 是一款适用于 MetaTrader 5 的多时间周期趋势跟踪指标,帮助交易者以清晰、精确的方式识别趋势方向和潜在的反转点。 价格信息: 当前价格为促销价,随着未来更新和新功能的发布,价格可能会有所变动。 Code2Profit 频道 通过多时间框架分析掌握市场! 技术规格 平台 MetaTrader 5 指标类型 多时间周期趋势指标 运行时间周期 任何图表时间周期,可独立选择更高的时间周期 (M1–MN1) 主要交易品种 外汇、黄金 (XAUUSD) 及其他差价合约 (CFD) 推荐账户 任何账户类型 可视化 彩色趋势蜡烛 (买入/卖出/微弱/变化) + 买入/卖出箭头 附加模块 交易时段方框 (悉尼、东京、伦敦、纽约) 主要功能 多时间周期趋势分析: 直接在当前图表上投射更高时间周期的趋势方向,提供清晰的宏观视角。 弱势/不确定柱检测: 高亮显示趋势条件不明朗的柱线,让交易者避开震荡区域。 买入/卖出信号箭头: 在确认趋势变化后的柱线上自动绘制箭头,支持警报、推送和电子邮件通知。 一键开启/关闭面板: 图表上的按钮可切换指标,下拉菜单可立即切换分析时间周
Neuro Poseidon MT5
Daria Rezueva
4.8 (54)
Neuro Poseidon is a new indicator by Daria Rezueva. It combines precise trading signals with adaptive TP/SL levels - creating best possible trades as a result! Message me and get  Neuro Poseidon Assistant  as a gift to automize your trading process! What makes it stand out? 1. Proven profitability on all assets and timeframes 2. Only confirmed BUY and SELL signals present on the chart 3. Adaptive TP & SL levels generated by the software for each trade 4. Easy to understand - suitable for al
M1 Quantum MT5
Hamed Dehgani
4.6 (10)
使用 M1 Quantum 的实盘交易信号 : 信号 (交易由 Quantum Trade Assistant 自动 执行,并作为本产品 免费 提供。) 价格计划: 当前价格: $169 (早期用户优惠) 下一阶段计划价格: $189 计划零售价: $299 开发者提示: 购买后请联系我,以获取 最新推荐的参数设置文件(Set File) 、交易建议,以及加入 VIP 支持群组 ,与其他 M1 Quantum 用户交流经验。 常见问题 - 设置文件 - 安装指南 M1 Quantum 是一款专业的 M1 交易系统,提供快速且精准的交易信号,并内置止损(Stop Loss)、止盈(Take Profit)以及智能资金管理功能。 M1 Quantum 包含专业的资金管理系统,通过专注于 连续盈利交易 ,帮助交易者更快地增长账户资金。 M1 Quantum 指标 的主要特点 专为 M1 时间周期 和所有 主要货币对 设计 所有交易均配备止损和止盈 内置 资金管理功能 ,并指导交易者轻松执行交易计划 高胜率,高比例的 连续盈利交易 无重绘,无延迟 适合各种类型的交易者,简单易懂 要使用 M
UZFX {SSS} 超短线智能信号 v4.0 MT5 是一款无重绘的高性能交易指标,专为在快速波动的市场中需要精准、实时信号的超短线交易者、日内交易者和波段交易者设计。该指标由 (UZFX-LABS) 开发,融合了价格行为分析、趋势确认和智能过滤技术,可在所有货币对和时间周期内生成高概率的买卖信号、预警信号以及趋势延续机会。 别再对交易犹豫不决了,开始遵循这一专为追求清晰、精准和纪律性市场执行的交易者设计的结构化信号系统吧。 我的建议* 最佳时间周期:15分钟及以上。 {H1} 是我的最爱。而且效果令人惊叹……!! 更新后的主要功能 • 自动买入和卖出信号检测 • 先进的反转识别逻辑 • 潜在市场反转前的早期预警信号 • 趋势延续确认信号 • 内置风险管理功能,包含入场点、止损点、TP1、TP2和TP3水平 • 完全可自定义的风险回报比 • 实时警报、声音提醒和移动端推送通知 • 带交易建议的专业信息面板 • 适用于所有MT5交易品种和时间周期 • 界面简洁、轻量且用户友好 为什么交易者选择 UZFX SSS? 大多数交易者亏损的原因在于入场过晚、平仓过早,或者缺乏明确的交
Divergence Bomber
Ihor Otkydach
4.9 (92)
购买该指标的每位用户将额外免费获得以下内容: 原创工具“Bomber Utility”,该工具会自动跟踪每一笔交易,设置止损和止盈点,并根据策略规则自动平仓; 适用于不同交易品种的指标设置文件(Set 文件); 三种不同风险模式下的 Bomber Utility 设置文件:“最低风险”、“平衡风险” 和 “观望策略”; 一套详细的 视频操作手册,帮助您快速完成安装、配置并开始使用本交易系统。 注意: 要获取以上所有赠品,请通过 MQL5 的私人消息系统联系卖家。 我为您介绍原创的自定义指标 “Divergence Bomber”(背离轰炸机),它是一套基于 MACD 背离交易策略 的“全功能”交易系统。 该技术指标的主要任务是识别 价格与 MACD 指标之间的背离,并发出交易信号(包括推送通知),指示未来价格可能的运动方向。平均而言,这些信号的准确率超过 98%。有关该指标如何工作的详细说明,请观看本页面上的视频演示。 该系统使用 止损订单 和 动态回撤平仓机制 来管理交易。 Divergence Bomber 指标的主要特点: 支持交易的品种: AUDCAD、AUDCHF、AUDSG
Entry Points Pro for MT5
Yury Orlov
4.5 (146)
传奇回归:Entry Points Pro 10。 这款传奇指标曾 3 年稳居 MQL5 Market 前三,如今全面重启。 数百条热情好评(两个版本合计 589 条),每天有数千名交易者用它交易,演示版下载 31,000+   MT4+MT5  次。 五年来我读过你们的每一条评价——在第 10 版里,我没有给出许诺,而是把答案直接做进了产品。指标作者自 1999 年入市, 珍视诚信、自己的声誉和自己的客户 。 Entry Points Pro 给出的入场信号严格不重绘。 而且这一次不再只是作者的一面之词,而是可验证的事实:确认信号只在 K 线收盘后标出,自动化测试记录到 零重绘 (在 EURUSD、XAUUSD 和 BTCUSD 上共 2,486,568 次不变量检查——0 次违规)。测试方法完全公开——您可以在策略测试器中自行复现。 购买后请务必第一时间给我发私信。 我会发给您 扩展版说明书《交易者圣经》 ——使用本指标交易的完整指南——并告诉您如何免费获得 赠品:市场扫描器 ,它能同时分析多个品种和多个时间周期,并在一个界面上显示 Entry Points Pro 此刻在哪里表现
Quantum TrendPulse
Bogdan Ion Puscasu
5 (25)
介绍 Quantum TrendPulse   ,这是一款终极交易工具,它将 SuperTrend   、   RSI 和 Stochastic 的强大功能整合到一个综合指标中,以最大限度地发挥您的交易潜力。该指标专为追求精准和效率的交易者而设计,可帮助您自信地识别市场趋势、动量变化以及最佳进入和退出点。 主要特点: 超级趋势整合: 轻松跟随当前的市场趋势并乘上盈利浪潮。 RSI 精度: 检测超买和超卖水平,非常适合把握市场逆转时机,可用作 SuperTrend 的过滤器 随机精度: 利用随机振荡在波动的市场中寻找隐藏的机会, 用作超级趋势的过滤器 多时间范围分析: 从 M5 到 H1 或 H4,在不同时间范围内关注市场动态。 可定制的警报: 当您的自定义交易条件得到满足时收到通知,这样您就不会错过任何交易。 无论您是新手还是经验丰富的交易员,   Quantum TrendPulse 都能为您提供所需的优势,帮助您增强策略并自信地进行交易。借助这一强大的指标,将洞察力转化为利润 — 掌控您的交易! ***购买 Quantum TrendPulse,即可免费获得 Quantum Tr
M1 Sniper MT5
Oleg Rodin
5 (4)
M1 SNIPER   是一款易于使用的交易指标系统。它是一个专为 M1 时间框架设计的箭头指标。该指标可以作为独立的系统在 M1 时间框架下进行剥头皮交易,也可以作为您现有交易系统的一部分使用。虽然该交易系统专为 M1 时间框架交易而设计,但它也可以用于其他时间框架。我最初设计此方法是为了交易 XAUUSD 和 BTCUSD。但我发现这种方法在其他市场交易中也同样有用。 指标信号既可以顺势交易,也可以逆势交易。我教授一种特殊的交易技巧,帮助您利用指标信号进行双向交易。该方法基于使用特殊的动态支撑位和阻力位区域。 购买后,您可以立即下载 M1 SNIPER 箭头指标。此外,我还为所有 M1 SNIPER 工具用户免费提供下方屏幕截图所示的 Apollo Dynamic SR 指标!这两个指标的组合可以帮助您更轻松、更准确地利用 M1 时间框架进行交易。 购买后请联系我,免费获取交易提示和奖励指标! 祝您交易成功!
ARIPoint
Temirlan Kdyrkhan
1 (1)
ARIPoint is a powerful trading companion designed to generate high-probability entry signals with dynamic TP/SL/DP levels based on volatility. Built-in performance tracking shows win/loss stats, PP1/PP2 hits, and success rates all updated live. Key Features: Buy/Sell signals with adaptive volatility bands Real-time TP/SL/DP levels based on ATR Built-in MA Filter with optional ATR/StdDev volatility Performance stats panel (Success, Profit/Loss, PP1/PP2) Alerts via popup, sound, push, or email Cu
货币强度向导是一个非常强大的指标,为您提供成功交易的一体化解决方案。该指标使用多个时间范围内所有货币的数据来计算这个或那个外汇对的力量。此数据以易于使用的货币指数和货币电力线的形式表示,您可以使用它们来查看这种或那种货币的力量。 您所需要的只是将指标附加到您要交易的图表上,该指标将向您显示您交易的货币的真实强度。该指标还向您显示买卖量压力的极值,您可以在顺势交易时利用这些压力。该指标还显示了基于斐波那契的可能目标。该指标可用于各种交易时间范围。该指标支持各种货币对的交易。   该指标为您提供所有类型的警报,包括推送通知。 购买后请联系我。我将与您分享我的交易技巧,并免费为您提供丰厚的红利指标! 祝您交易愉快,获利丰厚!
Btmm state engine pro
Garry James Goodchild
5 (4)
BTMM State Engine Pro is a MetaTrader 5 indicator for traders who use the Beat The Market Maker approach: Asian session context, kill zone timing, level progression, peak formation detection, and a multi-pair scanner from a single chart. It combines cycle state logic with a built-in scanner dashboard so you do not need the same tool on many charts at once. What it does Draws the Asian session range; session times can follow broker server offset or be set in inputs. Tracks level progression (L
TPA True Price Action indicator reveals the true price action of the market makers through 100% non-repainting signals 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 customers. The first "The Basics"
可以说,这是您可以为MetaTrader平台找到的最完整的谐波价格形成自动识别指标。它检测19种不同的模式,像您一样认真对待斐波那契投影,显示潜在的反转区域(PRZ),并找到合适的止损和获利水平。 [ 安装指南 | 更新指南 | 故障排除 | 常见问题 | 所有产品 ] 它检测19种不同的谐波价格形态 它绘制了主要,衍生和互补的斐波那契投影(PRZ) 它评估过去的价格走势并显示每个过去的形态 该指标分析其自身的质量和性能 它显示合适的止损和获利水平 它使用突破来表明合适的交易 它在图表上绘制所有样式比率 它实现了电子邮件/声音/视觉警报 受斯科特·M·卡尼(Scott M. Carney)的书的启发,该指标旨在满足最纯粹和最熟练的交易者的需求。但是,它采取了一种使交易更容易的方式:在向交易发出信号之前,它会等待Donchian朝正确方向突破,从而使交易信号非常可靠。 斐波那契投影与向量无关 它实现了电子邮件/声音/推送警报 它绘制了ABCD投影 重要提示: 为了符合 Scott M. Carney先生 的商标申诉,某些图案名称已重命名为不言自明的替代方式, Scott M.
The Oracle Pro
Ottaviano De Cicco
5 (1)
The Oracle Pro:用于 MT5 的合成多周期偏向引擎 ️ 夏季上市优惠 — 早期买家可以 199 USD 获得 The Oracle Pro。价格将随关注度上升;最终价格 399 USD。 The Oracle Pro 是一款面向高要求与专业交易者的 MetaTrader 5 高级多周期 偏向引擎 。它以纪律回答一个问题:当前每个周期的方向偏向是什么、强度如何、各周期之间的一致程度如何?一切仅在已收盘的 K 线上计算——绝不重绘。 The Oracle Pro 是一套多因子共识系统。它将专有指标与优化算法整合为单一而精密的共识向量,并在单个指标实例内,跨当前周期与更高周期的堆栈进行读取——而不是在多个图表上堆叠互不相关的工具。 它是 Oracle 共识方法的专业进化版:完整重建为高级操作控制台,面向希望在一个纪律化工作流中获得深度、多周期背景与背离洞察的交易者。 是偏向引擎,而非信号生成器 The Oracle Pro 明确自身定位。它是一款提供纪律化方向背景的 多周期多因子偏向指标 。它 不是 信号生成器:不承诺入场、出场或盈利。偏向是背景——你在其方向上交易自己的设置
介绍     Quantum Breakout PRO   ,突破性的 MQL5 指标,正在改变您交易突破区域的方式!由拥有超过13年交易经验的资深交易员团队开发,     量子突破 PRO     旨在通过其创新和动态的突破区域策略将您的交易之旅推向新的高度。 量子突破指标将为您提供带有 5 个利润目标区域的突破区域的信号箭头,以及基于突破框的止损建议。 它既适合新手交易者,也适合专业交易者。 量子 EA 通道:       点击这里 重要的!购买后请私信我领取安装手册。 建议: 时间范围:M15 货币对:GBPJPY、EURJPY、USDJPY、NZDUSD、XAUUSD 账户类型:ECN、Raw 或 Razor,点差极低 经纪商时间:GMT +3 经纪商:IC Markets、Pepperstone with Raw 和 Razor 的点差最低 规格: 不重漆! 最多 5 个建议利润目标区域 建议止损水平 可定制的盒子。您可以设置自己的 Box Time Start 和 Box Time End。 接触 如果您有任何疑问或需要帮助,请通过私人消息与我联系。
Bill Williams Advanced
Siarhei Vashchylka
5 (11)
Bill Williams Advanced is designed for automatic chart analysis using Bill Williams' "Profitunity" system. The indicator analyzes four timeframes at once. Manual (Be sure to read before purchasing) Advantages 1. Analyzes the chart using Bill Williams' "Profitunity" system. Signals are displayed in a table in the corner of the screen and on the price chart. 2. Finds all known AO and AC signals, as well as zone signals. Equipped with a trend filter based on the Alligator. 3. Finds "Divergence Bar
Gartley Hunter Multi
Siarhei Vashchylka
5 (12)
Gartley Hunter Multi - An indicator for searching for harmonic patterns simultaneously on dozens of trading instruments and on all possible timeframes. Manual (Be sure to read before purchasing) | Version for MT4 Advantages 1. Patterns: Gartley, Butterfly, Shark, Crab. Bat, Alternate Bat, Deep Crab, Cypher 2. Simultaneous search for patterns on dozens of trading instruments and on all possible timeframes 3. Search for patterns of all possible sizes. From the smallest to the largest 4. All fou
PrimeScalping
Temirlan Kdyrkhan
PrimeScalping is a powerful trading companion designed to generate high-probability entry signals with dynamic TP/SL/DP levels based on volatility. Built-in performance tracking shows win/loss stats, PP1/PP2 hits, and success rates — all updated live. Key Features: Buy/Sell signals with adaptive volatility bands Real-time TP/SL/DP levels based on ATR Built-in MA Filter with optional ATR/StdDev volatility Performance stats panel (Success, Profit/Loss, PP1/PP2) Alerts via popup, sound, push, or e
ICT Pro
Robby Suhendrawan
Ultimate AIO ICT Concept Indicator for MT5 Master Smart Money Concepts Automatically Discounted   Price   !!     Save more with a bundle deal. Secure your lifetime access   now   before it switches to   subscription-only ! Are you tired of spending hours manually charting your screens every single day? The AIO ICT Concept indicator is your complete all-in-one solution for mastering Smart Money Concepts. Designed to eliminate the guesswork and emotional fatigue of manual technical analysis, this
Transaction Speed MT5
Ivan Stefanov
5 (4)
当然,以下是翻译成中文(简体)的版本: 该指标标出市场中显现出 交易兴趣 的区域,并随后显示 订单积累区域 。它的工作方式类似于大规模的订单簿。 这是为 大资金 打造的指标,性能卓越。市场中有任何兴趣,你都能通过它清晰看到。 (这是一个 完全重写的自动化版本 —— 不再需要手动分析。) 交易速度 是一个全新的概念指标,它显示了市场上大订单 何时 、 何地 聚集,并揭示了其背后的意义。它可以在 非常早期 就检测到趋势的变化。 在外汇市场,所谓的“交易量”实际上是误导性的,因为那指的是价格在单位时间内的变化,因此真正的名称应是“交易速度”。 一切都取决于我们如何思考、如何行动、如何分析。 改变分析范式至关重要。 该指标完全重构了外汇市场上“交易量”的概念,用逻辑方式重新定义并应用,从而成为一个 独特而精准的工具 。 使用方法: 默认情况下,指标处于 自动模式 ,可独立用于任何时间周期。如果你希望切换到手动模式,只需点击 Auto / Manual Mode 按钮即可。 在 手动模式 下,所有计算从 2025年1月1日 开始。你可以根据需要更改该日期,以查看不同的分析结果。 最优数据周期
Gem SIGNAL
Shengzu Zhong
5 (1)
GEM Signal Pro GEM Signal Pro 是一款適用於 MetaTrader 5 的趨勢跟隨指標,專為希望在圖表上獲得更清晰訊號、更有結構的交易設定,以及更實用風險管理的交易者而設計。 它不僅僅顯示一個簡單的箭頭,GEM Signal Pro 還能以更清晰、更易讀的方式呈現完整的交易思路。當條件確認完成後,指標可在圖表上顯示進場價、止損價與止盈目標,幫助交易者更有效率地評估交易設定。 運作方式 該指標首先根據其內部邏輯識別有效的初始訊號。 當確認條件滿足後,GEM Signal Pro 會在圖表上顯示完整的交易設定。這讓交易者可以更清楚地看到交易結構,並減少手動分析與計算的工作量。 圖表上的交易價位 對於已確認的訊號,GEM Signal Pro 可顯示: 進場價 止損價 止盈 1 止盈 2 止盈 3 風險報酬比 這讓交易設定更容易理解,也有助於讓圖表分析更有條理。 內建風險管理 風險管理是此指標設計的重要部分。 止損位基於近期市場結構,結合附近的擺動高低點與可選的 ATR 緩衝距離。這能讓交易價位更貼近當前市場條件,而不只是依賴固定距離。 圖表資訊面板 GEM Si
KURAMA GOLD SIGNAL PRO(MT5)— 7层过滤 · 自动止盈止损 · 质量评分 · 信号历史保存 | 完整的XAUUSD交易系统 实时不重绘。信号出现的瞬间,箭头、入场、止盈、止损当场锁定,之后绝不移动。你交易的就是这个实时信号。而且在v7.20中,每一个真正发出的信号都会自动保存,并在重启后精确还原。 购买者专属赠品 购买永久授权,即可免费获得 AI Zone Radar(价值$59)+ 完整PDF手册。在产品价格之外,额外附赠价值$59的赠品。购买后在MQL5上给我留言即可。 AI Zone Radar: https://www.mql5.com/en/market/product/175834 在黄金交易者社区中被实际使用,因精度与易用性而广受好评。 你的难题 —— 以及解决方案 黄金一天波动$30–$50。你知道机会就在那里。但这些情况是否似曾相识: - 入场太早,价格逆行$10后才朝你的方向
Azimuth Pro
Ottaviano De Cicco
5 (7)
Azimuth Pro V2:MT5合成分形结构分析与确认入场 概述 Azimuth Pro 是 Merkava Labs 推出的多层级波段结构指标。四层嵌套波段层级、锚定波段的VWAP、ABC形态识别、三时间框架结构过滤以及收盘确认入场——一个图表,一个从微观波段到宏观周期的完整工作流程。 这不是盲目的信号产品。它是一个以结构为先的工作流程,专为重视位置、背景和时机的交易者打造。 ️ 夏季促销 — 庆祝夏至与 The Oracle Pro 上市:Azimuth Pro 七折优惠,现价 279 美元(原价 399 美元)。限时夏季优惠。 1. V2的变化 合成多时间框架引擎 高时间框架分析从零开始重建,采用与Meridian Pro相同的专有合成架构。更清晰的HTF背景、稳定的实时行为、无经典MTF同步问题。合成引擎还解锁了 固定比率时间框架级联 (x2、x3、x4、x6)——不再在经纪商的固定时间框架之间任意跳转,您可以按图表时间框架的固定倍数分析结构,在每个尺度上保持相同的分形关系。 确认入场箭头 作为稳定且可恢复的执行层而设计的收盘确认箭头。当ABC设置形成且自适应确认逻辑
Weltrade Spike Sentinel
Batsirayi L Marango
5 (1)
Introducing Indicator for PainX and GainX Indices Traders on Weltrade Get ready to experience the power of trading with our indicator, specifically designed for Weltrade   broker's PainX and GainX Indices.  Advanced Strategies for Unbeatable Insights Our indicator employs sophisticated strategies to analyze market trends, pinpointing optimal entry and exit points.  Optimized for Maximum Performance To ensure optimal results, our indicator is carefully calibrated for 5-minute timeframe charts on
Stargogs Spike Catcher
Lorenzo Edward Beukes
4.56 (9)
Stargogs Spike Catcher V4.0 This Indicator is Developed To milk the BOOM and CRASH indices . Now Also work on weltrade for PAIN and GAIN indices. Send me Message if you need any help with the indicator.  CHECK OUT THE STARGOGS SPIKE CATCHER EA/ROBOT V3: CLICK HERE ALSO CHECK OUT SECOND TO NONEFX SPIKE CATCHER:   CLICK HERE STARGOGS SPIKE CATCHER V4.0 WHATS NEW! Brand New Strategy. This is the Indicator you need for 2025. New Trend Filter to minimize losses and maximize profits. New Trendline th
MT5 Indicator   See What the Market Is Really Doing. See the 3 Market Phases live in front of you (Contraction, Expansion, Trend) and take better   entries at the early stage of the Trend Phase.   Stop guessing. Start reading the market like the institutions and smart money do.   Apex Market Structure Pro for MT5 is a precision smart-money analysis tool that strips away the noise and shows you the true   structure beneath every candle: liquidity, structure shifts, accumulation zones, and t
Advanced Supply Demand MT5
Bernhard Schweigert
4.53 (15)
任何新手或专业交易者的最佳解决方案! 该指标是一款独特、高质量、且价格合理的交易工具,因为我们已经整合了许多专有功能和新公式。 依据此更新,您将能够显示双重时间帧区域。 您不仅可以显示一个较高的时间帧,还可以同时显示图表时间帧,加上更高的时间帧:显示嵌套时区。 供需双方所有交易者都会喜欢它。 :) 重要信息披露 高级供需的最大潜力,请访问 https://www.mql5.com/zh/blogs/post/720245   想象您的交易如何得以改善,是因为您能够精准定位入场或目标位吗? 构建于新的底层算法,它可以更轻松地识别出买卖双方之间的潜在失衡。 这是因为它以图形方式展示供需最强劲区域,及其过去的表现(显示旧区域)。 这些功能旨在帮助您更轻松地发现最佳入场区域和价位。 现在您可以针对您的交易品种和时间帧来优化和编辑区域强度! 高级供需指标适用于所有产品和时间帧。 它是一个新的公式,非常新的功能是两个区域强度函数可由用户输入进行调整! 这在交易中是一大优势。 当您学习如何使用专有功能,例如带有价格游离最小 X 因子的区域强度时,您能够判断该区域强劲与否。 供需区域用作警报触发器。
A2SR MT5 版 指标:自动化实际供需 (S/R)。 + 交易工具。 Product description in English here. --   Guidance   : -- at   https://www.mql5.com/en/blogs/post/734748/page4#comment_16532516 -- and  https://www.mql5.com/en/users/yohana/blog 强大、真实、省时,助您做出更明智的交易决策。 + 兼容 EA 的对象。 主要优势 领先的实际 SR 水平(不滞后,不重绘) 自 2014 年以来,A2SR 在 MT4 平台上经过多年的可靠性验证 ,现已面向 MetaTrader 5 平台推出。 它凭借领先的、不重绘的指标,为交易者带来卓越的优势,帮助他们在价格触及支撑位和阻力位之前识别实际支撑位和阻力位。 A2SR 提前计算支撑位和阻力位——在价格触及支撑位和阻力位之前——让交易者能够自信地规划交易。 独一无二、真正意义上的理念。 A2SR 建立在一种从未在任何媒体上发布或分享过的独特方法之上, 重
Trend Forecaster
Alexey Minkov
5 (8)
Trend Forecaster 是一款 MetaTrader 5 指标,可将突破信号、潜在反转区域分析、市场波动区间数据和可视化统计面板整合到同一个图表工作区中。 它可以显示 Buy 和 Sell 信号,跟踪 Average Range 和 Current Range,并且可以根据当前交易品种和时间周期自动调整 Sensitivity。也支持手动设置 Sensitivity。 该指标可用于外汇货币对、金属、股票、指数和加密货币。支持不同时间周期,M5 可以作为一个实用的起点。 主要功能 突破和反转区域分析 Trend Forecaster 会分析已识别区域附近的价格行为,并在内部突破条件满足时显示 Buy 或 Sell 信号。该指标可用于研究趋势延续和潜在反转区域。 多过滤器信号逻辑 该指标将多个内部过滤器整合为一个简单的工作流程。用户在开始分析前不需要配置大量技术参数。 Auto-Tune Sensitivity 该指标可以根据近期历史数据,自动为当前交易品种和时间周期计算 Sensitivity。这有助于在切换不同交易品种时减少手动设置。 手动设置模式 如果你更喜欢固定设置,或
Quant Direction MT5
Georgios Kalomoiropoulos
Quant Direction 是一款三维市场分析工具。它通过同时计算多个维度上的精确百分比偏差,提供完全客观的、基于算法的市场分析视角。该算法采用先进的人工智能建模工具开发,并经过全面测试,旨在以独特的精准度解读市场。它可以分析您平台上的任何货币对或金融工具。 无论您是短线 交易者、日内 交易者还是波段交易者,Quant Direction 都是您的理想之选。 交易者的真正优势 Quant Direction 的真正优势在于彻底消除情绪、屏幕疲劳和过度思考。它无需手动点击十几个图表来寻找方向并反复质疑自己的偏好,引擎即可在几毫秒内即时处理 8 个时间周期(从 5 个月到月线)。它能准确告诉你任何时刻谁在掌控市场,确保你始终朝着概率最高的方向进行交易。 市场分析的三个维度 该算法将市场分为三个不同的交易维度,为您提供完整的宏观和微观视角: 超短线交易分析: 捕捉即时、快速的动量变化和较低时间框架的执行点。 日内分析: 识别真实的、潜在的每日方向性偏差。 波动分析: 专注于宏观趋势,确保您不会与大盘机构的走势背道而驰。 独家评分引擎 Quant Direction 的底层采用了一套
作者的更多信息
This indicator presents an alternative approach to identify Market Structure. The logic used is derived from learning material created by   DaveTeaches (on X) Upgrade v1.10: add option to put protected high/low value to buffer (figure 11, 12) When quantifying Market Structure, it is common to use fractal highs and lows to identify "significant" swing pivots. When price closes through these pivots, we may identify a Market Structure Shift (MSS) for reversals or a Break of Structure (BOS) for co
The liquidity swings indicator highlights swing areas with existent trading activity. The number of times price revisited a swing area is highlighted by a zone delimiting the swing areas. Additionally, the accumulated volume within swing areas is highlighted by labels on the chart. An option to filter out swing areas with volume/counts not reaching a user-set threshold is also included. This indicator by its very nature is not real-time and is meant for descriptive analysis alongside other com
OVERVIEW 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 and m
This is addition of  Effective SV squeeze momentum  that add bolliger band and Keltner channel to chart window.  Squeeze momentum introduced by “John Carter”, the squeeze indicator for MT5 represents a volatility-based tool. Regardless, we can also consider the squeeze indicator as a momentum indicator, as many traders use it to identify the direction and strength of price moves. In fact, the Tradingview  squeeze indicator shows when a financial instrument is willing to change from a trending ma
FREE
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
Bheurekso Pattern with Alert
Minh Truong Pham
2 (1)
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
The Breaker Blocks with Signals indicator aims to highlight a complete methodology based on breaker blocks. Breakout signals between the price and breaker blocks are highlighted and premium/discount swing levels are included to provide potential take profit/stop loss levels. This script also includes alerts for each signal highlighted.   SETTINGS   Breaker Blocks Length: Sensitivity of the detected swings used to construct breaker blocks. Higher values will return longer term break
Multiple Wicks forming at OverSold & OverBought levels create Buying and Selling Pressure. This indicator tries to capture the essence of the buy and sell pressure created by those wicks. Wick pressure shows that the trend is Exhausted. Order block should display when buying or selling pressure wick. When price go inside buy order block and up to outside order block, trader should consider a buy order. If price go inside buy order block and down to outside order block, trader should consider a s
All about Smart Money Concepts Strategy: Market struture: internal or swing BOS, CHoCH; Orderblock; Liquity equal; Fair Value Gap with Consequent encroachment, Balanced price range; Level with Previous month, week, day level or in day level (PMH, PWH, PDH, HOD); BuySell Stops Liquidity (BSL, SSL); Liquidity Void Long Wicks; Premium and Discount; Candle pattern ... "Smart Money Concepts" ( SMC ) is a fairly new yet widely used term amongst price action traders looking to more accurately navigate
The indicator   returning pivot point based trendlines with highlighted breakouts . Trendline caculated by pivot point and other clue are ATR, Stdev.   The indicator also includes integrated alerts for  trendlines  breakouts   and foward message to Telegram channel or group if you want. Settings ·            Lookback bar: Default 200 is number of bar caculate when init indicator. ·            Length:  Pivot points  period ·            Slope Calculation Method: Determines how this lope is calcula
This all-in-one indicator displays real-time market structure (internal & swing BOS / CHoCH), order blocks, premium & discount zones, equal highs & lows, and much more...allowing traders to automatically mark up their charts with widely used price action methodologies. Following the release of our Fair Value Gap script, we received numerous requests from our community to release more features in the same category. //------------------------------------// Version 1.x has missing functions + PDAr
Breaker Blocks with Signals
Minh Truong Pham
3 (2)
The Breaker Blocks with Signals indicator aims to highlight a complete methodology based on breaker blocks. Breakout signals between the price and breaker blocks are highlighted and premium/discount swing levels are included to provide potential take profit/stop loss levels. This script also includes alerts for each signal highlighted.   SETTINGS   Breaker Blocks Length: Sensitivity of the detected swings used to construct breaker blocks. Higher values will return longer term break
ICT Concepts in MT4
Minh Truong Pham
The ICT Concepts indicator regroups core concepts highlighted by trader and educator "The Inner Circle Trader" (ICT) into an all-in-one toolkit. Features include Market Structure (MSS & BOS), Order Blocks, Imbalances, Buyside/Sellside Liquidity, Displacements, ICT Killzones, and New Week/Day Opening Gaps. It’s one kind of Smart money concepts.   USAGE:   Please read this   document  !      DETAILS Market Structure Market structure labels are constructed from price breaking a prior extreme
The FollowLine indicator is a trend following indicator. The blue/red lines are activated when the price closes above the upper Bollinger band or below the lower one. Once the trigger of the trend direction is made, the FollowLine will be placed at High or Low (depending of the trend). An ATR filter can be selected to place the line at a more distance level than the normal mode settled at candles Highs/Lows. Some features: + Trend detech + Reversal signal + Alert teminar / mobile app
The ICT Silver Bullet indicator is inspired from the lectures of "The Inner Circle Trader" (ICT) and highlights the Silver Bullet (SB) window which is a specific 1-hour interval where a Fair Value Gap (FVG) pattern can be formed. A detail document about ICT Silver Bullet here . There are 3 different Silver Bullet windows (New York local time): The London Open Silver Bullet (3 AM — 4 AM ~ 03:00 — 04:00) The AM Session Silver Bullet (10 AM — 11 AM ~ 10:00 — 11:00) The PM Session Silver Bullet (2
Sessions by Lux
Minh Truong Pham
This indicator shows when user set sessions are active and returns various tools + metrics using the closing price within active sessions as an input. Users have the option to change up to 4 session times. The indicator will increasingly lack accuracy when the chart timeframe is higher than 1 hour. Settings Sessions Enable Session: Allows to enable or disable all associated elements with a specific user set session. Session Time: Opening and closing times of the user set session in the  
Liquidity Swings
Minh Truong Pham
The liquidity swings indicator highlights swing areas with existent trading activity. The number of times price revisited a swing area is highlighted by a zone delimiting the swing areas. Additionally, the accumulated volume within swing areas is highlighted by labels on the chart. An option to filter out swing areas with volume/counts not reaching a user-set threshold is also included. This indicator by its very nature is not real-time and is meant for descriptive analysis alongside other com
The SuperTrend AI indicator is a novel take on bridging the gap between the K-means clustering machine learning method & technical indicators. In this case, we apply K-Means clustering to the famous SuperTrend indicator.   USAGE Users can interpret the SuperTrend AI trailing stop similarly to the regular SuperTrend indicator. Using higher minimum/maximum factors will return longer-term signals. (image 1) The displayed performance metrics displayed on each signal allow for a deeper interpretat
OVERVIEW A Lorentzian Distance Classifier (LDC) is a Machine Learning classification algorithm capable of categorizing historical data from a multi-dimensional feature space. This indicator demonstrates how Lorentzian Classification can also be used to predict the direction of future price movements when used as the distance metric for a novel implementation of an Approximate Nearest Neighbors (ANN) algorithm. This indicator provide signal as buffer, so very easy for create EA from this indi
This script automatically calculates and updates ICT's daily IPDA look back time intervals and their respective discount / equilibrium / premium, so you don't have to :) IPDA stands for Interbank Price Delivery Algorithm. Said algorithm appears to be referencing the past 20, 40, and 60 days intervals as points of reference to define ranges and related PD arrays. Intraday traders can find most value in the 20 Day Look Back box, by observing imbalances and points of interest. Longer term traders c
An Implied Fair Value Gap (IFVG) is a three candles imbalance formation conceptualized by ICT that is based on detecting a larger candle body & then measuring the average between the two adjacent candle shadows. This indicator automatically detects this imbalance formation on your charts and can be extended by a user set number of bars. The IFVG average can also be extended until a new respective IFVG is detected, serving as a support/resistance line. Alerts for the detection of bullish/be
Consolidation is when price is moving inside a clear trading range. When prices are consolidated it shows the market maker placing orders on both sides of the market. This is mainly due to manipulate the un informed money. This indicator automatically identifies consolidation zones and plots them on the chart. The method of determining consolidation zones is based on pivot points and ATR, ensuring precise identification. The indicator also sends alert notifications to users when a new consolida
This indicator 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
Created by imjesstwoone and mickey1984, this trade model attempts to capture the expansion from the 10:00-14:00 EST 4h candle using just 3 simple steps. All of the information presented in this description has been outlined by its creators, all I did was translate it to MQL4. All core settings of the trade model may be edited so that users can test several variations, however this description will cover its default, intended behavior using NQ 5m as an example. Step 1 is to identify our Price Ra
The Buyside & Sellside Liquidity indicator aims to detect & highlight the first and arguably most important concept within the ICT trading methodology,   Liquidity   levels. SETTINGS Liquidity Levels Detection Length: Lookback period Margin: Sets margin/sensitivity for a liquidity level detection Liquidity Zones Buyside Liquidity Zones: Enables display of the buyside liquidity zones. Margin: Sets margin/sensitivity for the liquidity zone boundaries. Color: Color option for buysid
The   Liquidation Estimates (Real-Time)   experimental indicator attempts to highlight real-time long and short liquidations on all timeframes. Here with liquidations, we refer to the process of forcibly closing a trader's position in the market. By analyzing liquidation data, traders can gauge market sentiment, identify potential support and resistance levels, identify potential trend reversals, and make informed decisions about entry and exit points. USAGE (Img 1)    Liquidation refers
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 out of:
Inversion Fair Value Gaps MT4
Minh Truong Pham
4.5 (2)
The Inversion Fair Value Gaps (IFVG) indicator is based on the inversion FVG concept by ICT and provides support and resistance zones based on mitigated Fair Value Gaps (FVGs). Image 1   USAGE Once mitigation of an FVG occurs, we detect the zone as an "Inverted FVG". This would now be looked upon for potential support or resistance. Mitigation occurs when the price closes above or below the FVG area in the opposite direction of its bias. (Image 2) Inverted Bullish FVGs Turn into Potenti
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 indicator
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 user-def
筛选:
无评论
回复评论