Market Structure Patterns

4.47

Market Structure Patterns is an indicator based on smart money concepts that displays SMC/ICT elements that can take your trading decisions to the next level. Take advantage of the alerts, push notifications and email messages to keep informed from when an element is formed on the chart, the price crosses a level and/or enters in a box/zone. Developers can access the values of the elements of the indicator using the global variables what allows the automation of trading decisions based on SMC/ICT strategies.

Thinking on high level of customization, the indicator allows to customaze the color and transparency of the element, display the labels using bubble style, display the sessions/trading windows in the bottom of the chart or over the price chart, has an exclusive algorithm to avoid labels/text overlappingpaints the candlesticks depending on the trend and/or internal and swing trend alignment. This feature can be enabled in the parameter "Color Candles". By default the trend is show as green for bullish trend and red for bearish trend. Among with the trend the candlesticks can be filled or not giving the hability to recognize bullish and bearish candlesticks.

Elements and/or Abreviations:

The elements present in the indicator are listed down with their abreviations when applied:

  • Premium, Equilibrium and Discount zones
  • Strong/Weak High/Low
  • Automatic Fibonacci
  • OTE - Optimal Trade Entry
  • HH, HL, LH, LL- Higher highs, higher lows, lower highs and lower lows
  • EQH, EQL - Equal highs and Equal lows
  • BSL, SSL - Buy Stops Liquidity and Sell Stops Liquidity
  • EQH-BSL, EQL-SSL - Buy Stops Liquidity on Equal Highs and Sell Stops Liquidity on Equal Lows
  • BoS, iBoS - Break of structures and Internal Break of Structure
  • CHoCH, iCHoCH - Change of character and Internal Change of Character
  • OB, iOB - Order Blocks and  Internal Order Blocks
  • BB, iBB - Breaker Blocks and Internal Breaker Blocks
  • Liquidity voids
  • FVG - Fair Value Gap
  • InvFVG - Inverse  Fair Value Gap
  • ImpFVG - Implied Fair Value Gap
  • OG - New Day Opening Gap
  • HoD, LoD, OoD - High of the day, Low of the day and Open of the day
  • PDH, PDL, PDO, PDC - Prior day high, low, open and close
  • PWH, PWL , PWO, PWC - Prior week high , low, open and close
  • PMH, PML , PMO, PMC - Prior month high , low, open and close
  • Sessions, Kill Zones and Silver Bullet  Trading Window

Available alerts:

  • Alert on BoS Created (bullish / bearish)
  • Alert on CHoCH Created (bullish / bearish)
  • Alert on iBoS Created (bullish / bearish)
  • Alert on iCHoCH Created (bullish / bearish)
  • Alert on EQH Created
  • Alert on EQL Created
  • Alert on HH-HL-LH-LL Created
  • Alert on BSL Taken
  • Alert on SSL TakenAlert on iOB Break (bullish / bearish)
  • Alert on iOB Touch (bullish / bearish)
  • Alert on iBB Touch (bullish / bearish)
  • Alert on OB Break (bullish / bearish)
  • Alert on OB Touch (bullish / bearish)
  • Alert on BB Touch (bullish / bearish)
  • Alert on FVG Created (bullish / bearish)
  • Alert once per bar on FVG Touch (bullish / bearish, 0=disabled)
  • Alert on Inverse FVG Created (bullish / bearish)
  • Alert once per bar on Inverse FVG Touch (bullish / bearish, 0=disabled)
  • Alert on Implied FVG Created (bullish / bearish)
  • Alert once per bar on Implied FVG Touch (bullish / bearish, 0=disabled)
  • Alert on BPR Created (bullish / bearish)
  • Alert once per bar on BPR Touch (bullish / bearish, 0=disabled)
  • Alert on OG Created (bullish / bearish)
  • Alert on Liquidity Void Created (bullish / bearish)
  • Alert once per bar on Premium Touch (0=disabled)
  • Alert once per bar on Discount Touch (0=disabled)
  • Alert once per bar on Equilibrium Touch (0=disabled)
  • Alert on Fibonacci Touch
  • Levels for Fibonacci Alert
  • MTF Alert Conditions
  • MTF Alert on FVG Created (bullish / bearish)
  • MTF Alert once per bar on FVG Touch (bullish / bearish, 0=disabled)
  • MTF Alert on Inverse FVG Created (bullish / bearish)
  • MTF Alert once per bar on Inverse FVG Touch (bullish / bearish, 0=disabled)
  • MTF Alert on Implied FVG Created (bullish / bearish)
  • MTF Alert once per bar on Implied FVG Touch (bullish / bearish, 0=disabled)
  • MTF Alert on BPR Created (bullish / bearish)
  • MTF Alert once per bar on BPR Touch (bullish / bearish, 0=disabled)

Global Variables:

The access to order blocks and structure breaks values through global variables can be made using the names conventions as follow:

// The timeframe to get the data
string timeframe = StringSubstr(EnumToString(_Period), StringLen("PERIOD_"));
string prefix = "SMP-"+_Symbol+"("+timeframe+")", for example "SMP-EURUSD(H4)";

// For bullish order blocks (for bearish just replace 'Bullish' by 'Bearish')
// Add "Bullish-IOB" for internal nullish order blocks or "Bullish-OB" for swing bullish order blocks;
// Add "-Total to get the amount of order blocks on the charts;"
int bullish_iob_total = GlobalVariableGet(prefix+"Bullish-IOB-Total")

// use for loop to get all the values
for(int i=0;i<bullish_iob_total;i++)
{
        // Add "[index]-Top" and/or "[index]-Bot" to get the order blocks values.
        double iob_top = GlobalVariableGet(prefix+"Bullish-IOB["+(string)i+"]-Top");
        double iob_top = GlobalVariableGet(prefix+"Bullish-IOB["+(string)i+"]-Bot");
}

// For structure breaks:
// Add the pattern name as displayed on the chart. For example, +iCHoCH can be accessed by "SMP-EURUSD(H4)-+iCHoCH"

// For Premium/Equilibrium/Discount:
// Add the pattern name followed by the desired level. For example, Premium-Top and Premium-Bot can be accessed respectively by "SMP-EURUSD(H4)-Premium-Top" and "SMP-EURUSD(H4)-Premium-Bot"


The access to the indicator data by buffers indexes was introduced in the version 3.24. The data available is mapped as follow:

Buffer index Data stored in the buffer
0 Internal Top Price
1 Internal Bottom Price
2 Internal Bull Bos
3 Internal Bear Bos
4 Internal Bull Choch
5 Internal Bear Choch
6 Internal Bull Order Block Top
7 Internal Bull Order Block Bottom
8 Internal Bear Order Block Top
9 Internal Bear Order Block Bottom
10 Internal Bull Breaker Block Top
11 Internal Bull Breaker Block Bottom
12 Internal Bear Breaker Block Top
13 Internal Bear Breaker Block Bottom
14 Swing Top Price
15 Swing Bottom Price
16 Swing Bull Bos
17 Swing Bear Bos
18 Swing Bull Choch
19 Swing Bear Choch
20 Swing Bull Order Block Top
21 Swing Bull Order Block Bottom
22 Swing Bear Order Block Top
23 Swing Bear Order Block Bottom
24 Swing Bull Breaker Block Top
25 Swing Bull Breaker Block Bottom
26 Swing Bear Breaker Block Top
27 Swing Bear Breaker Block Bottom
28 BSL Taken
29 SSL Taken
30 EQH Price1
31 EQH Price2
32 EQL Price1
33 EQL Price2
34 Premium Top
35 Premium Bottom
36 Equilibrium Top
37 Equilibrium Bottom
38 Discount Top
39 Discount Bottom
40 Strong High
41 Weak High
42 Strong Low
43 Weak Low
44 Bull FVG Top
45 Bull FVG Bottom
46 Bear FVG Top
47 Bear FVG Bottom
48 Bull Inverse FVG Top
49 Bull Inverse FVG Bottom
50 Bear Inverse FVG Top
51 Bear Inverse FVG Bottom
52 Bull Implied FVG Top
53 Bull Implied FVG Bottom
54 Bear Implied FVG Top
55 Bear Implied FVG Bottom
56 Bull Liquidity Void Top
57 Bull Liquidity Void Bottom
58 Bear Liquidity Void Top
59 Bear Liquidity Void Bottom

评分 24
Vitor Faria
39
Vitor Faria 2025.10.27 20:37 
 

The best indicator

Aruncharan Ganapathy Sivakumar
219
Aruncharan Ganapathy Sivakumar 2024.08.18 00:56 
 

As Greg Nicolas said confirmation arrow gives confidence if added... Thank you author for your dedication

Greg Nicolas
160
Greg Nicolas 2024.05.25 00:28 
 

The Indicator is a top notch but It really took me time to understand it.however, disabling those sessions and OTE which gives direction somehow late and adding a confirmation arrow really makes the difference for me. Kudos to Samuel for a great Job and five star. I have both MT4 & MT5 on fire with Synthetic

推荐产品
RBreaker
Zhong Long Wu
RBreaker Gold Indicators 是黄金期货一种短线日内交易策略,它结合了趋势跟踪和日内反转两种交易方式,既能捕捉趋势行情的利润,又能在行情反转时及时止盈并顺势反手。 该策略曾连续15年被美国《Futures Truth》杂志评选为前十大最赚钱的交易策略之一,具有很长的生命周期,至今仍在国内外普遍使用与研究。 本指标结合了2026年期货黄金的走势,依据14日ATR指标,分别定义了突破系数A,观察系数B,反转系数R更合理的数值,非常不错的指标,已实现年稳定盈利,值得推荐~ 以上指标适合高波动品种,参数适合期货黄金,股指期货等,如果需要其他品种行情,需要单独设定 突破系数A,观察系数B,反转系数R,进行回测才能使用。 欢迎指标售后有问题可以加+V:504282029
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
"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
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** 通过提供一个**完整的控制面板*
PZ Support Resistance MT5
PZ TRADING SLU
3.71 (7)
厌倦了绘制支撑线和阻力线? 支撑阻力 是一个多时间指标,可以自动检测并绘制图表中的支撑线和阻力线,并具有非常有趣的变化:随着时间的推移测试价格水平及其重要性的提高,线变得越来越粗。 [ 安装指南 | 更新指南 | 故障排除 | 常见问题 | 所有产品 ] 一夜之间增强您的技术分析 无需浏览图表即可检测重要的价格水平 一目了然地识别所有价格水平的相对优势 每次交易最多可节省半小时的绘图线 指标显示所有价格水平的期限 指示器不重涂 过去和现在的价格水平因接近程度而崩溃,并根据当前的市场行为进行了调整。在动作发生的地方绘制了线条,而不一定在峰值处绘制了线条。 价格水平随着时间的推移而被拒绝,变得越来越暗 定期清除不重要的价格水平以避免噪音 可自定义的时间范围选择和崩溃因子 它实现了电子邮件/声音/推送警报的突破 输入参数 指标设置:指标将从当前时间段读取价格,但您可以选择另一个。例如,您可以在H4图表中显示D1支撑线和阻力线。您还可以使用 价格水平密度 参数选择在图表上显示多少价格水平。 颜色设置:根据重要性输入所需的支撑线和阻力线颜色。 标签设置:(可选)可以在指示器中显示用于
Cumulative Delta NG
Anton Polkovnikov
Cumulative delta indicator As most traders believe, the price moves under the pressure of market buying or selling. When someone redeems an offer standing in the cup, the deal is a "buy". If someone pours into the bid standing in the cup - the deal goes with the direction of "sale". The delta is the difference between purchases and sales. A cumulative delta - the difference between the cumulative sum of purchases and sales for a certain period of time. It allows you to see who is currently contr
ALIEN Dashboard
Youssef Esseghaiar
ALIEN DASHBOARD FULL EDITION – Professional ICT & Precision Trading Dashboard for MT5 ( HYBRID ENGINE ) Overview The   Alien Dashboard Full Edition   is a comprehensive, all‑in‑one technical indicator for MetaTrader 5 that merges the most powerful concepts from Inner Circle Trader (ICT) methodology with advanced precision‑entry logic, multi‑timeframe analysis, and an intuitive on‑chart dashboard. Designed for serious traders who want to visualise institutional order flow, identify high‑probabili
Weis Wave Scouter
Jean Carlos Martins Roso
通过 Weis Wave Scouter,您可以深入掌握先进的成交量分析技术。这款革命性的MetaTrader 5指标结合了久经验证的Wyckoff方法和VSA(成交量价差分析)理念,专为追求高精度和深度洞察的交易者量身打造。Weis Wave Scouter通过累计成交量波动分析,为市场提供战术性解读,帮助识别趋势反转与延续的关键点位。 该指标配备了清晰的可视化界面,采用彩色直方图,展示多头与空头波动,并支持Classic、NightVision、OceanBreeze等多种自定义主题。主要功能包括检测成交量峰值、识别低活动区(DeadZone)以及基于成交量变化的可配置波动反转提醒。此外,它还支持努力与结果分析、因果关系分析以及供需动态研究,这些都是Wyckoff和VSA方法论的重要支柱。通过自定义参数如砖块大小(Brick Size)、成交量缩放因子(Volume Scale Factor)和枢轴回溯(Pivot Lookback),Weis Wave Scouter可灵活适配各种交易风格与金融品种,无论是以资金量还是以点数成交量进行分析。 使用 Weis Wave Scoute
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.
An indicator of pattern #31 ("Long Island") from Encyclopedia of Chart Patterns by Thomas N. Bulkowski. The second gap is in the opposite direction. Parameters: Alerts - show alert when an arrow appears   Push - send a push notification when an arrow appears (requires configuration in the terminal) GapSize - minimum gap size in points ArrowType - a symbol from 1 to 17 ArrowVShift - vertical shift of arrows in points   ShowLevels - show levels ColUp - color of an upward line ColDn - color of a d
CosmiCLab METEORIT — SMC Fibo ZigZag CosmiCLab METEORIT is a professional Smart Money Concepts indicator designed for traders who want to identify institutional market movements. The indicator combines market structure analysis, liquidity sweeps, automatic Fibonacci levels and a smart ZigZag engine to help traders detect high-probability trading zones. It is designed for intraday trading on M15 and H1 , but also works well on other timeframes. Key Features Smart ZigZag market structure engine
TRI Visualizer
Yoshimi Mon 三 Ura
TRI Visualizer MT5 – Thermodynamic Market Analysis Overview The TRI (Thermal Range Indicator) Visualizer Enhanced is a rare market analysis indicator that goes beyond conventional technical analysis, applying principles of thermodynamics from physics. It interprets market price fluctuations as “thermodynamic energy,” enabling the highly accurate detection of subtle market changes that are often overlooked. Innovative Mechanisms 1. Dual Calculation Engines Classic TRI Mode Formula: |Close
The Accumulation / Distribution is an indicator which was essentially designed to measure underlying supply and demand. It accomplishes this by trying to determine whether traders are actually accumulating (buying) or distributing (selling). This indicator should be more accurate than other default MT5 AD indicator for measuring buy/sell pressure by volume, identifying trend change through divergence and calculating Accumulation/Distribution (A/D) level. Application: - Buy/sell pressure: above
Universal Soul Reaper
Pieter Gerhardus Van Zyl
Universal Soul Reaper is an atmospheric market-flow oscillator designed to interpret price behavior as a cycle of spiritual energy. Instead of reacting to raw price alone, it visualizes the state of the market’s soul —revealing when momentum is awakening, stabilizing, or fading. The indicator operates in a separate window and presents three interwoven entities: the Ectoplasmic Veil , the Spirit Boundary , and the Soul Core . Together, they form a living framework that helps traders sense pressu
WaveTrend Oscillator MT5 是一个强大的交易指标,旨在通过识别动量变化和潜在的趋势反转来增强您的市场分析。适合所有级别的交易者,这个工具提供了对各种市场(包括 forex、加密货币和商品)中超买和超卖状态的宝贵洞察。 凭借其生成准确买入和卖出信号的能力,WaveTrend Oscillator MT5 使交易者能够做出明智的决策,有效提高他们在短期和长期交易策略中的成功机会。 MQL产品安装指南 | 在 MT4/MT5 上更新已购买的MQL产品 | 常见故障排除指南 | 指标设置 / 指南 主要特点 缓冲区集成:将指标值暴露为可访问的缓冲区,允许 Expert Advisor 使用基于信号的交易策略。 快速且可回测:基于 MetaTrader 的本地 OnCalculate() 引擎构建,确保快速计算并与策略测试器完全兼容。 弹出警报:在信号事件上触发 MetaTrader 警报弹出,确保您不会错过潜在的交易设置。 推送通知:向您的 MetaTrader 移动应用发送实时推送通知,使您能够随时监控市场状况。 电子邮件警报:在信号事件上发送电子邮件通知,即使远离交易
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
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
极值突破信号 是一种基于价格突破关键支撑和阻力位的交易策略。当价格突破这些极值点时,通常意味着市场趋势发生变化,交易者可捕捉到新的上涨或下跌机会。 参数 extreme radius:极值半径(不同周期可以设置不同参数) 核心原理 支撑与阻力 :价格在支撑或阻力位附近往往受限,突破后可能引发新趋势。 突破确认 :突破后需确认有效性,通常结合成交量或其他指标。 信号类型 买入信号 :价格突破上方阻力位,可能进入上涨趋势。 卖出信号 :价格突破下方支撑位,可能进入下跌趋势。 应用 确认突破 :结合其他技术指标(如成交量、RSI、MACD)确认突破的有效性。 止损止盈 :止损设在突破前的支撑/阻力位,止盈根据市场波动设置。 优缺点 优点 :有助于提前抓住趋势初期,适用多种市场。 缺点 :假突破的风险较高,震荡行情中效果差。 总结 :极值突破信号有助于捕捉新趋势,但需要结合其他指标,避免假突破带来的风险。
指标 WPRV2 的完整描述 指标 WPRV2 是经典技术分析工具威廉斯百分比范围(%R)的改进版本。它主要用于金融市场,包括股票交易所、外汇和加密货币平台,以帮助分析市场趋势并确定最佳入场和出场点。 指标用途 WPRV2 指标的主要目的是测量当前价格相对于最近高低点的位置。通过这种方式,可以了解: 当前价格是否接近历史高位? 当前价格是否接近历史低位? 这有助于交易者及时响应价格反转或现有趋势持续的信号。 WPRV2 指标特点 1. 图形表示法 该指标在主资产图表之外单独显示,并由两条线组成: 主线 ( WPR ):展示给定周期内 %R 满足值的变化情况。 附加红色线 ( Current ):仅显示当前指标值及前一个数据点,可视化跟踪移动方向。 2. 水平水平线与通知功能 用户可以设置三个水平水平线(默认为 -20%、-50% 和 -80%),当价格达到这些极限区域时会发出警报。当主线向上或向下穿越水平线时,指标将生成可视化和声音提示,便于立即决策。 3. 时间参数调节 主要配置项是计算期间长度 ( WPRPeriod ),决定考虑价格极值的时间段。较短的周期使得指标对短期价格波动
可以说,这是您可以为MetaTrader平台找到的最完整的谐波价格形成自动识别指标。它检测19种不同的模式,像您一样认真对待斐波那契投影,显示潜在的反转区域(PRZ),并找到合适的止损和获利水平。 [ 安装指南 | 更新指南 | 故障排除 | 常见问题 | 所有产品 ] 它检测19种不同的谐波价格形态 它绘制了主要,衍生和互补的斐波那契投影(PRZ) 它评估过去的价格走势并显示每个过去的形态 该指标分析其自身的质量和性能 它显示合适的止损和获利水平 它使用突破来表明合适的交易 它在图表上绘制所有样式比率 它实现了电子邮件/声音/视觉警报 受斯科特·M·卡尼(Scott M. Carney)的书的启发,该指标旨在满足最纯粹和最熟练的交易者的需求。但是,它采取了一种使交易更容易的方式:在向交易发出信号之前,它会等待Donchian朝正确方向突破,从而使交易信号非常可靠。 斐波那契投影与向量无关 它实现了电子邮件/声音/推送警报 它绘制了ABCD投影 重要提示: 为了符合 Scott M. Carney先生 的商标申诉,某些图案名称已重命名为不言自明的替代方式, Scott M.
Double HMA MTF for MT5
Pavel Zamoshnikov
4 (4)
This is an advanced multi-timeframe version of the popular Hull Moving Average (HMA) Features Two lines of the Hull indicator of different timeframes on the same chart. The HMA line of the higher timeframe defines the trend, and the HMA line of the current timeframe defines the short-term price movements. A graphical panel with HMA indicator data from all timeframes at the same time . If the HMA switched its direction on any timeframe, the panel displays a question or exclamation mark with a tex
Terra Infinity
Ivan Simonika
Terra Infinity is a flat indicator. This improved version of the CalcFlat indicator has three additional lines that significantly increase its effectiveness. Unlike its predecessor with two static levels, Terra Infinity adds three dynamic lines above the main histogram, which are interpreted as follows: base signal line, minimum signal line, maximum signal line. These lines are formed using the additional parameter Avg, which is the average value of the histogram. Averaging produces a line cl
PipFinite Trend PRO MT5
Karlo Wilson Vendiola
4.84 (557)
Breakthrough Solution For Trend Trading And Filtering With All Important Features Built Inside One Tool! Trend PRO's smart algorithm detects the trend, filters out market noise and gives entry signals with exit levels. The new features with enhanced rules for statistical calculation improved the overall performance of this indicator. Important Information Revealed Maximize the potential of Trend Pro, please visit www.mql5.com/en/blogs/post/713938 The Powerful Expert Advisor Version Automatin
Auto Optimized RSI   是一款智能且易于使用的箭头指标,旨在实现精准交易。它利用基于历史数据的模拟,自动识别当前品种和时间周期中最有效的 RSI 买入和卖出水平。 该指标既可以作为独立的交易系统使用,也可以结合您的其他交易策略一起使用。尤其适合日内交易者使用。 与传统 RSI 指标使用固定的 70/30 水平不同, Auto Optimized RSI   会根据真实的价格行为和回测结果动态调整水平。它会跟踪胜率、回撤和平均盈亏等关键指标,从而适应市场当前的走势,并基于“实际有效”的逻辑发出信号。 当 RSI 穿越经过优化的关键区域时,指标会在图表上显示 Buy 和 Sell 箭头,帮助交易者找到成功率更高的进场机会。 购买后请务必联系我,以获取额外赠送的工具和专属交易建议! 祝您交易顺利,稳步盈利!
Trend Master Chart MT5
Frederic Jacques Collomb
Trend Master Chart。 它覆盖图表并使用颜色编码来定义不同的市场趋势/走势。 它使用结合了两个移动平均线和不同振荡器的算法。 这三个元素的周期是可以修改的。 它适用于任何时间范围和任何货币对。 您一眼就能识别出上升或下降趋势以及该趋势的不同切入点。 例如,在明显的上升趋势(浅绿色)期间,该趋势中的不同市场冲动将通过深绿色蜡烛显示。 可配置的警报将使您永远不会错过这些冲动之一。 MT4版本。 输入参数: Period 1: 快速周期移动平均线。 Period 2: 慢周期移动平均线。 Oscillator period :振荡器周期。 Sell/Buy alert: 市场冲动警报、趋势切入点。 Bullish/Bearish: 趋势变化时发出警报。 可以通过弹出/邮件和推送通知方式发出警报。 完全可配置的警报文本。 想要查看其他免费 SPARTACUS 指标, 请点击此处 SPARTACUS2024
##   ONLY GOLD ##   Тiльки Золото ## **Mercaria Professional Trading Zones - Complete Guide** ## **Mercaria Professional Trading Zones - Повний посібник** ### **How Mercaria Zones Work / Як працюють зони Mercaria** **English:** Mercaria Zones is an advanced trading indicator that identifies high-probability support and resistance areas using ZigZag extremes combined with mathematical zone calculations. The indicator works on multiple timeframes simultaneously, providing a comprehensive view
Inverted_Chart_EA Utility Expert Advisor Inverted_Chart_EA creates and maintains a mirror-inverted chart of any symbol and timeframe. It automatically generates a custom instrument (e.g. US30_INV ) and keeps its price history updated in real time, with bars mirrored around a chosen pivot. This utility gives traders a new way to analyze the market from a different perspective by flipping the chart upside down. Why use an inverted chart? Highlight hidden patterns – price formations that look ordin
Your Trend Friend
Luigi Nunes Labigalini
5 (1)
The trend is your friend! Look at the color of the indicator and trade on that direction. It does not  repaint. After each candle is closed, that's the color of the trend. You can focus on shorter faster trends or major trends, just test what's most suitable for the symbol and timeframe you trade. Simply change the "Length" parameter and the indicator will automatically adapt. You can also change the color, thickness and style of the lines. Download and give it a try! There are big movements w
该产品的买家也购买
SuperScalp Pro
Van Minh Nguyen
4.59 (22)
SuperScalp Pro – 高级多重过滤剥头皮指标系统 SuperScalp Pro 是一款高级剥头皮交易指标,将经典 Supertrend 与多种智能确认过滤器结合,帮助识别交易机会。它可高效运行于 M1 至 H4 多个时间周期,并针对 XAUUSD、BTCUSD 及主要外汇货币对进行了优化。 该指标提供清晰的 Buy 和 Sell 信号,并基于 ATR 自动计算入场价、止损和止盈水平,帮助交易者更有效地管理风险。Fibonacci Take Profit 功能可在关键价格水平提前平仓,并在到达这些水平时发送通知,从而提升交易管理效率与稳定性。 默认配置已启用 Fibonacci Take Profit,专注于更稳定、更持续的交易体验。您只需将指标加载到图表即可立即开始使用,无需额外设置。对于高级用户,所有参数均可完全自定义,以适应不同交易策略和偏好。 SuperScalp Pro 集成了 EMA、RSI、ADX、Volume、VWAP、Bollinger Bands 和 MACD Divergence 等多种过滤器,有助于减少虚假信号并提高入场质量。指标还包含图表内交互控制面
Entry In The Zone and SMC Multi Timeframe is a real-time 2-in-1 market analysis tool that combines market structure analysis and a No Repaint BUY / SELL signal system into a single indicator, built on Smart Money Concepts (SMC) — a widely adopted framework used by professional traders to understand market structure. This indicator helps you see the market more clearly, make decisions based on structure rather than guesswork, and focus on high-probability zones where price is more likely to react
SignalTech MT5
Yue Wang
5 (12)
SignalTech MT5 is a trading system for EURUSD, USDCHF, USDJPY, AUDUSD, NZDUSD, EURJPY, AUDJPY, NZDJPY, CADJPY H2 and H3 Timeframe.  All the winning trades with chart setups are published on the comments page. 2025-12 1174 Pips 2026-01 2624 Pips 2026-02 2937 Pips 2026-03 2165 Pips 2026-04 2243 Pips It can generate signals with Buy/Sell Arrows and Pop-Up/Sound Alerts. Each signal has clear Entry and Stop Loss levels, which should be automatically flagged on the chart, as well as potential Targets
Divergence Bomber
Ihor Otkydach
4.9 (87)
购买该指标的每位用户将额外免费获得以下内容: 原创工具“Bomber Utility”,该工具会自动跟踪每一笔交易,设置止损和止盈点,并根据策略规则自动平仓; 适用于不同交易品种的指标设置文件(Set 文件); 三种不同风险模式下的 Bomber Utility 设置文件:“最低风险”、“平衡风险” 和 “观望策略”; 一套详细的 视频操作手册,帮助您快速完成安装、配置并开始使用本交易系统。 注意: 要获取以上所有赠品,请通过 MQL5 的私人消息系统联系卖家。 我为您介绍原创的自定义指标 “Divergence Bomber”(背离轰炸机),它是一套基于 MACD 背离交易策略 的“全功能”交易系统。 该技术指标的主要任务是识别 价格与 MACD 指标之间的背离,并发出交易信号(包括推送通知),指示未来价格可能的运动方向。平均而言,这些信号的准确率超过 98%。有关该指标如何工作的详细说明,请观看本页面上的视频演示。 该系统使用 止损订单 和 动态回撤平仓机制 来管理交易。 Divergence Bomber 指标的主要特点: 支持交易的品种: AUDCAD、AUDCHF、AUDSG
Power Candles MT5
Daniel Stein
5 (8)
Power Candles V3 - 自我优化的强度指标 Power Candles V3 把货币与品种的强度直接转化为图表上可执行的交易方案。指标不再仅根据强度给K线着色,而是在后台持续运行实时自动优化,为您正面对的品种给出最佳 Stop Loss、Take Profit 与信号阈值。一键采用,Entry、Stop Loss、Take Profit 线就以精确价格绘制在图表上,提醒消息中直接包含方向。 本工具是 Stein Investments 生态系统的一部分 - 18+ 款工具,加上 Max,您的一对一 AI 交易导师。  随时在线,深入了解每一款指标,在您需要梳理思路的那一刻就在那里。  立即认识他: https://stein.investments 每根收盘K线运行 3,000+ 次交易模拟。9 种强度状态。2 种策略并行测试。一键采用最优配置。 为什么需要这个 大多数强度指标只给您一个数值,然后留下三个问题:相信哪个阈值、用哪个 Stop Loss、走哪个交易方向。Power Candles V3 在每根收盘K线上自动回答这些问题。结果就是一个完整的交易方案 -
FX Trend MT5 NG
Daniel Stein
5 (4)
FX Trend NG:新一代多市场趋势智能分析工具 概述 FX Trend NG 是一款专业的多时间周期趋势分析与市场监控工具,帮助您在几秒钟内全面了解市场结构。 无需在多个图表之间来回切换,您可以立即看到哪些品种处于趋势中、哪里动能正在减弱,以及哪些时间周期之间存在强烈共振。 限时发布优惠 – 仅需 $30(6个月) 或 $80 终身授权 即可拥有 FX Trend NG 。 已经是 Stein Investments 客户? -> 发送消息 以获取专属客户群访问权限。 需要帮助或安装指导? -> 请访问 Stein Investments 官方页面 。 1. FX Trend NG 的核心优势 三状态趋势逻辑 —— 不只是 Buy 或 Sell • 大多数指标仅显示两种状态:Buy 或 Sell。 • FX Trend NG 增加第三种状态: Fade 。 • Fade 表示趋势强度正在减弱,在完全反转之前提前发出信号。 这种结构化逻辑让您看到趋势变化过程,而不仅仅是简单方向信号。 多时间周期分析(M1 至 MN1) • 从短线交易到中长线交易全面覆盖。 • 快速识别趋势
购买此指标即可免费获得我的专业交易管理器。 首先,值得强调的是,这个交易系统是一个非重绘、非重画和非滞后的指标,这使得它非常适合手动和机器人交易。 在线课程,手册和下载预设。 “智能趋势交易系统 MT5”是专为新手和经验丰富的交易者量身定制的综合交易解决方案。它结合了超过 10 个优质指标,具有 7 多个强大的交易策略,使其成为适用于各种市场条件的多功能选择。 趋势跟随策略:提供精确的入场和止损管理,以有效地跟随趋势。 反转策略:识别潜在的趋势反转,使交易者能够利用区域市场的机会。 剃头策略:专为快速准确的日内交易和短期交易而设计。 稳定性:所有指标都不会重绘、不会重画和不会滞后,确保可靠的信号。 定制:支持自定义策略,以满足个人交易偏好。超过 7 种策略和组合可帮助您找到最佳策略。 信号清晰度:提供箭头信号,以指示清晰的入场和退出点。 实时警报:通过交易进出警报使交易者保持了解。 深入分析:提供更高时间框架的趋势分析和实时交易监控。 自适应颜色编码:利用蜡烛颜色编码来显示成交量、趋势和反转蜡烛信号。通过蜡烛颜色分析市场方向。 “智能趋势交易系统 MT5”赋予交易者必要的工具,以便在
Grabber System MT5
Ihor Otkydach
4.83 (23)
向您介绍一款优秀的技术指标——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
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
Quantum TrendPulse
Bogdan Ion Puscasu
5 (23)
介绍 Quantum TrendPulse   ,这是一款终极交易工具,它将 SuperTrend   、   RSI 和 Stochastic 的强大功能整合到一个综合指标中,以最大限度地发挥您的交易潜力。该指标专为追求精准和效率的交易者而设计,可帮助您自信地识别市场趋势、动量变化以及最佳进入和退出点。 主要特点: 超级趋势整合: 轻松跟随当前的市场趋势并乘上盈利浪潮。 RSI 精度: 检测超买和超卖水平,非常适合把握市场逆转时机,可用作 SuperTrend 的过滤器 随机精度: 利用随机振荡在波动的市场中寻找隐藏的机会, 用作超级趋势的过滤器 多时间范围分析: 从 M5 到 H1 或 H4,在不同时间范围内关注市场动态。 可定制的警报: 当您的自定义交易条件得到满足时收到通知,这样您就不会错过任何交易。 无论您是新手还是经验丰富的交易员,   Quantum TrendPulse 都能为您提供所需的优势,帮助您增强策略并自信地进行交易。借助这一强大的指标,将洞察力转化为利润 — 掌控您的交易! ***购买 Quantum TrendPulse,即可免费获得 Quantum Tr
Meridian Pro
Ottaviano De Cicco
5 (1)
Meridian Pro 2.00:MT5 专业多周期趋势矩阵 Meridian Pro 2.00 是面向 MetaTrader 5 的专业自适应趋势矩阵。它结合了原始 Meridian 趋势引擎、清晰的图表 ribbon、收盘柱确认箭头、8 周期 dashboard、Fuel 动量、加权共识、合成 HTF 处理,以及直接显示在当前图表上的高周期环境线。 目标很简单:在一个有纪律的 workflow 中读取当前趋势、多周期结构、强度、动量和 EA-ready 状态,而不是在多个图表上堆叠互不关联的指标。 Meridian Pro 的不同之处 一个自适应引擎 - 同一套波动率感知 Meridian 逻辑应用于 M1 到 W1。 合成 HTF 架构 - 高周期行由低周期数据推导,减少传统零售 MTF 中常见的 repaint、同步延迟和 broker-dependent HTF 质量问题。 完整矩阵输出 - Bias、Strength、Fuel 和加权 Consensus 一起显示,而不是拆成独立工具。 图表执行层 - ribbon 和箭头专注于当前周期,选配 HTF 线在同一图表上增加高
介绍     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。 接触 如果您有任何疑问或需要帮助,请通过私人消息与我联系。
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
Basic Harmonic Patterns Dashboard MT5
Mehran Sepah Mansoor
4.36 (11)
该仪表盘显示所选符号的最新可用谐波形态,因此您可以节省时间并提高效率 /  MT4 版本 。 免费指标:  Basic Harmonic Pattern 指标列 Symbol:   显示所选符号 Trend:     看涨或看跌 Pattern:    形态类型(Gartley、蝴蝶、蝙蝠、螃蟹、鲨鱼、Cypher 或 ABCD) Entry:     入口价格 SL: 止损价 TP1: 第一止盈价 TP2: 第二次获利价格 TP3: 第三次获利价格 Current price:    当前价格 Age (in bars):   最后绘制的模式的年龄 主要输入 Symbols :   从 "28 种主要货币对 "或 "选定符号 "中选择。 Selected Symbols :   希望监控的符号,用逗号分隔("EURUSD,GBPUSD,XAUUSD")。如果您的经纪商为货币对设置了后缀或前缀,您必须在以下两个参数中添加(货币对前缀或货币对后缀)。 Max Iteration:   调整模式的最大迭代次数(如果该值越小,则模式越少,性能越快;如果该值越大,则模式越多,性能越慢)
Azimuth Pro
Ottaviano De Cicco
5 (7)
Azimuth Pro V2:MT5合成分形结构分析与确认入场 概述 Azimuth Pro 是 Merkava Labs 推出的多层级波段结构指标。四层嵌套波段层级、锚定波段的VWAP、ABC形态识别、三时间框架结构过滤以及收盘确认入场——一个图表,一个从微观波段到宏观周期的完整工作流程。 这不是盲目的信号产品。它是一个以结构为先的工作流程,专为重视位置、背景和时机的交易者打造。 V2上市优惠 — Azimuth Pro V2售价USD 399(接下来的100份)。最终价格:USD 499。 1. V2的变化 合成多时间框架引擎 高时间框架分析从零开始重建,采用与Meridian Pro相同的专有合成架构。更清晰的HTF背景、稳定的实时行为、无经典MTF同步问题。合成引擎还解锁了 固定比率时间框架级联 (x2、x3、x4、x6)——不再在经纪商的固定时间框架之间任意跳转,您可以按图表时间框架的固定倍数分析结构,在每个尺度上保持相同的分形关系。 确认入场箭头 作为稳定且可恢复的执行层而设计的收盘确认箭头。当ABC设置形成且自适应确认逻辑在收盘K线上验证方向时,箭头会写入下一根K线的
首先,值得强调的是,这个交易工具是非重绘、非重画和非滞后的指标,非常适合专业交易。 在线课程,用户手册和演示。 智能价格行动概念指标是一个非常强大的工具,既适用于新手,也适用于经验丰富的交易者。它将超过20个有用的指标合并到一个指标中,结合了高级交易思想,如内圈交易员分析和智能资金概念交易策略。该指标侧重于智能资金概念,提供有关大型机构交易方式的见解,帮助预测它们的动向。 它在流动性分析方面尤其擅长,有助于理解机构的交易方式。它擅长预测市场趋势,并仔细分析价格波动。通过将您的交易与机构策略对齐,您可以更准确地预测市场走向。该指标多才多艺,擅长分析市场结构,识别重要的订单区块,并识别各种模式。 它擅长识别BOS和CHoCH等模式,理解动量的转变,并突出显示供需强劲的关键区域。它还擅长发现强大的不平衡,并分析价格创造更高高点或更低低点的模式。如果您使用斐波那契回撤工具,该指标可以满足您的需求。它还可以识别相等的高点和低点,分析不同的时间框架,并通过仪表板显示数据。 对于使用更高级策略的交易者,该指标提供了工具,如公平价值差指标和优惠和折扣区域的识别。它特别关注高时间框架订单区块,并
RelicusRoad Pro MT5
Relicus LLC
5 (24)
RelicusRoad Pro: 量化市场操作系统 终身访问限时 70% 折扣 - 加入 2,000+ 交易员社区 为什么大多数交易者即使拥有“完美”指标也会失败? 因为他们在真空中交易 单一概念 。没有背景的信号是赌博。要持续获胜,您需要 共振 (CONFLUENCE) 。 RelicusRoad Pro 不是一个简单的箭头指标。它是一个完整的 量化市场生态系统 。它描绘价格运行的“公允价值之路”,区分市场噪音和真实的结构性突破。 停止猜测。开始用机构级“路”逻辑进行交易。 核心引擎:“Road” (路) 算法 系统的核心是 Road Algo ,一个实时适应市场条件的动态波动率通道。它投射出 安全线 (平衡) 和价格可能反转的 扩展水平 。 Simple Road: 典型市场的标准结构映射。 Smooth Road: 针对震荡盘整的降噪计算。 Breakout Road: 专为识别波动率扩张和爆发性走势而调整。 1. 算法动量与确认 我们的“剥头皮箭头”不只是简单的交叉。它们利用 高阶多项式逻辑 过滤噪音,确保信号与主周期一致。我们检测动量、价格行为和 Road 结构汇聚的精确入场
Atomic Analyst MT5
Issam Kassas
3.94 (31)
首先值得强调的是,该交易指标是非重绘、非延迟的指标,这使其成为手动和机器人交易的理想选择。 用户手册:设置、输入和策略。 Atomic Analyst是一种PA价格行动指标,利用价格的力量和动量来寻找市场上更好的机会。配备了高级过滤器,可帮助去除噪音和假信号,并提高交易潜力。使用多层复杂的指标,Atomic Analyst扫描图表,并将复杂的数学计算转化为任何初学者都能理解并用来做出一致交易决策的简单信号和颜色。 “Atomic Analyst”是专为新手和经验丰富的交易者量身定制的综合交易解决方案。它将高级指标和一流功能融合为一体的交易策略,使其成为所有类型交易者的多功能选择。 日内交易和剥头皮策略:专为快速准确的日内交易和短期交易而设计。 日内和摆动交易策略:可用作追求价格大幅波动的日内和摆动交易者的可靠工具。 多货币和市场:凭借其可靠的精度,在不同的工具和市场上运作。 多个时间框架:可在多个时间框架上使用,性能良好。 稳定性:所有指标均不重绘、不重绘和不滞后,确保可靠的信号。 信号清晰度:提供箭头信号,用于清晰的入场和出场点。 实时警报:通过交易入场、SL和TP警报通知交易者
Entry Points Pro for MT5
Yury Orlov
4.48 (138)
这款指标用于 MT5,可提供准确的入场交易信号,且无重绘。 它可应用在任何金融资产:外汇、加密货币、贵金属、股票、指数。 它将提供极其精准的评估,并告诉您何时开仓和平仓的最佳时机。 观看 视频 (6:22),其中包含一个仅处理单一信号的示例,该信号即可值回指标购价! 大多数交易者在 Entry Points Pro 指标的帮助下,在第一个交易周内即改善了他们的交易结果。 订阅我们的 Telegram 群 ! Entry Points Pro 指标的益处。 入场信号无重绘 如果信号出现,并得到确认,则它不会再消失;不像是重绘指标,它会导致重大的财产损失,因为它们可以在显示信号后再将其删除。 无差错开仓 指标算法可令您找到入场交易(买入或卖出资产)的理想时机,从而提高每位交易者的成功率。 Entry Points Pro 可操作任何资产 它允许您在 MT5 平台上交易任何经纪商的加密货币、股票、贵金属、指数、大宗商品和货币。 提供任何方向的信号 Entry Points Pro 指标提供针对任意价格走势的入场交易信号 - 上涨、下跌或横盘(横向)。 最大盈利潜力 离场信号
Trend indicator AI mt5
Ramil Minniakhmetov
5 (17)
趋势人工智能指标是一个伟大的工具,将加强交易者的市场分析结合趋势识别与可操作的进入点和逆转警报。 该指标使用户能够自信和精确地驾驭外汇市场的复杂性 除了主要信号,趋势Ai指标识别在回调或回调期间出现的次要入口点,使交易者能够利用既定趋势内的价格修正。 重要优势: *MT4及MT5工程 *明确买入或卖出信号 ·不重绘 *适用于所有资产 小心我不卖EA或设置电报它骗局. 所有设置免费在这里的博客。  重要! 购买后立即与我联系,以获得指示和奖金! 真实的操作监控以及我的其他产品可以在这里找到: https://www.mql5.com/en/users/mechanic/seller&nbsp ; 设置和输入: 建议为所有资源设置默认设置。 第...
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
Advanced Supply Demand MT5
Bernhard Schweigert
4.53 (15)
任何新手或专业交易者的最佳解决方案! 该指标是一款独特、高质量、且价格合理的交易工具,因为我们已经整合了许多专有功能和新公式。 依据此更新,您将能够显示双重时间帧区域。 您不仅可以显示一个较高的时间帧,还可以同时显示图表时间帧,加上更高的时间帧:显示嵌套时区。 供需双方所有交易者都会喜欢它。 :) 重要信息披露 高级供需的最大潜力,请访问 https://www.mql5.com/zh/blogs/post/720245   想象您的交易如何得以改善,是因为您能够精准定位入场或目标位吗? 构建于新的底层算法,它可以更轻松地识别出买卖双方之间的潜在失衡。 这是因为它以图形方式展示供需最强劲区域,及其过去的表现(显示旧区域)。 这些功能旨在帮助您更轻松地发现最佳入场区域和价位。 现在您可以针对您的交易品种和时间帧来优化和编辑区域强度! 高级供需指标适用于所有产品和时间帧。 它是一个新的公式,非常新的功能是两个区域强度函数可由用户输入进行调整! 这在交易中是一大优势。 当您学习如何使用专有功能,例如带有价格游离最小 X 因子的区域强度时,您能够判断该区域强劲与否。 供需区域用作警报触发器。
Current event:  https://c.mql5.com/1/326/A2SR2025_NoMusic.gif 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 提前计算支撑位和阻力位——在价格触及支撑位和阻力位之前——让交
FX Power MT5 NG
Daniel Stein
5 (31)
FX Power:分析货币强度,助您做出更明智的交易决策 概述 FX Power 是一款专业工具,帮助您全面了解主要货币和黄金在任何市场条件下的真实强度。通过识别强势货币用于买入,弱势货币用于卖出, FX Power 简化了交易决策,并帮助您发现高概率的交易机会。不论您是想跟随趋势还是通过极端的 Delta 值预测反转,这款工具都能完美适应您的交易风格。别再盲目交易——用 FX Power 让您的交易更加智慧。 1. 为什么 FX Power 对交易者极具价值 实时货币和黄金强度分析 • FX Power 实时计算并显示主要货币和黄金的相对强度,助您全面了解市场动态。 • 监控领先或落后资产,轻松识别值得交易的货币对。 全面的多时间框架视图 • 跟踪短期、中期和长期时间框架的货币和黄金强度,以便将您的交易策略与市场趋势保持一致。 • 无论是快进快出的短线交易还是更长期的投资策略, FX Power 都能为您提供所需的信息。 Delta 动态分析用于趋势和反转 • 极端 Delta 值常常预示反转机会,而平缓的 Delta 变化则确认趋势延续。 • 使用 Delta 分析,轻
KT Alpha Hunter Arrows MT5
KEENBASE SOFTWARE SOLUTIONS
大多数箭头指标只给你一个信号,然后让你自己去判断剩下的一切。KT Alpha Hunter Arrows 为你提供完整的交易计划。 每一个信号箭头出现时,都会同时绘制一套完整计划:入场线、止损位、四个止盈目标,以及实时优势判断,告诉你当前这个交易品种和时间周期是否值得交易。随附的 Trade Manager EA 会在你手动入场后负责后续执行,让你在市场波动剧烈、情绪干扰明显时也能保持交易纪律。不重绘。仅在K线收盘后确认信号。适用于 Forex、黄金、指数以及任何你在 MT5 上交易的品种。 核心功能 不重绘买入和卖出箭头,只在K线收盘后生成。 每个信号都会显示入场线、结构性止损位和四个止盈目标。 Edge Dashboard 会分别评估当前图表上的买入和卖出机会。 判断系统包括:No Edge、Marginal、Tradeable、Good 或 Strong。 一键 Auto Optimize 按钮可根据当前品种和时间周期自动优化设置。 完整套装包含 Trade Manager EA,并提供五种专为本指标设计的预设交易管理方案。 Prop Firm Risk Panel 可在图表上
Power Bar MT5
Daniel Stein
在冒真金白银之前, 先看看哪种策略真正适合你的品种。 Power Bar 可在任何品种和任何时间周期上检测 极端价格K线 , 然后即时回测3种不同的交易策略, 让你并排比较胜率、盈亏比和收益。全部集成在一个交互式面板中。 无需猜测。无需过度拟合。只看数据。 Power Bar 有何独特之处? 大多数指标只给你一个信号, 让你猜测它是否有效。Power Bar 更进一步: 它用 三种策略 测试每个信号并展示统计数据。一键切换 FlipFlop、Momentum 和 Reversal, 即刻看到数据变化。 FlipFlop - 始终持仓。信号入场, 反向信号出场。我们的研究表明, 这在 US30、US500 和 DAX 等趋势性指数上效果最佳。 Momentum - 顺信号方向交易。基于 ATR 的固定 SL/TP。适用于趋势延续形态的均衡方法。 Reversal - 逆信号交易(反向操作)。我们的回测显示, 在 JPY 外汇交叉盘上胜率超过 70%, 因为极端K线标志着衰竭而非延续。 更改参数, 即时查看结果 无需打开指标属性。直接在面板中通过 +/- 按钮调整 ATR 倍数、周期、
Trend Lines PRO MT5
Roman Podpora
5 (1)
趋势线专业版 -     有助于了解市场真正转变的方向。该指标显示了真正的趋势反转点以及主要参与者重新入场的点位。 你看     BOS线路   无需复杂设置或不必要的干扰,即可在高时间框架内显示趋势变化和关键水平。信号不会重绘,并在K线收盘后仍保留在图表上。 MT4 版本   - 与 RFI LEVELS PRO 指示器结合使用时,可发挥其最大潜力 该指标显示的内容: 真正的转变   趋势线(BOS线) 一旦信号出现,它就始终有效!这与会重绘的指标有着重要的区别,后者可能会发出信号后又改变信号,从而导致资金损失。现在,您可以更精准、更准确地进入市场。此外,还有一个功能:在箭头出现后,K线会着色,直到达到目标价位(止盈)或出现反转信号为止。 重复条目   以及主要玩家的充值 为了提高寻找入场点时的视觉清晰度,我们创建了一个模块,该模块首先显示买入/卖出区域,并在该区域内寻找最佳入场点。此外,我们还加入了智能逻辑来管理止损位,该逻辑会随着时间的推移逐步降低止损位的大小,从而降低入场时的初始风险( 移动止损位 )。 信号强度水平     (BOS) 该指标采用三个显著性等级来衡量趋势变化
META Points PRO MT5
Polina Balahura
5 (1)
META Points PRO       — 是一款趋势跟踪工具,它能消除交易中的猜测成分,并显示市场已经做出决定的位置。该指标能够识别趋势、趋势线和结构发生变化的关键点,并突出显示价格回升的区域,以便主要参与者进行建仓。 您不仅能看到价格走势,还能理解其背后的逻辑。所有信号均在K线收盘后记录,不会重绘,并保存在图表上,让您能够自信地分析形势并做出决策。交易目标(止盈)也会显示出来。 为了确保您对该指标的有效性完全有信心,我们为您提供自动统计数据。 每次方向改变后,该指标还会显示止损位及其智能渐进移动(Move SL),这显著 降低了 风险。     风险   按位置。 止损/止盈/风险回收 右侧内置面板显示当前全球趋势方向的市场入场点,并显示这些信号的历史数据。 任何时间范围/工具 该指标适用于所有时间间隔 -     从 M1 到 MN,也适用于所有仪器。 全球趋势统计 这有助于更好地理解。     最有利可图的机会究竟在哪里形成   以及如何根据真实的历史数据提取更多收入。 信号强度水平 并非所有反转信号都具有相同的强度,该指标充分考虑了这一点。这使您能够立即了解走势的强度并过
Matrix Arrow Indicator MT5
Juvenille Emperor Limited
5 (19)
矩阵箭头指标 MT5   是一种独特的 10 合 1 趋势,遵循   100% 非重绘多时间框架指标 ,可用于所有符号/工具: 外汇 、 商品 、 加密货币 、 指数 、 股票 。 Matrix Arrow Indicator MT5 将在其早期阶段确定当前趋势,从多达 10 个标准指标中收集信息和数据,它们是: 平均定向运动指数 (ADX) 商品渠道指数 (CCI) 经典 Heiken Ashi 蜡烛 移动平均线 移动平均收敛散度 (MACD) 相对活力指数 (RVI) 相对强弱指数 (RSI) 抛物线SAR 随机振荡器 威廉姆斯的百分比范围 当所有指标给出有效的买入或卖出信号时,相应的箭头将打印在图表上,在下一根蜡烛/柱线开盘时,指示强劲的上升趋势/下降趋势。用户可以选择使用哪些指标,并可以单独调整每个指标的参数。 Matrix Arrow Indicator MT5 仅从选定的指标中收集信息,并仅根据其数据打印箭头。   Matrix Arrow Indicator MT5   还可以为所有新信号发送终端、推送通知或电子邮件警报。无论您是黄牛、日内交易者还是波段交易者, Mat
"Hunttern harmonic pattern finder" base on the dynamic zigzag with the notification and prediction mode This version of the indicator identifies 11 harmonic patterns and predicts them in real-time before they are completely formed. It offers the ability to calculate the error rate of Zigzag patterns depending on a risk threshold. It moreover sends out a notification once the pattern is complete. The supported patterns: ABCD BAT ALT BAT BUTTERFLY GARTLEY CRAB DEEP CRAB CYPHER SHARK THREE DRIV
作者的更多信息
Timeless Charts
Samuel Manoel De Souza
5 (4)
Timeless Charts is an advanced charting solution designed for professional traders seeking for custom charts / custom timeframes , including seconds charts / seconds timeframe, renko charts / renko bars, cluster charts / footprint charts and advanced tools present in most of the popular platforms. Unlike traditional offline charts or simplistic custom indicators, this solution constructs fully custom bars with true timestamp accuracy , down to miliseconds, allowing for a powerful and precise tr
Visual Book on Chart
Samuel Manoel De Souza
4.5 (10)
Visual Book on Chart is an indicator designed specially for stocks and futures market. To check if you can use the tool with your Broker open the MT5 Depth Of Market on your terminal and check if there are price and volume data available.  Learn more about the MT5 Depth Of Market in the oficial page. The indicator shows the depth of market data on the chart window and use gradient  based on the market data to colorize the histogram bars. The indicator is formed by two components: The panel, whic
FREE
Market Structure Patterns MT4
Samuel Manoel De Souza
5 (18)
Market Structure Patterns   is an indicator based on   smart money concepts   that displays   SMC/ICT   elements that can take your trading decisions to the next level. Take advantage of the   alerts ,   push notifications   and   email messages   to keep informed from when an element is formed on the chart, the price crosses a level and/or enters in a box/zone. Developers can access the values of the elements of the indicator using the   global variables  what allows the automation of trading d
Tabajara Rules II The Best for MT5
Samuel Manoel De Souza
4.9 (10)
Tabajara Rules for MT5 , based on Professor André Machado’s Tabajara Setup, indicates the market direction using moving averages when there are candles aligned with the direction of the moving average. The indicator contains the color rule applied to the candles and the moving average. It allows changing the parameters: period and smoothing method of the moving average. It also allows changing the colors of the candles (borders and filling) and of the moving average. Professor André Machado’s
FREE
Phibo MA SAR
Samuel Manoel De Souza
5 (4)
Baseado no indicador MIMA SAR, que é uma combinação dos indicadores MIMA Consolidação e MIMA Tendência, da metodologia Phicube. O indicador é composto pelos 8 fractais, 17,34.72.144.305,610.1292,2554. Sendo a tendência indicada pelas linhas finas e a consolidação pelas linhas mais espessas. Para usar o indicador de maneira adequada deve-se partir do princípio de que tudo na natureza segue o caminho que oferece menor resistência. Isso significa que para uma reversão da tendência ocorrer nesse mod
FREE
筛选:
Vitor Faria
39
Vitor Faria 2025.10.27 20:37 
 

The best indicator

Aruncharan Ganapathy Sivakumar
219
Aruncharan Ganapathy Sivakumar 2024.08.18 00:56 
 

As Greg Nicolas said confirmation arrow gives confidence if added... Thank you author for your dedication

Greg Nicolas
160
Greg Nicolas 2024.05.25 00:28 
 

The Indicator is a top notch but It really took me time to understand it.however, disabling those sessions and OTE which gives direction somehow late and adding a confirmation arrow really makes the difference for me. Kudos to Samuel for a great Job and five star. I have both MT4 & MT5 on fire with Synthetic

pfidelus
162
pfidelus 2024.04.23 13:07 
 

I have tested over 100 different indicators for MT5 and MT4, and I must say that this one is in the top 5 of my favorite indicators. I am able to see everything very clearly, including all key levels, which is amazing for my strategy. I highly recommend this indicator; it has everything you need to make consistent profits. I don't usually write reviews for indicators, but I had to for this one because I found it very useful and helpful.

Agbakeleke Idowu
734
Agbakeleke Idowu 2024.04.21 23:47 
 

Very Useless Indicator Very Stupid creator... Very Lazy creator... People have advised him to add confirmation arrows for buy and Sell with TP and SL. Yet He kept saying all manners of rubbish. Clients are always first and then you last... Most worst indicator on Mql5

Alia Kaliner
28
Alia Kaliner 2024.03.20 10:34 
 

Please send me the documentation.

bijae
109
bijae 2023.12.16 11:09 
 

This 3.0 update just made this indicator 10x more powerful and undervalued at the same time! Sam is simply the best! Keep it up!

piola
39
piola 2023.11.23 01:41 
 

This indicator is amazing

elifranck gouvea
62
elifranck gouvea 2023.10.10 03:46 
 

Ainda nÃo consegui fazer uma boa análise pelo indicador, que tal fazer um video explicativo do mesmo?

YouLan
41
YouLan 2023.09.02 06:06 
 

用户没有留下任何评级信息

Saep Mulyana
191
Saep Mulyana 2023.07.28 09:51 
 

good

afreitas
19
afreitas 2023.07.17 02:13 
 

用户没有留下任何评级信息

999107
120
999107 2023.07.01 09:11 
 

Very Excellent Indicator Much Appreciated for your good work. Thank You Would please send me the Documentation, Just Bought this indicator.

Truta Petru Lucian
433
Truta Petru Lucian 2023.06.28 22:02 
 

Excellent indicator

BINARY VADER
30
BINARY VADER 2023.06.27 15:14 
 

Doesn't Work on New Update of MT5 ;Please Help

munis
20
munis 2023.06.11 12:38 
 

Hello, The indicator was fantastic but My Mt5 was updated and the indicator doesn't work again. Is there any manual that can guide how to rectify this before given my rating.

It's back working perfectly with awesome new features. I give 5 star

Alejandro Estan Fraga Salinas
333
Alejandro Estan Fraga Salinas 2023.05.17 07:11 
 

Very good indicator. Everything you need for a successful manual trading. Adding a trading assistant will complete the pack Thanks Wellington !

Aravind Kolanupaka
10089
Aravind Kolanupaka 2023.05.11 21:26 
 

Good work. I love this indicator.

Collins M
63
Collins M 2023.05.04 23:12 
 

I can confidently say this is THE BEST indicator out there. Great work author

drzocker
162
drzocker 2023.05.03 20:27 
 

Gute Arbeit !! Nice and Good Work !! Hope of Updates

12
回复评论