Lorentzian Classification Open Source

The official MetaTrader 5 port of jdehorty's Lorentzian Classification indicator predicts the direction of future price movement from historical price data using Lorentzian distance.


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 be used to predict the direction of future price movements. Each bar is classified by price direction over a fixed 4-bar horizon using Lorentzian distance as the metric for distance-based classification.

The full source code is published on GitHub under the AI Edge (artificial-intelligence-edge) organization. This is the official AI Edge implementation for MetaTrader 5, derived from the same Lorentzian Classification algorithm originally authored for TradingView.


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). This abstract concept from theoretical physics also has tangible applications in the analysis of financial time-series data.

It has been hypothesized that Lorentzian space is well-suited for analyzing time-series data (4), (5). Several empirical studies support this: Lorentzian distance is more robust to outliers and noise than the commonly used Euclidean distance (1), (3), (6), and has been shown to outperform dozens of other distance metrics, including Manhattan distance, Bhattacharyya similarity, and Cosine similarity (1), (3). Across a wide variety of time-series datasets, the Lorentzian Distance metric consistently scores among the highest mean accuracy results (1).

Euclidean distance is commonly used as the default metric for pattern similarity measurement, but it may not be optimal for financial market data. Financial data can be significantly distorted by proximity to major events — FOMC meetings, central bank announcements, geopolitical shocks. This event-driven distortion can be framed as analogous to the gravitational warping that a massive object imposes on the space-time continuum. For financial markets, the analogous continuum is "price-time."

A side-by-side comparison of how neighborhoods of similar historical points appear in three-dimensional Euclidean space and Lorentzian space is included in the gallery (S1).

In that comparison, Lorentzian space better accommodates the warping of price-time because the Lorentzian distance function compresses the Euclidean neighborhood such that the new neighborhood distribution clusters around each of the major feature axes in addition to the origin itself. This means that even though some nearest neighbors are identical regardless of which metric is used, Lorentzian space also admits historical points that a Euclidean metric would never surface.

Intuitively, this makes sense. The price action that occurs in the hours after a central bank speech will resemble some of the previous times that same event occurred — regardless of whether the market was overbought or oversold, or whether macro conditions were broadly bullish or bearish. Euclidean distance misses these neighbors, often surfacing irrelevant data from the day before the event instead. Lorentzian distance accounts for the warping of price-time caused by the event and frees the model from the temporal bias imposed by the structure of a raw time series.

For implementation details of the classification algorithm, check out the source code.


How to Use

The indicator plots a color-coded bar overlay, two kernel regression estimate lines, and bullish/bearish signal labels directly on the chart. A trade stats table in the corner displays real-time win rate feedback for use in feature engineering. All visual elements and their controls, including the trade stats table, are shown in the gallery (S2, S3).

Reading the Signals

Each bar is assigned an integer prediction value by the model. More positive values correspond to more bullish sentiment, and more negative values correspond to more bearish sentiment — sequential patterns in these values can help identify fractals and distinguish potential inflection points from noise, rather than relying on any single bar's classification alone.

The kernel estimate lines are computed via kernel regression using a Rational Quadratic Kernel. It serves as additional confirmation of the model's bar-by-bar predictions.

Suggested exit points can be toggled on via the settings menu. Strict exits are based on the model's training interval (4 bars), while Dynamic Exits make suggestions based on real-time kernel regression.

The trade stats table is a real-time readout of trade performance for the selected number of historical bars (default 2000). It is not a robust backtesting method — by default it only reflects whether a historical trade was profitable 4 bars after entry, or, in Dynamic Exits mode, whether it was profitable after the Dynamic Exit was executed. It is intended to support real-time feature engineering, helping calibrate the model's settings to a given chart.

Early Flips, shown in the trade stats table, counts instances where a new ML signal was generated before the prior trade's exit was reached. A high count can indicate a choppy market and may suggest enabling additional signal filters.

General Settings

  • Source — Default: "Close price". Controls the input data source.
  • Neighbors Count — Default: 8, min: 1, max: 100. Controls the number of neighbors to consider.
  • Max Bars Back — Default: 2000.
  • Feature Count — Default: 5, min: 2, max: 5. Controls the number of features used for predictions.
  • Color Compression — Default: 1, min: 1, max: 10. Controls the compression factor for the color scale intensity.
  • Show Exits — Default: false. Shows exit arrow markers on the chart. Strict exits are based on the model's training interval (4 bars); see Use Dynamic Exits below for kernel-based exits.
  • Use Dynamic Exits — Default: false. Controls whether to dynamically extend the exit threshold based on kernel regression, reducing premature exits.
  • Include Full History — Default: false. When enabled, searches the full bar history for training; when disabled, uses only the most recent Max Bars Back bars.
  • Show Trade Stats — Default: true. Controls whether to display the trade stats table (calibration only — not a backtest). By default reflects profitability 4 bars after entry, or at the Dynamic Exit if Use Dynamic Exits is enabled.
  • Use Worst Case Estimate — Default: false. When enabled, uses bar close instead of mid-bar price for trade stats entries, producing a more conservative estimate consistent with traditional backtest results.

Filters Settings

  • Use Volatility Filter — Default: true. Controls whether to apply the volatility filter.
  • Use Regime Filter — Default: true. Controls whether to apply the trend detection filter.
  • Use ADX Filter — Default: false. Controls whether to apply the ADX filter.
  • Regime Threshold — Default: -0.1, min: -10, max: 10. Controls the Regime Detection filter for identifying trending vs. ranging conditions.
  • ADX Threshold — Default: 20, min: 0, max: 100. Controls the ADX threshold for identifying trending vs. ranging conditions.
  • Use EMA Filter — Default: false. When enabled, longs require close above the EMA and shorts require close below it.
  • EMA Period — Default: 200. Period of the EMA used for the EMA filter.
  • Use SMA Filter — Default: false. When enabled, longs require close above the SMA and shorts require close below it.
  • SMA Period — Default: 200. Period of the SMA used for the SMA filter.

Kernel Regression Settings

  • Trade with Kernel — Default: true. Controls whether to trade with the kernel.
  • Show Kernel Estimate — Default: true. Controls whether to display the kernel estimate on the chart.
  • Use Kernel Smoothing — Default: false. Crossover-based smoothing: fewer color flips, more ML entries.
  • Lookback Window — Default: 8, min: 3. Controls the number of bars used for the estimation. Recommended range: 3–50.
  • Relative Weighting — Default: 8. Controls the relative weighting of time frames. Recommended range: 0.25–25.
  • Start Regression at Bar — Default: 25. Controls the bar index at which regression begins. Recommended range: 2–25.
  • Kernel Lag — Default: 2. Lag used for crossover detection; lower values produce earlier crossovers. Recommended range: 1–2.

Feature Engineering Settings

Note: The Feature Engineering section is for fine-tuning the features used for predictions. The default values are optimized for the 4H to 12H timeframes for most charts but should work reasonably well across other timeframes.

There are five feature slots (Feature 1–5), each independently configurable. The Feature Count setting (from General Settings) controls how many feature slots will be used. For example, if Feature Count is 3 then Feature 1, Feature 2, and Feature 3 will be used. At least 2 features must be active. For each slot, you choose which feature type to use from the following four options — RSI, WT, CCI, and ADX. After choosing a type, set that slot's two parameters, Parameter A and Parameter B. What these parameters control depends on the type you chose for that slot:

  • RSI — Parameter A: RSI period. Parameter B: EMA smoothing period applied to the RSI.
  • WT (WaveTrend) — Parameter A: channel length. Parameter B: average length (second-stage smoothing).
  • CCI — Parameter A: CCI period. Parameter B: EMA smoothing period applied to the CCI.
  • ADX — Parameter A: ADX period. Parameter B: not used — ADX ignores it.

Using the same type in more than one slot (e.g. RSI in both Feature 1 and Feature 5) is allowed and counts as two separate features, typically with different parameter values.

Defaults by slot:

  • Feature 1 — RSI. Parameter A (period): 14. Parameter B (smoothing): 1.
  • Feature 2 — WT. Parameter A (channel length): 10. Parameter B (average length): 11.
  • Feature 3 — CCI. Parameter A (period): 20. Parameter B (smoothing): 1.
  • Feature 4 — ADX. Parameter A (period): 20. Parameter B: not used.
  • Feature 5 — RSI. Parameter A (period): 9. Parameter B (smoothing): 1.

Display Settings

  • Show Bar Colors — Default: true. Controls whether to show bar colors.
  • Show Bar Prediction Values — Default: true. Controls whether to show the model's evaluation of each bar as an integer.
  • Use ATR Offset — Default: false. Controls whether to use ATR-based offset instead of the bar prediction offset.
  • Bar Prediction Offset — Default: 0, min: 0. Controls the offset of bar predictions as a percentage from the bar high/low.


Source Code

The complete MQL5 source code is published on GitHub under the AI Edge organization. The GitHub page is shown in the gallery (S4).


Risk Disclosure

Trading involves significant risk of loss. This indicator classifies historical market states and provides signals for evaluation by the trader. It does not guarantee profitable outcomes. Past classification performance does not predict future results.


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. S. Bilge, and H. H. Ugurlu, "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. S. Bilge, Yerzhan Kerimbekov, and Hasan Huseyin Ugurlu, "A new classification method by using Lorentzian distance metric," ResearchGate, Sep. 02, 2015.
  5. Y. Kerimbekov and H. Sakir 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." [Online].


Acknowledgements

Original indicator:

  • veryfid — For many invaluable insights, discussions, and advice that helped shape this project.
  • capissimo — For open-sourcing ideas regarding various nearest-neighbor implementations, several of which helped inspire the original undertaking.
  • RikkiTavi — For many invaluable physics-related conversations and for help developing a mechanism for visualizing various distance algorithms in 3D using JavaScript.
  • jlaurel — For invaluable literature recommendations that helped ground the underlying subject matter.
  • annutara — For beta-testing the original indicator and sharing helpful ideas and insights early in its development.
  • jasontaylor7 — For beta-testing the original indicator and many helpful conversations that shaped the backtesting workflow.
  • meddymarkusvanhala — For beta-testing the original indicator.
  • dlbnext — For detailed backtesting of the original indicator and for sharing ideas on improving the user experience.

推荐产品
Gold Trader Pro is an advanced analytical tool specifically engineered for professional trading on XAUUSD (Gold). It provides an immediate comprehensive overview of market structure across 7 different timeframes, allowing traders to identify flow direction and signal strength through a modern, draggable, and interactive interface. Key Features Multi-Timeframe Analysis: Real-time monitoring of M1, M5, M15, M30, H1, H4, and D1. Two Operational Modes: MODE_SCALPING: Optimized for fast-paced analys
FREE
Elite Harmony Signals Pro Panoramica Elite Harmony Signals è un indicatore sofisticato di analisi tecnica che visualizza rettangoli dinamici che forniscono zone di trading chiare e segnali di conferma per decisioni migliorate. Caratteristiche Principali Zone Rettangolo Dinamiche Estensione in Tempo Reale : I rettangoli si estendono automaticamente all'azione corrente del prezzo Chiusura Intelligente : I rettangoli si chiudono solo quando appaiono segnali opposti Conferma Visiva : Zone di trading
Trend Follower LukaHo
Lukasz Mariusz Holla
TrendFollower(趨勢分析的瑞士軍刀) 告別傳統指標。探索 TrendFollower -五大策略合一! 厭倦了指標在市場早已過頂時發出買進訊號?你的移動平均線落後只能反映上週二的趨勢?讓我們來解決這個問題。 隆重介紹 TrendFollower -一個功能強大的模組化架構(機構級),它從五個不同的角度分析市場結構。無論你是耐心的波段交易者,還是最愛「買入/賣出」按鈕的超短線交易者,你都能在這裡找到適合自己的策略。 ️ 5 種操作模式(可在設定中選擇): ZLSMA(零滯後簡單移動平均線): 我們最喜歡的模式。它是一種速度極快的移動平均線,透過內建的 ATR 指標過濾噪音,並分析斜率角度。它瞬息萬變。延遲只是個細節上的小技巧——我們總是能及時把握。 ADHD 短線交易 :專為坐不住的你打造。閃電般快速、動態的通道,帶有雲圖(上漲/下跌雲圖),旨在捕捉微小波動和強勁的動能。 超級趨勢雲圖: 經典雲圖的現代演繹。基於 ATR 的動態波動雲圖。完美適用於嚴格的追蹤停損。 趨勢交易者: 包含 10
Supply and Demand indicator powered by advanced multi-timeframe fractal algorithms, Zone Merging technology, and full EA readiness. -  Finding the exact areas where institutional buying and selling occur is the key to successful trading. Advanced Supply & Demand Zones Simple  takes the guesswork out of chart analysis. By utilizing a dual-layered fractal calculation (Fast and Slow points) combined with dynamic ATR scaling, this indicator pinpoints high-probability reversal and continuation zones
FREE
Divergent Stochastic Filter II Catch Reversals Early, Filter Noise, Trade with Confidence The Edge: Why This Stochastic is Different  Every trader knows the Stochastic oscillator. But knowing when to trust its signals, that's the real challenge. The Divergent Stochastic Filter II transforms this classic indicator into a precision reversal detection system by adding critical elements: divergence intelligence, signal filtering and exhaustion detection.  While standard Stochastic oscillators fire s
Swing Failure Hunter
Shingidzano Lesetedi
SFP Hunter — Swing Failure Pattern SFP Hunter is a MetaTrader 5 indicator that automatically detects Swing Failure Patterns (SFP) on any symbol and timeframe. The indicator identifies single-candle stop-hunt reversals where price wicks beyond a prior swing high or low and closes back inside on the same candle, signalling a potential reversal from that level. How the Pattern Works A Swing Failure Pattern occurs when price briefly breaches a prior swing high or swing low — triggering the stop orde
The indicator detects and displays М. Gartley's Butterfly pattern. The pattern is plotted by the extreme values of the ZigZag indicator (included in the resources, no need to install). After detecting the pattern, the indicator notifies of that by the pop-up window, a mobile notification and an email. The pattern and wave parameters are displayed on the screenshots. The default parameters are used for demonstration purposes only in order to increase the amount of detected patterns. Parameters z
http://www.tradepositive.lat ALGO Smart Flow Structure Indicator The ALGO Smart Flow Structure Indicator is designed for serious traders who use objective Market structure. Forget noise and slow indicators; this tool provides you with a crystal-clear, unambiguous view of structural breakouts across all timeframes. Based on the rigorous rules of the ALGO Smart Flow methodology, the indicator filters out internal structure and only shows you the Major Structural Points (Swing Points) , ensuri
FREE
MagicPips - Ultimate Free Position Pip Counter Track Your Trading Performance in Real-Time with Precision MagicPips is a professional-grade tool for MetaTrader 5 (MT5) that provides traders with immediate, accurate pip calculations for all open positions. This utility offers a clear and customizable display of profit and loss in pips, helping traders monitor performance efficiently. Key Features Real-Time Pip Tracking Continuously updates pip gains and losses for all open positions (both buy and
FREE
The Pulse mt5
Roman Kuleshov
The Pulse 是实时显示累积周期的指标。 简单来说:积累是"聪明的钱"在市场上发起强大的运动之前悄悄地收集资产。 在图表上,看起来价格"卡在"一个范围内。 这是积累阶段-有人正在准备一个大动作。 如果你学会注意到这些时刻-当市场似乎"冻结",但在同一时间感到紧张—你可以在正确的时间在正确的地方。 此外, The Pulse  指标可以对每个累积执行计算,并确定累积期后可能的价格潜力的方向。 使用指标 The Pulse 你会更好地看到和理解市场的结构。 The Pulse Blog. The blog: Why every trader should have The Pulse indicator as an additional tool for trading. Version mt4 确定累积周期意味着能够等待合适的时机。 The Pulse 指标显示积累周期,积累中的价格可以随心所欲地移动,但最常见的是横向移动。 累积周期可以以不同的方式使用: 在积累期间,您可以远离市场,等待价格释放积累的能量并开始移动。 适当的技能和经验,你可以在积累本身内进行交易。 如果
# RSI Pro Alert - 高级RSI指标 一款功能强大的专业级RSI指标,具备智能警报、定时快照和多维度通知功能,助您精准把握市场机会! --- ## 核心特性 ### 智能信号识别 - **精准交叉检测** :自动识别RSI穿越超买/超卖水平的关键时刻 - **状态跟踪机制** :实时监控市场状态变化(超买/超卖/中性) - **首次加载通知** :指标加载时立即报告当前市场状态 ### 多维度警报系统 - **弹窗警报** :MT5原生弹窗提醒 - **声音警报** :支持自定义买入/卖出提示音 - **文件通知** :自动生成带时间戳的警报日志文件 - **冷却机制** :可自定义警报间隔,避免频繁打扰 ### 定时快照功能 - **定期报告** :可设置15分钟/30分钟/60分钟等间隔自动生成市场快照 - **完整信息** :快照包含RSI值、价格、状态、交易建议等完整信息 - **历史记录** :所有快照自动保存,便于复盘分析 ### 个性化定制 - **自定义水平** :支持调整超买(默认70)和超卖(默认30)
Size Bars
Viktor Loginov
Size Bars – индикатор отображает на графике максимальный, минимальный, текущий и средний размер баров (свечей) за выбранный период. Отображаемые параметры индикатора Size Bars: 1)       Текущий размер бара в писах (по максимум/минимум, тело бара). 2)       Максимальный, минимальный и средний размер свечей BUY . 3)       Максимальный, минимальный, средний размер свечей SELL . 4)       Количество свечей BUY и количество свечей SELL . 5)       Среднее количество свечей подряд BUY и SELL . 6)     
Market Maestro: Your Ideal Partner for Automated Forex Trading If you're looking for a reliable assistant for trading in the currency market, Market Maestro is exactly what you need. This modern Forex bot is built using the latest technologies and algorithms, allowing it to effectively analyze market data and make informed trading decisions in real-time. Key Features of Market Maestro 1. Multicurrency Capability for Broad Opportunities Market Maestro can work with a wide range of currency pairs,
BlueBoat – Prime Cycle is a technical indicator for MetaTrader 5 that visualizes market cycles based on the Fimathe cycle model (Marcelo Ferreira) . It identifies and displays historic and live cycle structures such as CA, C1, C2, C3, etc., helping traders understand the rhythm and timing of price movement across multiple sessions. This tool is ideal for manual analysis or as a supporting signal in discretionary strategies. Key Features Historical Cycle Analysis – Backtest and visualize as many
CosmiCLab FIBO
Kirils Subins
CosmiCLab SMC FIBO CosmiCLab SMC FIBO is a professional trading indicator designed for traders who use Smart Money Concepts (SMC), market structure analysis and Fibonacci retracement levels. The indicator automatically detects market swings and builds Fibonacci levels based on the latest impulse movement. It also identifies market structure changes such as BOS (Break of Structure) and CHOCH (Change of Character), helping traders understand the current market direction. CosmiCLab SMC FIBO also pr
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
WickAndBody Volume Flow
Henry Armando Baltazar
WickAndBody Volume Flow v5.2 Order Flow Analysis through Candle Segmentation The WickAndBody Volume Flow is an advanced diagnostic tool for MetaTrader that allows traders to "see" inside every Japanese candlestick. Unlike conventional volume indicators, this algorithm utilizes Multi-Timeframe (MTF) technology to break down real volume and determine exactly how much capital was traded in the wicks versus the candle body . Key Features Volume Detection: Uses lower timeframe data (M1/M5) to reconst
FREE
Bober Real MT5
Arnold Bobrinskii
4.88 (16)
Bober Real MT5 是一个全自动的外汇交易智能交易系统(EA)。该机器人创建于 2014 年 ,在此期间完成了大量盈利交易,在我的个人账户上实现了超过 7000% 的收益增长 。经过多次更新, 2019 年版本 是最稳定、最优秀的。机器人可用于任何交易品种,但在 EURGBP、GBPUSD(M5 周期) 上表现最佳。使用错误的参数会导致较差结果。 真实账户的 set 文件仅提供给购买者。 ️ 主要优势 无马丁格尔、无对冲、无加仓,始终使用 SL/TP 。 高速测试与优化。 可选 Dynamic Take-Profit ,自动适应价格通道高低点。 内置 新闻日历过滤器 ,自动避开重大事件。 自动检测 GMT 偏移 。 针对实盘交易长期优化,结果稳定。 设置后可自动运行,无需干预。 参数说明 Core / Trading type_order — 订单执行类型 (默认 ORDER_FILLING_FOK)。 ReverseTrade — 反转交易方向。 ToolEnter — 入场工具 (RSI 或 None)。 RSI304 / NoRSIbars — RSI 周期与
SPIKE Radar Alet
Odete Argelio Simbine
SPIKE DETECTOR RADAR ALERT – Surgical Precision in Explosive Market Movements Master market spikes with early alerts and high probability accuracy. Spike Detector Radar Alert is an advanced indicator for MetaTrader 5, developed to identify sudden price movements (spikes) in advance with enhanced precision. By combining volatility analysis, momentum strength, and price acceleration, the algorithm delivers clear signals at key market moments. Why traders choose Spike Detector Radar Alert: Mul
VIP Buy Sell Signals
Hapu Arachchilage Tharindu Lakmal
Contact me through this email aaddress to download the FREE strategy PDF for this indicator tharindu999lakmal@gmail.com Introduction   The   "Buy Sell Signals"   is designed to provide BUY and SELL trade signals based on the current market conditions.   A   Trading Strategy   (Chee sheet)  has been  provided for this trading indicator.   (Read the description). This indicator has time tuned e ntry signals . so,   you will enter the market at the very best price level   with this indicator .  
Breakevan Utility
Jose Luis Thenier Villa
BreakEvan Utility  Is a simple tool in a panel with this utilities: This utility will draw a Golden Line in the chart applied showing the breakeven price, considering all the positions opened for that specific symbol. Also the information panel shows: Balance Breakeven Price for that chart Force Breakeven (for that symbol) as ON/OFF Force Breakeven Global (takes into account all trades opened) as ON/OFF Total Lots opened for Symbol Total Lots opened Global And two buttons: Force Breakeven: Whe
Silver Zebra Trading System
AL MOOSAWI ABDULLAH JAFFER BAQER
Silver Zebra Trading System - Uncover Market Momentum Unlock a powerful new way to visualize market trends and momentum with the Silver Zebra Trading System. This unique MetaTrader 5 indicator is designed to give you a clear and immediate understanding of market dynamics, helping you make more informed trading decisions. For just $30, you can add this indispensable tool to your trading arsenal. What is the Silver Zebra Trading System? The Silver Zebra Trading System is a sophisticated indicator
WanaScalper
Isaac Wanasolo
1 (1)
A scalping indicator based on mathematical patterns, which on average gives signals with relatively small SL, and also occasionally helps to catch big moves in the markets (more information in the video) This indicator has three main types of notifications: The first type warns of a possible/upcoming signal on the next bar The second type indicates the presence of a ready signal to enter the market/open a position The third type is for SL and TP levels - you will be notified every time price re
支撑和阻力指标是改编自标准的比尔威廉姆斯的分形指标。 该指标可工作于任何时间帧。它在图表上显示支撑和阻力位,并允许设置止损和止盈级别 (您可以通过鼠标覆盖级别来检查其精确值)。 蓝色点划线是支撑位。 红色点划线是阻力位。 如果您愿意, 您可以改变这些线的样式和颜色。 如果价格接近支撑位,卖方的活跃度降低,买方的活跃度增加。如果价格接近阻力位,买方的活跃度降低,卖方的活跃度增加。 注, 当价格突破支撑位, 它变为阻力位; 同样当价格突破阻力位, 它变为支撑位。
Discover our groundbreaking scalping trading bot designed for small trading accounts. This bot utilizes a simple fractal breakout strategy, executing fast trades based on local highs and lows. Key Features: Trading System: Utilizes fractals for entry points in both long and short positions. Settings Explained: Detailed inputs including timeframes, risk management, and ATR-based stop-loss and take-profit levels. Optimal Trading Times: Best used with pairs like EUR/USD or USD/JPY during liquid ma
Orderblocks ICT Levels
Philip Esterhuizen
ICT Order Blocks Premium Indicator Professional Market Structure Analysis Based on ICT Methodology OrderBlocks ICT   is an advanced technical analysis tool that identifies high-probability trading zones based on the Inner Circle Trader (ICT) methodology. This professional-grade indicator detects key market turning points using institutional order block analysis, revealing where smart money is likely accumulating positions. Key Features: Smart Filtering Technology : Eliminates weak and insignific
Candle Pattern Finder MT5
Pavel Zamoshnikov
4.2 (5)
This indicator searches for candlestick patterns. Its operation principle is based on Candlestick Charting Explained: Timeless Techniques for Trading Stocks and Futures by Gregory L. Morris. If a pattern is detected, the indicator displays a message at a bar closure. If you trade using the MetaTrader 4 terminal, then you can download the full analogue of the " Candle Pattern Finder for MT4 " indicator It recognizes the following patterns: Bullish/Bearish (possible settings in brackets) : Hammer
LBR Oscillator
Pablo Filipe Soares De Almeida
LBR Oscillator – 3/10 Oscillator LBR Oscillator 是经典 3/10 Oscillator 的增强版本,该指标由专业交易员 Linda Raschke 广泛使用并推广。 该指标严格遵循 Linda Raschke 使用的原始标准参数:3 周期和 10 周期移动平均线,以及 16 周期信号线,专注于动量读取和市场节奏变化。 概念基础 – Linda Raschke 如何使用 3/10 Oscillator Linda Raschke 将 3/10 Oscillator 作为动量确认工具,而不是简单的自动信号生成器。 主要用途包括: 识别动量的加速与减速 确认趋势中的回调 预判市场短期方向变化 与价格行为、移动平均线和趋势背景结合使用 重点在于柱状图的行为、斜率和方向变化,而不仅仅是机械式的交叉。 柱状图表示快速均线(3 周期)与慢速均线(10 周期)之间的差值: 高于零表示看涨动量 低于零表示看跌动量 柱体的扩展或收缩显示动量的增强或减弱。 高级配色系统(Visual Clarity Mode) 为了提升视觉可读性,增加了智能配色模式: 零轴配
IVISTscalp5
Vadym Zhukovskyi
5 (6)
[iVISTscalp5]:通过时间研究市场行为的实验室 TLV Framework | Liquidity Activation Points ⸻ 项目概述 iVISTscalp5 是在 VISTmany 项目框架下开发的多层级时间与价格结构指标。 该系统通过 Liquidity Activation Points(时间激活点 / timings)预测: 市场启动时间 方向 运动范围 iVISTscalp5 指标可使用默认参数应用于任何金融工具。 ⸻ 实际价值 iVISTscalp5 并不是作为传统技术指标而开发的。 它的核心理念是: 让任何人都能够通过“时间”研究市场行为。 ⸻ Time Language VISTmany (TLV) — 项目的核心概念 t(p) t(p) 是 timings 被激活的价格水平。 ⸻ p(p) p(p) 是 iVISTscalp5 指标构建的核心价格水平。 最强的市场反应通常出现在: t(p) 与 p(p) 相互作用时。 ⸻ 在 TLV(Time Language VIST
Exclusive Black Pro Max MT5 — 自动化交易系统 Exclusive Black Pro Max MT5 是一款基于先进市场分析算法和风险管理策略的 MetaTrader 5 智能交易顾问。该顾问全自动运行,几乎无需交易者干预。 注意!购买后请立即联系我 ,以获取详细的安装和设置说明! 重要提示: 所有示例、截图和测试仅用于演示。如果某个货币对在某个经纪商处表现良好,并不意味着在其他经纪商处也会如此。每个经纪商都有自己的报价、点差和交易条件,因此 每个货币对必须由用户自行优化 ,并且在真实账户上 仅以单货币模式运行 。多货币截图仅用于说明。 重要信息: 该顾问的演示版本仅供评估使用。未经优化的测试结果不能反映算法的真实表现。完整使用需要针对经纪商、资金规模和所选工具进行个性化优化。优化必须由用户独立完成,并且至少 每年一次 。 请记住:最终结果直接取决于您的交易经验以及您在优化过程中设置的参数。 主要特点 市场分析算法: 指标与过滤器的组合,用于识别交易机会。 灵活性: 可适应不断变化的市场条件和不同的波动水平。 现代订单执行类型: IOC, FOK, Ret
该产品的买家也购买
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
本产品已针对 2026 年市场进行更新,并针对最新 MT5 版本进行了优化。 价格更新通知: Smart Trend Trading System 目前价格为 $99 。 接下来的 30 次购买 后,价格将上涨至 $199 。 特别优惠: 购买 Smart Trend Trading System 后,请发送私信给我,即可免费领取 Smart Universal EA ,并将您的 Smart Trend 信号转换为自动交易。 Smart Trend Trading System 是一套完整的交易系统,具备不重绘、不回绘、不延迟的特点,专为希望获得更清晰信号、更准确趋势方向以及更有组织交易方式的交易者打造。 Online course , manual and [download presets] . 它将 10 多种交易工具 整合到一个系统中,包括趋势检测、反转区域、Smart Cloud、移动止损逻辑、支撑与阻力、K线着色、提醒以及多周期分析。 该系统旨在帮助您应对不同的市场环境: 趋势市场: 识别主要趋势,发现回调,跟随动能,并通过止损指导和移动止损选项寻找更清晰的入场机会。
SuperScalp Pro
Van Minh Nguyen
4.69 (29)
SuperScalp Pro – 专业多层共振剥头皮交易系统 SuperScalp Pro 是一款专业的多重共振剥头皮交易系统,旨在帮助交易者识别更高概率的交易机会,提供更清晰的入场确认、基于 ATR 的止损(Stop Loss)和止盈(Take Profit)水平,以及适用于 XAUUSD、BTCUSD 和主要外汇货币对的灵活信号过滤功能。 完整使用文档可在产品博客查看: [User Guide] 支持通过 SuperScalp Pro Auto Trader EA 进行自动交易: [Auto Trader] 基于 SuperScalp Pro 交易逻辑构建的黄金自动剥头皮交易 EA: [SuperScalp Gold] SuperScalp Pro 集成了 Supertrend、VWAP、EMA、RSI、ADX、成交量分析、布林带(Bollinger Bands)以及 MACD 背离分析,用于过滤低质量交易机会,减少虚假突破信号,并提高入场精准度。 SuperScalp Pro 专为 XAUUSD、BTCUSD 以及主要外汇货币对优化设计,通过基于 ATR 的波动率逻辑和规则化
M1 Quantum MT5
Hamed Dehgani
5 (8)
开发者提示: 价格将于 2026年7月13日 上涨至 169美元 。 使用 M1 Quantum 的实盘交易信号 : 信号 (交易由 Quantum Trade Assistant 自动 执行,并作为本产品 免费 提供。) 价格计划: 当前价格: $149 (早期用户优惠) 下一阶段计划价格: $169 计划零售价: $299 开发者提示: 购买后请联系我,以获取 最新推荐的参数设置文件(Set File) 、交易建议,以及加入 VIP 支持群组 ,与其他 M1 Quantum 用户交流经验。 M1 Quantum 是一款专业的 M1 交易系统,提供快速且精准的交易信号,并内置止损(Stop Loss)、止盈(Take Profit)以及智能资金管理功能。 M1 Quantum 包含专业的资金管理系统,通过专注于 连续盈利交易 ,帮助交易者更快地增长账户资金。 M1 Quantum 指标 的主要特点 专为 M1 时间周期 和所有 主要货币对 设计 所有交易均配备止损和止盈 内置 资金管理功能 ,并指导交易者轻松执行交易计划 高胜率,高比例的 连续盈利交易 无重绘,无延迟 适合各种类型
SMC Intraday Formula
Kareem Abbas
5 (19)
让我们先坦诚一点。 没有任何一个指标可以单独让你实现盈利。如果有人告诉你可以,那他是在向你兜售一个梦想。任何显示完美买卖箭头的指标都可以被做得看起来毫无瑕疵——只需要放大历史中的某一段并截取成功交易的截图。我们不会这样做。 SMC Intraday Formula 是一个工具。 它为你读取市场结构,标记出概率最高的价格区域,并用简单直白的语言准确告诉你当前智能资金的行为轨迹。你仍然需要做决定。你仍然需要执行交易。但现在,你是带着精确性执行,而不是靠希望。 我们已经在黄金(XAUUSD)以及主要外汇货币对的日内剥头皮交易中使用该指标将近三年。这是我们在 M1、M5、M15 和 M30 上的日常主力工具。它之所以有效,是因为它不试图预测未来——它展示的是当前正在形成的高概率交易机会,并解释 为什么 。 它与其他所有指标有什么不同? 大多数交易指标只做一件事。移动平均线交叉。振荡指标触及某个水平。出现一个箭头。你进场交易。你亏损。你责怪指标。重复。 SMC Intraday Formula 将多个机构级概念整合为一个统一的市场解读: - 斐波那契共振引擎 不只是普通的斐波那契水平——该指标
Gold Entry Sniper
Tahir Mehmood
5 (14)
Gold Entry Sniper – 专业多周期ATR黄金交易仪表盘,适合黄金剥头皮与波段交易 Gold Entry Sniper 是一款先进的 MetaTrader 5 指标,旨在为 XAUUSD 及其他品种提供精准的 买/卖信号 。基于 ATR 移动止损逻辑 和 多周期分析仪表盘 ,适合剥头皮交易者与波段交易者,帮助识别 高概率黄金入场点 。 主要功能与优势 多周期信号分析 – 同时显示 M1、M5、M15 趋势方向。 基于ATR的动态止损 – 根据波动性自动调整。 专业图表仪表盘 – 展示信号状态、ATR水平、线性回归中线和交易方向。 清晰买卖标记 – 自动箭头与文字标签提示。 离场提示与交易管理 – 自动检测离场信号锁定利润。 全面自定义 – 调整仪表盘位置、颜色、字体及参数。 专为黄金优化 – 适用于 M1至M15 黄金剥头皮 ,也适合外汇、指数与加密货币。 为什么选择 Gold Entry Sniper? 为追求 快速、精准、可视化交易决策 的交易者打造,ATR 与多周期确认结合,帮助你抓住 最佳黄金入场点
Trend Sniper X
Sarvarbek Abduvoxobov
5 (4)
Trend Sniper X 是一款适用于 MetaTrader 5 的多时间周期趋势跟踪指标,帮助交易者以清晰、精确的方式识别趋势方向和潜在的反转点。 价格信息: 当前价格为促销价,随着未来更新和新功能的发布,价格可能会有所变动。 Code2Profit 频道 通过多时间框架分析掌握市场! 技术规格 平台 MetaTrader 5 指标类型 多时间周期趋势指标 运行时间周期 任何图表时间周期,可独立选择更高的时间周期 (M1–MN1) 主要交易品种 外汇、黄金 (XAUUSD) 及其他差价合约 (CFD) 推荐账户 任何账户类型 可视化 彩色趋势蜡烛 (买入/卖出/微弱/变化) + 买入/卖出箭头 附加模块 交易时段方框 (悉尼、东京、伦敦、纽约) 主要功能 多时间周期趋势分析: 直接在当前图表上投射更高时间周期的趋势方向,提供清晰的宏观视角。 弱势/不确定柱检测: 高亮显示趋势条件不明朗的柱线,让交易者避开震荡区域。 买入/卖出信号箭头: 在确认趋势变化后的柱线上自动绘制箭头,支持警报、推送和电子邮件通知。 一键开启/关闭面板: 图表上的按钮可切换指标,下拉菜单可立即切换分析时间周
Entry In The Zone and SMC Multi Timeframe is a real-time 2-in-1 market analysis tool that combines SMC market structure analysis and a No Repaint BUY / SELL signal system into a single indicator, built on Smart Money Concepts (SMC) — a widely adopted framework used by professional traders to understand market structure. This indicator helps you see the market more clearly, make decisions based on structure rather than guesswork, and focus on high-probability zones where price is more likely to r
Atomic Analyst MT5
Issam Kassas
4.33 (43)
本产品已针对 2026 年市场进行更新,并针对最新 MT5 版本进行了优化。 价格更新通知: Atomic Analyst 目前价格为 $99 。 接下来的 30 次购买 后,价格将上涨至 $199 。 特别优惠: 购买 Atomic Analyst 后,请发送私信给我,即可免费领取 Smart Universal EA ,并将您的 Atomic Analyst 信号转换为自动交易。 Atomic Analyst 是一款不重绘、不回绘、不延迟的 Price Action 交易指标,专为手动交易、清晰信号和 EA 自动化而设计。 User manual: settings, inputs and strategy.   &   User Manual PDF . 它分析价格行为、强度、动能、多周期方向和高级过滤器,帮助交易者减少噪音,避免弱势交易机会,并做出更有结构的交易决策。 该指标将复杂的市场计算转换为简单的视觉信号、彩色K线、趋势读数、止损水平和多个止盈区域,使交易者能够快速理解并应用于真实市场环境。 主要交易用途: 剥头皮和日内交易: 专为快速决策、清晰箭头、提醒、K线颜色和
Divergence Bomber
Ihor Otkydach
4.9 (92)
购买该指标的每位用户将额外免费获得以下内容: 原创工具“Bomber Utility”,该工具会自动跟踪每一笔交易,设置止损和止盈点,并根据策略规则自动平仓; 适用于不同交易品种的指标设置文件(Set 文件); 三种不同风险模式下的 Bomber Utility 设置文件:“最低风险”、“平衡风险” 和 “观望策略”; 一套详细的 视频操作手册,帮助您快速完成安装、配置并开始使用本交易系统。 注意: 要获取以上所有赠品,请通过 MQL5 的私人消息系统联系卖家。 我为您介绍原创的自定义指标 “Divergence Bomber”(背离轰炸机),它是一套基于 MACD 背离交易策略 的“全功能”交易系统。 该技术指标的主要任务是识别 价格与 MACD 指标之间的背离,并发出交易信号(包括推送通知),指示未来价格可能的运动方向。平均而言,这些信号的准确率超过 98%。有关该指标如何工作的详细说明,请观看本页面上的视频演示。 该系统使用 止损订单 和 动态回撤平仓机制 来管理交易。 Divergence Bomber 指标的主要特点: 支持交易的品种: AUDCAD、AUDCHF、AUDSG
Gann Made Easy MT5
Oleg Rodin
5 (8)
Gann Made Easy   是一个专业且易于使用的外汇交易系统,它基于使用先生理论的最佳交易原则。 W.D.江恩。该指标提供准确的买入和卖出信号,包括止损和获利水平。您甚至可以使用推送通知在旅途中进行交易。 购买后请联系我,即可免费获得交易指导和超棒的额外指标! 您可能已经多次听说过江恩交易方法。通常 Gann 的理论不仅对于新手交易者而且对于那些已经有一定交易经验的人来说都是非常复杂的东西。这是因为江恩的交易方法在理论上并不那么容易应用。我花了几年时间来完善这些知识,并将最好的原则应用到我的外汇指标中。 该指标非常易于应用。您所需要的只是将其附加到您的图表并遵循简单的交易建议。该指标不断进行市场分析工作并寻找交易机会。当它检测到一个好的入口点时,它会为您提供一个箭头信号。该指标还显示止损和获利水平。 换句话说,当您像先生一样进行交易时,该指标会为您提供最佳江恩建议。江恩亲自告诉你此时此刻该做什么。但最好的部分是您不需要了解任何有关江恩交易原则的知识,因为该指标会为您完成整个市场分析工作。
M1 Sniper MT5
Oleg Rodin
5 (1)
M1 SNIPER   是一款易于使用的交易指标系统。它是一个专为 M1 时间框架设计的箭头指标。该指标可以作为独立的系统在 M1 时间框架下进行剥头皮交易,也可以作为您现有交易系统的一部分使用。虽然该交易系统专为 M1 时间框架交易而设计,但它也可以用于其他时间框架。我最初设计此方法是为了交易 XAUUSD 和 BTCUSD。但我发现这种方法在其他市场交易中也同样有用。 指标信号既可以顺势交易,也可以逆势交易。我教授一种特殊的交易技巧,帮助您利用指标信号进行双向交易。该方法基于使用特殊的动态支撑位和阻力位区域。 购买后,您可以立即下载 M1 SNIPER 箭头指标。此外,我还为所有 M1 SNIPER 工具用户免费提供下方屏幕截图所示的 Apollo Dynamic SR 指标!这两个指标的组合可以帮助您更轻松、更准确地利用 M1 时间框架进行交易。 购买后请联系我,免费获取交易提示和奖励指标! 祝您交易成功!
Power Candles MT5
Daniel Stein
5 (8)
Power Candles V3 - 自我优化的强度指标 Power Candles V3 把货币与品种的强度直接转化为图表上可执行的交易方案。指标不再仅根据强度给K线着色,而是在后台持续运行实时自动优化,为您正面对的品种给出最佳 Stop Loss、Take Profit 与信号阈值。一键采用,Entry、Stop Loss、Take Profit 线就以精确价格绘制在图表上,提醒消息中直接包含方向。 本工具是 Stein Investments 生态系统的一部分 - 18+ 款工具,加上 Max,您的一对一 AI 交易导师。  随时在线,深入了解每一款指标,在您需要梳理思路的那一刻就在那里。  立即认识他: https://stein.investments 每根收盘K线运行 3,000+ 次交易模拟。9 种强度状态。2 种策略并行测试。一键采用最优配置。 为什么需要这个 大多数强度指标只给您一个数值,然后留下三个问题:相信哪个阈值、用哪个 Stop Loss、走哪个交易方向。Power Candles V3 在每根收盘K线上自动回答这些问题。结果就是一个完整的交易方案 -
Entry Points Pro for MT5
Yury Orlov
4.49 (143)
传奇回归:Entry Points Pro 10。 这款传奇指标曾 3 年稳居 MQL5 Market 前三,如今全面重启。 数百条热情好评(两个版本合计 589 条),每天有数千名交易者用它交易,演示版下载 31,000+ 次。 五年来我读过你们的每一条评价——在第 10 版里,我没有给出许诺,而是把答案直接做进了产品。指标作者自 1999 年入市, 珍视诚信、自己的声誉和自己的客户 。 Entry Points Pro 给出的入场信号严格不重绘。 而且这一次不再只是作者的一面之词,而是可验证的事实:确认信号只在 K 线收盘后标出,自动化测试记录到 零重绘 (在 EURUSD、XAUUSD 和 BTCUSD 上共 2,486,568 次不变量检查——0 次违规)。测试方法完全公开——您可以在策略测试器中自行复现。 购买后请务必第一时间给我发私信。 我会发给您 扩展版说明书《交易者圣经》 ——使用本指标交易的完整指南——并告诉您如何免费获得 赠品:市场扫描器 ,它能同时分析多个品种和多个时间周期,并在一个界面上显示 Entry Points Pro 此刻在哪里表现最好。 我不要求您轻信
GoldenX Entry MT5
Kareem Abbas
5 (14)
GoldenX Entry 是一款用于 MT5 的指标,包含自适应 Smart Entry Trend 算法、信号评分系统、市场状态识别器以及波动率过滤器。每个信号都包含计算得出的入场位、三个止盈位(TP1、TP2、TP3)以及止损位。它基于多个分析层构建,旨在适应不同市场条件,将多层分析系统与内置优化器及统计跟踪系统相结合。该指标基于风险收益比(RR)指标和历史交易行为提供量化分析。 开始使用非常简单——在所选时间周期上运行优化器,然后在图表上开始使用该指标。 核心功能 GoldenX Entry 将信号引擎与内置交易管理及历史统计跟踪整合在同一图表中: - 内置优化器: 优化器可在图表上单击运行。它通过两阶段搜索流程测试200种参数组合——先进行探索,再进行优化——并在完成后自动应用选定配置。结果会按时间周期缓存,因此当返回已优化的周期时,会立即恢复相同设置。 - 黄金品种自动周期识别: 将指标加载到任何 XAUUSD 图表(M1 到月线)。系统会自动识别当前周期并加载对应预设。共包含9个时间周期配置文件,专为黄金在标准周期上优化设计。切换周期时,参数会自动调整。 - 资金参考面
Trend Catcher ind mt5
Ramil Minniakhmetov
5 (10)
趨勢捕捉指標 趨勢捕捉指標結合了作者獨有的客製化自適應趨勢分析指標,用於分析市場價格趨勢。它透過過濾掉短期噪音,並專注於潛在的動能強度、波動性擴張和價格結構行為,來識別真實的市場方向。此外,它還結合了平滑和趨勢過濾等客製化指標,例如移動平均線、相對強弱指標 (RSI) 和波動率過濾器。 您可以在這裡查看實際運行情況以及我的其他產品: https://www.mql5.com/en/users/mechanic/seller 請注意,我不會在 Telegram 上出售 EA 或任何設置,那是騙局。所有設定都可以在我的部落格上免費取得。 重要提示!購買後請立即聯繫我,以獲取使用說明和額外獎勵! 請注意,我不會在 Telegram 上出售 EA 或任何設置,那是騙局。所有設定都可以在我的部落格上免費取得。
Zain v4 With artificial intelligence
Haitham Gamal Abdelnaser Mohamed
### **Zain Gold V4 - AI-Powered Trading Dashboard** **Overview:** Zain Gold V4 is the ultimate evolution in our series of professional technical analysis indicators for the MetaTrader 5 platform. Engineered specifically to navigate the complexities of the XAUUSD (Gold) market and major currency pairs, this version introduces a sophisticated AI-powered dashboard. Our goal is to empower traders with precise, data-driven insights that translate market noise into clear, actionable trading opportun
Crystal Heikin Ashi Signals
Muhammad Jawad Shabir
5 (2)
Crystal Heikin Ashi Signals - Professional Trend & Signal Detection Indicator Advanced Heikin Ashi Visualization with Intelligent Signal System for Manual & Automated Trading Final Price: $149 ---------> Price goes up $10 after every 10 sales . Limited slots available — act fast . Overview Crystal Heikin Ashi Signals is a professional-grade MetaTrader 5 indicator that combines pure Heikin Ashi candle visualization with an advanced momentum-shift detection system. Designed for both manual traders
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
Axiom Matrix
Issam Kassas
5 (3)
AXIOM MATRIX MT5 首发价格:$99 Axiom Matrix 现以 $99 的首发价格提供。 前 30 次购买完成后,价格将上涨至 $199。 购买后,请直接私信我,以获取使用说明并领取您的专属赠品奖励。 Axiom Matrix 是一款适用于 MetaTrader 5 的专业多品种、多时间周期市场扫描器和决策仪表板。 它会扫描您的 Market Watch,分析多个时间周期,读取多个证据引擎,比较最强的交易机会,并在一个清晰的矩阵仪表板中显示最佳 BUY、SELL、WAIT 或被阻止的状态。 我开发 Axiom Matrix,是因为我想要一个可以替我完成繁重市场扫描工作的工具。 我不想只单独检查 RSI。 然后单独检查 MACD。 然后检查移动平均线。 然后检查成交量。 然后检查波动率。 然后检查支撑和阻力。 然后还要手动在不同品种和时间周期之间切换,只为了建立一个交易思路。 我想要一个仪表板,可以扫描市场、比较证据、排序最佳机会,并告诉我现在最强的交易设置在哪里。 这就是 Axiom Matrix 背后的核心理念。 AXIOM MATRIX 的功能 Axiom Ma
KAMA Confluence Engine 顺势交易——在趋势反转的那一刻立即知道你的入场、止损和目标位。 KAMA Confluence Engine 是一款基于考夫曼自适应移动平均线(KAMA)的全能趋势指标,并结合了成交量加权、多周期共振确认以及自动交易水平。它会根据市场环境自动调整:在趋势行情中快速敏捷,在震荡行情中平稳过滤噪音——让你始终站在正确的一侧。 它的独特之处 成交量加权自适应引擎 ——当真实的成交量进入市场时,KAMA 线会加速;当成交量减弱时,它会放缓,让你留在强势行情中,避开假突破。 醒目的霓虹趋势带 ——亮丽、流畅的线条,底部带有深色阴影。绿色 = 上升趋势,红色 = 下降趋势,灰色 = 横盘/无交易。趋势一眼即可识别,即使远距离也清晰可见。 趋势颜色蜡烛图 ——蜡烛本身会根据趋势着色,让整个图表呈现统一的趋势故事。 自动 Entry / SL / TP 水平(新功能) 当新趋势出现时,指标会自动在图表上绘制可直接使用的交易水平: 入场线位于信号价格 止损由 ATR 计算(根据品种波动性自动调整) TP1 / TP2 / TP3 按你设定的风险回报比(默认
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。 接触 如果您有任何疑问或需要帮助,请通过私人消息与我联系。
本产品已针对 2026 年市场进行更新,并针对最新 MT5 版本进行了优化。 价格更新通知: Smart Price Action Concepts 目前价格为 $200 。 接下来的 30 次购买 后,价格将上涨至 $299 。 特别优惠: 购买后,请发送私信给我,即可领取 免费赠品 + 礼物 。 首先需要强调的是,这款交易工具是不重绘、不回绘、不延迟的指标,因此非常适合专业交易使用。 Online course , and manual Smart Price Action Concepts 指标是一款非常强大的工具,适合新手和有经验的交易者使用。它将 20 多个实用指标整合到一个系统中,结合了 Inner Circle Trader Analysis 和 Smart Money Concepts Trading Strategies 等高级交易理念。该指标专注于 Smart Money Concepts,帮助交易者理解大型机构如何交易,并辅助预测其市场行为。 它特别擅长流动性分析,使交易者更容易理解机构交易逻辑。它也非常适合预测市场趋势并仔细分析价格走势。通过让交易与机构策略保
MT5 Indicator See What the Market Is Really Doing, See the 3 Market Phases Live in front of you (Contraction, Expansion, Trend Phases) and have Better Entries at the Early Stage in the Trend Phase. Stop guessing . Start reading the market like the institutions, Smart Money do. Apex Market Structure Pro Indicator 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, accumulat
Super Hero Signals
Eugen-alexandru Zibileanu
5 (2)
SUPER HERO Signals 是 MeanFX 推出的全新交易指标。它将精准交易信号与自适应 TP/SL(止盈/止损)水平相结合,从而帮助交易者获得具有最佳统计优势的交易机会。 每售出 5 份后价格将上涨一次,下一阶段价格为 50 美元 。 购买前请先联系我,以获取实时图表演示和最新交易统计数据。这将帮助您做出更明智的决定,并有望提升您的交易表现。 为什么选择 SUPER HERO Signals? 经统计验证的 M15 黄金(XAUUSD)交易表现 (专注于精通单一时间周期,而不是同时涉猎多个市场却无法保持稳定结果。) 每天仅产生 1 至 3 次交易机会,胜率高,并具备明确的统计优势。 图表上仅显示经过确认的 BUY(买入)和 SELL(卖出)信号。 指标会根据市场情况自动生成每笔交易的止盈(TP)和止损(SL)水平。 平均胜率达到 75% 以上。 平均盈亏比达到 1:2 以上,止盈目标至少为止损距离的两倍。 支持手机推送通知和实时警报。 采用适合 Prop Firm(资金管理公司)规则的交易方式。 简单易懂,适合所有经验水平的交易者。 可获得开发者提供的个人技术支持。 10
Gold Sniper Scalper Pro
Ich Khiem Nguyen
3.78 (9)
Gold Sniper Scalper Pro 是一款专为检测 XAUUSD 上的 假突破 (false breakout)形态而构建的 MetaTrader 5 指标。它识别 4 根K线陷阱结构——价格突破区间边界、吸引突破交易者入场、然后反转回区间内部——确认该突破为虚假突破。指标通过 17 个质量因子对每个交易设置评分,经过 4 层汇流管道评估,对照 7 个时间框架趋势共识引擎验证,并通过黄金波动率状态分类器过滤——所有这些都在信号显示在图表之前完成。 详细的用户指南可在作者的   MQL5 博客   中找到。额外更新可通过作者的   MQL5 频道   获取。 根据当前的支持政策,购买者可能会获得作者开发的精选配套工具的额外使用权限。 该系统也适用于外汇货币对、指数和加密货币,但其检测参数、波动率处理和过滤器逻辑针对 XAUUSD 的特性进行了优化。 4 根K线假突破形态 检测引擎识别特定的四组件K线结构。Mother Bar 建立清晰的价格区间。一到三根 Inside Bar 在该区间内形成,压缩价格。False Breakout Candle 将价格推出边界——扫
ACB Breakout Arrows MT5
KEENBASE SOFTWARE SOLUTIONS
3.5 (2)
ACB Breakout Arrows 指标通过检测特殊的突破形态,提供市场中的关键入场信号。该指标持续扫描图表中的价格动量,在价格出现重大变动前,提前提供精确的入场信号。 点击此处获取多品种多周期扫描器 - ACB Breakout Arrows MT5 扫描器 主要特点 指标自动提供止损和止盈价格。 内置多周期扫描仪仪表盘,可追踪所有时间周期的突破信号。 适用于日内交易者、波段交易者和剥头皮交易者。 优化算法提升信号精度。 特别设置的快速盈利线用于无亏损移动或短线目标。 支持胜率、盈亏比、平均利润等绩效分析指标。 无重绘,信号可靠。 交易确认 - 可使用 ACB Trade Filter 指标 来过滤低概率的交易信号。 强烈买入: 向上箭头 + 绿色柱状图 + 多头趋势。 强烈卖出: 向下箭头 + 红色柱状图 + 空头趋势。 当柱状图为灰色且趋势为震荡时,应避免交易。 (可选) -  使用  KT 支撑阻力水平指标  避免在重要支撑/阻力位附近入场。这类交易可能迅速变成亏损。 “一个成功交易者的目标是做出最好的交易。金钱只是附属。” —— 亚历山大·埃尔德 输入参数 历史
Prop Firm Sniper MT5
Mohamed Hassan
5 (1)
Prop Firm Sniper MT5 is a professional market structure indicator that automatically identifies high-probability BUY and SELL opportunities using BOS and CHoCH analysis. Recommended Timeframes: For backtesting, use the indicator on   M5 or M15   for Gold (XAUUSD), and   M15 or H1   for more volatile Forex pairs such as   GBPUSD, USDJPY, EURGBP , and similar markets. CONTACT ME AFTER PURCHASE TO CLAIM YOUR FREE BONUSES! Prop Firm Sniper  is a professional market structure indicator designed to
FX Trend MT5 NG
Daniel Stein
5 (6)
FX Trend NG:新一代多市场趋势智能分析工具 概述 FX Trend NG 是一款专业的多时间周期趋势分析与市场监控工具,帮助您在几秒钟内全面了解市场结构。 无需在多个图表之间来回切换,您可以立即看到哪些品种处于趋势中、哪里动能正在减弱,以及哪些时间周期之间存在强烈共振。 限时发布优惠 – 仅需 $30(6个月) 或 $80 终身授权 即可拥有 FX Trend NG 。 已经是 Stein Investments 客户? -> 发送消息 以获取专属客户群访问权限。 需要帮助或安装指导? -> 请访问 Stein Investments 官方页面 。 1. FX Trend NG 的核心优势 三状态趋势逻辑 —— 不只是 Buy 或 Sell • 大多数指标仅显示两种状态:Buy 或 Sell。 • FX Trend NG 增加第三种状态: Fade 。 • Fade 表示趋势强度正在减弱,在完全反转之前提前发出信号。 这种结构化逻辑让您看到趋势变化过程,而不仅仅是简单方向信号。 多时间周期分析(M1 至 MN1) • 从短线交易到中长线交易全面覆盖。 • 快速识别趋势
筛选:
无评论
回复评论