适用于MetaTrader 5的新技术指标 - 79
Flash Candle – 实时烛线着色与警报系统(无重绘) Flash Candle 在最近收盘的烛线(bar 1)上计算 Williams Percent Range,并将其着色。当前烛线(bar 0)在收盘前显示临时色调,确保信号仅基于已完成的数据。 无重绘 Flash Candle 专为消除任何重绘(repaint)、回填(backpainting)或视觉篡改而设计。信号仅在 bar 1 上确认;成形烛线(bar 0)只使用临时缓冲区作参考,不影响信号生成。bar 1 收盘后,其最终颜色写入 ExtColorsBuffer[1] ,在后续所有 OnCalculate 调用中保持不变。 更新循环( for (int bar = limit; bar >= 0; bar--) )保留所有历史缓冲区数据,完全避免使用易导致重绘的函数,如 iBarShift 、 Time[0] 或向后计算。基于标准 iWPR 并通过 CopyBuffer() 获取原始值,无动态位移,Flash Candle 保证信号完整性:烛线收盘时的颜色将永久保留在图表上。 实时检测 当灰色烛线确认变为看涨或看跌
DominoSync DoubleSix:专为可靠交易而设计的先进指标 DominoSync DoubleSix 是一款先进的指标,通过分析多个时间周期并过滤掉低成交量或异常范围的K线,帮助交易者识别 更可靠的入场信号 。入场信号显示在 指标的直方图 上,使分析更清晰,对价格图表的干扰更小。 DominoSync DoubleSix 的独特之处 多时间周期分析 评估多达 20 个时间周期 (从 M1 到 W1)。 根据不同时间周期的对齐情况,计算看涨或看跌的概率。 信号生成 仅当 至少 50% 的选定时间周期有效 时,指标才会生成信号。这个百分比是 用户可修改的 : 增加 该值可提高信号的可靠性,但会减少机会数量。 减少 该值可接收更多信号,但确认程度较低。 形态检测 分析每个时间周期中每根 K 线的方向。 检测 持续、反转和吞噬形态 。 计算 形态强度 ,该强度决定了信号的可靠性。 成交量和范围过滤器 通过过滤掉 成交量过低 或 范围异常 的 K 线来避免虚假信号。 允许您根据自己的交易风格配置成交量和范围的平均周期及乘数。 清晰的视觉信号 指标 直方图 上的买/卖箭头。 形态强度
Quantum Channel 指标
逻辑
Quantum Channel 根据固定回朔周期内的最高价和最低价计算上下边界。它在这些水平之间填充阴影通道,仅在K线收盘后更新。此方法确保交易者能够清晰地看到价格极值,而不会出现延迟失真。
信号
当价格分别触及通道下边界或上边界时,会出现买入或卖出信号箭头。下方绿色箭头指示潜在多头进场;上方红色箭头指示潜在空头进场。这些信号严格基于已收盘K线的数据,避免因未完成K线导致的误触发。
是否重绘?
Quantum Channel 不会在已收盘K线上重绘——一旦K线收盘,其通道值就会固定。指标不会在当前K线上绘制任何水平,因此不存在回溯重绘。信号仅在下一条已收盘K线上出现,确保历史数据可靠性。
交易设置
交易者应等待通道内的确认箭头信号,并验证价格在阴影通道范围内后再进场。
将止损置于通道边界外侧,并根据之前通道宽度或固定风险回报比设置目标。这种做法有助于将进场与明确的支撑阻力区域对齐。
常见问题
Quantum Channel 是否在历史K线重绘?
不会。一旦K线收盘,其通道值即被锁定。指标不会更改历史水平或信号,因此
Clarity Pulse Detector
Clarity Pulse Detector 分析已收盘的 K 线以及相应的成交量柱,以识别真实的趋势反转,且不依赖于未来数据。该指标基于可配置的 SSP(信号强度参数)设置计算脉冲强度,并比较近期的高点和低点以检测突破点。
一旦在已收盘 K 线上满足所需条件,工具会在该 K 线上绘制一个明确的买入或卖出标记。所有计算均在已确认的 K 线上完成,确保不会对历史信号进行任何虚假调整。
Signal
当检测到有效的反转时,指标会在看涨 K 线下方显示一个绿色圆点作为买入信号,或在看跌 K 线上方显示一个红色圆点作为卖出信号。
这些标记会在 K 线收盘时准确出现,因此您可以在下一根开盘时毫不犹豫地入场。所有箭头和圆点均绘制在已收盘的 K 线上,确保一旦信号可见,就不会移动或消失。
HOW TO USE IT?
Step 1: 将 Clarity Pulse Detector 附加到任意图表上,等待 K 线收盘时出现买入或卖出标记。 Step 2: 根据您的风险管理偏好设置止损和止盈水平。 Step 3: 为实现最佳执行,使用一键下
核心概念: SmartSwing Filter 是一款高级指标,用于比传统的 Fractal 方法更准确地识别 Swing High(波峰) 和 Swing Low(波谷) 。 与普通 Fractal 方法仅基于蜡烛图左右对比不同,SmartSwing Filter 会 智能过滤掉无效或弱势的摆动点 ,从而避免噪音和虚假信号。 该指标采用基于 ATR(平均真实波幅) 的 动态过滤机制 ,根据当前市场波动性自动调整过滤强度。 ️ 开发原理: 基于传统 Fractal 逻辑:
初始判断依据是蜡烛图是否高于/低于两侧的蜡烛。 引入 ATR 滤波机制: 使用两个 ATR 参数:一个短期 ATR(测量当前波动),一个长期 ATR(反映整体波动)。 计算动态 k 值( k_dynamic ),用以判断 swing 是否有效。 动态过滤机制: 根据市场状态(震荡或趋势)自动调整。 精准 剔除不显著的 Swing 点 。 主要优势: 有效过滤掉噪音和虚假 Swing 只显示 强势且有意义的 Swing High/Low 适应不同的市场环境(高/低波动) 支持所有时间周期
QuantumTrend Filter: 您的多因素趋势确认工具 使用 QuantumTrend Filter 解锁更清晰的趋势洞察! 这款强大的 MetaTrader 5 指标经过精心设计,通过综合一套成熟的技术指标数据,帮助交易者识别和确认市场趋势。停止猜测,开始做出更明智的交易决策。 工作原理 QuantumTrend Filter 通过同时分析多个市场数据流来运作。它集成了来自移动平均线 (FasterMA, SlowerMA)、MACD、RSI、动量指标 (Momentum)、DeMarker、ADX 和强力指数 (Force Index) 的信号。然后,这些分析被整合到图表上清晰的视觉箭头信号中(注意:箭头出现在一个独立的指标窗口中,牛市信号固定在+0.5,熊市信号固定在-0.5),根据不同标准指示潜在的看涨或看跌条件: 动量信号 ( Bullish / Bearish 箭头): 基于动量指标生成(高于100为看涨,低于或等于100为看跌)。 交叉信号 ( CrossBull / CrossBear 箭头): 一种汇合信号,需要RSI(高于/低于50)、MACD(主线与信号
Candle Timer Countdown to Next Bar is a MetaTrader 5 indicator that displays the remaining time until the current candle closes directly on the chart. The indicator shows a real-time countdown for the active bar. During the final 10 seconds before the candle closes, the timer changes color and blinks to indicate an upcoming bar close. Functionality
Displays remaining time until the current bar closes Updates automatically in real time Visual blinking alert during the last 10 seconds of the candl
FREE
"Candlesticks MTF 5" is an informational indicator that displays "Japanese Candlesticks" . The indicator analyzes and determines the opening and closing times of candles from higher time frames.
An algorithm has been developed for the "Candlesticks MTF 5" indicator that corrects the discrepancy between the opening and closing times of candles from higher time frames. For example, if the opening time of a candle on a weekly time frame is the 1st of the month, and on the smaller time frame this
FREE
"智能的趋势和明智的振荡器"的两项指标中的一个。
聪明的趋势显示,目前的趋势的方向。 使用的设置,可以确保,例如,在15分钟的时间,这一趋势方向是显示从H1或D1时间表,等等。
智能振显示了超买卖的区域。 这一指标由若干振荡器,显示最佳结果。 读数为所有指标都是归纳和区域平均值是画了在选择颜色。
聪明的趋势和明智的振荡器都可以使用共同和分开。 例如,可以进一趋势使用超买卖区域的振荡器,以修复位置或部分地解决它。 另一个例子是来看看的方向全球趋势的基础上明智的趋势读数,并进入相同的时间范围或较小的根据的趋势,在超买或超卖区广播的能振荡器。 在一般情况下,有无数战略,使用智能的趋势和明智的振荡器的指标。 这一切都取决于你的经验和创造力。 其他有用的免费和付费的产品可以被看这里 https://www.mql5.com/en/users/raprofit/seller 设置:
用聪明的趋势的启用/停用的明智的趋势指标;
时间系数较大系数,更多的全球趋势显示,反之亦然越小的趋势,更多的地方;
期数量的烛台用于计算趋势;
显示风格-聪明的趋势是显示为,或酒吧都画了,或烛画;
Daily Range Boxes : The indicator draws rectangular boxes around each day's high and low prices, creating a clear visual boundary for the daily trading range. Color-Coded Logic : Green boxes when the current price (or close) is above the daily open Red boxes when the current price is below the daily open Percentage Level Lines : Inside each box, it draws three horizontal lines at: 25% of the daily range 50% of the daily range (midpoint) 75% of the daily range Range Information : Each box displa
FREE
This is a custom VIDYA-based trend-following indicator for MetaTrader 5 (MT5), enhanced with ATR-band logic to adapt to market volatility. It provides dynamic trend zones and intelligent direction switching to support better trading decisions.
Unlike traditional moving averages, this indicator uses a momentum-adjusted VIDYA (Variable Index Dynamic Average) and combines it with ATR-based bands to detect trend shifts with greater precision. Features
Volatility-Adaptive Trend Logic – Uses ATR ban
FREE
SmartBand is a powerful indicator designed to identify high-probability trade zones using a central reference line and dynamic upper and lower bands. When price reaches one of the bands,
and evaluates specific built-in conditions to trigger precise buy or sell signals — helping you spot potential reversals or breakouts with confidence. *Contact me after purchase for best guide* Key Features: Dynamic Band Structure : Central line with upper and lower bands adapting to price action. Smart Sig
AutoStructure — Your Key to Precise Market Entry in Forex! AutoStructure is a professional Forex indicator designed for traders who value precision, speed, and full control over the market.
With just one click, you'll be able to:
Automatically draw key support and resistance levels Visualize FVG zones (Fair Value Gaps) to spot profitable reversals Analyze Order Blocks across multiple timeframes Build Fibonacci levels based on real price action Perfectly suited for both scalpers and position t
how each of these input fields is used and what happens on your chart when you adjust their values: Custom text for comment : How to use : Type any text you want into the "Value" field. Result : The text you type will appear in the top-left corner of the chart window (known as the Chart Comment). You might use this for the indicator's name, version, or your own short notes. Lookback period for regression calculation : How to use : Enter an integer (e.g., 100, 200, 300). Result : This determines
Real Volume N1 – Accurate Volume Insight for Every Candle
The Real Volume N1 indicator works with both real volumes and tick volumes. However, I highly recommend using real volumes only, as tick volumes cannot reliably indicate how much was actually bought or sold.
To get the most accurate results, use this indicator with brokers that provide real volume data, Works on any timeframe from m1 to month
On every candle, the indicator displays the exact volume, helping professional traders make i
Supports and Resistances is a quick and easy tool for finding support and resistance levels. It was created according to the "run and forget" idea to automate daily routines and speed up the decision-making process. It is a great tool for beginners, as well as for users who have been on the market for a while.
How to run it? To run the indicator, all you have to do is set three parameters: 1. Number of candles to be analyzed by the program;
2. Maximum zone width in pips;
3. Frequency of
ISR Spike Crash 500 - This is one of my best Indicators from the "Spike Detector" series, which predicts a Spike with a high probability in a few minutes or even one minute.
The indicator gives Signal before one Spike appears, which gives you the opportunity to scalp , and it also has additional Signals predicting a long-term trend reversal. The indicator has 5 different ( conditions ) signals in the form of arrows of different colors.
Working: Timeframe - M1 Signals: Non-Repainting !!!
ISR Spike Crash 1000 - This is one of my best Indicators from the "Spike Detector" series, which predicts a Spike with a high probability in a few minutes or even one minute.
The indicator gives Signal before one Spike appears, which gives you the opportunity to scalp , and it also has additional Signals predicting a long-term trend reversal. The indicator has 3 different ( conditions ) signals in the form of arrows of different colors.
Working: Timeframe - M1 Signals: No
Market Sessionsync** is a cutting-edge trading session indicator designed to enhance your trading experience by visually breaking down the market's daily rhythm. With a compact window overlaid on your chart, this indicator provides a split-second understanding of the current trading session through: Basic setup: Set Difference between your local time and your broker time , set DST(Daylight Saving Time) ON or OFF , set timescale sync you want to use (Local, Broker, CET) - A vertical time marker
FREE
HTF Vision - Higher Timeframe Candle Display Free now, celebrating release of Live Chart Viewer utility https://www.mql5.com/en/market/product/158488
HTF Vision provides traders with an intuitive way to visualize higher timeframe price action directly on their current chart. This powerful indicator overlays candlestick data from selected higher timeframes (H1, H4, or Daily) as customizable boxes, giving you instant context of larger market movements without switching charts. Key Features: Mult
FREE
Free until ...
The MACD Indicator is a MetaTrader 5 tool that helps traders analyze market trends and momentum. It shows three components in a separate window below the price chart: the MACD Line, Signal Line, and Histogram. What It Shows: MACD Line (Blue): Tracks the difference between a fast and slow moving average. Signal Line (Orange): A smoothed average of the MACD Line. Histogram (Bars): Shows the gap between MACD and Signal Lines with colors: Dark Green : Rising momentum above zero. Lig
FREE
TrendPulse Engulf Pro – Ride the Wave of Precision Trading! TrendPulse Engulf Pro is a futuristic, precision-engineered trend-continuation indicator designed for traders who demand clarity, accuracy, and performance. Built on a 40-period moving average combined with advanced engulfing pattern detection, this tool highlights high-probability market entries that align with momentum and market structure. Whether you're a scalper, day trader, or swing trader, TrendPulse Engulf Pro gives you a clean,
RangeDashboard – Multi-symbol Daily, Weekly, and Monthly Range Overview with Alerts RangeDashboard is a powerful and user-friendly indicator that displays the current range (high-low) of selected currency pairs or instruments over a chosen timeframe (D1, W1, MN1) directly on the chart. It allows you to input a customizable list of symbols, add suffixes if needed, and select the timeframe from which the ranges are calculated. Key Features: Dynamic calculation of ranges for any number of symbols o
The Predictive Ranges indicator aims to efficiently predict future trading ranges in real-time, providing multiple effective support & resistance levels as well as indications of the current trend direction.
Predictive Ranges was a premium feature originally released by LuxAlgo in 2020.
The feature was discontinued & made legacy, however, due to its popularity and reproduction attempts, we deemed it necessary to release it open source to the community.
USAGE Figure 1 The primary purpo
The Fibonacci Confluence Toolkit is a powerful indicator designed to highlights areas of interest where significant price action or reactions are anticipated, automatically applies Fibonacci retracement levels to outline potential pullback zones, and detects engulfing candle patterns.. This tool automates the detection and visualization of key market structures and potential reversal zones. Key Features: CHoCH Detection (Change of Character):
Automatically identifies structural shifts in marke
BRAIN Indicator – Smart Buy & Sell Signal Tool (MT5) BRAIN Indicator is a powerful signal generator designed to detect high-probability trade setups based on smart combinations of momentum and price behavior. Built for precision, it displays clear BUY/SELL arrows directly on your chart — no repaint, no confusion. Fully compatible with Volatility Indices (e.g., V75), Forex, Crypto, and more.
Fast. Focused. Built to trade smart — like a brain.
Key Features: Clean signal
Pause Manager Indicator (for EA Pause Manager)
What It Is: This is a lightweight chart indicator that works together with the EA Pause Manager utility. It displays the current status of your EAs and sends that information to the EA Pause Manager so it can pause/resume them correctly. Required for proper functioning of EA Pause Manager .
Features: Shows real-time status (ACTIVE / PAUSED) of the EA on the chart Displays EA ID (EA1–EA4), customizable via settings Minimal resource usage No input s
FREE
Description: Candle Time is a simple and effective tool that shows the remaining time until the current candle closes — directly on your chart. Whether you’re trading fast moves or waiting for confirmations, knowing exactly when the candle ends helps you stay sharp. Main Features: Real-time countdown for the current candle Color adapts to candle direction (bullish, bearish, or neutral) Adjustable font, size, color source, position, and thickness Supports Visual Mode in the Strategy
FREE
Easy! Before opening a trade, the indicator calculates your position size. Just drag one line to your stop level.
A one-line position size calculator based on a percentage of your total account balance. Just drag the SL line below or above your stop level to instantly see the lot size. The information updates automatically as the price changes. Works with Forex, stocks, crypto, and metals.
Enjoy!
How to Use : Attach to the chart Drag the indicator onto your chart. Draw a Stop-Loss Line:
Quad EMA Cross Indicator
- Capture powerful trend changes with precision! - This indicator tracks four EMAs (20, 50, 100, 200) and signals strong LONG/SHORT entries when price crosses all four simultaneously. - Clear visual labels make spotting high-probability trades a breeze. - Perfect for any timeframe or market. - Boost your trading with reliable, filtered signals!
Lux Algo MT5 信号移动平均线
探索一款专为移动平均线交叉系统中信号线使用而设计的独特移动平均线指标。这款先进的工具的独特之处在于,它在区间震荡市场中偏离价格,而在趋势市场中则与标准移动平均线高度相似。这一特性有助于交易者避免不必要的噪音和因市场波动而导致的潜在过度交易。
在区间震荡市场中,移动平均线会偏离价格,而在趋势市场中则达到常规移动平均线的水平。
移动平均线交叉策略通常依赖于“信号”线,即一条用于判断总体趋势的较慢移动平均线。该信号线与一条较快移动平均线搭配使用,可以滤除常规价格与信号线交叉可能引发的潜在洗盘交易。
该指标将在更多区间震荡周期内偏离价格,从而有效减少价格与信号线交叉的次数。
价格与信号线之间区域的颜色由价格相对于信号线的位置决定,绿色指标表示价格高于信号线。
然而,信号线的颜色会考虑市场是趋势还是区间波动,只有在市场趋势出现时才会改变。
该指标最初由 Lux Algo 开发,用于交易查看。
FREE
The SyntheticaFX Pain & Gain Spike Indicator is a specialized tool designed to identify potential spike opportunities in the market, exclusively for traders focusing on Weltrade Pain and Gain pairs. This indicator is optimized to operate on the 1-minute (M1), 2-minute (M2), 3-minute (M3), and 5-minute (M5) timeframes and supports only the following pairs: PainX 1200, PainX 999, PainX 800, PainX 600, PainX 400, GainX 1200, GainX 999, GainX 800, GainX 600, and GainX 400. It will not display signal
MT4 Version
概述
本指标结合了先进的趋势跟随模型、动态价格反转识别、动态K线上色以及基于ATR的目标预测,为交易者提供了一个完整的视觉系统,用于识别和管理趋势延续的交易机会。
它直接叠加在图表上,自动识别潜在的趋势变化,在自适应支撑/阻力位附近确认反转,并显示计算出的止损和止盈水平,以支持结构化的风险回报决策。
与仅关注趋势方向或进场信号的标准指标不同,该工具融合了信号过滤、基于波动率的定位以及分阶段的盈利了结策略,帮助做出更明智的交易决策。
概念
核心是一个自定义的Supertrend,由ATR带构建,并通过WMA和平滑EMA处理,能在过滤噪音的同时追踪主要趋势变化。
其亮点在于反转逻辑:脚本识别贴近趋势线的K线簇,并统计连续拒绝趋势线的K线数量,这通常预示即将发生的价格波动。通过用户设定的阈值,仅突出显示强反转。
功能
• 趋势识别:使用平滑的Supertrend(WMA + EMA)确定趋势方向,配合形状标记和彩色K线显示趋势变化。
• 反转信号:识别靠近趋势线的价格反转信号,并在满足设定的整理K线数量后用/图标标记趋势延续机会。
• 目标预测
这是为数不多仅基于价格计算水平的指标之一。该指标不受时间周期、趋势或市场周期的影响,是有史以来最具逻辑性的指标之一。 现在, FIFTY 指标推出了自动版本,无需手动绘制水平线。此版本会自动在图表上绘制每日、每周、每月和每年的水平线,确保精确并节省时间。此外,提供了按钮用于切换这些水平线的显示,方便用户完全自定义。对于喜欢手动方式的用户,免费版本仍然可用且功能齐全,可根据交易需求选择手动或自动工具。 非常可靠,强烈推荐!快来索取你的手动版 FIFTY 指标吧! 这是为数不多仅基于价格计算水平的指标之一。该指标不受时间周期、趋势或市场周期的影响,是有史以来最具逻辑性的指标之一。 现在, FIFTY 指标推出了自动版本,无需手动绘制水平线。此版本会自动在图表上绘制每日、每周、每月和每年的水平线,确保精确并节省时间。此外,提供了按钮用于切换这些水平线的显示,方便用户完全自定义。对于喜欢手动方式的用户,免费版本仍然可用且功能齐全,可根据交易需求选择手动或自动工具。 非常可靠,强烈推荐!快来索取你的手动版 FIFTY 指标吧!
Quantum Channel Pro 是一款革命性的多通道波动率分析工具,专为精准识别价格趋势、反转点和市场噪音而设计。基于自适应标准差通道技术,该指标动态绘制三层价格通道(内层、中层、外层),帮助交易者直观判断市场状态,捕捉高概率交易机会。 我的其他产品: https://www.mql5.com/zh/users/bitksk/seller
核心功能亮点 三重智能通道 内层通道(绿色):1σ 波动区间,标识"正常波动区" 中层通道(橙色):2σ 波动区间,提示"潜在转折区" 外层通道(红色):3σ 波动区间,预警"极端超买超卖" 实时概率统计
独创的Zone分析系统自动计算价格在各通道的出现频率,直观显示: 内层通道概率(常态市场) 中/外层通道概率(趋势加速) 突破外通道概率(极端反转信号) 自适应市场噪音过滤
通过动态调整的标准差计算,自动适应不同品种(外汇、股票、加密货币)的波动特性,消除虚假信号。 多时间框架兼容
从短线 scalp 到长线投资,参数可调(默认20周期),完美适配任何交易风格。 交易信号逻辑 趋势延续 :价格沿同一通道持续运行 反转预警 :价格触及
FREE
Tape Hunter – 您在MT5上的努力与结果雷达 Tape Hunter 是为希望洞察MetaTrader 5价格背后真实动态的交易者打造的终极指标。它基于POC(控制点)直观清晰地显示买卖双方的激进成交量,让您能够直观地看到市场的努力与每根K线上的实际结果。 ️ 这为何重要?
并非所有成交量都能推动价格!Tape Hunter 突出显示努力(激进成交量)是否真正推动了价格,有助于识别: 真正的激进行为和陷阱所在 市场是否被吸收或持续推动 主导成交量与价格方向的一致性 使用 Tape Hunter,您将获得专业的Tape Reading视角,更精准地做出进出场决策。 相关指标 – 提升您的流动性分析 为更高效交易,推荐与 Tape Hunter 配合使用以下强大指标: Big Player Range
映射机构交易者活跃区域,提供回调概率预测。与 Tape Hunter 结合,验证大玩家强势操作区域的激进行为。 ️ Imbalance DOM Pro
读取订单簿(DOM)中的失衡,预测隐藏的价格压力。与 Tape Hunter 共同使用,
Forex 17 – Bollinger Bands Pure Sound Alert No Plots 是一款基于布林带的纯声音提醒指标。当价格突破布林带上轨或下轨时,指标会自动触发声音提醒,并针对向上突破与向下突破分别使用不同的提示音,帮助交易者快速识别潜在的超买或超卖状态。 该指标为无绘图版本,不会在图表上显示任何视觉元素,非常适合希望保持图表简洁、减少视觉干扰的交易者。所有监控均通过声音完成,使用户即使在不持续盯盘的情况下,也能及时获知关键价格行为。 可自定义参数包括布林带周期、标准差偏移设置,以及连续提醒之间的最小时间间隔。通过这些设置,用户可以根据自身交易风格和时间框架灵活调整提醒逻辑。 纯声音的设计理念使该指标非常适合多图表、多品种监控场景,同时保持图表清晰、专注于价格行为本身。 由人工智能辅助翻译。
FREE
释放斐波那契扩展的潜力,提升您的交易智慧
通过斐波那契扩展工具优化您的交易策略,这是一款强大的技术分析利器。这款指标基于久经考验的斐波那契数列,能够精确识别市场关键支撑位和阻力位。通过从重要的高点或低点扩展23.6%、38.2%、50%、61.8%和100%的斐波那契比率,它为希望自信应对市场波动的交易者提供清晰且实用的洞察。 MT4-version: https://www.mql5.com/en/market/product/139795 这款工具有何独特之处?
斐波那契扩展指标根据默认的10天回溯期计算五个精确的扩展水平,识别该时间段内的最高价和最低价。然后,它在图表上绘制这些水平,突出潜在的突破目标以及关键的支撑和阻力区域。专用的突破目标线帮助您聚焦于高概率的交易机会,简化您的下一步计划。 如何高效使用?
该指标在识别突破目标水平时尤为出色。无论您是在区间内交易还是抓住突破机会,斐波那契扩展工具都能帮助您发现设置止盈点或预测支撑和阻力位的理想区域。以清晰的方式可视化多头或空头头寸的潜在退出点,让您在动态市场环境中做出明智决策。 适应您交易风格的可定制功能 灵活的回溯期
Candle Fusion Pro — 蜡烛图形态识别 + 趋势过滤器 + 动量过滤器(无重绘) 检测强大的蜡烛图形态,并通过实时趋势与动量分析确认其强度。 Candle Fusion Pro 是一款为依赖 价格行为精度 、趋势结构和 多重确认 的交易者而打造的终极可视化工具。
核心功能
基于形态的入场 :检测超过 10 种高级日式蜡烛图形态 ,包括: 流星形态(级别 2、3、4) 看涨/看跌吞没 晨星 / 晚星 十字星与十字星形态 锤子线(级别 2、3、4) 刺透线和乌云盖顶 无重绘、无延迟 :箭头和形态标签仅在蜡烛收盘时绘制, 不会随行情变化而改变 。
实时确认 : 趋势过滤器 (根据时间周期自动调整) RSI 强度标签 :颜色显示(绿色 <30,橙色,中性,红色 >70) ADX 动量过滤器 :显示趋势延续或震荡状态(阈值为 25): 强趋势 = 趋势延续 , 弱趋势 = 横盘震荡 可视化优势 : 箭头偏移和文字大小根据时间周期自动调整 整洁界面,趋势方向、RSI、ADX 一目了然 可选图表配色增强视觉聚焦
智能提醒 : 可按图形单独启用或关闭提醒 支持总开关控制所有提醒
ZeroLag TrendCandle — 实时蜡烛图着色与信号系统(无重绘)
ZeroLag TrendCandle 是一款 实时趋势检测工具 ,基于先进的 Williams 百分比范围指标(WPR)进行 无重绘的蜡烛图着色 。它通过动态颜色系统高亮显示趋势变化、动量转换和潜在反转, 帮助交易者通过清晰直观的图表立即识别当前市场方向,如图所示。只需一眼,即可清楚识别主导动量及其强度。
核心功能:
无重绘
无重绘, 无后绘 , 信号不消失 , 实时交易中无虚假警报 — 请参阅下方技术说明。 图表上显示的内容不会改变。
实时信号检测(零延迟)
信号在当前蜡烛图收盘后立即生成——无延迟,无重新计算。确保您始终响应经过确认的市场变化,而不是滞后的信号。
支持所有交易品种与周期
完全兼容以下资产类型:
外汇货币对(主要、副对、冷门对) 商品(黄金、白银、原油) 指数(如 S&P500、纳斯达克、DAX、富时等) 加密货币(如比特币、以太坊,取决于您的经纪商) 期货与差价合约(CFD) 股票(如您的经纪商支持) 所有时间周期(从 M1 至 MN)
蜡烛颜色逻辑说明
Next Arrival : Flip or Die Trading Arena. Flip a trading account: https://flipordie.com/chapter-1-thirteen-doublings-double-a-trading-account/ NOTE: Turn Pattern Scan ON
This indicator identifies Swing Points, Break of Structure (BoS), Change of Character (CHoCH), Contraction and Expansion patterns which are plotted on the charts It also comes with Alerts & Mobile notifications so that you do not miss any trades. It can be used on all trading instruments and on all timeframes. The non-repaint
FREE
UT Bot with Alerts The UT Bot Alerts Indicator for MetaTrader 5 is a versatile trading tool that generates buy and sell signals based on ATR-based trailing stop logic. It displays signals with arrows, draws an entry price line, and includes a candle countdown timer. The indicator offers customizable alerts (pop-up, email, push notifications) and a text label showing signal details. Users can adjust ATR sensitivity, label positions, and timer settings, making it suitable for various markets and
FREE
CM MACD Custom Indicator - Multiple Time Frame (V2.1) This advanced MT5 indicator, adapted from ChrisMoody’s TradingView script, delivers a powerful Multi-Timeframe MACD with customizable visuals and alerts. Plotting MACD lines, signal line, and a color-coded histogram, it highlights trend direction and momentum with distinct colors for growing/falling histograms above/below zero. Cross signals are marked with arrows, and users can enable alerts, email, or mobile notifications for buy/sell oppo
FREE
Alpha Indicator – Precision Trading for Every Market Trade Smarter, Not Harder.
The Alpha Indicator is a non-repainting, high-accuracy trading tool designed for serious traders across all styles — scalping, day trading, and swing trading. Whether you're on Forex, Gold, Crypto, NAS100, GER30, or Deriv Synthetic Indices like Volatility, Boom & Crash, this indicator adapts to your market and strategy. It combines powerful components: Alpha Trend Filter – confirms bullish or bearish momentum
APICT Chart Patterns – Trend Line & Pattern Recognition for MT5 Enhance your technical analysis with the APICT Chart Patterns Indicator — an advanced tool for automatic pattern and trend line detection in MetaTrader 5. Key Features Automatic Pattern Detection: Identifies over 10 classic chart patterns, including pennants, wedges, channels, and double tops/bottoms. Real-Time Trend Lines: Draws support and resistance lines using smart algorithms. Custom Sensitivity: Adjust detection for major or
FREE
Next Arrival : Flip or Die Trading Arena. Flip a trading account: https://flipordie.com/chapter-1-thirteen-doublings-double-a-trading-account/ NOTE: Turn Pattern Scan ON
This indicator identifies 11 candlestick patterns, filters them to generate trading signals which do not repaint. This signal are supposed to be high probability setups. It also comes with Alerts & Mobile notifications so that you do not miss any trades. It can be used on all trading instruments and on all timeframes. The non-
FREE
The indicator is designed to display information about current trading. The current information and statistics panel displays data on the number of trading orders, their profit and the number of lots. The equity status as a percentage of the balance of funds and the total profit of all orders on this instrument are also displayed. In the statistics panel, you can see information on closed orders from the beginning of the specified date in the settings. The panels have flexible size and color se
MacD Power Trend — Multi-Timeframe, Color MACD Indicator Designed to help you avoid missing the most critical turning points in the market. Not a simple indicator, it speeds up the decision-making process for both novice and professional traders with its customizable color palette, multi-timeframe support, and clear visual signals. • Multi-Timeframe Support – Track 1-hour, 4-hour, daily, and more beyond your main chart with just one click. • Dynamic Color Coding – MACD line and histogram bars a
This is a custom Guppy-style Moving Average indicator built for MetaTrader 5 (MT5), designed to replicate the appearance and logic of the popular TradingView version. Unlike the built-in tools in MT5, this indicator offers a simplified yet powerful approach by using only 6 Exponential Moving Averages (EMAs). It provides clean visualization and accurate market layering to help traders make better decisions. Features
TradingView-Style Guppy Logic – Displays 6 EMAs for combined short- and medium-
FREE
============================================== UNLOCK THE ULTIMATE TRADING EDGE: MULTI-TIMEFRAME ON ONE CHART FOR MT5!
=========================================
FINALLY, THE IMPOSSIBLE IS HERE! Traders, imagine seeing ANY higher timeframe directly on your current chart —without switching screens, without missing a beat. What if you could analyze the daily trend on a 5-minute chart , or spot weekly key levels while trading the 1H on the exact same chart?
INTRODUCING HTF Anywhere,
Click2FiboDrawer – Instantly Draw Fibonacci Retracement Lines with 2 Clicks Click2FiboDrawer is a powerful manual drawing tool for discretionary traders who use Fibonacci retracements in their technical analysis.
With just two mouse clicks, you can draw clean and precise Fibonacci levels directly on your chart — no clutter, no menus, no hassle. Even during fast-paced scalping sessions, this tool enables you to quickly add Fibonacci retracement levels and react to market moves in real-time.
It’s
MTFC指标:多时间框架图表工具——一眼看透所有周期! 想象一下,无需切换图表,就能在当前界面直接看到更高时间周期(如M5、M15、H1、H4、D1、MN1等)的趋势、K线和关键价位。告别繁琐操作,告别盲目猜测——所有分析,一图搞定!
这就是MTFC指标的强大之处!
1. 它解决了什么问题? 交易者都明白“趋势背景”的重要性,但频繁切换图表不仅耗时耗力,还会分散注意力:
错失机会:因忽略大周期趋势而误判方向。
过度分析:同时盯多个图表导致决策瘫痪。
情绪化交易:因遗漏关键价位而匆忙进场。
如果能在当前图表上直接查看任意高周期数据呢? MTFC(多时间框架图表指标)应运而生! 适用于外汇、加密货币、股票、指数等所有市场!
2. 核心功能 这款革命性指标将高周期数据直接叠加到当前图表,助您:
实时高周期K线(M5/H1/D1/MN1等):同步追踪大趋势动向。
历史关键价位:自动标记支撑/阻力(可自定义显示数量)。
清晰视觉区分:当前图表与高周期数据一目了然。
全参数自定义:颜色、间距、线型、标签均可自由调整。
无需多开窗口,不占系统资源!
3. 为什么交易者爱不
What is it? Supreme Trend Pro is an exclusive indicator for MetaTrader 5 that analyzes the current trend using a precise combination of three of the most respected indicators on the market: ️ Moving Averages (MA) ️ MACD ️ ADX
It clearly and visually identifies: When the market is favorable for Buying When it is favorable for Selling When it is still in Analysis / Waiting Features: Chart panel with information: — Trend (Bullish, Bearish, Neutral) — MA status, MACD and ADX strength —
Supreme Multi TF Pro is an advanced indicator for MetaTrader 5 that automatically analyzes multiple timeframes — from M1 to Monthly — using a combination of MA, MACD, and ADX. It clearly displays signals for Buy , Sell , or Hold on each timeframe, and highlights the Best Timeframe to trade . Perfect for traders seeking fast and reliable decisions, with intuitive and color-coded panels. Customize parameters to fit your strategy and trade with greater confidence.
Free Until 1st Jan 2026
VWAR 2.2 (Volume Weighted Average Roadmap) is an advanced institutional-grade MT5 indicator that brings you the most powerful multi-timeframe VWAP (Volume Weighted Average Price) analysis—plus filtered trade signals using robust trend and momentum confirmations. Key Features: Multi-Timeframe VWAP Lines:
Plots Daily, Weekly, and Monthly VWAP levels for instant market structure insight. Dynamic Buy/Sell Signals: Big, bold colored arrows indicate confirmed buy or sell opp
FREE
Why Technical Indicators Don't Work?
Many traders lose money because of lagging indicator crossovers and fake breakouts. Indicators are rearview mirrors. They're all just pretty math equations of PAST data. Would you drive forward while staring at your rearview mirror? Absolutely NO. The "Holy Grail" indicator doesn't exist. Price Action Decoding: How Smart Money REALLY Trades?
The market don't care about your indicators, analyze price action instead, e.g. the principles of ICT, SMC, and other
A beutiful, multi colored MACD indicator. It offers the possibility to change the colors of the "main line" and the "signal line" and uses four different colors for the "histogram"
It also returns the buffer-values from the "main line", "signal line", "histogram" and "color" to acess it from an EA
If you need some changes, or additional buffers -> send me a message
Alpha Wave Indicator: Pure Precision! This is a tool that will take your trading to the next level. Believe me!! This advanced tool uses a Gaussian window to smooth price data, plotting green upper and red lower bands to identify key trends. With customizable bandwidth, multiplier, and lookback period, plus crossover arrows for clear signals, Alpha Wave helps you navigate the market with confidence. Perfect for traders seeking reliable, non-repainting insights, it can be used on multiple currenc
Un potente indicatore multifunzione progettato per offrire una visione chiara e strutturata della forza del mercato, integrando tre strumenti tecnici in un'unica interfaccia intuitiva: Caratteristiche principali: Heikin Ashi RSI Normalizzato Calcolato sul RSI di medie Heikin Ashi, centrato su una scala da -50 a +50 Visualizzazione con candele colorate (blu/rosso) per una lettura chiara della direzione e del momentum Stocastico Modificato %K e %D convertiti sulla stessa scala -50/+50 Opzion
Questo indicatore avanzato disegna automaticamente pivot High/Low e trendline su un timeframe selezionato (es. H4, D1, ecc.) e li rende visibili su tutti i timeframe inferiori. L'obiettivo principale è fornire un contesto strutturale multi-timeframe unito a segnali di tocco sulle trendline. Caratteristiche principali: Trendline Automatiche : Disegnate tra i pivot High e Low rilevati sul timeframe selezionato.
Classificate in trendline rialziste (UpTrend), ribassiste (DownTrend) e rotte (Brok
Un indicatore avanzato che combina la regressione logaritmica dinamica con strumenti di analisi trend intelligente , visualizzazioni personalizzabili e filtri avanzati per confermare la direzione del mercato. Come utilizzare l’indicatore Logarithmic Regression Channel - Trend (Disegnato su timeframe superiori) Trend rialzista
(slope ≥ +3) Si può acquistare in due modi: Quando il prezzo rimbalza sulla banda inferiore del canale (trendline bassa). Quando il prezzo supera la linea centrale del
Let's follow the trend with Goby trailing! According to your filters, you can use the arrows (Bullish [start] and Bearish [start]) as entry signals. After making an entry [position], you can use the Bullish [trailing] as a trailing stop for bullish positions and Bearish [trailing] as a trailing for bearish positions. Through the inputs, you can adjust the indicator for better performance in the assets you operate! Enjoy...
TRADE ASSISTANT PRO – Your Ultimate Manual Trading Companion TRADE ASSISTANT PRO is a powerful all-in-one trading utility designed for manual traders who value precision, control, and efficiency. Whether you’re a scalper, day trader, or swing trader, this tool gives you everything you need at your fingertips to make faster, smarter trading decisions. Key Features: Multi-Timeframe & Multi-Symbol Display
Monitor multiple pairs and timeframes from a single chart. Get real-time info across
Ein schöner, einfacher KillZone-Indikator. Er bietet die Möglichkeit, die Farben der Zonen, der Rahmen und der Schrift zu ändern. Auch die Zeiten der einzelnen Zonen können angepasst werden
Er gibt auch die Pufferwerte der der Kerzen zurück, um von einem EA aus darauf zuzugreifen
Wenn Sie einige Änderungen oder zusätzliche Puffer benötigen -> senden Sie mir eine Nachricht
KAB: A Better Baseline. KAB is an adaptive trend filter designed to track directional movement while actively suppressing abnormal volatility and noise. It behaves like a dynamic moving baseline that automatically adjusts responsiveness to changing market conditions. Unlike fixed moving averages, KAB continuously modifies its internal smoothing rate based on volatility and directional efficiency. The result is a line that tightens during strong trends and stabilizes during unstable or chaotic pr
FREE
Catch boom spikes like a pro – before they happen! The KarooSpikes Boom Spike Catcher is a powerful MetaTrader 5 indicator designed for traders who want to consistently catch spikes on Boom with precision and confidence. What This Indicator Does: Detects high-probability spike zones using a combination of: RSI + Stochastic crossovers Price action 50 EMA trend filter Plots clear BUY arrows on your chart when spike conditions are met Sends instant mobile + sound alerts so you never miss a
A simple indicator that changes color according to trend direction and marks each turn with an arrow and optional sound alert. Features Dual-Color Blue when the line is rising Red when the line is falling Arrow Signals Up-arrow at the start of an up-trend Down-arrow at the start of a down-trend Configurable Alerts Popup notification on each closed-bar trend change Optional custom WAV file (leave blank to use the MT5 default) Alerts fire once per closed bar to avoid repeats Native MQL5 Implem
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
Indicator Name: Auto Trend Line Description: Automatically draws trend lines with optimized and enhanced trend direction detection. Main Features: 1. Automatic Trend Line Drawing: Two main lines are plotted: Support Line – color: Magenta Resistance Line – color: Cyan Lines are calculated based on: Two extremums (highs/lows) or an extremum and a delta (custom offset) 2. Trend Direction Detection: The indicator determines the current trend as: TREND_UP (Uptrend value = 1) TREND_DOWN (Downtrend val
KT Gaussian Trend Filter 结合高斯滤波与线性回归平滑处理,为交易者提供清晰且准确的趋势分析。它生成直观的买入和卖出信号,同时有效地突出市场的长期方向。
功能特点
可自定义的高斯滤波器: 可调节周期和极点设置,优化平滑效果并提升趋势可读性。 线性回归增强: 进一步细化高斯平滑效果,减少市场波动带来的假信号。 多周期扫描仪: 自动检测多个周期的高斯趋势方向,并在面板中清晰显示。 回撤带功能: 便于在趋势回调阶段识别有效的进场机会。 可自定义颜色设置: 可根据图表风格和个人偏好轻松调整指标配色。 内置提醒功能: 支持弹窗、邮件、推送和声音提醒,实时通知信号变化。
使用方法 该指标提供直观的信号,帮助交易者判断何时进场与出场。一个实用的方法是在回调结束后寻找趋势延续信号。过滤器能有效判断回调是否结束,以及主趋势是否重新启动。 多周期分析: 在不同周期上应用此指标,可更全面地评估趋势一致性并优化入场时机。 控制平滑强度: 过度平滑可能掩盖重要价格变化。建议适度调整设置,以平衡趋势清晰度与灵敏度。
参数设置
Gaussian Period – 定义高斯滤波器的周期长度
MetaTrader市场是一个简单方便的网站,在这里开发者可以出售自己的交易应用程序。
我们将帮助您发布您的产品,并向您解释如何为市场准备您的产品描述。市场上所有的应用程序都是加密保护并且只能在买家的电脑上运行。非法拷贝是不可能的。
您错过了交易机会:
- 免费交易应用程序
- 8,000+信号可供复制
- 探索金融市场的经济新闻
注册
登录