SupandResFinderMaster

## What it does

SRLF is an MT4 on-chart indicator that identifies and draws probable support
and resistance zones as shaded boxes. It combines confirmed swing points,
directional tick-volume pressure, and a lightweight market-structure read to
estimate areas where support or resistance is more likely to form.

The indicator keeps the most recently qualified support and resistance zones
active, extends them forward, monitors their interaction with price, and
detects confirmed breaks and role reversals. Older boxes remain visible on the
chart as historical context, but once a newer qualifying zone of the same type
appears, the older one is no longer actively tracked.

When an active resistance zone is decisively broken, it can flip into support.
Likewise, a broken support zone can become resistance.

SRLF also checks whether a newly qualified zone agrees with the current market
structure. Zones backed by both the level-detection logic and the structure
tracker are marked as confluent.

## Important note about volume and "order blocks"

SRLF does **not** claim to detect institutional orders, real order flow, or
true exchange-volume-based order blocks.

Like many MT4 indicators that, for reasons not always technically justified,
use terms such as "Order Blocks" in their names or descriptions, SRLF normally
has no access to centralized real traded volume for the underlying spot FX
market. Standard MT4 Forex data provides broker-side **tick volume** — the
number of price updates observed during a candle — rather than a complete
record of actual buy and sell transactions across the market.

For that reason, SRLF does not pretend to know where large institutional
orders were actually placed.

Instead, it uses the measurable information that is available in MT4 —
confirmed price swings, directional tick-volume behaviour, ATR-based zone
dimensions, subsequent price interaction, and simplified market structure —
to estimate **probable areas where meaningful support/resistance or
order-block-like behaviour may exist**.

In other words, these are algorithmically inferred zones, not directly
observed institutional order locations.

## How it works

- **One shared pivot engine.** A single symmetric pivot-high / pivot-low
  detector, driven by `InpLookback`, finds confirmed swing points.

  `InpLookback` is used on both sides of the candidate pivot. With the default
  value of `20`, a pivot therefore requires 20 bars on the left and 20 bars on
  the right before it can be confirmed.

  Because the right-side bars must already exist, a pivot is only recognized
  `InpLookback` bars after the swing itself occurred.

  The same confirmed pivot stream feeds two separate layers:

  1. a **directional tick-volume delta proxy**, which decides whether a
     confirmed pivot has sufficient recent buying or selling pressure to
     qualify as a support/resistance zone, and

  2. a **structure tracker**, which follows confirmed swing highs and lows in
     the background and maintains a simplified bullish, bearish, or initially
     neutral market-structure state.

- **Directional tick-volume filter.** MT4 tick volume is signed according to
  candle direction: bullish candles contribute positive volume and bearish
  candles contribute negative volume.

  This creates a lightweight directional volume-pressure proxy. It is **not**
  true bid/ask volume delta and should not be interpreted as institutional
  order-flow data.

  `InpVolLen` controls the recent comparison window used by this filter.

  The volume condition is evaluated when the pivot becomes confirmed, not on
  the historical candle where the pivot originally formed.

- **Boxes, not lines.** Each accepted level is drawn as a price zone rather
  than a single exact-price line.

  `InpBoxWidth` controls the vertical zone thickness using **ATR(200)** as its
  volatility reference.

  A support zone extends downward from the confirmed pivot low, while a
  resistance zone extends upward from the confirmed pivot high.

  The visual fill intensity reflects the relative strength of the directional
  tick-volume reading used by the level engine.

- **Only the latest zones remain active.** SRLF actively maintains one current
  support zone and one current resistance zone.

  When a newer qualifying support or resistance is found, it becomes the
  active zone of that type. Older boxes remain on the chart for historical
  reference, but they are no longer extended or evaluated for new
  break/hold events.

- **Lightweight structure tracker.** The structure engine monitors confirmed
  swing highs and lows.

  A close above the tracked swing high establishes or continues bullish
  structure. A close below the tracked swing low establishes or continues
  bearish structure.

  A break continuing the existing structure is treated as a simplified
  **BOS — Break of Structure**, while a break reversing the previously tracked
  structure is treated as a simplified **CHoCH — Change of Character**.

  The structure state starts neutral until sufficient information becomes
  available.

  This is intentionally a lightweight structural interpretation and is not
  intended to reproduce every definition used in discretionary Smart Money
  Concepts methodology.

- **Confluence flag.** A newly confirmed support zone is considered confluent
  when the structure tracker is bullish at the time the pivot is confirmed.

  A newly confirmed resistance zone is considered confluent when the structure
  tracker is bearish at that time.

  Confluent zones receive stronger visual emphasis through a brighter fill,
  thicker border, and a star indicator in the box label.

  `InpShowConfluenceOnly` can hide non-confluent levels and display only zones
  where both the level filter and structure condition agree.

- **Strict break confirmation.** SRLF does not consider a zone broken merely
  because price temporarily enters it or because the candle closes slightly
  beyond one of its boundaries.

  A break is confirmed only when a completed candle clears the **entire**
  active zone:

  - resistance is considered broken when the candle's **low is above the
    upper boundary** of the resistance box;
  - support is considered broken when the candle's **high is below the lower
    boundary** of the support box.

  This deliberately requires stronger confirmation than a simple close beyond
  the zone.

- **Role reversal.** After a confirmed break, the active zone can switch role:

  - broken resistance → potential support,
  - broken support → potential resistance.

  The box changes its visual state accordingly, and subsequent interaction can
  be marked as a hold/retest or reversal of that temporary role.

- **Break labels and structure agreement.** If `InpShowLabels` is enabled,
  confirmed breaks can be labelled `"Break Sup"` or `"Break Res"`.

  When the direction of the break agrees with the currently tracked market
  structure, the label receives an additional structure-confirmation tag.

  This should be understood as **directional agreement with the current
  structure**, not as proof that the support/resistance break itself
  independently constitutes a new BOS event.

- **Optional hold/retest markers.** `InpShowMarkers` allows SRLF to mark
  subsequent interactions with broken or role-reversed zones using small
  chart markers.

- **Optional structure overlay.** `InpShowStructureContext` draws faint dotted
  BOS/CHoCH context lines and labels for detected structural breaks.

  This overlay is intended only as supporting visual context and is disabled
  by default to keep the chart clean.

- **Deliberately limited scope.** SRLF does not attempt to implement a complete
  Smart Money Concepts suite.

  There are no FVGs, equal highs/lows, QML patterns, liquidity maps,
  institutional order-flow feeds, or buy/sell signal arrows.

  Its purpose is narrower: identify probable support/resistance zones from
  confirmed swings and directional tick-volume behaviour, then add a simple
  market-structure layer to help distinguish ordinary zones from structurally
  aligned ones.

## What you can configure

| Group | Parameters |
| --- | --- |
| Core engine | `InpLookback` — shared pivot left/right window |
| Volume filter | `InpVolLen` — directional tick-volume comparison length |
| Zone size | `InpBoxWidth` — vertical zone thickness as an ATR(200) multiple |
| Colors | `InpSupBaseColor`, `InpResBaseColor` |
| Labels/markers | `InpShowLabels`, `InpShowMarkers` |
| Confluence | `InpShowConfluenceOnly` |
| Structure overlay | `InpShowStructureContext`, `InpStructBOSColor`, `InpStructCHoCHColor` |

## Default settings

- `InpLookback = 20`
  - 20 bars on the left and 20 bars on the right of a pivot
- `InpVolLen = 2`
  - directional tick-volume filter length
- `InpBoxWidth = 1.0`
  - zone thickness = 1.0 × ATR(200)
- Support color: **Lime**
- Resistance color: **Red**
- `InpShowLabels = true`
- `InpShowMarkers = true`
- `InpShowConfluenceOnly = false`
  - both ordinary qualified zones and structurally confluent zones are shown
- `InpShowStructureContext = false`
  - BOS/CHoCH context overlay hidden by default
- BOS line color: **DodgerBlue**
- CHoCH line color: **Orange**

## Interpretation

SRLF should be treated as a **probability and context tool**, not as a direct
view into institutional positioning.

A displayed zone means that the indicator has found a confirmed price swing
which also satisfies its directional tick-volume criteria. A confluent zone
adds agreement with the simplified structure engine.

Neither condition guarantees that real institutional orders are present there.

The purpose of the indicator is to narrow the chart down to areas where,
according to the available MT4 price, tick-volume and structure information,
support/resistance behaviour appears more probable and therefore may deserve
closer attention.
推荐产品
Forecast System Gift
Peter Maggen
5 (1)
--- FREE VERSION - WORKS ONY ON EURUSD ------------------------------------------------------------------- This is a unique breakout strategy that is used for determination of the next short term trend/move. The full system is available on MQL5 under the name "Forecast System". Here is the link -->  https://www.mql5.com/en/market/product/104166?source=Site Backtest is not possible, because calculations are done based on the data of all timeframes/periods. Therefore I propose you use the technolo
FREE
Индикатор "Buy Sell zones x2" основан на принципе "остановка/разворот после сильного движения". Поэтому, как только обнаруживается сильное безоткатное движение, сразу после остановки - рисуется зона покупок/продаж. Зоны отрабатывают красиво. Или цена ретестит зону и улетает в космос, или пробивает зону насквозь и зона отрабатывается с другой стороны так же красиво.  Работает на всех таймфреймах. Лучше всего выглядит и отрабатывает на Н1.    Может использоваться как: индикатор зон, где лучше вс
FREE
Fibo Dynamic
Silver Invest
Fibonacci retracement is really one of the most reliable technical analysis tools used by traders. The main problem with using these levels in trading is that you need to wait until the end of the impulse movement to calculate the retracement levels, making difficult to take a position for limited retracement (0.236 or 0.382). Fibo Dynamic solves this problem. Once the impulse movement is identified the retracement levels are automatically updated allowing very dynamic trading in trends with onl
FREE
Ppr PA
Yury Emeliyanov
4.75 (4)
"Ppr PA" is a unique technical indicator created to identify "PPR" patterns on the currency charts of the MT4 trading platform. These patterns can indicate possible reversals or continuation of the trend, providing traders with valuable signals to enter the market. Features: Automatic PPR Detection:   The indicator automatically identifies and marks PPR patterns with arrows on the chart. Visual Signals:   Green and red arrows indicate the optimal points for buying and selling, respectively. Ar
FREE
YK Find Support And Resistance
Peechanat Chatsermsak
5 (1)
The " YK Find Support And Resistance " indicator is a technical analysis tool used to identify key support and resistance levels on a price chart. Its features and functions are as follows: 1. Displays support and resistance levels using arrow lines and colored bands, with resistance in red and support in green. 2. Can be adjusted to calculate and display results from a specified timeframe using the forced_tf variable. If set to 0, it will use the current timeframe of the chart. 3. Uses the
FREE
Auto Supply and Demand Oscillator is an indicator for MetaTrader 4 and MetaTrader 5 that detects supply and demand zones automatically and displays them as a single oscillator value at the bottom of the chart, instead of drawing rectangles directly on price. Concept Supply zones are price areas where strong selling created a sharp downward move away from a balance area. Demand zones are price areas where strong buying created a sharp upward move. Traditional implementations draw boxes on the
FREE
Hi Low Levels Last Day MT4
Igor Vishnevskii
5 (1)
The free version of the Hi Low Last Day MT4 indicator . The Hi Low Levels Last Day MT4 indicator shows the high and low of the last trading day . The ability to change the color of the lines is available . Try the full version of the Hi Low Last Day MT4 indicator , in which additional indicator features are available : Displaying the minimum and maximum of the second last day Displaying the minimum and maximum of the previous week Sound alert when crossing max . and min . levels Selecting an arb
FREE
Power Trend Free
Yurij Kozhevnikov
5 (2)
Power Trend Free - the indicator shows the trend strength in the selected period. Input Parameters The indicator has three input parameters: Period - a positive number greater than one, it shows the number of candlesticks used for calculations. If you enter one or zero, there will be no error, but the indicator will not be drawn. Applied Price - the standard "Apply to:" set meaning data used for the indicator calculation: Close - Close prices; Open - Open prices; High - High prices; Low - Low p
FREE
和谐图案最适合预测市场转折点。和谐图案为您提供高胜率和一天内的高交易机会。 该指标识别了最受欢迎的和谐图案,这些图案预测市场反转点。 基于和谐交易书籍。 重要说明: 该指标不会重绘或滞后(它在D点检测到模式);它不会重新绘制(模式要么有效,要么取消)。 使用方法: 将指标拖放到您的MT5图表上。 将模式检测设置为TRUE(ABCD; Gartley)。 根据您的喜好调整偏差(较大的偏差=更多的模式;较小的偏差=更少的模式)。 根据您的喜好自定义颜色。 根据需要启用或禁用关于入场点、TP和SL的警报。 检测到模式时: 该算法在D点检测到模式。 如果启用了警报,它将通知您检测到的模式。 如果模式无效,则触发一个带有“模式已取消”消息的警报。 成功的模式在蜡烛关闭时触发“入场警报”。 如果价格达到TP1、TP2、TP3、TP4或SL,则会发出带有终端消息的警报。 价格现在为40美元,仅剩下几份副本,最终价格将为70美元。 发展计划: 该指标的当前版本(1.1)将检测Gartley和ABCD模式。 版本1.1将包括Butterfly、Bat和Crab模式。 未来版本将包括其他模式、潜在PRZ检
FREE
Bar Size MT4
Mikhail Tcvetkov
5 (3)
The technical indicator, in real time, searches for candlesticks that exceed the size set in the settings and gives signals about them. As a rule, such abnormally large candles appear either at the beginning of strong impulses or at the end of a directional price movement. At the beginning of the pulse, the signal can serve as a basis for searching for an entry point, at the end of the movement, it is a sign of a climax and may indicate the near end of the trend. The reference size for filtering
FREE
Triple RSI
Pablo Leonardo Spata
1 (1)
LOOK AT THE FOLLOWING STRATEGY   WITH THIS INDICATOR.   Triple RSI   is a tool that uses the classic Relative Strength Indicator, but in several timeframes to find market reversals.    1.  ️ Idea behind the indicator and its strategy: In Trading, be it Forex or any other asset, the ideal is   to keep it simple, the simpler the better . The   triple RSI   strategy is one of the simple strategies that seek market returns. In our experience, where there is more money to always be won, i
FREE
Super Auto Fibonacci
Muhammed Emin Ugur
Discover the power of precision and efficiency in your trading with the " Super Auto Fibonacci " MT4 indicator. This cutting-edge tool is meticulously designed to enhance your technical analysis, providing you with invaluable insights to make informed trading decisions. Key Features: Automated Fibonacci Analysis: Say goodbye to the hassle of manual Fibonacci retracement and extension drawing. "Super Auto Fibonacci" instantly identifies and plots Fibonacci levels on your MT4 chart, saving you tim
FREE
WH Price Wave Pattern MT4
Wissam Hussein
4.4 (5)
Welcome to our   Price Wave Pattern   MT4 --(ABCD Pattern)-- The ABCD pattern is a powerful and widely used trading pattern in the world of technical analysis. It is a harmonic price pattern that traders use to identify potential buy and sell opportunities in the market. With the ABCD pattern, traders can anticipate potential price movements and make informed decisions on when to enter and exit trades. Send me a  Message and Get A Free Gift : ABCD  Symbol Scanner Dashboard! EA Version : Price
FREE
Sentinel Arrow
Dmytro Kasianov
1 (1)
哨兵箭頭 主要特點: ⊗採用獨家演算法,快速且準確地辨識趨勢、反轉和動量變化。 ⊗專為專業用途設計,擁有強大的訊號邏輯,可消除延遲或錯誤更新。 ⊗適用於各種時間框架。 ⊗不會重繪、刪除或修改過去的訊號。 ⊗所有買進和賣出訊號均在K線圖上產生並保持不變。 ⊗在實際交易中,訊號不會重繪-它會立即顯示在K線圖上。 ⊗確保穩定性、準確性和靈活性。 ⊗提供高勝率的訊號。 ⊗每個訊號只觸發一次-不會重複。 ⊗適用於所有貨幣對、指數、股票、外匯、金屬和加密貨幣。 ⊗支援趨勢交易、波段交易和反轉確認。 ⊗為尋求可靠且易於理解的專業交易訊號的交易者。 ⊗完全可客製化。 ⊗簡單、穩定、可靠,適用於實盤交易。 ⊗使用規則簡單。 ⊗適合新手和經驗豐富的交易者。
FREE
Candle Countdown — MT4 精确K线倒计时 Candle Countdown 是一个简单且精确的工具,可在图表上显示 当前K线剩余时间 。 当交易入场依赖K线收盘时,即使几秒钟也非常关键。 该指标帮助您看到准确时间,从而在无需猜测或仓促决策的情况下进行交易。 用于精确控制K线收盘时间的工具。 指标显示内容: 当前K线剩余时间 服务器当前时间 点差(Spread) 止损最小距离(Stop Level) 该计时器独立于行情跳动(tick),通过平台内部定时器更新,即使在市场波动较低时也能保持稳定显示。 在低波动环境下依然可以获得平滑且稳定的倒计时效果。 所有信息显示在带背景的区域中,在任何图表配色下都清晰可见,并且不会影响图表分析。 随着K线接近收盘,计时器颜色会发生变化,帮助您快速判断当前状态。 提供 MT5 版本: Candle Countdown MT5 实际应用 使用该计时器可以提高入场时机和交易控制: 等待信号K线收盘 在新K线开始时同步入场 避免过早决策 指标可自然融入图表界面,不影响分析 : 不影响图表对象 切换周期时保持稳定 不会增加终端负担 计划更
FREE
Free automatic fibonacci
Tonny Obare
4.68 (50)
Free automatic Fibonacci is an indicator that automatically plots a Fibonacci retracement based on the number of bars you select on the BarsToScan setting in the indicator. The Fibonacci is automatically updated in real time as new highest and lowest values appears amongst the selected bars. You can select which level values to be displayed in the indicator settings. You can also select the color of the levels thus enabling the trader to be able to attach the indicator several times with differe
FREE
Wise Men Indicator demo
Bohdan Kasyanenko
3 (2)
The indicator displays signals according to the strategy of Bill Williams on the chart. Demo version of the indicator has the same features as the paid, except that it can work only on a demo account . Signal "First Wise Man" is formed when there is a divergent bar with angulation.  Bullish divergent bar - with lower minimum and closing price in the upper half. Bearish divergent bar - higher maximum and the closing price at the bottom half. Angulation is formed when all three lines of Alligator
FREE
PZ Three Drives
PZ TRADING SLU
5 (2)
This indicator finds Three Drives patterns. The Three Drives pattern is a 6-point reversal pattern characterised by a series of higher highs or lower lows that complete at a 127% or 161.8% Fibonacci extension. It signals that the market is exhausted and a reversal can happen. [ Installation Guide | Update Guide | Troubleshooting | FAQ | All Products  |  Get Help ] Customizable pattern sizes Customizable colors and sizes Customizable breakout periods Customizable 1-2-3 and 0-A-B ratios It impl
FREE
The Auto Fibonacci Indicator is a professional technical analysis tool that automatically draws Fibonacci retracement levels based on the most recent closed Daily (D1) or 4-Hour (H4) candle. These levels are widely used by traders to identify key support , resistance , and trend reversal zones . This version is designed for manual trading and supports a powerful trading strategy using Fibonacci levels combined with a 50-period EMA (Exponential Moving Average) , which you can easily add from MT4
FREE
FlatBreakout
Aleksei Vorontsov
FlatBreakout (Free Version) Flat Range Detector and Breakout Panel for MT4 — GBPUSD Only FlatBreakout is the free version of the professional FlatBreakoutPro indicator, specially designed for flat (range) detection and breakout signals on the GBPUSD pair only. Perfect for traders who want to experience the unique fractal logic of FlatBreakout and test breakout signals on a live market without limitations. Who Is This Product For? For traders who prefer to trade breakout of flat ranges (breakout,
FREE
Extremum Reverse Bar
Yurij Izyumov
2.8 (5)
This indicator has been created for finding the probable reversal points of the symbol price. A small candlestick reversal pattern is used it its operation in conjunction with a filter of extremums. The indicator is not redrawn! If the extremum filter is disabled, the indicator shows all points that have a pattern. If the extremum filter is enabled, the condition works – if the history Previous bars 1 candles back contains higher candles and they are farther than the Previous bars 2 candle, such
FREE
BE auto
Muhammad Ridzuan Mohd Radzali
5 (2)
Indicator automatically draw bullish and bearish engulfing without any rules. Bearish and Bullish engulf is well known area for supply and demand area marking. This indicator can be used in any strategy that required supply demand zone. Show Last Engulf : Enable this option to show unfresh engulfing  Candle to calculate : set 0 will load all history bar and can use up more memory Bearish Engulfing Colour : Pick any colour that suit Bearish Engulfing Colour  : Pick any colour that suit -Use this
FREE
BinaryFortune
Andrey Spiridonov
3.83 (6)
The BinaryFortune indicator has been developed and adapted specifically for trading short-term binary options. The algorithm of the indicator analyzes numerous factors before generating a signal. The indicator is installed in the conventional way. The indicator consists of an information window, which displays the name of the trading instrument, support and resistance levels, and the signal itself ( BUY , SELL or WAIT ). A signal is accompanied by a sound and a pop-up Alert. Advantages of the in
FREE
StrikePin
Mike Pascal Plavonil
1 (1)
The StrikePin indicator is a technical, analytical tool designed to identify trend reversals and find optimal market entries.  The StrikePin indicator is based on the pin bar pattern, which is the Price Action reversal pattern. An entry signal, in a trending market, can offer a very high-probability entry and a good risk to reward scenario. Be careful: the indicator is repainting since it is looking for highest high and lowest lows.  You should avoid to use it in experts but you can use it in
FREE
Toby Strategy Indicator
Ahmd Sbhy Mhmd Ahmd ʿYshh
The indicator rely on The Toby strategy >> The mother candle which is bigger in range than the previous six candles. A vertical line shows the last Toby Candle with the targets shown up and down. The strategy is about the closing price out of the range of the toby candle to reach the 3 targets..The most probable to be hit is target1 so ensure reserving your profits and managing your stop lose.
FREE
Our offer also includes a free panel — Indicator Panel — which allows you to show or hide indicators created by BOToBRACIA. High and Low Points is a practical technical analysis indicator that plots levels corresponding to the highs and lows from previous periods (day / week / month) — levels that, in the Smart Money Concepts (SMC) and ICT approach, are treated as liquidity zones, while in classical technical analysis they serve as potential support and resistance levels. Indicator settings: •
FREE
TreendLines
Sajjad Karimi
5 (1)
''Trendlines'' is an Indicator, that every Trader need and shows Trendline and  Support and resistance levels in all  Timeframe's. Also In 1-hour, 4-hour and daily time frames and Current timeframes, support, and resistance levels are specified and trend lines are drawn so that the trader can see all levels on a chart.   In   Properties   it is possible to turn off unnecessary Lines.  In ' Tendency indicator '' , as full package of Predictions that every Trader need, there  is also the Predict
FREE
Follow The Line
Oliver Gideon Amofa Appiah
3.94 (16)
FOLLOW THE LINE GET THE FULL VERSION HERE: https://www.mql5.com/en/market/product/36024 This indicator obeys the popular maxim that: "THE TREND IS YOUR FRIEND" It paints a GREEN line for BUY and also paints a RED line for SELL.  It gives alarms and alerts of all kinds. IT DOES NOT REPAINT and can be used for all currency pairs and timeframes. Yes, as easy and simple as that. Even a newbie can use it to make great and reliable trades. NB: For best results, get my other premium indicators for more
FREE
具有多时间框架支持、可自定义视觉信号和可配置警报系统的平均真实波幅(ATR)指标。 免费编程服务、更新及其他 TrueTL 产品请访问 MQL5 个人主页 。 非常感谢您的反馈和评价! 什么是 ATR? 平均真实波幅(ATR)由 J. Welles Wilder 开发,是一种用于衡量市场波动性的技术指标。它计算指定周期内真实波幅(True Range)的平均值。真实波幅是以下三个值中的最大值:当前最高价与当前最低价之间的距离、前一收盘价与当前最高价之间的距离,或前一收盘价与当前最低价之间的距离。 ATR 不显示价格方向 — 它仅衡量波动性。ATR 上升表示波动性增加,ATR 下降则表示波动性减少。交易者使用 ATR 来评估市场状况、设置动态止损(例如基于 ATR 的追踪止损)、确定仓位大小以及识别潜在的突破行情。ATR 值偏高通常出现在快速波动或新闻驱动的市场中,而 ATR 值偏低则表明市场处于平静的整理阶段。 功能特点: 带箭头标记和垂直线的视觉信号标记 具有可配置触发条件的三个独立信号缓冲区 信号检测选项:方向变化、峰值/谷值 每个信号可配置警报功能(邮件、推送、声音、弹窗)
FREE
Virtual Targets
Hoang Van Dien
3.83 (6)
This indicator is very useful for day traders or short term traders. No need to calculate the number of pips manually, just look at the chart and you will see the Virtual Take Profit / Virtual Stop Loss target line and evaluate whether the entry point is feasible to reach the intended target or not. Enter the intended Take Profit / Stop Loss pips for your trade. The indicator will display Virtual Take Profit / Virtual Stop Loss lines for you to easily see if the target is feasible or not.
FREE
该产品的买家也购买
Gann Made Easy
Oleg Rodin
4.84 (171)
Gann Made Easy 是一个专业且易于使用的外汇交易系统,它基于使用先生理论的最佳交易原则。 W.D.江恩。该指标提供准确的买入和卖出信号,包括止损和获利水平。您甚至可以使用推送通知在旅途中进行交易。 购买后请联系我,即可免费获得交易指导和超棒的额外指标! 您可能已经多次听说过江恩交易方法。通常 Gann 的理论不仅对于新手交易者而且对于那些已经有一定交易经验的人来说都是非常复杂的东西。这是因为江恩的交易方法在理论上并不那么容易应用。我花了几年时间来完善这些知识,并将最好的原则应用到我的外汇指标中。 该指标非常易于应用。您所需要的只是将其附加到您的图表并遵循简单的交易建议。该指标不断进行市场分析工作并寻找交易机会。当它检测到一个好的入口点时,它会为您提供一个箭头信号。该指标还显示止损和获利水平。 换句话说,当您像先生一样进行交易时,该指标会为您提供最佳江恩建议。江恩亲自告诉你此时此刻该做什么。但最好的部分是您不需要了解任何有关江恩交易原则的知识,因为该指标会为您完成整个市场分析工作。
Neuro Poseidon MT4
Daria Rezueva
4.8 (45)
Neuro Poseidon is a new indicator by Daria Rezueva. It combines precise trading signals with adaptive TP/SL levels - creating best possible trades as a result! Message me and get  Neuro Poseidon Assistant  as a gift to automize your trading process! What makes it stand out? 1. Proven profitability on all assets and timeframes 2. Only confirmed BUY and SELL signals present on the chart 3. Adaptive TP & SL levels generated by the software for each trade 4. Easy to understand - suitable for all
M1 Sniper
Oleg Rodin
5 (26)
M1 SNIPER 是一款易于使用的交易指标系统。它是一个专为 M1 时间框架设计的箭头指标。该指标可以作为独立的系统在 M1 时间框架下进行剥头皮交易,也可以作为您现有交易系统的一部分使用。虽然该交易系统专为 M1 时间框架交易而设计,但它也可以用于其他时间框架。我最初设计此方法是为了交易 XAUUSD 和 BTCUSD。但我发现这种方法在其他市场交易中也同样有用。 指标信号既可以顺势交易,也可以逆势交易。我教授一种特殊的交易技巧,帮助您利用指标信号进行双向交易。该方法基于使用特殊的动态支撑位和阻力位区域。 购买后,您可以立即下载 M1 SNIPER 箭头指标。此外,我还为所有 M1 SNIPER 工具用户免费提供下方屏幕截图所示的 Apollo Dynamic SR 指标!这两个指标的组合可以帮助您更轻松、更准确地利用 M1 时间框架进行交易。 购买后请联系我,免费获取交易提示和奖励指标! 祝您交易成功!
Prop Firm Sniper
Mohamed Hassan
4.33 (6)
Prop Firm Sniper MT4  is a professional market structure indicator that automatically identifies high-probability BUY and SELL opportunities using BOS and CHoCH analysis. Recommended Timeframes: For backtesting, use the indicator on   M5 or M15   for Gold (XAUUSD), and   M15 or H1   for more volatile Forex pairs such as   GBPUSD, USDJPY, EURGBP , and similar markets. CONTACT ME AFTER PURCHASE TO CLAIM YOUR FREE BONUSES! Prop Firm Sniper  is a professional market structure indicator designed t
BTMM State Engine Pro MT4
Garry James Goodchild
BTMM State Engine Pro by G-Labs — Beat The Market Maker indicator for MetaTrader 4. Asian session range, London and New York kill zones, level progression (L1/L2/L3), peak formation detection (PFH/PFL), entry signals, and a multi-pair scanner from one chart. Stop scanning charts one pair at a time. The State Engine tracks the BTMM daily cycle automatically — Asian box, room boundaries, level blocks, peak formations, and filtered entries — while the scanner dashboard shows level, peak status,
DayTrader PRO MT4
Davit Beridze
5 (1)
DayTrader PRO DayTrader PRO 是一款先进的交易指标,它结合了约翰·埃勒斯 (John Ehlers) 的 Laguerre 滤波器与强大的自动优化引擎。该指标不依赖固定的参数,而是根据最新的市场状况自动搜寻最佳设置,帮助您在无需手动调整的情况下适应不断变化的市场波动。 该指标可生成清晰的买入 (BUY) 和卖出 (SELL) 信号,并提供根据当前市场波动率计算得出的自适应止损 (Stop Loss) 和止盈 (Take Profit) 水平。内置的趋势、效率系数 (Efficiency Ratio)、波动率和蜡烛图过滤功能,有助于剔除低质量的交易设置,从而提高信号的准确性。 实时性能面板会显示当前已优化的设置、利润因子 (Profit Factor)、胜率 (Win Rate)、回撤 (Drawdown) 以及其他交易统计数据。DayTrader PRO 还支持弹出窗口、推送、邮件和声音提醒,确保您不会错过任何交易机会。 主要功能 全自动参数优化 自适应买入与卖出信号 基于 ATR 的动态止损与止盈 支持每日、每周或每月重新优化 内置趋势与市场过滤功能 性能统
KURAMA GOLD SIGNAL PRO(MT4)— 7层过滤 · 自动止盈止损 · 质量评分 · 信号历史保存 | 完整的XAUUSD交易系统 实时不重绘。信号出现的瞬间,箭头、入场、止盈、止损当场锁定,之后绝不移动。你交易的就是这个实时信号。而且在v7.20中,每一个真正发出的信号都会自动保存,并在重启后精确还原。 购买者专属赠品 购买永久授权,即可免费获得 AI Zone Radar(价值$59)+ 完整PDF手册。在产品价格之外,额外附赠价值$59的赠品。购买后在MQL5上给我留言即可。 AI Zone Radar: https://www.mql5.com/en/market/product/175834 在黄金交易者社区中被实际使用,因精度与易用性而广受好评。 你的难题 —— 以及解决方案 黄金一天波动$30–$50。你知道机会就在那里。但这些情况是否似曾相识: - 入场太早,价格逆行$10后才朝你的方
Scalper Inside PRO
Alexey Minkov
4.74 (68)
Scalper Inside PRO 帮助您读懂日内趋势,并在入场前规划好交易。它使用独家内置算法来判断市场方向,并在信号出现的那一刻计算出关键目标位,因此您总能提前看到可能的入场点、止损和获利目标。 该指标还会显示基于历史数据的详细业绩统计,让您看到不同品种和策略过去的表现,从而选择适合当前市场状况的方案。您甚至可以接入自己的箭头指标,用同样的方式查看它们的统计数据。 Scalper Inside PRO 使用手册和参数说明: 点击阅读(英文) 该指标适用于任何品种和任何时间周期(日内交易推荐使用 M5),并内置三种策略。它既可以作为独立的剥头皮工具使用,也可以作为您交易系统的分析组件。适合新手和有经验的交易者,不过和任何工具一样,需要一些练习才能充分发挥它的作用。 购买后请直接联系我,即可获得免费的额外插件和上手小贴士。 主要功能 三种内置独家交易策略。 新一代趋势识别算法(Next-Generation Trend Detection Algorithm, NG TDA),用于判断市场方向。 箭头信号出现后立即计算价位:入场点和多级获利目标(TP1、TP2、TP3)会马上显示
Supply and Demand Dashboard PRO
Bernhard Schweigert
4.81 (21)
目前八折优惠! 这个仪表板是一个非常强大的软件,可用于多个符号和多达9个时间段。 它是基于我们的主要指标(最佳评论:高级供应需求)。 Advanced Supply Demand 该仪表板提供了一个伟大的概述。它显示。   筛选后的供需值,包括区域强度评级。 区间内和区间外的点位距离。 它突出了嵌套的区域。 在所有(9个)时间段内,它对所选符号发出4种警报。 它是高度可配置的,以满足您的个人需求! 您的利益! 对每个交易者来说,最重要的问题是。 什么是入市的最佳水平? 在强大的供应/需求区域内或附近进入你的交易,以获得最佳的成功机会和风险/回报。 我的止损的最佳位置是哪里? 把你的止损放在强势供应/需求区的下方/上方是最安全的。 我的最佳盈利目标是什么? 你的退出策略和你的进入策略一样重要,了解更高的时间框架图可以帮助你。对于买入,使用下一个供应区作为目标,对于卖出,使用下一个需求区作为目标。在回撤到供应区或需求区时进场,以确保有足够的利润空间,达到更高的时间框架的供应和需求,将增加你的利润。 为什么我们要过滤强区和弱区? 不平衡性越大,价格的变动就
SR Liquidity
Oleg Rodin
5 (1)
SR Liquidity 是一款旨在揭示市场流动性高度集中且价格反应最剧烈的隐蔽区域的交易指标。这些特殊的流动性区域充当着强有力的支撑位与阻力位,为您清晰呈现市场最可能发生反转的位置。 SR Liquidity 指标并非简单地绘制常规的支撑/阻力线,而是通过分析实际的价格行为,识别买卖压力积聚的区域。这些区域实际上是推动市场真实波动的流动性池。通过在图表上直观呈现这些区域,该指标能助您在价格反应发生前预判走势——这意味着它实际上能够预测价格方向可能发生的变化。它将原始的价格行为转化为清晰且具实操价值的市场蓝图,标示出那些可能成为市场转折点的关键价位。 该指标适用于任何交易品种和时间周期——包括外汇、指数、金属、加密货币等。支持任意时间周期。 购买后请联系我,以获取交易指南及免费赠送的优质附加指标!
Quantum Breakout Indicator PRO
Bogdan Ion Puscasu
4.96 (26)
介绍     Quantum Breakout PRO   ,突破性的 MQL5 指标,正在改变您交易突破区域的方式!   Quantum Breakout PRO 由拥有超过 13 年交易经验的经验丰富的交易者团队开发,旨在通过其创新和动态的突破区域策略将您的交易之旅推向新的高度。 量子突破指标将为您提供带有 5 个利润目标区域的突破区域的信号箭头,以及基于突破框的止损建议。 它既适合新手交易者,也适合专业交易者。 量子 EA 通道:       点击这里 MT5版本:   点击这里 重要的!购买后请私信我领取安装手册。 建议: 时间范围:M15 货币对:GBPJPY、EURJPY、USDJPY、NZDUSD、XAUUSD 账户类型:ECN、Raw 或 Razor,点差极低 经纪商时间:GMT +3 经纪商:IC Markets、Pepperstone with Raw 和 Razor 的点差最低 规格: 不重漆! 最多 5 个建议利润目标区域 建议止损水平 可定制的盒子。您可以设置自己的 Box Time Start 和 Box Time End。 接触 如果您
Trend Catcher ind
Ramil Minniakhmetov
5 (11)
趨勢捕捉指標 趨勢捕捉指標結合了作者獨有的客製化自適應趨勢分析指標,用於分析市場價格趨勢。它透過過濾掉短期噪音,並專注於潛在的動能強度、波動性擴張和價格結構行為,來識別真實的市場方向。此外,它還結合了平滑和趨勢過濾等客製化指標,例如移動平均線、相對強弱指標 (RSI) 和波動率過濾器。 您可以在這裡查看實際運行情況以及我的其他產品: https://www.mql5.com/en/users/mechanic/seller 請注意,我不會在 Telegram 上出售 EA 或任何設置,那是騙局。所有設定都可以在我的部落格上免費取得。 重要提示!購買後請立即聯繫我,以獲取使用說明和額外獎勵! 請注意,我不會在 Telegram 上出售 EA 或任何設置,那是騙局。所有設定都可以在我的部落格上免費取得。
Super Signal – Skyblade Edition 專業級無重繪 / 無延遲趨勢信號系統,擁有卓越勝率 | 適用於 MT4 / MT5 在較低的時間週期上效果最佳,例如 1 分鐘、5 分鐘與 15 分鐘圖表。 核心特色: Super Signal – Skyblade Edition 是一套專為趨勢交易設計的智能信號系統。 其採用多重濾波邏輯,僅篩選出具有明確方向性、動能強勁且波動結構健康的走勢進場點。 本系統 不預測高點或低點 ,只有在同時滿足以下三項條件時才會觸發交易信號: 趨勢方向明確 動能持續增強 波動率結構穩定 此外,系統還結合市場流動性分析,以進一步提升信號的準確性與觸發時機。 信號特性: 所有箭頭信號皆為 100% 無重繪,無延遲 信號一旦出現即固定於圖表,不會閃爍或消失 提供圖表箭頭、資訊面板、彈出通知、聲音提示及推播訊息 支援 EA 呼叫(Buffer 輸出),可整合至自動化交易或信號跟單系統 提供預設參數模板,免調整即可使用,適合新手快速上手 總結: Super Signal – Skyblade Edition 是一款邏輯清晰、穩定高效的專業趨勢型
Zoryk Gold mt4
Reda El Koutbane
折扣将在 24 小时后结束——下一价格为 69 美元 联系我获取推荐设置 首发名额有限 ZORYK — MetaTrader 4 专业 XAUUSD 黄金信号与交易计划系统 你一定经历过这种感觉。 你花时间分析黄金,等待入场,终于打开交易后,价格却立即向相反方向移动。你过早平仓,移动止损,或者因为犹豫几秒而错过机会。随后市场在没有你的情况下,准确到达你最初预期的目标。 问题并不总是方向错误。 真正的问题是不确定性。 你不知道真正的入场位置在哪里,不知道交易逻辑在什么位置失效,也不知道应该先保护较小的利润,还是继续等待更大的行情。你甚至不知道当前信号是否足够强,还是自己只是在勉强寻找一笔交易。 黄金移动速度非常快。没有明确计划的正确判断,也可能在几秒钟内变成错误决定。 ZORYK 正是为了解决这个问题而开发。 什么是 ZORYK ZORYK 是一套专门为 MetaTrader 4 和 XAUUSD M5 周期开发的完整黄金信号与交易计划系统。 它不是一个只显示 BUY 或 SELL 箭头,然后让你独自处理所有后续决定的普通指标。 每个确认信号都可以在图表上显示
Advanced Supply Demand
Bernhard Schweigert
4.91 (302)
现在优惠 30%! 任何新手或专业交易者的最佳解决方案! 该指标是一款独特、高质量、且价格合理的交易工具,因为我们已经整合了许多专有功能和新公式。 依据此更新,您将能够显示双重时间帧区域。 您不仅可以显示一个较高的时间帧,还可以同时显示图表时间帧,加上更高的时间帧:显示嵌套时区。 供需双方所有交易者都会喜欢它。 :) 重要信息披露 高级供需的最大潜力,请访问 https://www.mql5.com/zh/blogs/post/720245   想象您的交易如何得以改善,是因为您能够精准定位入场或目标位吗? 构建于新的底层算法,它可以更轻松地识别出买卖双方之间的潜在失衡。 这是因为它以图形方式展示供需最强劲区域,及其过去的表现(显示旧区域)。 这些功能旨在帮助您更轻松地发现最佳入场区域和价位。 现在您可以针对您的交易品种和时间帧来优化和编辑区域强度! 高级供需指标适用于所有产品和时间帧。 它是一个新的公式,非常新的功能是两个区域强度函数可由用户输入进行调整! 这在交易中是一大优势。 当您学习如何使用专有功能,例如带有价格游离最小 X 因子的区域强度时,您能够判断该区域强劲与否。 供需
Neo Wave PRO
Nikolay Raykov
5 (1)
Price & Time Market Structure Indicator A professional market structure tool that analyzes waves through both price and time — not price alone. Main Description NeoWave PRO is a professional market structure indicator for MetaTrader 4 designed for traders who want to move beyond traditional one-dimensional wave tools such as ZigZag, swing indicators, and basic high/low systems. Most wave indicators analyze only one thing: Price. But a real market wave is not only a price movement. A true wave de
AW Candle Patterns MT4
AW Trading Software Limited
AW 蜡烛形态指标是高级趋势指标与强大的蜡烛形态扫描仪的组合。它是识别和突出显示 30 个最可靠的烛台形态的有用工具。此外,它是一个基于彩色条的电流趋势分析器,带有   可调整大小和定位的插件多时间框架趋势面板。根据趋势过滤调整模式显示的独特能力。 优点: 轻松识别蜡烛形态 不重绘结果 内置多时间趋势面板 禁用模式类型(1、2、3 根蜡烛) 显示形态时趋势过滤的调整 MT5 version - >   HERE   / Instructions and description  -> HERE 显示模式列表: 锤模式 固定/固定 看跌 Harami / 看涨 Harami 看跌 Harami Cross / 看涨 Harami Cross 枢轴点反转向上/枢轴点反转向下 双柱低位收盘价较高/双柱低位收盘价较低 收盘价反转向上 / 收盘价反转向下 中性条 /     两个中性条 双内/内/外 向上推力杆/向下推力杆 晚星/晨星 晚上十字星 / 早上十字星 吞没看跌线/吞没看涨线 镜子酒吧 流星 乌云盖顶 十字星 输入变量: Main settings Trend Filtering Mo
All in One Trade
Alexey Minkov
4.5 (28)
All-in-One Trade Indicator (AOTI) – Since 2015. The All-in-One Trade Indicator (AOTI) determines daily targets for EURUSD, EURJPY, GBPUSD, USDCHF, EURGBP, EURCAD, EURAUD, AUDJPY, GBPAUD, GBPCAD, GBPCHF, GBPJPY, AUDUSD, and USDJPY. All other modules work with any trading instruments. The indicator includes various features, such as Double Channel trend direction, Price channel, MA Bands, Fibo levels, Climax Bar detection, and others. The AOTI indicator is based on several trading strategies, and
Currency Strength Wizard
Oleg Rodin
4.85 (60)
货币强度向导是一个非常强大的指标,为您提供成功交易的一体化解决方案。该指标使用多个时间范围内所有货币的数据来计算这个或那个外汇对的力量。此数据以易于使用的货币指数和货币电力线的形式表示,您可以使用它们来查看这种或那种货币的力量。 您所需要的只是将指标附加到您要交易的图表上,该指标将向您显示您交易的货币的真实强度。该指标还向您显示买卖量压力的极值,您可以在顺势交易时利用这些压力。该指标还显示了基于斐波那契的可能目标。该指标可用于各种交易时间范围。该指标支持各种货币对的交易。 该指标为您提供所有类型的警报,包括推送通知。 购买后请联系我。我将与您分享我的交易技巧,并免费为您提供丰厚的红利指标! 祝您交易愉快,获利丰厚!
ECM Elite Channel is a volatility-based indicator, developed with a specific time algorithm, which consists of finding possible corrections in the market. This indicator shows two outer lines, an inner line (retracement line) and an arrow sign, where the channel theory is to help identify overbought and oversold conditions in the market. The market price will generally fall between the boundaries of the channel. If prices touch or move outside the channel, it's a trading opportunity. The ind
Smart Trend Trading System
Issam Kassas
4.71 (7)
本产品已针对 2026 年市场进行更新,并针对最新 MT5 版本进行了优化。 价格更新通知: Smart Trend Trading System 目前价格为 $99 。 接下来的 30 次购买 后,价格将上涨至 $199 。 特别优惠: 购买 Smart Trend Trading System 后,请发送私信给我,即可免费领取 Smart Universal EA ,并将您的 Smart Trend 信号转换为自动交易。 Smart Trend Trading System 是一套完整的交易系统,具备不重绘、不回绘、不延迟的特点,专为希望获得更清晰信号、更准确趋势方向以及更有组织交易方式的交易者打造。 Online course , manual and [download presets] . 它将 10 多种交易工具 整合到一个系统中,包括趋势检测、反转区域、Smart Cloud、移动止损逻辑、支撑与阻力、K线着色、提醒以及多周期分析。 该系统旨在帮助您应对不同的市场环境: 趋势市场: 识别主要趋势,发现回调,跟随动能,并通过止损指导和移动止损选项寻找更清晰的入场机会。
FX Power MT4 NG
Daniel Stein
4.95 (21)
FX Power:分析货币强度,助您做出更明智的交易决策 概述 FX Power 是一款专业工具,帮助您全面了解主要货币和黄金在任何市场条件下的真实强度。通过识别强势货币用于买入,弱势货币用于卖出, FX Power 简化了交易决策,并帮助您发现高概率的交易机会。不论您是想跟随趋势还是通过极端的 Delta 值预测反转,这款工具都能完美适应您的交易风格。别再盲目交易——用 FX Power 让您的交易更加智慧。 1. 为什么 FX Power 对交易者极具价值 实时货币和黄金强度分析 • FX Power 实时计算并显示主要货币和黄金的相对强度,助您全面了解市场动态。 • 监控领先或落后资产,轻松识别值得交易的货币对。 全面的多时间框架视图 • 跟踪短期、中期和长期时间框架的货币和黄金强度,以便将您的交易策略与市场趋势保持一致。 • 无论是快进快出的短线交易还是更长期的投资策略, FX Power 都能为您提供所需的信息。 Delta 动态分析用于趋势和反转 • 极端 Delta 值常常预示反转机会,而平缓的 Delta 变化则确认趋势延续。 • 使用 Delta 分析,轻
Scalper Vault
Oleg Rodin
5 (37)
Scalper Vault 是一个专业的剥头皮系统,为您提供成功剥头皮所需的一切。该指标是一个完整的交易系统,可供外汇和二元期权交易者使用。推荐的时间范围是 M5。 该系统为您提供趋势方向的准确箭头信号。它还为您提供顶部和底部信号以及江恩市场水平。无论您拥有何种交易经验,该系统都易于使用。您只需要遵循简单的规则并每天重复该过程。 建议将此系统用于主要货币对。感谢您的关注! 请注意,该指标在策略测试器中可能无法正常工作。因此,我建议仅在模拟或真实账户的真实交易条件下使用该系统。 指示器提供所有类型的警报,包括推送通知。 购买指标后请与我联系。我将免费与您分享我的个人交易建议和出色的奖励指标! 祝您交易愉快,盈利!
BUY 1 and GET 1 FREE - Promotion! Buy Trend Reader Indicator with a huge –60% discount and GET 1 FREE EA by your choice! Promo Price: $117 (Regular Price: $297 — You Save $180! Don't Miss!) After purchase contact me to get your GIFT EA! You can also contact me to get the list of available GIFT EAs! Trend Reader Indicator is a revolutionary trading indicator designed to empower forex traders with the tools they need to make informed trading decisions. This cutting-edge indicator utilizes compl
Volatility Trend System - a trading system that gives signals for entries. The volatility system gives linear and point signals in the direction of the trend, as well as signals to exit it, without redrawing and delays. The trend indicator monitors the direction of the medium-term trend, shows the direction and its change. The signal indicator is based on changes in volatility and shows market entries. The indicator is equipped with several types of alerts. Can be applied to various trading ins
成交量突破震荡指标是一种以震荡指标的形式将价格变动与成交量趋势相匹配的指标。 我想将成交量分析整合到我的策略中,但大多数成交量指标都令我失望, 例如 OBV、资金流量指数、A/D,还有成交量加权 Macd 和许多其他指标。 因此,我为自己编写了这个指标,我对它的实用性感到满意,因此我决定将其发布到市场上。 主要特点: 它突出显示了价格在成交量增加(突破)支持下朝某个方向移动的阶段。 它突出显示了成交量增加停止并因此市场收缩的阶段。 它突出显示了价格和成交量均未移动的阶段,尤其是在时间范围(<=15 分钟)的日内交易中,因此市场已为未来的运行做好准备。 当其他 EA 交易程序发出的虚假信号不受交易量增加的支持时,可过滤掉这些信号。 它使趋势和范围阶段可视化变得非常容易 输入参数: 计算设置: 计算类型:快速、正常、慢速,用于监控短期、中期和长期,保持在同一时间范围内。 计算周期:计算周期 交易量设置: 交易量类型:TickVolume(主要用于外汇)和RealVolume(用于股票市场) 信号设置: 信号周期:信号线周期 突破水平:突破信号的阈值水平 警报设置 警报类型:收盘
Atomic Analyst
Issam Kassas
5 (11)
本产品已针对 2026 年市场进行更新,并针对最新 MT5 版本进行了优化。 价格更新通知: Atomic Analyst 目前价格为 $99 。 接下来的 30 次购买 后,价格将上涨至 $199 。 特别优惠: 购买 Atomic Analyst 后,请发送私信给我,即可免费领取 Smart Universal EA ,并将您的 Atomic Analyst 信号转换为自动交易。 Atomic Analyst 是一款不重绘、不回绘、不延迟的 Price Action 交易指标,专为手动交易、清晰信号和 EA 自动化而设计。 User manual: settings, inputs and strategy.      &   User Manual PDF . 它分析价格行为、强度、动能、多周期方向和高级过滤器,帮助交易者减少噪音,避免弱势交易机会,并做出更有结构的交易决策。 该指标将复杂的市场计算转换为简单的视觉信号、彩色K线、趋势读数、止损水平和多个止盈区域,使交易者能够快速理解并应用于真实市场环境。 主要交易用途: 剥头皮和日内交易: 专为快速决策、清晰箭头、提醒、K线
Color Trend FX
Alexey Minkov
4 (4)
Color Trend FX – Since 2017. The indicator shows on the chart the accurate market entry points, accurate exit points, maximum possible profit of a deal (for those who take profit according to their own system for exiting deals), points for trailing the open positions, as well as detailed statistics. Statistics allows to choose the most profitable trading instruments, and also to determine the potential profits. The indicator does not redraw its signals! The indicator is simple to set up and man
Linear Trend Predictor — 结合切入点和方向支撑线的趋势指标。按照突破高/低价通道的原理运作。该指标算法过滤市场噪音,考虑波动性和市场动态。 指示器功能  使用平滑方法,显示市场趋势和开立买入或卖出订单的切入点。  适合通过分析任何时间范围内的图表来确定短期和长期的市场走势。  输入参数可适应任何市场和时间范围,允许交易者独立定制指标。  设定的指示信号不会消失,也不会重新绘制——它是在蜡烛收盘时确定的。  几种类型的通知以箭头组合。  该指标既可以作为独立的交易系统使用,也可以作为其他交易系统的补充。  可供任何经验水平的交易者使用。 主要参数 Volatility Smoothing Level - 指标的主要参数,允许您配置指标以实现舒适的操作。 它的数字范围是 1 到 100,从而增加了您可以获得更长趋势运动的平滑度。 通过少量的数字,您可以获得短期走势并快速退出交易。 使用指标进行交易的时刻:  红线和箭头表示下降趋势和卖出开盘信号。止损应根据前一个上分形来设置。  黄线和箭头表示上升趋势和买入开盘信号。止损应根据前一个下分形来设置。
此儀表板是與市場結構反轉指標一起使用的警報工具。它的主要目的是提醒您在特定時間範圍內的逆轉機會,以及像指標一樣重新測試警報(確認)。儀表板設計為單獨放置在圖表上,並在後台工作,以向您發送有關您選擇的貨幣對和時間範圍的警報。它是在許多人要求衝刺以同時監控多個貨幣對和時間框架而不是讓市場反轉指標在一個 MT4 中的多個圖表上運行之後開發的。它會在 M5、M15、M30、H1、H4 和 D1 時間範圍內發出警報。當然,與交易中的任何事情一樣,更高的時間框架效果最好。 該儀表板被設計為市場結構反轉指標的附加組件。它將獨立工作,並提醒市場反轉警報指標給出的模式和信號。 在此處獲取市場反轉警報指標: https://www.mql5.com/en/market/product/46295 此儀表板的 MT5 版本可在此處獲得: https://www.mql5.com/en/market/product/65828 此處提供 EA:汽車交易市場反轉警報! https://www.mql5.com/en/market/product/65383 我創建的用於繪製矩形並提醒特定貨幣對的市場結構
作者的更多信息
CandlestickFinderMaster
Jerzy Krzysztof Bednarski
## What it does BCPF is an MT4 on-chart indicator that scans price history for **18 active candlestick patterns** and labels detected formations directly on the chart. A compact checklist panel lets you enable or disable each bullish and bearish pattern independently. The 18 available patterns are: - **Bullish:** Hammer, Inverse Hammer, Bullish Engulfing, Morning Star,   3 White Soldiers, Dragonfly Doji, Bullish Marubozu, Bullish Harami,   Piercing Line. - **Bearish:** Hanging Man, Shooting
FREE
筛选:
无评论
回复评论