Vhagar

Greensight AI COMBO — xLSTM · GRU · Mamba → XGBoost | 21-TF Signal HUD

What Is It?

Greensight AI COMBO is a fully self-contained artificial intelligence indicator for MetaTrader 5. It trains three distinct deep learning sequence models — xLSTM (sLSTM), GRU, and Mamba (Diagonal SSM) — directly on live market data, then feeds their outputs into a gradient-boosted XGBoost ensemble to produce a final directional signal. This two-stage pipeline runs across all 21 native MetaTrader 5 timeframes simultaneously (M1 through MN1) and displays every signal, confidence reading, and model health metric on a single, interactive HUD overlay — no external server, no subscription feed, no black-box dependency.

There is nothing to install beyond the indicator file. Training happens automatically on attach and repeats with every new bar.

How the Two-Stage Pipeline Works

Stage 1 — Deep Learning Sequence Extraction

Three architecturally distinct sequence models are trained and run in parallel. Each model operates on two independent data tracks per timeframe: a normalised price track and a normalised log-return track, producing six raw predictions per timeframe (three models × two tracks).

xLSTM (sLSTM variant — Beck et al. 2024) The extended Long Short-Term Memory implementation replaces the standard sigmoid forget and input gates with exponential gates. A running stabiliser variable prevents numerical overflow during exponentiation, and a normaliser variable keeps the cell output bounded. This architecture has been shown to sustain gradient flow over longer sequences than classic LSTM and responds more sharply to regime changes — an important property in trending vs. ranging market transitions.

GRU (Gated Recurrent Unit) A leaner recurrent architecture with reset and update gates. The GRU trains faster per epoch, converges reliably on shorter lookback windows, and acts as a complementary "second opinion" to the xLSTM. Where xLSTM may lag on sudden reversals, GRU often captures them earlier.

Mamba (Diagonal State Space Model) A simplified diagonal SSM inspired by the structured state space literature. Rather than an explicit attention mechanism, Mamba propagates a latent state through a diagonal transition matrix, enabling efficient long-range temporal modelling at minimal computational cost. The diagonal constraint keeps training stable while preserving sensitivity to slowly evolving market regimes.

All three models are initialised with Xavier-scaled random weights, trained using a combined gradient-descent / SPSA perturbation scheme with weight clamping, and run in inference mode on the current bar to produce the Stage 1 feature vector.

Stage 2 — XGBoost Gradient-Boosted Decision Stumps

The six Stage 1 outputs are combined with two OHLC candle-structure features (the high-low range ratio and the body ratio) to form an 8-feature input vector. This vector is passed to a trained XGBoost forest of shallow decision stumps. XGBoost learns residual corrections iteratively, making it highly effective at combining heterogeneous signal sources — in this case, three DL models that each have different strengths — into a single calibrated directional prediction.

The final output of Stage 2 is a scalar between −1 and +1. Values above the configurable dead-zone threshold produce a BUY signal; values below produce a SELL; the rest register as NEUTRAL.

The HUD at a Glance

The floating HUD panel is divided into clearly labelled sections, all visible at once:

7 × 3 Signal Grid (Section A) All 21 timeframes are displayed in a compact seven-column, three-row grid. Each row shows the timeframe label, the current signal (Weak / Mid / Strong BUY or SELL, or NEUTRAL), the confidence percentage, and a DL Agreement score — the count of Stage 1 sub-models that agree with the Stage 2 final direction (shown as x/6).

Band Confidence Row The 21 timeframes are grouped into three temporal bands — SHORT (M1–M30), MID (H1–H12), and LONG (D1–MN). Each band displays its consensus direction, average confidence, and bull/bear counts at a glance.

Probability Matrix (Section B) A four-tier confluence scoring system:

Tier Condition Probability Range
Tier 1 — Maximum Confluence All three bands aligned 72 – 92 %
Tier 2 — Strong Confluence Mid band + one outer band 58 – 78 %
Tier 3 — Partial Confluence Partial agreement 48 – 65 %
Tier 4 — No Confluence Conflicted signals 30 – 50 %

The probability estimate adjusts dynamically based on average confidence across trained timeframes.

Confluence Panel (Section C) Displays the net bull/bear agreement percentage, average confidence across all trained TFs, a normalised score, and the dominant bias label (Strong Bull / Bull Bias / No Bias / Bear Bias / Strong Bear).

Model Health & Agreement (Section F) A per-model breakdown for all six Stage 1 sub-models (xLSTM-Price, GRU-Price, Mamba-Price, xLSTM-Return, GRU-Return, Mamba-Return) across all 21 trained timeframes. Columns show bull count, bear count, neutral count, average decisiveness, XGBoost agreement percentage, a health status badge (STRONG / ACTIVE / WEAK), and net bias. This section is invaluable for diagnosing which models are driving the overall signal and which are pulling in the opposite direction.

Model Validity Tracker Displays per-band training timestamps, the computed validity window (derived from training bar count and average TF duration), time remaining before the model is considered stale, and a FRESH / AGING / STALE status badge. Tells you exactly when a retrain is due.

Footer / Bull-Bear Bar A single-line overall bias summary with a proportional visual bar showing the bull/bear balance across all 21 timeframes.

Alert System

Alerts fire in three distinct scenarios:

  • Tier 1 All-Band Alignment — all three temporal bands vote the same direction with confidence above the threshold.
  • Bias Threshold — net bull/bear bias reaches or exceeds the configured minimum with mid-band confirmation.
  • Bias Flip — the dominant direction reverses from the previous bar's reading.

Alerts display in the MT5 alert window. Optional push notifications send the signal to your mobile device via the MT5 push system. A configurable cooldown prevents duplicate alerts within a defined number of bars.

HUD Controls

The panel is fully interactive without reloading the indicator:

  • [─] Minimise — collapses the HUD to the header bar only, keeping your chart clean.
  • [↔] Move Mode — enables drag-to-reposition using left-click or the arrow buttons (◄ ► ▲ ▼).
  • [+] / [−] Scale — scales the entire HUD from 0.5× to 2.0× in 0.1× increments to suit any monitor resolution.

Input Parameters

Stage 1: DL Model Weights Configure the contribution weight of each model (xLSTM, GRU, Mamba) and the relative weighting between the price track and the log-return track.

xLSTM / GRU Settings

  • Lookback sequence length (bars)
  • Hidden units per cell (up to 12)
  • Training bars per timeframe
  • Training epochs
  • Learning rate
  • Signal dead-zone threshold

Mamba Settings

  • Training epochs
  • Learning rate

Stage 2: XGBoost

  • Number of boosting trees (up to 10)
  • Learning rate (shrinkage)
  • Stage 2 training sample size

Alerts

  • Enable / disable alerts
  • Enable / disable push notifications
  • Minimum confidence threshold to fire
  • Minimum net bias to fire
  • Alert cooldown (bars)

HUD

  • Initial X and Y position
  • Scale multiplier
  • Auto-refresh on new bar toggle

Appearance Full colour customisation for every element: background, border, header, sub-header, muted text, bull colour, bear colour, neutral colour, exceed colour, and gold accent. All colours accept standard MT5 colour inputs.

Practical Usage Notes

  • On first attach the indicator trains all 21 timeframe models sequentially. Training time depends on the Training Bars and Epochs settings; the default configuration typically completes in under two minutes on a modern machine.
  • The HUD updates on every new bar when Auto-Refresh is enabled. Inference is lightweight; only the forward pass runs on each bar — full retraining requires a manual indicator reload.
  • Tier 1 signals (all three bands aligned) represent the highest-quality setups. Consider these carefully; they are infrequent by design.
  • The Model Health section can help you tune weights: if one model consistently shows WEAK status (low XGB agreement) you may reduce its Stage 1 weight in the inputs.
  • The Model Validity tracker gives you a data-driven signal of when the trained weights are becoming stale relative to current market conditions. Reload the indicator to retrain when a band shows STALE.
  • Use the scale control to make the HUD readable on 4K monitors without sacrificing chart space on smaller screens.

Technical Specifications

Property Value
Platform MetaTrader 5
Indicator type Chart overlay (no extra window)
Timeframes covered All 21 (M1 – MN1)
Stage 1 models xLSTM (sLSTM), GRU, Mamba — 6 sub-models total
Stage 2 model XGBoost gradient-boosted stumps
Features to Stage 2 8 (6 DL outputs + 2 OHLC candle ratios)
Max hidden units 12
Max XGBoost trees 10
External dependencies None
Server / cloud required No
Indicator buffers 0 (display only)

Greensight AI COMBO is a technical analysis tool. All signals are probabilistic in nature. Past model agreement does not guarantee future accuracy. Always apply independent risk management.


推荐产品
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
RBreaker
Zhong Long Wu
RBreaker Gold Indicators 是黄金期货一种短线日内交易策略,它结合了趋势跟踪和日内反转两种交易方式,既能捕捉趋势行情的利润,又能在行情反转时及时止盈并顺势反手。 该策略曾连续15年被美国《Futures Truth》杂志评选为前十大最赚钱的交易策略之一,具有很长的生命周期,至今仍在国内外普遍使用与研究。 本指标结合了2026年期货黄金的走势,依据14日ATR指标,分别定义了突破系数A,观察系数B,反转系数R更合理的数值,非常不错的指标,已实现年稳定盈利,值得推荐~ 以上指标适合高波动品种,参数适合期货黄金,股指期货等,如果需要其他品种行情,需要单独设定 突破系数A,观察系数B,反转系数R,进行回测才能使用。 欢迎指标售后有问题可以加+V:504282029
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
# 回撤指标 V4.0 - 掌控交易的必备工具 ## 通过完整的实时绩效概览改变您的交易 在要求严苛的外汇和差价合约交易世界中,**了解您的实时绩效**不是奢侈品,而是**绝对必需**的。**回撤指标 V4.0** 不仅仅是一个简单的指标:它是您的**专业仪表板**,为您提供清晰、精确和即时的交易账户状态视图。 --- ## 为什么这个指标将永远改变您的交易 ### 90% 交易者面临的问题 您是否曾经遇到过以下情况之一? **您不确切知道自己的状况** - 您的 MT5 平台显示数字,但您必须心算您的真实表现。 **您发现回撤为时已晚** - 当您意识到已经损失了 15% 的资金时,已经太晚了,无法有效应对。 **您缺乏历史可见性** - 无法快速知道本周、本月或今年是否盈利。 **您浪费时间分析交易** - 您必须打开多个窗口、进行计算,并失去对市场的关注。 **您没有概览** - 有多少持仓?我的全局盈亏是多少?我今天的表现如何? ### 解决方案:一体化专业仪表板 **回撤指标 V4.0** 通过提供一个**完整的控制面板*
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
KasTon Trend System: The Complete 2-in-1 Trading Strategy Identify the Trend, Confirm the Signal, and Trade with Confidence! Do you suffer from confusion while trading? Do you find it difficult to determine the market's direction? Are you tired of losing money on false signals? The KasTon Trend System is here as an integrated solution to all these problems. This is not just an indicator; it is a complete trading strategy built on the synergy of two powerful, custom-built indicators. Our main g
Donchian Channel DC
Renato Takahashi
Donchian Channel DC is the indicator of Donchian Channels, that plots maximum and minimum values of a specific period, besides mean value line. It´s possible to configure simple period for analysis and the indicator will plot all three values. You can trade with this indicator as trend or reversal, according to each strategy. Do not let to test others indicators as soon as others expert advisors.
Trilliant Trend
Philip Sint Sae
Trilliant趋势指标. Trilliant趋势是一个先进的外汇指标,结合了隐藏的受尊敬的指标来早日发现趋势。 正如名字所示,它是一种趋势指标,但被纳入交易几乎所有外汇战略(所有在一个),操纵设置,带和线在指标。 任何外汇策略都可以使用三元趋势进行交易。 当形成蜡烛触及三角形上带给出购买信号的箭头时,条件会得到满足,而下带则给出卖信号箭头。 中心线(MA)会发出信号箭头,条件是形成蜡烛会穿过它。 Trilliant指标有四个伟大的指标; 1. Trillient带 -- TB (main indicator -None Repainting) 2. 相对强度指数 -- -- 先进的RSI 3. T rilliant Moving Average --Advanced MA 4. 平均真实范围 -- ATR 用来交易时间范围,市场大多是由相对于一天的时间的会议定义。 这取决于每届会议的流动性和速度。 注 : 这个指标中所看到的频段与波林格频段不一样,这是一个名为Trilliant的特别频段,它对早期和比任何频段指示器更快的信号检测产生了最佳效果。 Trilli
HiperCube Renko Candles
Adrian Lara Carrasco
欢迎使用 HiperCube Renko Candles Darwinex Zero 25% 折扣码:DWZ2328770MGM 此指标为您提供真实的市场信息,将其转换为 Renko Candle Style。 定义 Renko 图表是一种金融图表,用于测量和绘制价格变化,使用砖块(或条形)表示价格变动。与传统烛台图不同,Renko 图表不显示基于时间的信息,仅关注价格波动。 特点: 单独窗口中的指标 自定义蜡烛颜色 自定义蜡烛/砖块大小(以点为单位) Chatgpt 和 AI 被用于开发它 Renko 策略示例: 识别趋势 等待回调和使用 Renko 蜡烛吞没 输入您的入场点 SL 吞没的较低点 TP 风险回报 1:2、1:3... 请注意,这是一个示例,可以作为基础或新策略,无论如何在真实账户中尝试和测试它,这些信息仅供您了解如何使用 Renko Candles Hipercube 指标
FREE
适用于MT5平台的“WPR双均线指标”,无重绘。 - WPR本身就是短线交易的最佳震荡指标之一。 - “WPR双均线指标”允许您查看WPR震荡指标的快慢均线。 - 该指标能够帮助您及早发现价格回调。 - 此指标的参数设置非常简单,适用于任何时间周期。 - 您可以在图片中看到买入和卖出的入场条件。 - 通过 PC 和移动设备接收 WPR MAs 交叉警报。 买入信号示例: (1) - 如果快均线向上穿过慢均线,且WPR值低于-50:开立买单。 (2) - 一旦WPR值进入超买区域,高于-20:平仓。 卖出信号示例: (1) - 如果快均线向下穿过慢均线,且WPR值高于-50:开立卖单。 (2) - 一旦 WPR 值低于 -80 进入超卖区域:平仓卖单。 点击这里查看高质量的交易机器人和指标! 这是仅在 MQL5 网站上提供的原创产品。
Pro Gold System Indicator
PEDRO JOAQUIM GONCALVES GOMES
ADVANCED FUNCTIONALITIES: Trend Score (0-100) with visual bar Intelligent signals with adjustable strength (1-10) Risk management with automatic TP/SL Audible and visual alerts Price zones with smooth filling Multi-indicator analysis (RSI, ATR, BB, EMAs) DESIGN FEATURES Modern Visual: Smooth and well-spaced lines (EMA with 2-3px width) Vibrant and professional colors (Sky Blue, Orange, Gold) Modern arrows (code 233/234) for buy/sell signals Configurable dark/light theme Adjustable transparency f
Price Magnet — Price Density and Attraction Levels Indicator Price Magnet is a professional analytical tool designed to identify key support and resistance levels based on statistical Price Density. The indicator analyzes a specified historical period and detects price levels where the market spent the most time. These zones act as “magnets,” attracting price action or forming a structural base for potential reversals. Unlike traditional Volume Profile tools, Price Magnet focuses on price-time d
“可调分形” - 是分形指标的高级版本,非常有用的交易工具! .......................................................................................... - 众所周知,标准分形 MT5 指标根本没有设置 - 这对交易者来说非常不方便。 - 可调分形解决了这个问题 - 它具有所有必要的设置: - 指标的可调周期(建议值 - 高于 7)。 - 价格高点/低点的距离可调。 - 可调分形箭头设计。 - 指标内置移动和 PC 警报。 点击这里查看高质量的交易机器人和指标! 这是仅在此 MQL5 网站上提供的原创产品。 ....................................................
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
CCI Fixed Dual
Edoardo Centorame
什么是 CCI FIXED DUAL CCI FIXED DUAL 是一个专业级 Trend Direction Filter,旨在精准识别: 市场的主导方向 走势的结构质量 主趋势与加速阶段之间的一致性 它不是一个直接入场指标。 它不是一个传统振荡器。 它是一个市场环境工具,旨在帮助交易者决定何时交易以及何时不交易,从而大幅减少市场噪音和判断错误。 CCI FIXED DUAL 的基本理念 CCI FIXED DUAL 所基于的原则简单但强大: 一个信号只有在与市场结构一致时才有价值。 因此,该指标: 不使用单一数值 不会对价格做出冲动反应 不会刻意寻找反转点 而是建立在以下基础之上,构建出一种层级化的趋势解读: 基于 Typical Price 的 CCI 不同速度的 LWMA 移动平均线 短期 中期 和长期之间的动态比较 因此,其结果是对市场方向的一种稳定 干净 且可靠的表达。 指标的技术结构: CCI FIXED DUAL 由四个主要部分组成,全部显示在独立窗口中。 1 CCI magenta 线 这是指标的信息基础。 衡量典型价格的偏离程度 提供应用平滑处理的原始材料 它并不
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 收盘行为: 价格
Cardwell Range Analyze An RSI "range" regime engine (inspired by Andrew Cardwell's RSI rules) combined with a trend filter, higher-timeframe confirmation and an ADX chop filter. When momentum and trend agree, it prints a clean BUY or SELL signal and automatically draws a full trade plan - Entry, Stop Loss and three Take-Profit targets - with shaded risk and reward zones. A compact on-chart dashboard summarizes the market state at a glance. Key Features RSI regime engine - classifies the market a
"Impulses and Corrections 5" is created to help traders navigate the market situation. The indicator shows multi-time frame upward and downward "Impulses" of price movements. These impulses are the basis for determining the "Base" , which is composed of zones of corrections of price movements, as well as "Potential" zones for possible scenarios of price movement. Up and down impulses are determined based on a modified formula of Bill Williams' "Fractals" indicator. The last impulse is always "U
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
关于指标 该指标基于金融工具收盘价的蒙特卡罗模拟。按照定义,蒙特卡罗是一种统计技术,用于通过基于之前观察的结果的随机数来模拟不同结果的概率。 它是如何工作的? 该指标通过基于历史数据模拟随时间变化的随机价格变动,为证券生成多个价格情景。每次模拟试验使用随机变量来有效地模拟未来在给定时间范围内的市场波动,重点在 收盘价 的波动。 蒙特卡罗模拟的优势 - 蒙特卡罗模拟通过在多种可能的未来情景下进行测试,有助于分析不同交易策略的风险。 - 它有助于确定策略在不同市场条件下的表现,包括罕见的极端事件(尾部风险)。 - 与依赖单点预测不同,蒙特卡罗提供了具有相关概率的潜在结果范围。这有助于理解盈利或亏损的可能性。 对于希望基于不同结果的概率而不是绝对预测来管理风险的交易者来说,蒙特卡罗是一个有用的工具。
Trend Master V2
Oratile Pitsoane
What Is Trend Master Pro? Trend Master Pro   is a professional-grade trend trading indicator built for MetaTrader 5. It was designed with one goal in mind — to keep you on the right side of the market at all times by combining three powerful technical tools into a single, clean, easy-to-read display directly on your price chart. Instead of cluttering your screen with multiple separate indicators, Trend Master Pro fuses an   EMA Ribbon trend filter , a   ZigZag swing point engine , and a   breako
Half ma
Artem Svistunov
The Half ma arrow indicator for the MetaTrader 5 trading terminal is a simple but effective tool that gives a signal about a change in the current trend. The Half ma indicator looks like a solid dynamic line that changes color at the points where the trend changes. At these points, the indicator draws arrows of the corresponding color and direction.The Half ma arrow indicator for the MT5 terminal is not an independent source of input signals. It will be most effective to use it as a trend filte
Noize Absorption Index
Ekaterina Saltykova
Noize Absorption Index - is the manual trading system that measures the difference of pressure between bears forces and bulls forces. Green line - is a noize free index that showing curent situation. Zero value of index shows totally choppy/flat market.Values above zero level shows how powerfull bullish wave is and values below zero measures bearish forces.Up arrow appears on bearish market when it's ready to reverse, dn arrow appears on weak bullish market, as a result of reverse expectation.
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ó
Master Edition
Peter Ofunda Fischer
Harvester Pro Universal Master The Ultimate Volatility Breakout & Trend-Following Solution for XAUUSD and Major Pairs. Harvester Pro Universal Master is a professional-grade Expert Advisor (EA) engineered for high-performance trading on the MetaTrader 5 (MT5) platform. Optimized specifically for XAUUSD (Gold) and major currency pairs like EURUSD , this EA combines a sophisticated Volatility Breakout engine with a robust EMA/TEMA Trend-Following filter to capture explosive market moves with surg
The   Trendlines Oscillator   helps traders identify trends and momentum based on the normalized distances between the current price and the most recently detected bullish and bearish trend lines. The indicator features bullish and bearish momentum, a signal line with crossings, and multiple smoothing options. USAGE The   Trendlines Oscillator   works by systematically: Identifying pivot highs and lows. Connecting pivots to form bullish (support) and bearish (resistance) trendlines. Measuring
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
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
The  SuperTrend Advance Trading  is a widely-used technical indicator based on  SuperTrend Strategy + Price Action + EMA . How it works: -  Buy/Sell Signals  can be generated when the trend reverses, the conditions of Price action, TrendLine and EMA are met. - After the  Signal  appears, be patient and wait until the candle closes, at that time place the order as soon as possible. You may have time to review your entry, consider whether it is a good entry or not. - Carefully review the entry, up
来自 NeuralTick 的 CleanTrend — 这是一款绝不重绘历史的趋势指标。厌倦了那些在历史上看起来完美,但在实盘交易中却重绘信号的指标吗? 厌倦了市场噪音与欺骗的交易者选择 CleanTrend 的三大理由: 100% 无重绘。 线条颜色一经确定便永久固定。没有任何一根K线会事后改变 — 您可在策略测试器中亲自验证。 双重噪音过滤。 仅当价格移动超过设定的阈值 (MinMove) 并且 在若干根K线内保持方向 (ConfirmBars) 时,信号才会出现。告别盘整行情中的「锯齿」假象。 让您随时掌握行情的警报系统。 弹出窗口、声音、日志记录以及发送到您智能手机的推送通知 (MetaTrader 5 应用)。即使终端已关闭,您也能即时获知趋势变化。 CleanTrend 不会用繁杂的面板让图表变得混乱 — 只有干净的彩色线条:蓝色 (买入) 或 红色 (卖出)。它计算入场价格,并严格过滤每一次价格波动。 点击「更多」,查看与普通指标的全方位对比、现成的趋势入场策略以及所有配置建议。  CleanTrend 与 98% 的「趋势」指标有何不
该产品的买家也购买
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
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 时间周期 和所有 主要货币对 设计 所有交易均配备止损和止盈 内置 资金管理功能 ,并指导交易者轻松执行交易计划 高胜率,高比例的 连续盈利交易 无重绘,无延迟 适合各种类型
Trend Sniper X
Sarvarbek Abduvoxobov
5 (4)
Trend Sniper X 是一款适用于 MetaTrader 5 的多时间周期趋势跟踪指标,帮助交易者以清晰、精确的方式识别趋势方向和潜在的反转点。 价格信息: 当前价格为促销价,随着未来更新和新功能的发布,价格可能会有所变动。 Code2Profit 频道 通过多时间框架分析掌握市场! 技术规格 平台 MetaTrader 5 指标类型 多时间周期趋势指标 运行时间周期 任何图表时间周期,可独立选择更高的时间周期 (M1–MN1) 主要交易品种 外汇、黄金 (XAUUSD) 及其他差价合约 (CFD) 推荐账户 任何账户类型 可视化 彩色趋势蜡烛 (买入/卖出/微弱/变化) + 买入/卖出箭头 附加模块 交易时段方框 (悉尼、东京、伦敦、纽约) 主要功能 多时间周期趋势分析: 直接在当前图表上投射更高时间周期的趋势方向,提供清晰的宏观视角。 弱势/不确定柱检测: 高亮显示趋势条件不明朗的柱线,让交易者避开震荡区域。 买入/卖出信号箭头: 在确认趋势变化后的柱线上自动绘制箭头,支持警报、推送和电子邮件通知。 一键开启/关闭面板: 图表上的按钮可切换指标,下拉菜单可立即切换分析时间周
Divergence Bomber
Ihor Otkydach
4.9 (92)
购买该指标的每位用户将额外免费获得以下内容: 原创工具“Bomber Utility”,该工具会自动跟踪每一笔交易,设置止损和止盈点,并根据策略规则自动平仓; 适用于不同交易品种的指标设置文件(Set 文件); 三种不同风险模式下的 Bomber Utility 设置文件:“最低风险”、“平衡风险” 和 “观望策略”; 一套详细的 视频操作手册,帮助您快速完成安装、配置并开始使用本交易系统。 注意: 要获取以上所有赠品,请通过 MQL5 的私人消息系统联系卖家。 我为您介绍原创的自定义指标 “Divergence Bomber”(背离轰炸机),它是一套基于 MACD 背离交易策略 的“全功能”交易系统。 该技术指标的主要任务是识别 价格与 MACD 指标之间的背离,并发出交易信号(包括推送通知),指示未来价格可能的运动方向。平均而言,这些信号的准确率超过 98%。有关该指标如何工作的详细说明,请观看本页面上的视频演示。 该系统使用 止损订单 和 动态回撤平仓机制 来管理交易。 Divergence Bomber 指标的主要特点: 支持交易的品种: AUDCAD、AUDCHF、AUDSG
M1 Sniper MT5
Oleg Rodin
5 (1)
M1 SNIPER   是一款易于使用的交易指标系统。它是一个专为 M1 时间框架设计的箭头指标。该指标可以作为独立的系统在 M1 时间框架下进行剥头皮交易,也可以作为您现有交易系统的一部分使用。虽然该交易系统专为 M1 时间框架交易而设计,但它也可以用于其他时间框架。我最初设计此方法是为了交易 XAUUSD 和 BTCUSD。但我发现这种方法在其他市场交易中也同样有用。 指标信号既可以顺势交易,也可以逆势交易。我教授一种特殊的交易技巧,帮助您利用指标信号进行双向交易。该方法基于使用特殊的动态支撑位和阻力位区域。 购买后,您可以立即下载 M1 SNIPER 箭头指标。此外,我还为所有 M1 SNIPER 工具用户免费提供下方屏幕截图所示的 Apollo Dynamic SR 指标!这两个指标的组合可以帮助您更轻松、更准确地利用 M1 时间框架进行交易。 购买后请联系我,免费获取交易提示和奖励指标! 祝您交易成功!
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
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
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。 接触 如果您有任何疑问或需要帮助,请通过私人消息与我联系。
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
ACB Breakout Arrows MT5
KEENBASE SOFTWARE SOLUTIONS
3.5 (2)
ACB Breakout Arrows 指标通过检测特殊的突破形态,提供市场中的关键入场信号。该指标持续扫描图表中的价格动量,在价格出现重大变动前,提前提供精确的入场信号。 点击此处获取多品种多周期扫描器 - ACB Breakout Arrows MT5 扫描器 主要特点 指标自动提供止损和止盈价格。 内置多周期扫描仪仪表盘,可追踪所有时间周期的突破信号。 适用于日内交易者、波段交易者和剥头皮交易者。 优化算法提升信号精度。 特别设置的快速盈利线用于无亏损移动或短线目标。 支持胜率、盈亏比、平均利润等绩效分析指标。 无重绘,信号可靠。 交易确认 - 可使用 ACB Trade Filter 指标 来过滤低概率的交易信号。 强烈买入: 向上箭头 + 绿色柱状图 + 多头趋势。 强烈卖出: 向下箭头 + 红色柱状图 + 空头趋势。 当柱状图为灰色且趋势为震荡时,应避免交易。 (可选) -  使用  KT 支撑阻力水平指标  避免在重要支撑/阻力位附近入场。这类交易可能迅速变成亏损。 “一个成功交易者的目标是做出最好的交易。金钱只是附属。” —— 亚历山大·埃尔德 输入参数 历史
Beast Super Signal MT5
Florian Zuercher
2.71 (7)
正在寻找可以帮助您轻松识别有利可图的交易机会的强大外汇交易指标? Beast Super Signal 就是您的不二之选。 这个易于使用的基于趋势的指标持续监控市场状况,寻找新的发展趋势或跳入现有趋势。当所有内部策略一致且彼此 100% 融合时,Beast Super Signal 会发出买入或卖出信号,无需额外确认。当您收到信号箭头警报时,只需买入或卖出。 购买后给我留言,让我加入我的私人 VIP 群组! (仅限购买完整产品)。 购买后给我发消息以获取最新的优化设置文件。 此处提供 MT4 版本。 在此处 获取 Beast Super Signal EA。 查看评论部分以查看最新结果! Beast Super Signal 根据您偏好的 1:1、1:2 或 1:3 风险回报率建议入场价、止损和获利水平,让您放心交易。这个 Beast Super Signal 是 100% 不可重新绘制的,这意味着它永远不会重新计算或重新绘制,每次都能为您提供可靠的信号。 Beast Super Signal 指标适用于所有时间范围,包括货币对、指数、商品和加密货币对。 Beast S
Advanced Supply Demand MT5
Bernhard Schweigert
4.53 (15)
任何新手或专业交易者的最佳解决方案! 该指标是一款独特、高质量、且价格合理的交易工具,因为我们已经整合了许多专有功能和新公式。 依据此更新,您将能够显示双重时间帧区域。 您不仅可以显示一个较高的时间帧,还可以同时显示图表时间帧,加上更高的时间帧:显示嵌套时区。 供需双方所有交易者都会喜欢它。 :) 重要信息披露 高级供需的最大潜力,请访问 https://www.mql5.com/zh/blogs/post/720245   想象您的交易如何得以改善,是因为您能够精准定位入场或目标位吗? 构建于新的底层算法,它可以更轻松地识别出买卖双方之间的潜在失衡。 这是因为它以图形方式展示供需最强劲区域,及其过去的表现(显示旧区域)。 这些功能旨在帮助您更轻松地发现最佳入场区域和价位。 现在您可以针对您的交易品种和时间帧来优化和编辑区域强度! 高级供需指标适用于所有产品和时间帧。 它是一个新的公式,非常新的功能是两个区域强度函数可由用户输入进行调整! 这在交易中是一大优势。 当您学习如何使用专有功能,例如带有价格游离最小 X 因子的区域强度时,您能够判断该区域强劲与否。 供需区域用作警报触发器。
UZFX {SSS} 超短线智能信号 v4.0 MT5 是一款无重绘的高性能交易指标,专为在快速波动的市场中需要精准、实时信号的超短线交易者、日内交易者和波段交易者设计。该指标由 (UZFX-LABS) 开发,融合了价格行为分析、趋势确认和智能过滤技术,可在所有货币对和时间周期内生成高概率的买卖信号、预警信号以及趋势延续机会。 别再对交易犹豫不决了,开始遵循这一专为追求清晰、精准和纪律性市场执行的交易者设计的结构化信号系统吧。 我的建议* 最佳时间周期:15分钟及以上。 {H1} 是我的最爱。而且效果令人惊叹……!! 更新后的主要功能 • 自动买入和卖出信号检测 • 先进的反转识别逻辑 • 潜在市场反转前的早期预警信号 • 趋势延续确认信号 • 内置风险管理功能,包含入场点、止损点、TP1、TP2和TP3水平 • 完全可自定义的风险回报比 • 实时警报、声音提醒和移动端推送通知 • 带交易建议的专业信息面板 • 适用于所有MT5交易品种和时间周期 • 界面简洁、轻量且用户友好 为什么交易者选择 UZFX SSS? 大多数交易者亏损的原因在于入场过晚、平仓过早,或者缺乏明确的交
Transaction Speed MT5
Ivan Stefanov
5 (4)
当然,以下是翻译成中文(简体)的版本: 该指标标出市场中显现出 交易兴趣 的区域,并随后显示 订单积累区域 。它的工作方式类似于大规模的订单簿。 这是为 大资金 打造的指标,性能卓越。市场中有任何兴趣,你都能通过它清晰看到。 (这是一个 完全重写的自动化版本 —— 不再需要手动分析。) 交易速度 是一个全新的概念指标,它显示了市场上大订单 何时 、 何地 聚集,并揭示了其背后的意义。它可以在 非常早期 就检测到趋势的变化。 在外汇市场,所谓的“交易量”实际上是误导性的,因为那指的是价格在单位时间内的变化,因此真正的名称应是“交易速度”。 一切都取决于我们如何思考、如何行动、如何分析。 改变分析范式至关重要。 该指标完全重构了外汇市场上“交易量”的概念,用逻辑方式重新定义并应用,从而成为一个 独特而精准的工具 。 使用方法: 默认情况下,指标处于 自动模式 ,可独立用于任何时间周期。如果你希望切换到手动模式,只需点击 Auto / Manual Mode 按钮即可。 在 手动模式 下,所有计算从 2025年1月1日 开始。你可以根据需要更改该日期,以查看不同的分析结果。 最优数据周期
MTF Supply Demand Zones MT5
Georgios Kalomoiropoulos
5 (1)
下一代自动化供需区。适用于任何图表的创新算法。所有区域都是根据市场的价格行为动态创建的。 两种类型的警报 --> 1) 当价格触及区域时 2) 当新区域形成时 你不会再得到一个无用的指标。您将获得一个完整的交易策略和经过验证的结果。     新的功能:     价格触及供需区时发出警报     创建新的供应/需求区时发出警报     推送通知警报     以点为单位的区域宽度标签     关于 MTF 的又一个时间表。因此,现在您将能够看到高于当前 3 个时间帧,而不是高于当前 2 个时间帧     启用/禁用警报/区域/MTF 功能的按钮 您获得的优势:     消除交易中的情绪。     客观化您的交易条目。     通过高概率设置提高您的利润。     节省绘图区域的时间。     像专业人士一样交易金融市场。     任何市场的即时多时间框架分析。 你在图表上看到了什么?     蓝色和红色矩形是当前时间范围的供需区。     虚线样式线是当前上方第一个时间范围内的供需区域。     实线样式线是当前上方第二个时间范围内的
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后才朝你的方向
Manipolatio regis
Simone Degl Innocenti
Manipulatio Regis — Scanner di Simmetria Istituzionale Manipulatio Regis rileva le manipolazioni dei Market Maker leggendo i Trading Ranges e i progetti obiettivi simmetrici da Price Action istituzionale. Non prevede il Future: legge una manipolazione già avvenuta e progetti in cui Il prezzo tende a tornare a ribilanciarsi. Come funziona: • Evento significativo (SI): rileva un impulso anomalo ad alta efficienza (rapporto ATR). • Gamba e Candela #1: isola la gamba di ritracciamento controdirezion
PZ Trend Trading MT5
PZ TRADING SLU
3.8 (5)
许多盈利交易者不仅知道如何识别市场趋势,而且也能把握趋势建立后的交易机会。 Pz 趋势交易 指标设计用来在趋势行情中尽可能的赚取利润。 已建立的趋势提供了一揽子交易机会,但大多数趋势交易指标完全忽视了它们,让交易者在趋势行情时完全不知道该如何做!一般趋势指标只通知有关的趋势变化,但根本不足以得到卓越的回报. Pz 趋势交易 指标比一般趋势指标显示多达 20 倍的交易 , 因为它注重所谓的市场时机。它不仅显示当前的市场趋势,也有回调,内柱线的突破和调整。它令您在趋势回调之后介入,安全的柱线内突破金字塔加仓,以及发现潜在的反转,和已知的调整。 趋势改变 一个趋势改变在市场方向变化时发生。趋势变化在图表上用带数字的彩色圆圈显示。蓝色 (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
Quantum TrendPulse
Bogdan Ion Puscasu
5 (25)
介绍 Quantum TrendPulse   ,这是一款终极交易工具,它将 SuperTrend   、   RSI 和 Stochastic 的强大功能整合到一个综合指标中,以最大限度地发挥您的交易潜力。该指标专为追求精准和效率的交易者而设计,可帮助您自信地识别市场趋势、动量变化以及最佳进入和退出点。 主要特点: 超级趋势整合: 轻松跟随当前的市场趋势并乘上盈利浪潮。 RSI 精度: 检测超买和超卖水平,非常适合把握市场逆转时机,可用作 SuperTrend 的过滤器 随机精度: 利用随机振荡在波动的市场中寻找隐藏的机会, 用作超级趋势的过滤器 多时间范围分析: 从 M5 到 H1 或 H4,在不同时间范围内关注市场动态。 可定制的警报: 当您的自定义交易条件得到满足时收到通知,这样您就不会错过任何交易。 无论您是新手还是经验丰富的交易员,   Quantum TrendPulse 都能为您提供所需的优势,帮助您增强策略并自信地进行交易。借助这一强大的指标,将洞察力转化为利润 — 掌控您的交易! ***购买 Quantum TrendPulse,即可免费获得 Quantum Tr
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设置形成且自适应确认逻辑
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
CRT Confluence Pro
Jessica Victoria Huera Rodriguez
CRT Confluence Pro by TraderJess92 is a professional MetaTrader 5 indicator designed for traders who use the CRT methodology , institutional structure, liquidity sweeps, FVG, CISD and multi-timeframe analysis. The indicator helps identify high-confluence CRT setups through a clean visual sequence: HTF candles, TS / liquidity sweep, first CISD after the TS, FVG zones, Daily/Weekly Bias and DOL as the logical target of the setup . Main Features Displays HTF candles directly on the main chart. Aut
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。这有助于在切换不同交易品种时减少手动设置。 手动设置模式 如果你更喜欢固定设置,或
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 建立在一种从未在任何媒体上发布或分享过的独特方法之上, 重
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
RelicusRoad Pro MT5
Relicus LLC
4.96 (24)
RelicusRoad Pro: 量化市场操作系统 终身访问限时 70% 折扣 - 加入 2,000+ 交易员社区 为什么大多数交易者即使拥有“完美”指标也会失败? 因为他们在真空中交易 单一概念 。没有背景的信号是赌博。要持续获胜,您需要 共振 (CONFLUENCE) 。 RelicusRoad Pro 不是一个简单的箭头指标。它是一个完整的 量化市场生态系统 。它描绘价格运行的“公允价值之路”,区分市场噪音和真实的结构性突破。 停止猜测。开始用机构级“路”逻辑进行交易。 核心引擎:“Road” (路) 算法 系统的核心是 Road Algo ,一个实时适应市场条件的动态波动率通道。它投射出 安全线 (平衡) 和价格可能反转的 扩展水平 。 Simple Road: 典型市场的标准结构映射。 Smooth Road: 针对震荡盘整的降噪计算。 Breakout Road: 专为识别波动率扩张和爆发性走势而调整。 1. 算法动量与确认 我们的“剥头皮箭头”不只是简单的交叉。它们利用 高阶多项式逻辑 过滤噪音,确保信号与主周期一致。我们检测动量、价格行为和 Road 结构汇聚的精确入场
Grabber System MT5
Ihor Otkydach
4.83 (24)
向您介绍一款优秀的技术指标——Grabber,它是一套即开即用的“全包式”交易策略。 在一个代码中集成了强大的市场技术分析工具、交易信号(箭头)、提醒功能和推送通知。 每位购买该指标的用户还可免费获得以下内容: Grabber辅助工具:用于自动管理已开仓位 视频操作指南:逐步教学如何安装、设置和使用该指标进行交易 原创Set文件:可快速自动配置,帮助实现最佳交易效果 忘掉其他策略吧!只有Grabber能够真正激励你在交易中攀登新高峰! Grabber策略的主要特点: 交易周期:从M5到H4 适用资产:任意,但我推荐我亲自测试过的品种(GBPUSD、GBPCAD、GBPCHF、AUDCAD、AUDUSD、AUDSGD、AUDCHF、NZDUSD、NZDCAD、EURCAD、EURUSD、EURAUD、EURGBP、EURCHF、USDCAD、USDSGD) 交易时间:全天候 24/7 交易效果:我分享自己的真实交易结果,并在此教学如何操作: https://www.mql5.com/ru/market/product/134563?source=Site+Market+MT5+Indic
AI Forecast MT5
Leonardo Antonio Camacaro Armas
The "AI Forecast" indicator is the result of a unique experiment in which I asked an AI how to create the best indicator to anticipate the market. The AI suggested measuring the past history of the price and its reactions to different levels, and then calculating the probabilities of the price reaction in the future. With this idea, I designed with the help of another AI the "AI Forecast" indicator, which adapts to any MetaTrader chart and shows you three lines: one for entry and two for possi
筛选:
无评论
回复评论