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.
おすすめのプロダクト
--- 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
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
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
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 - 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
ハーモニックパターンは市場の転換点を予測するのに最適です。これらのパターンは高い勝率と1日の中での多くの取引機会を提供します。当社のインジケーターは、ハーモニックトレーディングの原則に基づいて、市場反転ポイントを予測する最も一般的なハーモニックパターンを特定します。 重要な注意事項: インジケーターは再描画されず、遅れることはありません(パターンはDポイントで検出されます);再描画されることはありません(パターンは有効またはキャンセルされます)。 使用方法: インジケーターをMT5チャートにドラッグアンドドロップします。 パターン検出をTRUE(ABCD;Gartley)に設定します。 任意のデバイスを設定します(高いデバイス=より多くのパターン;低いデバイス=より少ないパターン)。 好みに合わせて色を調整します。 バルブ/エントリーポイント、TP、SLの警告を有効または無効にします。 パターンが検出された場合: アルゴリズムはDポイントでパターンを検出します。 警告が有効になっている場合、パターン検出を通知します。 パターンが無効になった場合、「パターンがキャンセルされました」という
FREE
SWING HIGHS LOWS DETECTOR Swing Detection with Divergence Analysis -------------------------------------------------- Identify swings. Spot divergences. Trade with confluence. -------------------------------------------------- WHAT THIS INDICATOR DOES This indicator automatically detects structural swing highs and lows using configurable depth and deviation filtering. It then analyzes RSI and MACD to detect regular and hidden divergences between consecutive swings of the same type. Diver
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
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
価格波形パターン MT4へようこそ --(ABCD パターン)--     ABCD パターンは、テクニカル分析の世界で強力で広く使用されている取引パターンです。 これは、トレーダーが市場での潜在的な売買機会を特定するために使用する調和的な価格パターンです。 ABCD パターンを使用すると、トレーダーは潜在的な価格変動を予測し、いつ取引を開始および終了するかについて十分な情報に基づいた決定を下すことができます。 EA バージョン :   Price Wave EA MT4 MT5バージョン: Price Wave Pattern  MT5 特徴 :  ABCDパターンの自動検出。 強気パターンと弱気パターン。  任意のシンボルと任意の時間枠で機能します。 主要なレベルと価格目標。 カスタマイズ可能な設定と繊維レベルの調整。 アラートと通知。 今後さらに多くの機能が追加される予定です。 
FREE
Sentinel Arrow 主な機能: ⊗トレンド、反転、そしてモメンタムの変化を迅速かつ正確に特定する独自のアルゴリズム。 ⊗プロフェッショナル向けに設計されており、遅延や誤更新を排除する堅牢なシグナルロジックを備えています。 ⊗様々な時間枠に対応しています。 ⊗過去のシグナルを再描画、削除、または変更することはありません。 ⊗すべての買いシグナルと売りシグナルはローソク足自体に生成され、固定されたままです。 ⊗実際の取引では、シグナルの再描画は行われず、シグナルはローソク足自体に即座に表示されます。 ⊗安定性、正確性、柔軟性を保証します。 ⊗高い勝率のシグナルを提供します。 ⊗各シグナルは一度だけトリガーされ、重複はありません。 ⊗すべての通貨ペア、指数、株式、FX、貴金属、暗号通貨に適しています。 ⊗トレンドトレード、スイングトレード、反転確認。 ⊗信頼性が高く明確なプロフェッショナルシグナルを求めるトレーダー向け。 ⊗完全にカスタマイズ可能。
FREE
Candle Countdown — MT4用 正確なローソク足カウントダウン Candle Countdown は、 現在のローソク足が閉じるまでの残り時間 をチャート上に表示するシンプルで正確なツールです。 エントリーがローソク足のクローズに依存する場合、数秒の違いが重要になります。 このインジケーターは正確な時間を表示し、焦らずに判断できるようサポートします。 ローソク足のクローズ時間を正確に把握するためのインジケーターです。 表示内容: ローソク足が閉じるまでの残り時間 サーバー現在時刻 スプレッド ストップレベル(Stop Level) タイマーはティックに依存せず、プラットフォームの内部タイマーによって更新されるため、市場の動きが少ない場合でも安定した表示を維持します。 これにより、低ボラティリティの環境でも滑らかで安定したカウントダウンを実現します。 情報は背景付きのブロック内に表示されるため、どのチャートカラーでも見やすく、分析の妨げになりません。 ローソク足のクローズが近づくと、タイマーの色が変化し、視覚的に状況を把握しやすくなります。 MT5版はこちら: Cand
FREE
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
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
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
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
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
''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
マルチタイムフレーム対応、カスタマイズ可能なビジュアルシグナル、設定可能なアラートシステムを備えたAverage True Range(ATR)インジケーター。 フリーランスプログラミングサービス、アップデート、その他のTrueTL製品は私の MQL5プロフィール でご覧いただけます。 フィードバックとレビューを大変お待ちしております! ATRとは? Average True Range(ATR)は、J. Welles Wilderが開発した市場のボラティリティを測定するテクニカルインジケーターです。指定した期間のTrue Rangeの平均を計算します。True Rangeは以下の中で最大の値です:現在の高値から現在の安値までの距離、前回の終値から現在の高値までの距離、または前回の終値から現在の安値までの距離。 ATRは価格方向を示しません — ボラティリティのみを測定します。ATRが上昇するとボラティリティの増加を示し、ATRが低下するとボラティリティの減少を示します。トレーダーはATRを使用して市場状況を評価し、動的なストップロスを設定し(例:ATRベースのトレーリングストッ
FREE
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
Adjustable Fractal MT4 is a modification of Bill Williams' Fractals indicator. The fractal consists of a two sets of arrows - up (upper fractals) and down (lower fractals). Each fractal satisfies the following conditions: Upper fractal - maximum (high) of a signal bar exceeds or is equal to maximums of all bars from the range to the left and to the right; Lower fractal - minimum (low) of a signal bar is less or equal to minimums of all bars from the range to the left and to the right. Unlike a s
FREE
このプロダクトを購入した人は以下も購入しています
Trend SniperX MT4
Sarvarbek Abduvoxobov
5 (3)
Trend Sniper X は、トレーダーがトレンドの方向性と潜在的な反転ポイントを明確かつ正確に特定できるように設計された、MetaTrader 5 用のマルチタイムフレーム・トレンドフォロー指標です。 MT5版はこちら: https://www.mql5.com/en/market/product/181101 価格情報: 現在の価格はプロモーション価格であり、今後のアップデートや新機能の追加に伴い変更される場合があります。 Code2Profit チャンネル マルチタイムフレーム分析で市場をマスターしよう! Trend Sniper Xで勝率を最大化する方法:ルールとセッションのコツ 技術仕様 プラットフォーム MetaTrader 5 インジケータータイプ マルチタイムフレーム・トレンドインジケーター 動作タイムフレーム すべてのチャート時間足(上位足M1~MN1を独立して選択可能) 主要対象銘柄 為替(Forex)、ゴールド(XAUUSD)、その他のCFD 推奨口座 すべての口座タイプ ビジュアル表示 トレンドカラーローソク足(買い/売り/弱い/変化)+ 買い/売りシグナル
SR Liquidity は、市場の流動性が集中し、価格が最も強く反応する「隠れたゾーン」を可視化するために設計されたトレーディング指標です。こうした流動性の高いエリアは強力なサポート(支持)およびレジスタンス(抵抗)レベルとして機能し、市場が反転する可能性が最も高いポイントを明確に示してくれます。 単なる一般的なサポートラインやレジスタンスラインを描画するのではなく、「SR Liquidity」は実際の価格変動を分析し、売りと買いの圧力が集中するゾーンを特定します。これらは、市場の真の動きを牽引する「流動性のプール(溜まり場)」そのものです。それらをチャート上に直接可視化することで、価格が実際に反応する前に、その動きを予測することが可能になります。つまり、このインジケーターは価格の方向性が変わる可能性を予測するのです。生のプライスアクションを、市場の重要な水準(転換点となり得るポイント)を示す、明確で実用的なロードマップへと変換してくれます。 このインジケーターは、FX、株価指数、貴金属、仮想通貨など、あらゆる銘柄や時間足で使用可能です。 ご購入後、取引手順や無料の優れた追加インジケ
Miraculous Indicator Binary & Forex v3 StrategySafe Miraculous Indicator Binary & Forex v3 StrategySafe は、明確なシグナル、強力な確認ツール、そして Binary と Forex 市場で使える体系的な取引アプローチを求めるトレーダー向けのプロフェッショナル指標です。 v3 では、MIR Dashboard、Miraculous Confirmation Dashboard、GANN Law、Square of 9 レベル、GANN 角度、そしてより高度な Forex モードが搭載されています。 主な特徴 Binary と Forex の両方に対応。 MIR Dashboard による素早い市場分析。 Miraculous Confirmation Dashboard によるエントリー確認。 Forex 分析用の GANN Law drawing lines。 Square of 9 のライン、レベル、方向表示。 1x1 GANN Angle によるトレンド圧力の確認。 Entry I
Gann Made Easy は、ミスター・ギャンの理論を使用した取引の最良の原則に基づいた、プロフェッショナルで使いやすい外国為替取引システムです。 W・D・ガン。このインジケーターは、ストップロスとテイクプロフィットレベルを含む正確な買いと売りのシグナルを提供します。 PUSH通知を利用して外出先でも取引可能です。 ご購入後、取引方法の説明と優れた追加インジケーターを無料で入手するには、私にご連絡ください! おそらく、ギャンの取引手法についてはすでに何度も聞いたことがあるでしょう。通常、ギャンの理論は初心者のトレーダーだけでなく、すでにある程度の取引経験がある人にとっても非常に複雑なものです。なぜなら、ギャンの取引手法は理論的にはそれほど簡単に適用できるものではないからです。私はその知識を磨き、最良の原則を私の外国為替インジケーターに組み込むために数年を費やしました。 このインジケーターは非常に簡単に適用できます。必要なのは、それをチャートに添付し、簡単な取引推奨事項に従うだけです。このインジケーターは常に市場分析の仕事を行い、取引の機会を探します。適切なエントリーポイントを検出す
M1 Sniper
Oleg Rodin
4.97 (30)
M1 SNIPER は使いやすいトレーディングインジケーターシステムです。M1時間足向けに設計された矢印インジケーターです。M1時間足でのスキャルピングのためのスタンドアロンシステムとして、また既存のトレーディングシステムの一部としても使用できます。このトレーディングシステムはM1時間足での取引に特化して設計されていますが、他の時間足でも使用できます。元々、この手法はXAUUSDとBTCUSDの取引用に設計しましたが、他の市場においても役立つと考えています。 インジケーターのシグナルは、トレンドの方向と逆方向に取引できます。インジケーターのシグナルを利用して両方向に取引するのに役立つ特別な取引テクニックをご紹介します。この手法は、特別な動的なサポートとレジスタンスの価格帯を利用することに基づいています。 ご購入後、M1 SNIPER矢印インジケーターをすぐにダウンロードできます。さらに、M1 SNIPERツールのすべてのユーザーに、以下のスクリーンショットに表示されているApollo Dynamic SRインジケーターを無料で提供しています。この2つのインジケーターを組み合わせることで
DayTrader PRO MT5:  https://www.mql5.com/en/market/product/186222 DayTrader PROは、ジョン・エリュース(John Ehlers)のラグuerreフィルターと強力な自動最適化エンジンを組み合わせた、高度なトレーディング・インジケーターです。固定されたパラメーターを使用するのではなく、直近の市場状況に基づいて最適な設定を自動的に検索するため、手動による絶え間ない調整をすることなく、変化する市場のボラティリティに適応できます。 本インジケーターは、明確な「買い(BUY)」および「売り(SELL)」シグナルを生成し、現在の市場ボラティリティから算出された適応型のストップロス(Stop Loss)およびテイクプロフィット(Take Profit)レベルを表示します。トレンド、効率レシオ(Efficiency Ratio)、ボラティリティ、およびローソク足フィルターが内蔵されており、精度の低いセットアップを排除し、シグナルの精度を向上させます。 リアルタイム・パフォーマンスパネルには、現在最適化されている設定、プロフィッ
Scalper Inside PRO は日中トレンドの分析を助け、エントリー前にトレードを組み立てられるインジケーターです。中核となるのは、相場をより正確に読むための3つの専用ストラテジー。シグナルが出た瞬間に方向を自動で判断し、主要な価格帯を計算するので、想定エントリーポイント、予想ストップロス、複数の利確レベルを前もって確認できます。詳細なパフォーマンス統計が、各銘柄とストラテジーが過去にどう機能したかを示し、今の相場に合った資産選びを助けます。単体のスキャルピングツールとしても、あなたのシステムの一部としても、自作 EA のベースとしても使えます。MetaTrader 4 プラットフォームで動作します。 インジケーターはエントリー、3つの利確レベル - TP1、TP2、TP3、そして任意のストップロスをチャート上に直接表示します。自作の矢印インジケーターを接続し、その統計と収益性を検証することも可能です。 ご購入後は直接ご連絡ください。専用のボーナス add-ons、実トレードでの活用に関する追加情報、そしてご自身のトレードシステムや EA への正しい接続のサポートをお渡しします
この製品は 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] . このシステムは、トレンド検出、反転ゾーン、Smart Cloud、トレーリングストップロジック、サポートとレジスタンス、ローソク足の色分け
Tokyo Indicatorは、トレンドの方向性、潜在的な取引シグナル、および市場状況を視覚的に分かりやすく表示します。 色分けされた階段状のトレンドラインにより、強気局面(青色)と弱気局面(マゼンタ色)が明確に区別されます。トレンドの変化に合わせて表示される方向矢印は、売買の好機を強調します。 統合されたダッシュボードには、現在のシグナル、市場のバイアス(傾向)、モメンタム、ボラティリティ、シグナルの品質がひと目で分かるようにまとめられています。これにより、トレーダーはパネルを切り替えることなく、価格変動(プライスアクション)とインジケーターの数値を照らし合わせて分析を行うことができます。 すっきりとしたチャート表示と簡潔な市場概要により、Tokyo Indicatorはトレンド分析や取引判断における体系的なアプローチをサポートします。 あらゆる時間足や銘柄に対応しており、特に金(ゴールド)の取引に適しています。 トレンド スキャナーの強力なサポートを利用して、無料のインジケーターを入手し、プライバシーを守ります。あーみー!     設定 ShowHUD - チャート上のパネ
割引は 24 時間後に終了します — 次の価格は$ 69 ZORYK — MetaTrader 4専用 XAUUSDシグナル・トレードプランニングシステム このような経験はありませんか。 ゴールドを分析し、エントリーを待ち、ようやくポジションを持った直後に価格が逆方向へ動く。 早すぎる決済をしてしまったり、Stop Lossを動かしたり、数秒迷っている間にチャンスを逃したりする。 その後、相場は自分が最初に予想していた方向へ進み、目標へ到達する。 問題は常に方向判断ではありません。 本当の問題は、明確な計画がなかったことです。 どこでエントリーすべきか。 どこでトレードの前提が無効になるのか。 近い利益を確保すべきか、より大きな値動きを待つべきか。 現在のsetupが本当に強いのか、それとも無理にトレードを探しているだけなのか。 ゴールドは非常に速く動きます。 正しい分析でも、明確なプランがなければ数秒で悪い判断に変わることがあります。 ZORYKは、その問題を解決するために開発されました。 ZORYKとは ZORYKは、MetaTrader 4とXAU
ボリューム ブレイク オシレーターは、オシレーターの形で価格変動とボリューム トレンドを一致させるインジケーターです。 私はボリューム分析を戦略に統合したいと思っていましたが、OBV、マネー フロー インデックス、A/D、ボリューム加重 Macd など、ほとんどのボリューム インジケーターにいつもがっかりしていました。 そのため、このインジケーターを自分で作成し、その有用性に満足したので、市場に公開することにしました。 主な機能: ボリュームの増加 (ブレイク) によってサポートされる方向に価格が動くフェーズを強調します。 ボリュームの増加が止まり、市場が縮小するフェーズを強調します。 特に時間枠 (<=15 分) のデイトレードでは、価格もボリュームも動かないため、市場が将来の動きに備えられるフェーズを強調します。 ボリュームの増加によってサポートされていない場合、他のエキスパート アドバイザーからの誤ったシグナルをフィルターします。 トレンドとレンジ フェーズを非常に簡単に視覚化できます 入力パラメーター: 計算設定: 計算タイプ: FAST、NORMAL、SLOW。同じ
Dynamic Forex28 Navigator - 次世代の Forex 取引ツール。 現在 49% オフ。 Dynamic Forex28 Navigator は、長年人気のインジケーターを進化させたもので、3 つの機能を 1 つにまとめています。 Advanced Currency Strength28 インジケーター (レビュー 695 件)  + Advanced Currency IMPULSE with ALERT (レビュー 520 件) + CS28 コンボ シグナル (ボーナス)。 インジケーターの詳細 https://www.mql5.com/en/blogs/post/758844 次世代の Strength インジケーターが提供するもの  オリジナルで気に入っていたすべての機能が、新機能と精度の向上によって強化されました。 主な機能: 独自の通貨強度計算式。 すべての時間枠でスムーズかつ正確な強度ライン。 トレンドの特定と正確なエントリーに最適です。 ダイナミックマーケットフィボナッチレベル (マーケットフィボナッチ)。 このインジケーターに固有
True Signal FX は、MetaTrader 4 向けに開発されたマルチタイムフレーム対応のトレードインジケーターです。チャート上で、1つの取引シナリオを構成するために必要な情報をまとめて表示します。 このインジケーターは単一の方向シグナルだけを表示するのではなく、市場分析、シグナル確認、取引レベルの計算を1つの画面に統合します。取引シナリオが検出されると、売買方向、エントリー(Entry)、ストップロス(Stop Loss)、テイクプロフィット(Take Profit)、現在のシグナルスコア、市場状態に関する情報を確認できます。 True Signal FX は、複数のテクニカル指標を毎回手動で比較し、それぞれの取引機会について取引レベルを個別に計算するのではなく、明確に定義された取引シナリオを基準として判断したいトレーダー向けに設計されています。 True Signal FX は自動で注文を発注しません。インジケーターは分析結果と取引シナリオを提供し、最終的な取引判断および注文の執行はトレーダー自身が行います。 動作原理 True Signal FX は、選択された複数の
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
サポート線と抵抗線のプロットにうんざりしていませんか? サポートレジスタンス は、非常に興味深いひねりを加えてチャート内のサポートとレジスタンスラインを自動検出およびプロットするマルチタイムフレームインジケーターです。価格レベルは時間とともにテストされ、その重要性が高まるにつれて、ラインは太くなり、暗くなります。 [ インストールガイド | 更新ガイド | トラブルシューティング | よくある質問 | すべての製品 ] 一晩でテクニカル分析を強化 チャートを閲覧せずに重要な価格レベルを検出 一目ですべての価格レベルの相対的な強さを認識する すべての取引で最大30時間のプロットラインを節約 インジケーターは、すべての価格レベルの年齢を表示します インジケーターは再描画されていません 過去および現在の価格レベルは近接によって崩壊し、現在の市場行動に合わせて調整されます。動作は、必ずしもピークではない場所に線が引かれます。 価格レベルは、時間とともに拒否されるにつれて、より暗く、より広くなります ノイズを避けるために、重要でない価格レベルは定期的にクリアされます カスタマイズ可能な時間枠の
ご紹介     Quantum Breakout PRO は 、ブレイクアウト ゾーンの取引方法を変革する画期的な MQL5 インジケーターです。 13年以上の取引経験を持つ経験豊富なトレーダーのチームによって開発された Quantum Breakout PROは 、革新的でダイナミックなブレイクアウトゾーン戦略により、あなたの取引の旅を新たな高みに押し上げるように設計されています。 クォンタム ブレイクアウト インジケーターは、5 つの利益ターゲット ゾーンを備えたブレイクアウト ゾーン上のシグナル矢印と、ブレイクアウト ボックスに基づいたストップロスの提案を提供します。 初心者トレーダーにもプロのトレーダーにも適しています。 量子EAチャネル:       ここをクリック MT5バージョン:   ここをクリック 重要!購入後、インストールマニュアルを受け取るためにプライベートメッセージを送ってください。 推奨事項: 時間枠: M15 通貨ペア: GBPJPY、EURJPY、USDJPY、NZDUSD、XAUUSD アカウントの種類: ECN、Raw、またはスプレッドが非
現在30%OFF! 初心者やエキスパートトレーダーのためのベストソリューション! このダッシュボードソフトウェアは、28の通貨ペアで動作しています。それは私達の主要な指標(高度な通貨の強さ28と高度な通貨インパルス)の2に基づいています。それは全体の外国為替市場の大きい概観を与えます。それは、すべての(9)時間枠で28の外国為替ペアのための高度な通貨の強さの値、通貨の動きの速度と信号を示しています。チャート上で1つのインディケータを使用して市場全体を観察し、トレンドやスキャルピングの機会をピンポイントで見つけることができたら、あなたのトレードがどのように改善されるか想像してみてください。 このインディケータには、強い通貨と弱い通貨の識別、潜在的な取引の識別と確認がより簡単になるような機能が搭載されています。このインディケータは、通貨の強さや弱さが増加しているか減少しているか、また、すべての時間枠でどのように機能しているかをグラフィカルに表示します。 新機能として、現在の市場環境の変化に適応するダイナミックなマーケットフィボナッチレベルが追加され、すでに当社のAdvanced
The indicator no repaint!!!  The indicator has   MTF   mode, which adds confidence to trading on the trend (   no repaint   ). How to trade? Everything is very simple, we wait for the first signal (big arrow), then wait for the second signal (small arrow) and enter the market in the direction of the arrow. (See screens 1 and 2.) Exit on the opposite signal or take 20-30 pips, close half of it, and keep the rest until the opposite signal. By the way, it is on Scalping that most traders make m
CRT Candle Range Theory HTF MT4 - Ultimate CRT Indicator: 高度なICTコンセプトとMalaysian SnRトレーディングシステム 最も先進的なCandle Range Theoryインジケーターでマーケットメーカーの足跡をマスターしましょう。Ultimate CRT Indicatorを使用して、Smart Money Concepts (SMC)の真の力を解き放ち、機関投資家のように正確にトレードします。真剣なトレーダー専用に構築されたこのインジケーターは、ICT Concepts (Inner Circle Trader)の核となる柱である、非常に効果的なCandle Range Theory (CRT)を自動化し、Malaysian Support and Resistance (SnR)エントリー手法とFVG (Imbalance)ゾーンの致命的な精度でそれを強化します。 MT4またはMT5でForex、Crypto、Indicesのいずれを取引している場合でも、このアルゴリズムは市場のノイズを取り除き、ダマシ(fak
Update: Push to mobile notification is now added as optinal in the settings. Most traders fail to generate profit because of the lack of so-called filters and scanners. If you want to win at trading you need a solid system and also a filtering tool for some or all of your entry criteria. It is impossible to follow 24 currency pairs, all the indices, stocks and commodities without a filtering tool. Imagine you can get an email any time CCI crosses bellow 100 and 0 when the price is bellow MA5 an
Top Bottom Tracker は、洗練されたアルゴリズムに基づき、市場のトレンドを分析し、トレンドの高値と安値を検出することができるインジケーターです / MT5バージョン 。 価格は500$に達するまで徐々に上昇します。次の価格 --> $99 特徴 リペイントなし このインジケーターは 新しいデータが到着してもその値を変更しません 取引ペア すべてのFXペア 時間枠 すべての時間枠 パラメーター ==== インジケータの設定 設定パラメータ // 40 (値が高いほど、シグナルは少なくなりますが、より正確です) 上レベル値 // 80 (上水平線の値) 下限値 // 20 (下限水平線の値) インジケータ計算バー // 3000 (何本分のインジケータを計算するか。0を指定すると、全てのバーに対してインジケータを計算します) ==== アラーム設定 ポップアップアラート // true (端末にアラームを表示) メールアラート // true (アラームをメールで通知) アラート時間間隔 // 10 (アラーム間隔 (分)) 警告
TrendLine PRO MT4
Evgenii Aksenov
4.83 (168)
The Trend Line PRO indicator is an independent trading strategy. It shows the trend change, the entry point to the transaction, as well as automatically calculates three levels of Take Profit and Stop Loss protection. Trend Line PRO is perfect for all Meta Trader symbols: currencies, metals, cryptocurrencies, stocks and indices. The indicator is used in trading on real accounts, which confirms the reliability of the strategy. Robots using   Trend Line PRO   and real Signals can be found here:   
トレンドトレーディング は、タイミングのプルバックとブレイクアウトにより、市場で起こっているトレンドから可能な限り利益を得るように設計された指標です。確立されたトレンドの中で価格が何をしているかを分析することにより、取引の機会を見つけます。 [ インストールガイド | 更新ガイド | トラブルシューティング | よくある質問 | すべての製品 ] 自信を持って効率的に金融市場を取引する むち打ちにならずに確立されたトレンドから利益を得る 収益性の高いプルバック、ブレイクアウト、早期の逆転を認識する この指標は、独自の品質とパフォーマンスを分析します 複数時間枠のダッシュボードを実装します インジケーターは再描画されていません 電子メール/音声/視覚アラートを実装します 確立されたトレンドは多くの取引機会を提供しますが、ほとんどのトレンド指標はそれらを完全に無視しています。インジケーターの解釈はかなり簡単です: (1) トレンドの変化 (2) トレンドの方向への後退 (3) トレンドの方向へのブレイクアウト 赤いダッシュ は下降トレンド中の修正です 青いダッシュ は上昇トレンド中
MQL5ブログ = https://www.mql5.com/en/blogs/post/775739 MT4版 = https://www.mql5.com/en/market/product/195514 MT5版 = https://www.mql5.com/en/market/product/195515 「FIBONACCI ARCS [tambangEA]」は、価格、時間、スイング(波)の形状、および出来高の集中度合いの関係をチャート上に直接可視化するよう設計された、高度な市場構造分析インジケーターです。 静的な水平レベルを表示する従来のフィボナッチ・リトレースメントとは異なり、フィボナッチ・アークは、現在進行中の市場スイング(波)を起点として、曲線状のフィボナッチ・ゾーンを描画します。これにより、トレーダーは価格の推移を、垂直方向(価格変動)だけでなく、時間軸の経過も考慮しながら評価することが可能になります。 本インジケーターは、動的なスイング分析とフィボナッチ・アークのレベル(0.0%、23.6%、38.2%、50.0%、61.8%、78.6%、100.0%)を
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
現在20%OFF! 初心者やエキスパートトレーダーに最適なソリューションです。 このインディケータは、エキゾチックペア・コモディティ・インデックス・先物など、あらゆるシンボルの通貨の強さを表示することに特化したインディケータです。金、銀、原油、DAX、US30、MXN、TRY、CNHなどの通貨の強さを表示するために、9行目にどのシンボルでも追加することができます。独自の機能を多数搭載し、新しい計算式を採用したため、ユニークで高品質、かつ手頃な価格のトレーディングツールとなっています。新しいトレンドやスキャルピングチャンスのトリガーポイントを正確に把握することができるため、あなたのトレードがどのように改善されるか想像してみてください。 ユーザーマニュアル:ここをクリック   https://www.mql5.com/en/blogs/post/708876 すべての時間枠に対応します。あなたはすぐにトレンドを見ることができるようになります! 新しいアルゴリズムに基づいて設計されているため、潜在的な取引の特定と確認がより簡単になります。これは、8つの主要通貨と1つのシンボルの強弱
推測をやめて、統計的優位性を持って取引を始めましょう 株価指数はFXとは異なる動きをします。決まったセッションがあり、オーバーナイトでギャップが発生し、予測可能な統計パターンに従います。このインジケーターは、DAX、S&P 500、ダウ・ジョーンズなどの指数を自信を持って取引するために必要な確率データを提供します。 何が違うのか ほとんどのインジケーターは何が起こったかを示します。このインジケーターは次に何が起こる可能性が高いかを示します。毎取引日、インジケーターは100日間のヒストリカルデータに対して現在のセットアップを分析します。類似のギャップ、類似のオープニングポジションを持つ日を見つけ、価格が主要なレベルに到達した頻度を正確に計算します。ギャップが埋まるか、昨日の高値がテストされるかの推測はもう必要ありません。実際のデータに基づいた正確なパーセンテージが得られます。 すべての入力パラメータを説明した完全なマニュアルはこちら: https://www.mql5.com/en/blogs/post/766370 優れたセットアップを見つけるための戦略ガイドはこちら: https:/
Easy Breakout
Mohamed Hassan
4.71 (14)
After your purchase, feel free to contact me for more details on how to receive a bonus indicator called VFI, which pairs perfectly with Easy Breakout for enhanced confluence!    Easy Breakout is a powerful price action trading system built on one of the most popular and widely trusted strategies among traders: the Breakout strategy ! This indicator delivers crystal-clear Buy and Sell signals based on breakouts from key support and resistance zones. Unlike typical breakout indicators, it levera
この製品は 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 . 価格行動、強さ、モメンタム、マルチタイムフレーム方向、高度なフィルターを分析し、トレーダーがノイズを減らし、弱いセットアップを避け、より構造化された取引判断を行えるようにします。 こ
対称三角形パターンダッシュボードを使用すると、ここで利用可能な対称三角形パターンインジケーターによって描画される対称三角形パターンについて、複数の市場と時間枠を一度に監視できます。 https://www.mql5.com/en/market/product/68709/ 上記のインジケーターにアクセスして、対称的な三角形のパターンがどのように形成され、それらを取引するための戦略に従うのが簡単かについて詳しく学んでください。 ダッシュボードはスタンドアロン製品であり、インジケーターが機能する必要はありません。パターンを監視し、形成されたときにアラートを発行するだけなので、チャートでパターンを実際に確認したい場合は、対称的な三角形のパターンインジケーターも必要になります。 対称的な三角形のチャートパターンは、価格が上昇または崩壊することを余儀なくされる前の収縮と統合の期間を表しています。下のトレンドラインからのブレークアウトは新しい弱気トレンドの始まりを示し、上のトレンドラインからのブレークアウトは新しい強気のトレンドの始まりを示します。 このダッシュボードはこれらのパターンを識
作者のその他のプロダクト
## 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
フィルタ:
レビューなし
レビューに返信