Fibo And ZigZag

此指标组合了三根MA(5,26,180)移动平均线,倒计时显示,趋势线,和在ZigZag基础上的修改版的斐波那契扩展线,使得画面一个指标展现多重技术画线。你可以根据三根移动均线判断阻力支撑和价格运动空间,利用趋势线判断价格运动方向,利用fibo线预测未来可能的目标,如果再结合多周期分析,你就能精准分析预测市场走向。是一款绝对好用的技术指标。

//+------------------------------------------------------------------+
//|                                                  Z字新指标_均线版.mq5
//|                                            Converted from MQL4 to MQL5
//+------------------------------------------------------------------+
#property copyright "汇股资讯·投资李哥"
#property link "https://one.exness-track.com/a/4a5u2ul7f0"
#property version "1.00"
#property indicator_chart_window

// 缓冲区总数(含计算缓冲区)
#property indicator_buffers 19
// 可视化图形数量
#property indicator_plots  17

//--- Plot 0: Zigzag
#property indicator_label1  "Zigzag"
#property indicator_type1   DRAW_NONE
#property indicator_color1  clrGreen

//--- Plot 1: 极限上
#property indicator_label2  "极限上"
#property indicator_type2   DRAW_NONE
#property indicator_color2  clrGreen

//--- Plot 2: 目标上
#property indicator_label3  "目标上"
#property indicator_type3   DRAW_NONE
#property indicator_color3  clrGreen

//--- Plot 3: 空单止损
#property indicator_label4  "空单止损"
#property indicator_type4   DRAW_NONE
#property indicator_color4  clrGreen

//--- Plot 4: 前高
#property indicator_label5  "前高"
#property indicator_type5   DRAW_NONE
#property indicator_color5  clrGreen

//--- Plot 5: 下破进空
#property indicator_label6  "下破进空"
#property indicator_type6   DRAW_NONE
#property indicator_color6  clrGreen

//--- Plot 6: 下破平多
#property indicator_label7  "下破平多"
#property indicator_type7   DRAW_NONE
#property indicator_color7  clrGreen

//--- Plot 7: 分界
#property indicator_label8  "分界"
#property indicator_type8   DRAW_NONE
#property indicator_color8  clrGreen

//--- Plot 8: 上破平空
#property indicator_label9  "上破平空"
#property indicator_type9   DRAW_NONE
#property indicator_color9  clrGreen

//--- Plot 9: 上破做多
#property indicator_label10 "上破做多"
#property indicator_type10  DRAW_NONE
#property indicator_color10 clrGreen

//--- Plot 10: 前底
#property indicator_label11 "前底"
#property indicator_type11  DRAW_NONE
#property indicator_color11 clrGreen

//--- Plot 11: 多单止损
#property indicator_label12 "多单止损"
#property indicator_type12  DRAW_NONE
#property indicator_color12 clrGreen

//--- Plot 12: 目标下
#property indicator_label13 "目标下"
#property indicator_type13  DRAW_NONE
#property indicator_color13 clrGreen

//--- Plot 13: 极限下
#property indicator_label14 "极限下"
#property indicator_type14  DRAW_NONE
#property indicator_color14 clrGreen

//--- Plot 14: MA5
#property indicator_label15 "MA5"
#property indicator_type15  DRAW_LINE
#property indicator_style15 STYLE_SOLID
#property indicator_width15 2
#property indicator_color15 clrRed

//--- Plot 15: MA26
#property indicator_label16 "MA26"
#property indicator_type16  DRAW_LINE
#property indicator_style16 STYLE_SOLID
#property indicator_width16 2
#property indicator_color16 clrCyan

//--- Plot 16: MA180
#property indicator_label17 "MA180"
#property indicator_type17  DRAW_LINE
#property indicator_style17 STYLE_SOLID
#property indicator_width17 2
#property indicator_color17 clrOrange

//--- 参数
input int InpDepth = 12;
input int InpDeviation = 5;
input int InpBackstep = 3;
input int RequiredWaveHeight=40;//波浪高度
input int MA_value1=5;
input int MA_value2=26;
input int MA_value3=180;
input int MA_Width=2;

input color Resistance_Color=clrGray;
input ENUM_LINE_STYLE Resistance_Style=STYLE_DASHDOT;
input int Resistance_Width=1;
input color Support_Color=clrGray;
input ENUM_LINE_STYLE Support_Style=STYLE_DASHDOT;
input int Support_Width=1;
input ENUM_TIMEFRAMES ZigFT=PERIOD_CURRENT;
input color Countdown_Color=clrWhite;

//--- 指标缓冲区(可视化)
double ExtZigzagBuffer[];
double buffer1[],buffer2[],buffer3[],buffer4[],buffer5[],buffer6[],buffer7[];
double buffer8[],buffer9[],buffer10[],buffer11[],buffer12[],buffer13[];
double MA5_Buffer[];
double MA26_Buffer[];
double MA180_Buffer[];

//--- 计算缓冲区(不可见)
double ExtHighBuffer[];
double ExtLowBuffer[];

//--- 普通数组
double LowerPrice_1_m15[];
double LowerPrice_2_m15[];
double UpperPrice_1_m15[];
double UpperPrice_2_m15[];
int Lower_1_m15[];
int Lower_2_m15[];
int Upper_1_m15[];
int Upper_2_m15[];
int ExtLevel=3;
bool downloadhistory = false;

enum DisplayPosition
  {
   CommentDisplay = 0, // 显示在评论栏
   ChartCorner = 1,    // 显示在图表角落
   NearPrice = 2,      // 显示在价格附近
  };
input DisplayPosition InpTimerPosition = NearPrice;      // 显示位置
input color InpTextColor = clrWhite;                     // 文字颜色
input int InpFontSize = 12;                              // 字号
input ENUM_ANCHOR_POINT InpAnchorPoint = ANCHOR_LEFT_LOWER; // 锚点
input ENUM_BASE_CORNER InpCornerPosition = CORNER_LEFT_LOWER; // 角落位置(仅ChartCorner模式)
input int OffsetKlines = 3;                             // 右移K线根数(NearPrice模式)
input int OffsetPoints = 30; 
string countdownLabel = "倒计时";  
//--- MA 和 ZigZag 指标句柄
int ma5_handle = INVALID_HANDLE;
int ma26_handle = INVALID_HANDLE;
int ma180_handle = INVALID_HANDLE;
int zigzag_handle = INVALID_HANDLE;

推荐产品
Matreshka
Dimitr Trifonov
5 (2)
Matreshka self-testing and self-optimizing indicator: 1. Is an interpretation of the Elliott Wave Analysis Theory. 2. Based on the principle of the indicator type ZigZag, and the waves are based on the principle of interpretation of the theory of DeMark. 3. Filters waves in length and height. 4. Draws up to six levels of ZigZag at the same time, tracking waves of different orders. 5. Marks Pulsed and Recoil Waves. 6. Draws arrows to open positions 7. Draws three channels. 8. Notes support and re
Pan PrizMA CD Phase
Aleksey Panfilov
The Expert Advisor and the video are attached in the Discussion tab . The robot applies only one order and strictly follows the signals to evaluate the indicator efficiency. Pan PrizMA CD Phase is an option based on the Pan PrizMA indicator. Details (in Russian). Averaging by a quadric-quartic polynomial increases the smoothness of lines, adds momentum and rhythm. Extrapolation by the sinusoid function near a constant allows adjusting the delay or lead of signals. The value of the phase - wave s
Elliott Wave Trend MT5
Young Ho Seo
4 (4)
Elliott Wave Trend was designed for the scientific wave counting. This tool focuses to get rid of the vagueness of the classic Elliott Wave Counting using the guideline from the template and pattern approach. In doing so, firstly Elliott Wave Trend offers the template for your wave counting. Secondly, it offers Wave Structural Score to assist to identify accurate wave formation. It offers both impulse wave Structural Score and corrective wave Structure Score. Structural Score is the rating to sh
Introduction to X3 Chart Pattern Scanner X3 Cherart Pattern Scanner is the non-repainting and non-lagging indicator detecting X3 chart patterns including Harmonic pattern, Elliott Wave pattern, X3 patterns, and Japanese Candlestick patterns. Historical patterns match with signal patterns. Hence, you can readily develop the solid trading strategy in your chart. More importantly, this superb pattern scanner can detect the optimal pattern of its kind. In addition, you can switch on and off individu
Overview Harmonic Patterns MT5 is a technical analysis indicator designed for the MetaTrader 5 platform. It identifies and displays harmonic price patterns, such as Butterfly, Cypher, Crab, Bat, Shark, and Gartley, in both bullish and bearish directions. The indicator calculates key price levels, including entry, stop loss, and three take-profit levels, to assist traders in analyzing market movements. Visual elements and customizable alerts enhance usability on the chart. Features Detects six ha
All Harmonics 26 demo
Alexey Isavnin
4.25 (4)
This is the demo version of "All Harmonics 26" indicator . "All Harmonics 26" searches for 26 types of harmonic patterns and outputs them in a convenient way. You can check out the documentation here . This demo version has the following limitations: The indicator searches only for one type of harmonic patterns out of 26:- Gartley. The indicator outputs new patterns with a lag of 10 bars.
FREE
Water Mark Pro MT5
Robby Suhendrawan
TradingView Style Chart Watermark Transform your MetaTrader 5 charts to look as elegant and professional as TradingView. Are you tired of the default, plain look of MetaTrader? WaterMark MT5 is a lightweight, fully customizable indicator designed to enhance your charting experience by adding sleek, modern watermarks directly to your trading terminal. This indicator bridges the visual gap between standard MetaTrader charts and premium web based charting platforms. It allows you to display the cur
FREE
Key level wedge MT5
Presley Annais Tatenda Meck
The   Key level wedge MT5   indicator automatically draws rising wedge pattern and falling wedge pattern for you on the chart. This pattern is really good when used as a confirmation entry at key support & resistance, supply & demand and reversal zones. Advantages  The   Key level wedge MT5   block DOES NOT RE-PAINT, giving you confidence when a signal appears and also helps when looking back.  The   Key level wedge MT5   includes an on/off button on the chart to easily keep the charts clean
MetaTrader 5 智能多层突破与回调探测器 "智能 · 简单 · 快速!" 您是否厌倦了错过高概率的突破入场机会? 您是否花费数小时扫描多张图表,试图将突破与趋势方向和货币动能对齐——却仍然错过了行情? Break Pullback 用一个指标解决所有这些问题。 什么是 Break Pullback? Break Pullback 是一款专业级 MetaTrader 5 指标,专为交易市场结构、突破和趋势延续形态的交易者而设计。 它能实时自动检测多个货币对的突破与回调形态——并通过三层确认过滤每个信号: 结构突破检测——识别图表上的关键突破位 高时间框架日线偏向——将入场与主导日线趋势方向对齐 货币强弱指数——确认配对货币间的动能失衡 结果:更少的虚假信号,更强的信心,更快的执行——无需面对图表过载。 适合哪些交易者? Break Pullback 专为使用以下方法的交易者设计: 突破与回测策略 市场结构分析(BOS、 OB Order Block 、结构位) 聪明钱概念(SMC)或 ICT 风格入场 趋势跟踪与延续形态 跨外汇和黄金(XAUUSD)的多对扫描 日内和波段
Basic Harmonic Pattern MT5
Mehran Sepah Mansoor
4.78 (98)
该指标可识别预测市场反转点的最常用谐波形态。这些谐波形态是外汇市场上不断重复出现的价格形态,暗示着未来可能的价格走势/ 免费 MT4 版本 此外,该指标还内置了市场进入信号以及各种止盈和止损。需要注意的是,虽然谐波形态指标本身可以提供买入/卖出信号,但建议您使用其他技术指标来确认这些信号。例如,在进行买入/卖出之前,您可以考虑使用 RSI 或 MACD 等震荡指标来确认趋势方向和动能强度。 该指标的仪表盘扫描器:( Basic Harmonic Patterns Dashboard ) 包括的谐波形态 加特里 蝶形 蝙蝠型 螃蟹 鲨鱼 赛弗 ABCD 主要输入 Max allowed deviation (%):   该参数是指谐波图形形成时的允许偏差。该参数决定了谐波图样的结构可以变化多少,而指标不会将其视为有效图样。因此,如果设置的百分比越高,则模式识别的灵活性就越大,而如果设置的值越低,则限制性就越大。例如:如果设定值为 30%,那么指标将把当前价格 ±30% 范围内符合形态比例的形态视为有效形态。 Depth:   该参数决定了谐波形态的每个波浪中必须出现的最少条
FREE
可以说,这是您可以为MetaTrader平台找到的最完整的谐波价格形成自动识别指标。它检测19种不同的模式,像您一样认真对待斐波那契投影,显示潜在的反转区域(PRZ),并找到合适的止损和获利水平。 [ 安装指南 | 更新指南 | 故障排除 | 常见问题 | 所有产品 ] 它检测19种不同的谐波价格形态 它绘制了主要,衍生和互补的斐波那契投影(PRZ) 它评估过去的价格走势并显示每个过去的形态 该指标分析其自身的质量和性能 它显示合适的止损和获利水平 它使用突破来表明合适的交易 它在图表上绘制所有样式比率 它实现了电子邮件/声音/视觉警报 受斯科特·M·卡尼(Scott M. Carney)的书的启发,该指标旨在满足最纯粹和最熟练的交易者的需求。但是,它采取了一种使交易更容易的方式:在向交易发出信号之前,它会等待Donchian朝正确方向突破,从而使交易信号非常可靠。 斐波那契投影与向量无关 它实现了电子邮件/声音/推送警报 它绘制了ABCD投影 重要提示: 为了符合 Scott M. Carney先生 的商标申诉,某些图案名称已重命名为不言自明的替代方式, Scott M.
Price Action Free
Bogdan Kupinsky
This indicator looks for 3 rather strong patterns: Spinning Top pattern Hammer or Hanging Man Inverted Hammer or Shooting Star These patterns may indicate a trend continuation or its reversal, depending on the location of the patterns. Input parameters Distance - distance between the signal and the formed signal Note: the higher the timeframe, the greater the value should be used in Distance to display the signal correctly Indicator Features Suitable for any currency pair Operating timeframe:
FREE
PZ Penta O MT5
PZ TRADING SLU
3.8 (5)
The Penta-O is a 6-point retracement harmonacci pattern which usually precedes big market movements. Penta-O patterns can expand and repaint quite a bit. To make things easier this indicator implements a twist: it waits for a donchian breakout in the right direction before signaling the trade. The end result is an otherwise repainting indicator with a very reliable trading signal. The donchian breakout period is entered as an input. [ Installation Guide | Update Guide | Troubleshooting | FAQ | A
FREE
WAPV Weis Wave Chart Forex
Eduardo Da Costa Custodio Santos
The Weis Wave Chart Forex for MT5 is a Price and Volume indicator. The Price and Volume reading was widely disseminated through Richard Demille Wyckoff based on the three laws created by him: Supply and Demand, Cause and Effect and Effort vs. Result. In 1900 R.Wyckoff already used the wave chart in his analyses. Many years later, around 1990, David Weis Automated R. Wyckoff's wave chart and today we bring you the evolution of David Weis' wave chart. It shows the amount of Volume and the amount o
Bullish Consecutive Signal — Consecutive Bullish Candle Buy Signal with Alerts & P&L Simulation Bullish Consecutive Signal automatically detects consecutive bullish candle patterns and marks high-probability buy entries directly on the chart. Each signal comes with an ATR-calculated Stop Loss and Take Profit level, drawn as reference lines so you can assess risk at a glance. A built-in P&L back-simulation lets you evaluate strategy performance without leaving the chart.   IMPORTANT — DEFAULT
FREE
Introduction This indicator detects volume spread patterns for buy and sell opportunity. The patterns include demand and supply patterns. You might use each pattern for trading. However, these patterns are best used to detect the demand zone (=accumulation area) and supply zone (=distribution area). Demand pattern indicates generally potential buying opportunity. Supply pattern indicates generally potential selling opportunity. These are the underlying patterns rather than direct price action. T
FREE
Harmonic Patterns Osw MT5
William Oswaldo Mayorga Urduy
用户手册:谐波形态 OSW MT5 1. 简介和用途 谐波形态 OSW 是一款高级算法分析工具,旨在基于斐波那契水平自动检测几何价格结构。该指标使用与 ZigZag 算法相连的搜索引擎来过滤市场噪音,并定位价格容易反转的高概率区域。其目标是识别诸如 Gartley、蝙蝠、蝴蝶、螃蟹和鲨鱼形态等模式,使交易者能够以专业精度预测市场反转。 2. 参数指南(输入菜单) 模式选择(显示谐波) 显示未定义形态:显示那些虽然不符合经典类别,但仍保持相关斐波那契几何形状的技术结构,以便进行手动分析。 显示 Gartley / 蝙蝠 / 蝴蝶 / 螃蟹 / 鲨鱼形态:可根据您的策略单独启用或禁用对每种特定形态的搜索。 警报系统(警报) K线信号:定义通知时间。 Candle_0 在达到目标价位时实时发出警报;Candle_1 在蜡烛图确认后发出警报(更为保守)。 发送警报(电脑/邮件/手机):启用声音通知、电子邮件或推送通知至移动设备上的 MT5 应用。 视觉配置和几何形状 看涨/看跌颜色:自定义买入(看涨)和卖出(看跌)结构的颜色。 允许角度:这是容差因子。例如,如果某个价
OrderFlow Supply and Demand Pro: Institutional Liquidity Engine The OrderFlow Supply and Demand Pro is a high-performance analytical engine designed to pinpoint institutional footprint on your charts. By combining algorithmic price action filters with a real-time pressure engine, this tool identifies high-probability liquidity zones where large-scale market participants are likely to re-enter the market. Core Institutional Logic Our proprietary detection system filters out market "noise" by enfo
Phantom Edge SMC
Nattapon Chuekamhod
Phantom Edge SMC — The Ultimate Smart Money Indicator for MT5 Tired of manually drawing structures while trading SMC or ICT concepts? Let Phantom Edge SMC do the heavy lifting for you. Key Features Internal & Swing Structure: Automatically detects BOS and CHoCH across two structural levels. Order Blocks (OB): Identifies Internal and Swing OBs with automated mitigation tracking. Equal Highs / Lows: Highlights EQH / EQL to pinpoint Liquidity pools. Fair Value Gaps (FVG): Displays FVGs with
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
Enhanced Volume Profile: The Ultimate Order Flow & Liquidity Analysis Tool Overview Enhanced Volume Profile is an indicator for MetaTrader 5 that displays the traded volume at specific price levels over a defined period. It separates the total volume into buy and sell components, presenting them as a side-by-side histogram on the chart. This allows users to observe the volume distribution and the proportion of buy and sell volumes at each price level. Graphics Rendering The indicator uses the
FREE
Hunttern ZigZag MT5
Hassan Gh Fakhraei
5 (1)
Hunt markets with Hunttern ZigZag . Easy to use with one parameter    You can use it for the following:       -Classic patterns       -Heads and shoulders       -Harmonic patterns       -Elliott Wave       -Support and resistance       -Supply and Demand Single parameter:      -Period (1-120) Features:        -Candle time        -Single parameter        -Light mode template This is version 1 of Hunttern ZigZag. We are very happy to receive feedback from you.
FREE
Zone Structure Scanner Panel for MT5 Find better setups faster — without scanning charts for hours. The Zone Structure Scanner Panel for MT5 helps you automatically scan multiple symbols, detect key weekly and daily support/resistance zones, read market structure, highlight confluence, and flag H4 rejection-confirmed setups from one powerful panel. Instead of jumping from chart to chart, you get ranked opportunities in one place so you can focus on the setups that matter most. Why it stands
StrBTV Pro MTF
Marian Beceanu
STRBTV Pro MTF — Detailed Description STRBTV stands for "Sell The Rally, Buy The Valley" — an MT5 indicator (v2.10, by Marian Beceanu) built around multi-timeframe MACD convergence/divergence , with a "sniper entry" logic based on Support/Resistance and a built-in risk-management dashboard. General Concept The indicator works on two levels: Higher timeframe (HTF) — looks for convergence between price and MACD on the swing highs/lows of that timeframe. A confirmed HTF convergence is treated as t
Harmonic Pattern Hunter
Shingidzano Lesetedi
5 (1)
Harmonic Pattern Hunter Harmonic Pattern Hunter is a technical indicator for MetaTrader 5 that automatically identifies and draws high-probability harmonic patterns directly on the chart. It is designed to assist traders who use harmonic analysis as part of their trading methodology. How It Works The indicator scans historical and live price data for completed XABCD harmonic structures using Fibonacci ratio validation. When a valid pattern is detected, it draws the full pattern geometry, marks t
Fibo Pivot Optimus
Syamsurizal Dimjati
5 (1)
Ritz Smart FIBOPIVOT Optimus Pro Advanced Multi-Timeframe Fibonacci Trading System SMART PREDICTION & ACCURATE FORECAST Revolutionary Fibonacci Pivot Technology combines traditional pivot points with advanced Fibonacci extensions, creating a powerful predictive tool for professional traders. Our algorithm intelligently detects significant price levels across multiple timeframes, delivering laser-accurate support and resistance zones before the market moves . INTELLIGENT VOLUME-VALIDATED SIGNALS
FREE
MOST ELLIOTT WAVE TOOLS JUST DRAW LINES. THIS ONE VALIDATES EVERY PATTERN AGAINST THE 3 CARDINAL RULES — OR REJECTS IT. Elliott Wave analysis is one of the most powerful — and most difficult — methods in technical trading. Most indicators fake it. They draw zigzag lines and call them waves without checking a single Elliott Wave rule. Elliott Wave Detector Pro is different. It was built from the ground up to detect, v
Introduction to Harmonic Volatility Indicator Harmonic Volatility Indicator is the first technical analysis applying the Fibonacci analysis to the financial volatility. Harmonic volatility indicator is another level of price action trading tool, which combines robust Fibonacci ratios (0.618, 0.382, etc.) with volatility. Originally, Harmonic Volatility Indicator was developed to overcome the limitation and the weakness of Gann’s Angle, also known as Gann’s Fan. We have demonstrated that Harmonic
Gartley Projections D
Oleksandr Medviediev
3 (2)
具有经过验证的概念和盈利能力的最佳、最有效、可靠的产品。感谢您的考虑。  该指标根据H.M.Gartley的发展(《股票市场利润》,1935年)识别和确认谐波模式(XABCD)。 它将D点投影为透视投影中的一个点(在设置中指定ProjectionD_Mode = true)。 不会重绘。当工作时间段的柱形图关闭时,如果已识别的模式点在Patterns_Fractal_Bars柱中未移动,则在图表上出现一个箭头(指向预期价格运动的方向)。从此刻起,箭头将永久保留在图表上。 注意:连续出现2-3个或更多箭头 - 这是市场条件的变化,而不是重绘。 总共有85种模式(包括Gartley-222和Gartley-222WS,完整列表可在评论部分的Google Drive链接中找到)。在所有已识别的模式中,只有最新识别的模式填充了单一颜色。 参数 DrawPatterns(true/false)- 以实心颜色绘制模式 ProjectionD_Mode(true/false)- 定义D点作为透视投影模式 Patterns_Fractal_Bars - 在认定为形成分形的情况下,最新识
Snipper ZZ
Rudianto Spdi Mhi
Sniper ZZ — Precision Entry. Clean Signals. Sniper ZZ is a lightweight MetaTrader 5 indicator that automatically draws Fibonacci retracement levels 0.382 and 0.618 from confirmed ZigZag swings. No more manual Fibonacci drawing — every time a new swing is confirmed, Sniper ZZ instantly calculates and displays the exact 0.382 and 0.618 retracement levels with price labels. WHAT MAKES SNIPER ZZ DIFFERENT? Most Fibonacci indicators alert you on EVERY touch — flooding you with false signals. Snip
FREE
该产品的买家也购买
UZFX {SSS} 超短线智能信号 v5.0 MT5 是一款无重绘的高性能交易指标,专为在快速波动的市场中需要精准、实时信号的超短线交易者、日内交易者和波段交易者设计。该指标由 (UZFX-LABS) 开发,融合了价格行为分析、趋势确认和智能过滤技术,可在所有货币对和时间周期内生成高概率的买卖信号、预警信号以及趋势延续机会。 别再对交易犹豫不决了,开始遵循这一专为追求清晰、精准和纪律性市场执行的交易者设计的结构化信号系统吧。 相信我,这是 MQL5 上最优秀的指标之一,所以千万不要错过!!“为睿智交易者打造的智能信号” 最新 5.0 版本现已发布,价格可能会在未事先通知的情况下上涨至 499.99 美元,所以请尽快入手,以免错失良机!! 最终购买前!如果您想获取免费试用版,请通过 WhatsApp 号码 +923030751987 联系我!! 如果您遇到任何问题“或”有任何不明白的地方,请在私聊中向我咨询!!! 主要功能更新 • 自动买入和卖出信号检测 • 先进的反转识别逻辑 • 潜在市场反转前的预警信号 • 趋势延续确认信号 • 内置风险管理功能,包含入场点、止损点、TP1、
ARICoins
Temirlan Kdyrkhan
ARICoin 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 Cust
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
TrendMaestro5
Stefano Frisetti
note: this indicator is for METATRADER4, if you want the version for METATRADER5 this is the link:  https://www.mql5.com/it/market/product/108106 TRENDMAESTRO ver 2.5 TRENDMAESTRO recognizes a new TREND from the start, he never makes mistakes. The certainty of identifying a new TREND is priceless. DESCRIPTION TRENDMAESTRO identifies a new TREND in the bud, this indicator examines the volatility, volumes and momentum to identify the moment in which there is an explosion of one or more of these da
MasterTrend
Temirlan Kdyrkhan
MasterTrend Indicator for MT5 A powerful trend-following and signal-evaluation tool MasterTrend   is a custom MT5 indicator that combines Moving Averages and ATR-based risk/reward logic to generate clear buy/sell signals. It visualizes dynamic SL/TP levels, evaluates past trade outcomes, and displays win/loss statistics in a clean on-chart panel. Key features include: Buy/Sell signals based on MA crossovers ATR-based SL/TP1/TP2/TP3 levels with visual lines and labels Signal outcome tracking wit
SmartScalping
Temirlan Kdyrkhan
SmartScalping 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
ScalpPoint
Temirlan Kdyrkhan
ScalpPoint 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 emai
TrendProMaster
Temirlan Kdyrkhan
MasterTrend Indicator for MT5 A powerful trend-following and signal-evaluation tool MasterTrend   is a custom MT5 indicator that combines Moving Averages and ATR-based risk/reward logic to generate clear buy/sell signals. It visualizes dynamic SL/TP levels, evaluates past trade outcomes, and displays win/loss statistics in a clean on-chart panel. Key features include: Buy/Sell signals based on MA crossovers ATR-based SL/TP1/TP2/TP3 levels with visual lines and labels Signal outcome tracking wit
看清市场真正在做什么。   在您眼前实时观察三大市场阶段(收缩、扩张、趋势),并在趋势阶段的早期阶段抓住更优的入场点。   不要再猜测。开始像机构和聪明钱那样解读市场。   Apex Market Structure Pro(MT5 版)是一款精准的聪明钱分析工具,它剥离噪音,向您展示每根 K 线之下的真实结构:流动性、结构转变、吸   筹区域与趋势偏向,全部呈现在一个简洁、专业的图层中。专为厌倦了滞后指标、准备以清晰视角交易的严肃交易者打造。   重要提示:本指标专为 Heikin Ashi(平均足)K 线设计。使用前请将图表切换为 Heikin Ashi,以释放其全部威力。全部分析都围绕 Heikin   Ashi 的价格流构建。正是在这里,Apex Market Structure Pro 发挥出最佳表现。   交易者为何选择 Apex Market Structure Pro:   流动性,一览无遗: 瞬间看清止损池所在之处。卖方与买方流动性会被自动标注。实时关注尚未被扫的价位,捕捉价格攫取流动性并反转的精确时   刻。在聪明钱交易的地方交易。   会说话的结构:
AriX
Temirlan Kdyrkhan
1 (4)
AriX Indicator for MT5 A powerful trend-following and signal-evaluation tool AriX is a custom MT5 indicator that combines Moving Averages and ATR-based risk/reward logic to generate clear buy/sell signals. It visualizes dynamic SL/TP levels, evaluates past trade outcomes, and displays win/loss statistics in a clean on-chart panel. Key features include: Buy/Sell signals based on MA crossovers ATR-based SL/TP1/TP2/TP3 levels with visual lines and labels Signal outcome tracking with real-time stat
FX-AIEA 供给需求区智能识别指标(Supply and Demand Indicators MT5)——技术原理与参数讨论 版本:2.51 | 适用平台:MetaTrader 5 引言 供给需求区是机构订单流的重要表现形式,相比传统支撑阻力位能更直接地反映买卖力量的失衡。本指标尝试通过算法自动识别高概率供需区域,以减少手动绘制的耗时与主观性。其核心逻辑基于自适应 ZigZag 算法,提取波峰波谷并生成区域标识 。 核心技术特点 全自动绘制机制 :基于改良版 ZigZag 动态提取有效极值,标记潜在供给区与需求区。指标遵循 MQL5 原生   prev_calculated   机制,在新 K 线生成时自动重绘,支持跨周期强制计算( Forced_TimeFrame   参数)。 区域边界模式 :支持宽带(覆盖K线影线极值)与窄带(仅覆盖实体)两种模式,用户可通过   use_narrow_bands   参数切换,以适应不同交易风格。 滤噪算法 :启用   kill_retouch   后,自动剔除被后续行情反复轻触但未有效突破的弱势区域,以提升信号有效性。 视觉与性能 :支持自
SMC Sweep Fvg MT5
Daniil Sleptsov
5 (1)
SMC Sweep Fvg MT5 — 像聪明钱一样看市场,就在你的图表上 你一定有过这种感觉:价格扫掉你的止损,随后反转,并正好走到你预期的方向。方向你是对的,错的只是入场。 这个指标就是为了让这类情况少发生。它接手分析中最繁重的部分——图表标注,把真正重要的留给你:决策。 你会在图表上看到什么 市场结构 — 真实的结构高点与低点,带有 HH / HL / LH / LL 标记和水平线。趋势一目了然,无需猜测。 失衡区(FVG) — 价格推进过快、之后常会回补的区域。未回补与已回补的区域用不同颜色显示。 流动性行为 — 指标跟踪市场在反转前扫过关键水平的时刻。 现成的交易布局 — 入场箭头、止损位与盈利目标。全部画好,无需心算。 趋势过滤 — 更高周期的趋势线,帮你站在主趋势一侧。 指标关注流动性扫荡、失衡形成与结构状态——并只突出这些因素同时对齐的情形。 统计面板——回应每一个疑虑 你不必只听别人说。图表上的内置面板会按所选历史显示: 分析周期(K线数量); 检测到的情形总数; 多少到达目标、多少触及止损; 仍在运行中的数量; 以点数计的净结果。 切换品种——面板重
VTrende Pro
Andrii Diachenko
5 (1)
VTrende Pro - MTF indicator for trend trading with a display panel for MT5 *** Videos can be translated into any language using subtitles (video language - Russian) Although the signals of the VTrende Pro indicator can be used as signals of a full-fledged trading system, it is recommended to use them in conjunction with the Bill Williams TS. VTrende Pro is an extended version of the VTrende indicator. Difference between Pro version and VTrende: - Time zones - Signal V - signal 1-2 waves -    S
CGE Trading Suite
Carl Gustav Johan Ekstrom
5 (2)
Institutional-Grade Analytics for MT5 The full analytical edge of a professional trading desk, built into your MT5 chart. Standard retail platforms lack the depth required for professional market analysis. The CGE Trading Suite bridges this gap, transforming MetaTrader 5 into a comprehensive workspace. By integrating 21 proprietary modules into a single, unified chart interface, the suite eliminates fragmented analysis. It provides definitive clarity across market structure, timing, momentum,
Meravith Scanner
Ivan Stefanov
5 (3)
MERAVITH SCANNER 是一款适用于 MetaTrader 5 的专业金融市场指标,将多种分析工具整合为一个统一的系统。它基于专有的成交量加权平均价格(VWAP)方法自动完成所有计算,完全消除主观判断。 该指标适用于所有资产类别(外汇、股票、指数、大宗商品、加密货币)以及从 M1 到 Monthly 的所有时间周期。其核心原理是价格跟随成交量。MERAVITH 识别机构资金成交量的集中区域,并从该集中区域中推导出数学上精确的价格水平。它不预测,不推测。它只计算。 使用 MERAVITH SCANNER,您可以在 2–3 分钟内扫描全部 28 个主要外汇货币对的所有时间周期。您也可以扫描任何您选择的市场——例如,大约 100 只股票约需 10 分钟。 该指标计算耗尽水平、平衡线、偏差、统计水平以及目标投射。 图表元素 Origin Point 标记所有计算的起始位置。指标会自动将其放置在最佳位置。红色标签(TOP)表示市场高点并带有看跌倾向。绿色标签(BOTTOM)表示市场低点并带有看涨倾向。 Sentiment Line 是一条动态曲线,反映基于成交量加权计算得出的市场情绪。
ZIVA Signal Intelligence
Hassan Abdullah Hassan Al Balushi
ZIVA Signal Intelligence An Adaptive, Modular Market Intelligence System ZIVA Signal Intelligence is not positioned as a conventional trading indicator. It is a fully integrated, proprietary market intelligence system engineered to deliver structured, high-precision interpretation of price behavior within a controlled analytical environment. Developed through an independent architectural approach, ZIVA does not rely on, derive from, or replicate existing indicators. It represents a standalone
OmniSync Projection
Antonio-alin Teculescu
5 (1)
Chronos Fractal Engine is an innovative price projection indicator for MetaTrader 5, designed to transform your technical analysis by intelligently identifying and projecting historical price patterns. Built upon an advanced correlation algorithm and the fractal principles of the market, this powerful tool visualizes potential future price movements, giving you a unique edge in your trading decisions. What is Chronos Fractal Engine? At its core, the Chronos Fractal Engine employs a sophisticat
SMC Institutional Suite
Catur Cipto Nugroho
SMC Institutional Suite v3.7 Professional Smart Money Concept Indicator for MetaTrader 5 What is New in Version 3.7 - Visual Stability Update This release focuses entirely on one goal: making every zone, label, and line on your chart rock-solid stable. There is no more flickering, no more zones disappearing on a new candle, and no more duplicate drawings. Order Block (OB) zones no longer flicker or disappear. Once drawn, they stay permanently on the chart. Equal Highs and Equal Lows (EQH / EQL)
Triple Crox Strategy
issam rahhal sabour
Triple Crox Strategy v4.10 Triple Crox Strategy v4.10 专业MT5指标 | 13形态 | 斐波那契 | CLUSTER ML | 13过滤 概述 专业MT5指标,融合 13种形态检测 、 斐波那契分析 、 CLUSTER机器学习 及 13种多重过滤 ,多层验证降低虚假信号。 交易设置 改良 Heikin-Ashi :绿=上升,红=下降。信号确认显示 买入 / 卖出 箭头,附带 Entry 入场、 TP1/TP2/TP3 止盈、 SL 止损水平线。13种过滤可选。 视觉组件 箭头: 绿买/红卖+Entry/TP/SL线 EMA云(3层): EMA(8/21/50),绿云=上升,红云=下降 趋势带: 绿色=上升,品红=下降 DEMA-ATR线: 绿线=上升,红线=下降 斐波那契: 回撤/扩展水平,黄金区高亮 形态+突破区: 轮廓标注+突破箭头 仪表板: 5主题4位置实时统计 风险管理 ATR止损: 倍数自适应波动环境 移动止损: 自动跟踪锁定利润 利润因子: 风险回报≥1:2才发信号 止损因子: ATR倍数1.0x
Классификатор силы тренда. Показания на истории не меняет. Изменяется классификация только незакрытого бара. По идее подобен полной системе ASCTrend, сигнальный модуль которой, точнее его аппроксимация в несколько "урезанном" виде, есть в свободном доступе, а также в терминале как сигнальный индикатор SilverTrend . Точной копией системы ASCTrend не является. Работает на всех инструментах и всех временных диапазонах. Индикатор использует несколько некоррелируемых между собой алгоритмов для класси
FFx Universal Strength Meter PRO is more than a basic strength meter. Instead of limiting the calculation to price, it can be based on any of the 19 integrated strength modes + 9 timeframes. With the FFx USM, you are able to define any period for any combination of timeframes. For example, you can set the dashboard for the last 10 candles for M15-H1-H4… Full flexibility! Very easy to interpret... It gives a great idea about which currency is weak and which is strong, so you can find the best pai
The FFx Universal MTF alerter shows on a single chart all the timeframes (M1 to Monthly) with their own status for the chosen indicator. 9 indicators mode (MACD-RSI-Stochastic-MA-ADX-Ichimoku-Candles-CCI-PSAR). Each can be applied multiple times on the same chart with different settings. Very easy to interpret. Confirm your BUY entries when most of the timeframes are showing green color. And confirm your SELL entries when most of the timeframes are showing red color. 2 Alert Options : input to s
FFx Watcher Pro MT5
Eric Venturi-Bloxs
The FFx Watcher PRO is a dashboard displaying on a single chart the current direction of up to 15 standard indicators and up to 21 timeframes. It has 2 different modes: Watcher mode: Multi Indicators User is able to select up to 15 indicators to be displayed User is able to select up to 21 timeframes to be displayed Watcher mode: Multi Pairs User is able to select any number of pairs/symbols User is able to select up to 21 timeframes to be displayed This mode uses one of the standard indicators
FFx Patterns Alerter gives trade suggestions with Entry, Target 1, Target 2 and StopLoss .... for any of the selected patterns (PinBar, Engulfing, InsideBar, OutsideBar) Below are the different options available: Multiple instances can be applied on the same chart to monitor different patterns Entry suggestion - pips to be added over the break for the entry 3 different options to calculate the SL - by pips, by ATR multiplier or at the pattern High/Low 3 different options to calculate the 2 TPs -
FFx Basket Scanner MT5
Eric Venturi-Bloxs
MetaTrader 4 version available here : https://www.mql5.com/en/market/product/24881 FFx Basket Scanner is a global tool scanning all pairs and all timeframes over up to five indicators among the 16 available. You will clearly see which currencies to avoid trading and which ones to focus on. Once a currency goes into an extreme zone (e.g. 20/80%), you can trade the whole basket with great confidence. Another way to use it is to look at two currencies (weak vs strong) to find the best single pairs
MetaTrader 4 version available here: https://www.mql5.com/en/market/product/25793 FFx Pivot SR Suite PRO is a complete suite for support and resistance levels. Support and Resistance are the most used levels in all kinds of trading. Can be used to find reversal trend, to set targets and stop, etc. The indicator is fully flexible directly from the chart 4 periods to choose for the calculation: 4Hours, Daily, Weekly and Monthly 4 formulas to choose for the calculation: Classic, Camarilla, Fibonac
ClassicSBA
Umri Azkia Zulkarnaen
this indicator very simple and easy if you understand and agree with setup and rule basic teknical sba you can cek in link : please cek my youtube channel for detail chanel : an for detail info  contact me  basicly setup buy (long) for this indicator is Magenta- blue and green candle or magenta - green  and green candlestik and for setup sell (short) is Black - yellow - and red candle or black - red  and red candlestik
Pendiente de Precio
Cesar Juan Flores Navarro
Indicador en base a la pendiente de la linea de precio, dibuja una línea de color cuando sube a base de los precios que previamente has sido procesados o linealizados, y cuando baja la pendiente la linea linealizada toma otro color. En este caso se a considerado 6 lineas de diferentes procesos desde pendientes largas hacia las cortas, observándose que cuando coincidan las pendientes se produce un máximo o mínimo, lo que a simple vista nos permitirá hacer una COMPRA O VENTA.
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
筛选:
无评论
回复评论