Market Structure Patterns MT4

5

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

レビュー 21
cos136
117
cos136 2025.08.12 08:34 
 

If there is an indicator that can last a lifetime, I recommend Market Structure Patterns. As a practitioner of SMC indicators, it has achieved simplification and accuracy. Effective. Thank you author.

Molefi Mokhethi
513
Molefi Mokhethi 2024.07.29 12:04 
 

i am new to ICT/SMC and i have just added this indicator into my trading arsenal. i can already say its clear. Two months later, May you update it with ICT daily bias with options for all time frames bias...THANK YOU FOR ADDING BPR

Max
1624
Max 2024.07.09 11:21 
 

Brilliant tool, clean design and well programmed, love the box shades and clever labels (i never saw this on any mql product) Order blocks and FVGs accurately displayed for trading (not repainted or appearing on secondary move) and numerous other aspect/tools included in one package! This is actually cheaper than many but does more in better quality surprisingly. And beautiful design mostly. Extensive options and alerts on each aspect.+++

おすすめのプロダクト
インディケータは現在のクオートを作成し、これを過去のものと比較して、これに基づいて価格変動予測を行います。インジケータには、目的の日付にすばやく移動するためのテキスト フィールドがあります。 オプション: シンボル - インジケーターが表示するシンボルの選択; SymbolPeriod - 指標がデータを取る期間の選択; IndicatorColor - インジケータの色; HorisontalShift - 指定されたバー数だけインディケータによって描画されたクオートのシフト; Inverse - true は引用符を逆にします。false - 元のビュー。 ChartVerticalShiftStep - チャートを垂直方向にシフトします (キーボードの上下矢印)。 次は日付を入力できるテキストフィールドの設定で、「Enter」を押すとすぐにジャンプできます。
VSA - P (Volume Spread Analysis) Period-Based Histogram is a tool that visually represents market volume dynamics using Volume Spread Analysis principles, with a focus on highlighting key volume changes over specific time periods. The histogram captures changes in volume and price spread relationships in real-time, enabling traders to detect early signals of accumulation, distribution, and shifts in buying or selling pressure. Indicator is non repainting and working with real-time on tick data.
VR Grid
Vladimir Pastushak
5 (3)
VR グリッド インジケーターは、ユーザー定義の設定を使用してグラフィカル グリッドを作成するように 設計 されています。 標準グリッド とは異なり、VR グリッドは 円形レベル を構築するために使用されます。ユーザーの選択に応じて、ラウンド レベル間のステップは任意に設定できます。さらに、他のインジケーターやユーティリティとは異なり、VR Grid は期間が変更されたり、端末が再起動されたりした場合でも、 グリッドの位置を維持 します。 設定、設定ファイル、デモ版、説明書、問題解決方法は、以下から入手できます。 [ブログ] レビューを読んだり書いたりすることができます。 [リンク] のバージョン [MetaTrader 5] 垂直レベル は実際の時間間隔に基づいており、 欠落している または存在しない期間は無視します。したがって、レベル間のステップは、ユーザーが選択した値に厳密に対応します。 VR グリッド インジケーターを使用すると、トレーダーは任意のレベルで 垂直線と水平線のスタイル 、色、太さを変更できます。これにより、金融商品の ラウンドレベル を制御できます。 ラウンド
FREE
Rainbow Price Visualizer v1.21 See where the market really breathes. Turns your MT4 chart into an ultra-precise heatmap that highlights price zones favored by big players. Why it matters 300 price levels at 0.2‑pip resolution — microscopic detail. 8 visual themes (Rainbow, Fire, Ocean…) for instant readibility. Smart opacity: low noise fades, real zones pop. Lightweight rendering with automatic cleanup. Fully customizable: saturation, opacity, resolution, history depth. Bands project into the f
Trend PA
Mikhail Nazarenko
5 (3)
The Trend PA indicator uses   Price Action   and its own filtering algorithm to determine the trend. This approach helps to accurately determine entry points and the current trend on any timeframe. The indicator uses its own algorithm for analyzing price changes and Price Action. Which gives you the advantage of recognizing, without delay, a new nascent trend with fewer false positives. Trend filtering conditions can be selected in the settings individually for your trading style. The indicator
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
LordChannel is an indicator for META TRADER 4 for all forex pairs and financial market metals. The indicator is used to make detections of high/low channels, implementing a technical analysis on possible breakouts and making correct order entries. LordChannel sends signals such as buy and sell in the graphical analysis, it is important to emphasize that the importance of these signals are safe in TIME FRAMES M30, H1, H4. The indicator was created for using bullish/downtrend channels to compl
Charles Henry Dow felt that if the industrial average and the railroad average both moved in the same direction, it meant that a meaningful economic shift was occurring. In brief, this indicator bases on the Dow's theory. It can create an index of market symbols, almost anythings index. For example: Index of the Euro, Index of the Great Britain Pound, Index of the Japanese Yen, Index of the Swiss Franc, Index of the Gold, Index of the New Zealand Dollar, Index of the Australian Dollar, Index of
「Auto FIBO Pro」Crypto_Forex インジケーターは、取引の補助ツールとして最適です。 - インジケーターは、フィボナッチ レベルとローカル トレンド ライン (赤色) を自動的に計算してチャート上に配置します。 - フィボナッチ レベルは、価格が反転する可能性のある重要な領域を示します。 - 最も重要なレベルは、23.6%、38.2%、50%、61.8% です。 - リバーサル スキャルピングやゾーン グリッド取引に使用できます。 - Auto FIBO Pro インジケーターを使用して、現在のシステムを改善する機会も多数あります。 - Info Spread Swap Display があり、接続されている外国為替ペアの現在のスプレッドとスワップを表示します。 - ディスプレイには、アカウントの残高、エクイティ、マージンも表示されます。 - Info Spread Swap Display は、チャートのどのコーナーにも配置できます。 0 - 左上コーナー、1 - 右上、2 - 左下、3 - 右下。 高品質のトレーディングロボットとインジケーターをご覧にな
Italo Trend Indicator
Italo Santana Gomes
4.76 (33)
BUY INDICATOR AND GET EA FOR FREE AS A BONUS + SOME OTHER GIFTS! ITALO TREND INDICATOR  is the best trend indicator on the market, the Indicator works on all time-frames and assets, indicator built after 7 years of experience on forex and many other markets. You know many trend indicators around the internet are not complete, does not help, and it's difficult to trade, but the Italo Trend Indicator is different , the Italo Trend Indicator shows the signal to buy or sell, to confirm the signal t
The indicator detects and displays Shark harmonic pattern (see the screenshot). The pattern is plotted by the extreme values of the ZigZag indicator (included in the resources, no need to install). After detecting the pattern, the indicator notifies of that by a pop-up window, a mobile notification and an email. The indicator highlights the process of the pattern formation and not just the complete pattern. In the former case, it is displayed in the contour triangles. After the pattern is comple
The indicator allows you to trade binary options. The recommended time frame is М1 and the expiration time is 1,2,3 minutes. The indicator suitable for auto and manual trading. A possible signal is specified as a arrows above/under a candle. You should wait until the candle closes! Arrows are not re-painted Trade sessions: TOKYO section (Half-end) Currency pairs: USD/JPY Working time frame: M1 Expiration time: 1,2,3 minutes. The indicator also shows good results when using the martingale strateg
FREE
Advanced UT Bot & HTS Indicator This indicator is an advanced technical analysis tool that combines two methods: UT Bot and HTS (Higher Timeframe Smoothing) , to generate accurate buy and sell signals. 1. Indicator Structure Works within the main chart window and utilizes 11 buffers to store various data points, including arrows (buy/sell signals) and bands from both UT Bot and HTS systems. Uses colored arrows to represent different trading conditions: Blue arrows : Normal buy signals. Red arro
The Range Directional Force Indicator is designed to help traders analyze market trends, reversals, and directional strength. It focuses on price movements within defined ranges, identifying key moments when the market is gaining momentum or preparing for a shift. By dividing the chart into dynamic price ranges, the indicator detects critical support and resistance levels. It calculates the directional force of price movements, highlighting potential entry and exit points based on market sentim
Crypto_Forex インジケーター HTF Ichimoku for MT4。 - Ichimoku インジケーターは、最も強力なトレンド インジケーターの 1 つです。HTF は、Higher Time Frame を意味します。 - このインジケーターは、トレンド トレーダーや、プライス アクション エントリとの組み合わせに最適です。 - HTF Ichimoku インジケーターを使用すると、より高い時間枠の Ichimoku を現在のチャートに添付できます。 - 上昇トレンド - 赤い線が青い線より上 (両方の線が雲より上) / 下降トレンド - 赤い線が青い線より下 (両方の線が雲より下)。 - 価格が Ichimoku 雲の上部境界を突破した場合にのみ、買い注文を開きます。 - 価格が Ichimoku 雲の下部境界を突破した場合にのみ、売り注文を開きます。 - HTF Ichimoku インジケーターを使用すると、大きなトレンドを捉える機会が得られます。 高品質のトレーディングロボットとインジケーターをご覧になるにはここをクリックしてください! これは、この M
The indicator shows the potential trend direction by cyclical-wave dependence. Thus, all the rays of the intersection will be optimal rays, in the direction of which the price is expected to move, taking into account the indicator period. Rays can be used as a direction for potential market movement. But we must not forget that the approach must be comprehensive, the indicator signals require additional information to enter the market.
「調整可能なフラクタル」はフラクタル インジケーターの高度なバージョンで、非常に便利なトレーディング ツールです。 - ご存知のとおり、標準フラクタル mt4 インジケーターには設定がまったくありません。これはトレーダーにとって非常に不便です。 - 調整可能なフラクタルは、この問題を解決しました。必要な設定がすべて揃っています。 - インジケーターの調整可能な期間 (推奨値 - 7 以上)。 - 価格の高値/安値からの距離を調整可能。 - フラクタル矢印のデザインを調整可能。 - インジケーターにはモバイルおよび PC アラートが組み込まれています。 高品質のトレーディングロボットとインジケーターをご覧になるにはここをクリックしてください! これは、この MQL5 Web サイトでのみ提供されるオリジナル製品です。
Alpha Trend signは私たちの取引システムを検証し、取引信号を明確に提示し、信号がドリフトすることはありません。 主な機能: •市場が活況を示している地域に応じて、指標に基づいて現在の相場がトレンド相場に属しているか、それとも揺れ相場に属しているかを直感的に判断することができる。 そして、指標の指示矢印に基づいて市場に切り込み、緑の矢印は購入を提示し、赤の矢印は販売を提示する。 •小周期変動による頻繁な取引信号の発生を回避するために、5分以上の時間周期で取引を行うことを推奨します。 •最適な取引タイミングを逃さないために、シグナルプロンプトをオンにすることもできます。 •本指標はトレンド相場をよく予測するだけでなく、幅広振動相場でも利益を得ることができる。 •本指標は大道至簡の原則に基づいており、異なる段階のトレーダーが使用するのに適している。 注意事項: •Alpha Trend signには明確な入退場信号があり、損失を与えないように逆位相操作を提案しない。 •Alpha Trend signは特に成熟した指標であり、デルのチー
The indicator detects and displays 3 Drives harmonic pattern (see the screenshot). The pattern is plotted by the extreme values of the ZigZag indicator (included in the resources, no need to install). After detecting the pattern, the indicator notifies of that by a pop-up window, a mobile notification and an email. The indicator highlights the process of the pattern formation and not just the complete pattern. In the former case, it is displayed in the contour triangles. After the pattern is com
Tin
Maryna Shulzhenko
The Tin indicator is designed to visually display the current trend in the market. One of the key aspects of foreign exchange market analysis is to determine the trend, which is the sustainable direction of price movement. To do this, the Tin indicator uses algorithms that smooth out sharp fluctuations that do not have a significant impact on the overall trend. A trend can be either upward (bullish) or downward (bearish). Typically, a trend persists for a long time before abruptly changing dir
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
TMA AI Bands
Monique Ellen Miranda Dos Santos
TMA AI Bands インジケーターは、三角移動平均 (TMA) を基盤とし、動的な上バンドと下バンド、およびチャート上に直接プロットされた明確な買い/売り矢印を備えています。適応型最適化のための統合 AI を特徴とし、再描画なしを保証し、価格がバンドに触れた際に正確な反転シグナルを提供します。 * 通貨ペア: すべての通貨ペアで動作 * 推奨時間枠: D1 / W1 / MN * 設定可能な外部変数:   * TimeFrame – 計算期間   * HalfLength – 平均の平滑化   * BandsDeviations – バンドの標準偏差   * CenterShift, UpperShift, LowerShift – ラインの微調整   * ShowArrows, ArrowGap – 矢印の表示とオフセット制御 * クリーンなインターフェースとシンプルなビジュアルで、複雑さを避けつつ正確性を求めるトレーダーのために設計されています。
This   indicator is intended for professionals assessing fundamental market trends.  This indicator calculates the index of any instrument and analyzes it.              The index of the state currency shows the real purchasing power of this currency, and the dynamics of this index shows the dynamics of the economic state of the corresponding state. An analysis of the indices of both currencies included in a currency pair makes it much more reliable to identify the trend of this cur
The indicator analyzes the change in the minimum and maximum prices of the previous bars fixing the entrance of the big players. If the change (delta) increases, a signal is displayed on the graph in the form of an arrow. At the same time, virtual trade on history is carried out. In case of a repeat of the signal, the positions are increased (refilling). Thus the lot of positions can differ. The results of virtual trading in the form of losses / losses, profitability, drawdown and transaction li
Candle Pattern Finder Candle Pattern Finder is a powerful MT4 indicator designed to help traders easily detect key candlestick patterns in real-time. Whether you're trading trends, reversals, or consolidations, this tool highlights important price action signals directly on the chart — helping you make faster and more confident trading decisions. Detects popular candlestick patterns: Bullish/Bearish Engulfing Hammer & Inverted Hammer Shooting Star & Hanging Man Three White Soldiers Three Black
FREE
Charles Henry Dow felt that if the industrial average and the railroad average both moved in the same direction, it meant that a meaningful economic shift was occurring. In brief, this indicator bases on the Dow's theory. It can create an index of market symbols, almost anythings index. For example: Index of the Euro, Index of the Great Britain Pound, Index of the Japanese Yen, Index of the Swiss Franc, Index of the Gold, Index of the New Zealand Dollar, Index of the Australian Dollar, Index of
Xmasterインジケーターの新しいより正確なバージョン。最も効果的で正確な式を得るために、世界中の200以上のトレーダーが、PCでこのインジケーターのさまざまな組み合わせの15,000以上のテストを実施しました。そしてここでは、正確なシグナルを表示し、再ペイントしない「Xmasterフォーミュラインジケーター外国為替再ペイントなし」インジケーターを紹介します。このインジケーターはまた、電子メールとプッシュによってトレーダーにシグナルを送信します。新しいティックが到着するたびに、75以上のパラメーターで市場を常に分析し、トレーダーに正確な売買シグナルを示します。また、このインディケータの助けを借りて、正しい方向で取引を開始するためにトレンドが現在どの方向に進んでいるかを確認できます。 新しい「Xmasterフォーミュラインジケーターforexno repaint」インジケーターはどのように機能し、古いバージョンと何が違うのですか? まず第一に、それは世界中のさまざまなトレーダーによって15,000回以上テストされた最も最適化された市場分析アルゴリズムです。 第二に、このインジケーター
プロフェッショナルな累積デルタ&ボリューム中央値インジケーター この強力なボリューム分析ツールを使用して、 実際の売買圧力 を追跡します。 ボリューム比較インジケーター (Volume Compare Indicator) は、 累積デルタ (Cumulative Delta) と ボリューム中央値 (Volume Medians) を組み合わせて、 機関投資家の活動、 不均衡、 および潜在的な反転を特定するのに役立ちます。  主な特徴:  累積デルタヒストグラム – リアルタイムで純粋な買いボリュームと売りボリュームを視覚化します。  売買ボリューム中央値 – 平均的な買いボリュームと売りボリュームのレベルを示す水平線。  スマートなボリューム分類 – 以下を区別します: 強い買い(緑) – 強気(ブル)の圧力。 強い売り(赤) – 弱気(ベア)の圧力。 買いボリューム中央値(青線) – 標準的な買いボリュームの基準。 売りボリューム中央値(オレンジ線) – 標準的な売りボリュームの基準。  カスタマイズ可能なパラメーター – 感度に合わせて CDIPeriod と CDIRang
BoxInside MT4
Evgeny Shevtsov
4.83 (6)
This indicator calculates the volume profile and places labels that correspond to the VAH, VAL and POC levels, for each candle individually. Indicator operation features The indicator works on the timeframes from M5 to MN, but it uses the history data of smaller periods: M1 - for periods from M5 to H1, M5 - for the H4 period, M30 - for the D1 period, H4 - for the W1 period, D1 - for the MN period. The color and location of the VAL, VAH and POC labels on the current candle are considered to be c
FREE
This indicator shows the trend reversing point to get correct order. Red arrow and blue arrow help you to place your order. But we recommend take first signal from 1H or 4H higher time frame then go to smaller time frame 5M or 15M time frame and wait for same signal from Higher time frame then place your order. You can set the gap between candle and arrow. This is testing indicator.
このプロダクトを購入した人は以下も購入しています
Gann Made Easy は、ミスター・ギャンの理論を使用した取引の最良の原則に基づいた、プロフェッショナルで使いやすい外国為替取引システムです。 W・D・ガン。このインジケーターは、ストップロスとテイクプロフィットレベルを含む正確な買いと売りのシグナルを提供します。 PUSH通知を利用して外出先でも取引可能です。 購入後に私に連絡して、取引のヒント、ボーナス、および「GANN MADE EASY」EA アシスタントを無料で入手してください。 おそらく、ギャンの取引手法についてはすでに何度も聞いたことがあるでしょう。通常、ギャンの理論は初心者のトレーダーだけでなく、すでにある程度の取引経験がある人にとっても非常に複雑なものです。なぜなら、ギャンの取引手法は理論的にはそれほど簡単に適用できるものではないからです。私はその知識を磨き、最良の原則を私の外国為替インジケーターに組み込むために数年を費やしました。 このインジケーターは非常に簡単に適用できます。必要なのは、それをチャートに添付し、簡単な取引推奨事項に従うだけです。このインジケーターは常に市場分析の仕事を行い、取引の機会を探しま
El indicador "MR BEAST ALERTAS DE LIQUIDEZ" es una herramienta avanzada diseñada para proporcionar señales y alertas sobre la liquidez del mercado basándose en una serie de indicadores técnicos y análisis de tendencias. Ideal para traders que buscan oportunidades de trading en función de la dinámica de precios y los niveles de volatilidad, este indicador ofrece una visualización clara y detallada en la ventana del gráfico de MetaTrader. Características Principales: Canal ATR Adaptativo: Calcula
M1 SNIPER は使いやすいトレーディングインジケーターシステムです。M1時間足向けに設計された矢印インジケーターです。M1時間足でのスキャルピングのためのスタンドアロンシステムとして、また既存のトレーディングシステムの一部としても使用できます。このトレーディングシステムはM1時間足での取引に特化して設計されていますが、他の時間足でも使用できます。元々、この手法はXAUUSDとBTCUSDの取引用に設計しましたが、他の市場においても役立つと考えています。 インジケーターのシグナルは、トレンドの方向と逆方向に取引できます。インジケーターのシグナルを利用して両方向に取引するのに役立つ特別な取引テクニックをご紹介します。この手法は、特別な動的なサポートとレジスタンスの価格帯を利用することに基づいています。 ご購入後、M1 SNIPER矢印インジケーターをすぐにダウンロードできます。さらに、M1 SNIPERツールのすべてのユーザーに、以下のスクリーンショットに表示されているApollo Dynamic SRインジケーターを無料で提供しています。この2つのインジケーターを組み合わせることで
PRO Renko Systemは、特別にRENKOチャートを取引するために設計された高精度の取引システムです。 これは、様々な取引商品に適用することができる普遍的なシステムです。 システムは効果的に正確な逆転信号へのアクセスを与えるいわゆる市場の騒音を中和する。 表示器は非常に使いやすく、信号の生成に責任がある1つの変数だけがあります。 あなたは簡単にお好みの任意の取引ツールとレンコバーのサイズにツールを適応させることができます。 私はいつもあなたが私のソフトウェアで収益性の高い取引を支援するために余分なサポートを提供する準備ができています! 私はあなたに幸せで収益性の高い取引をしたいです! ご購入後にご連絡ください! 私はあなたに私のレンコチャートジェネレータを送信します。 私はまた、私の個人的な推奨事項やシステムの他のモジュールを無料で共有します!
Miraculous Indicator – ガン・スクエア・オブ・ナインに基づく100%非リペイントのFXおよびバイナリーツール この動画では、FXおよびバイナリーオプションのトレーダー向けに特別に開発された、非常に正確で強力な取引ツールである Miraculous Indicator を紹介しています。このインジケーターがユニークなのは、伝説的な ガン・スクエア・オブ・ナイン と ガンの振動の法則 に基づいている点で、現代の取引で利用できる最も正確な予測ツールの一つとなっています。 Miraculous Indicatorは 完全に非リペイント であり、ローソク足が確定した後にシグナルが変化したり消えたりすることはありません。つまり、見たものがそのまま利用できます。これにより、トレーダーは自信を持ってエントリーおよびエグジットを行うための信頼性と一貫性のある根拠を得ることができます。 主な特徴: ガン・スクエア・オブ・ナインとガン理論に基づいて構築 100%非リペイントのシグナルシステム すべての時間枠(M1、M5、H1、H4、日足、週足)で機能 FXおよびバイナリーオプション取引
Trend Screener
STE S.S.COMPANY
4.79 (95)
トレンドインジケーター、1つのツールに組み込まれたすべての重要なトレンド機能を備えたトレンドトレーディングとフィルタリングのための画期的なユニークなソリューション! これは、すべてのシンボル/商品(外国為替、商品、暗号通貨、インデックス、株式)で使用できる100%再描画されていないマルチタイムフレームおよびマルチ通貨インジケーターです。 期間限定オファー: サポートおよびレジスタンス スクリーナー インジケーターは、たった 50 ドルで永久的にご利用いただけます。(元の価格 250 ドル) (オファー延長) トレンドスクリーナーは、チャート内のドットで矢印トレンドシグナルを提供するインジケーターに続く効率的なインジケーターです。 トレンド分析インジケーターで使用できる機能: 1.トレンドスキャナー。 2.最大利益分析を備えたトレンドライン。 3.トレンド通貨強度メーター。 4.アラート付きのトレンド反転ドット。 5.アラート付きの強いトレンドドット。 6.トレンド矢印 毎日の分析例、毎日のシグナルパフォーマンス...など、トレンドスクリーナーインジケーターを使用して、ここで見つけること
An exclusive indicator that utilizes an innovative algorithm to swiftly and accurately determine the market trend. The indicator automatically calculates opening, closing, and profit levels, providing detailed trading statistics. With these features, you can choose the most appropriate trading instrument for the current market conditions. Additionally, you can easily integrate your own arrow indicators into Scalper Inside Pro to quickly evaluate their statistics and profitability. Scalper Inside
このインジケーターは、反転ポイントと価格戻りゾーンを正確に表示します。     主要プレーヤー 。新たなトレンドが形成される場所を把握し、最大限の精度で意思決定を行い、すべての取引をコントロールします。 TREND LINES PRO インジケーターと組み合わせることで、その潜在能力を最大限に発揮します。 VERSION MT5 インジケーターが示す内容: 新しいトレンドの始まりに活性化する反転構造と反転レベル。 リスクと報酬の比率を最小限に抑えた利益 確定 と 損失停止の レベルの表示     RR 1:2   。 インテリジェントな削減ロジックによるストップロス。 指定されたインジケーターから 2 つのトレンド タイプの反転パターンを表示します。 指標: トレンドを追う   TREND LINES PRO   (世界的なトレンドの変化) TREND PRO   (クイックトレンド変更) シンプルで効果的   スキャナー   リアルタイムトレンド(新機能)。 マルチタイムフレームのインストゥルメント フィルタリング。 画面   利益     LOGIC AI信号の後。 当日プラス方
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
Precautions for subscribing to indicator This indicator only supports the computer version of MT4 Does not support MT5, mobile phones, tablets The indicator only shows the day's entry arrow The previous history arrow will not be displayed (Live broadcast is for demonstration) The indicator is a trading aid Is not a EA automatic trading No copy trading function The indicator only indicates the entry position No exit (target profit)  The entry stop loss point is set at 30-50 PIPS Or the front hi
現在40%OFF! 初心者やエキスパートトレーダーのためのベストソリューション! このダッシュボードソフトウェアは、28の通貨ペアで動作しています。それは私達の主要な指標(高度な通貨の強さ28と高度な通貨インパルス)の2に基づいています。それは全体の外国為替市場の大きい概観を与えます。それは、すべての(9)時間枠で28の外国為替ペアのための高度な通貨の強さの値、通貨の動きの速度と信号を示しています。チャート上で1つのインディケータを使用して市場全体を観察し、トレンドやスキャルピングの機会をピンポイントで見つけることができたら、あなたのトレードがどのように改善されるか想像してみてください。 このインディケータには、強い通貨と弱い通貨の識別、潜在的な取引の識別と確認がより簡単になるような機能が搭載されています。このインディケータは、通貨の強さや弱さが増加しているか減少しているか、また、すべての時間枠でどのように機能しているかをグラフィカルに表示します。 新機能として、現在の市場環境の変化に適応するダイナミックなマーケットフィボナッチレベルが追加され、すでに当社のAdvanced
PairMaster Buy Sell Arrow Indicator for MT4 Trade Reversals Like a Pro — Catch Every Swing Point with Precision The PairMaster Buy Sell Arrow Indicator is a powerful MetaTrader 4 tool built to identify high-probability swing trading opportunities . Designed for traders who value accuracy, clarity, and simplicity, PairMaster detects key market turning points and plots intuitive buy and sell arrows directly on your chart. Key Features Accurate Swing Point Detection – Automatically identifies ma
Advanced Supply Demand
Bernhard Schweigert
4.91 (298)
現在40%オフ 初心者にもエキスパートトレーダーにも最適なソリューション このインジケーターは独自の機能と新しい公式を多数内蔵しており、ユニークで高品質かつ手頃な取引ツールです。このアップデートでは、2つの時間枠ゾーンを表示できるようになります。より長いTFだけでなく、チャートTFとより長いTF(ネストゾーンを表示)の両方を表示できます。すべてのSupply Demandトレーダーの皆さんのお気に召すはずです。:) 重要情報の公開 Advanced Supply Demandの可能性を最大化するには、 https://www.mql5.com/ja/blogs/post/720245 にアクセスしてください。   エントリーまたはターゲットの正確なトリガーポイントを正確に特定できれば取引がどのように改善されるか想像してみてください。新しい基盤となるアルゴリズムに基づいて構築されているため、買い手と売り手の間の潜在的な不均衡をさらに簡単に特定できます。これは、最も強い需要と供給のゾーンと、過去のパフォーマンス(古いゾーンを表示)がグラフィカルに表現されるためです。これらの機能は、最適な
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 インジケーターが提供するもの  オリジナルで気に入っていたすべての機能が、新機能と精度の向上によって強化されました。 主な機能: 独自の通貨強度計算式。 すべての時間枠でスムーズかつ正確な強度ライン。 トレンドの特定と正確なエントリーに最適です。 ダイナミックマーケットフィボナッチレベル (マーケットフィボナッチ)。 このインジケーターに固有
Super Signal – Skyblade Edition プロ仕様のノンリペイント / ノーラグ・トレンドシグナルシステム。卓越した勝率を実現 | MT4 / MT5 対応 1分足、5分足、15分足などの低い時間足で最も効果を発揮します。 主な特徴: Super Signal – Skyblade Edition は、トレンド取引に特化したスマートなシグナルシステムです。マルチレイヤーのフィルターロジックを用いて、明確な方向性と実際のモメンタムに支えられた強力なトレンドのみを検出します。 このシステムは 天井や底を予測するものではありません 。次の3つの条件がすべて満たされた場合にのみシグナルを発生させます: 明確なトレンド方向 モメンタムの増加 健全なボラティリティ構造 市場セッションに基づく流動性分析と組み合わせることで、シグナルの精度とタイミングがさらに向上します。 シグナルの特性: すべての矢印シグナルは 100% 非リペイント / 遅延なし 一度出現したシグナルは固定され、点滅・消失しません チャート上の矢印、情報パネル、ポップアップ通知、音声アラート、プッシュ通知
Gold Scalper Super is an easy-to-use trading system. The indicator can be used as a standalone scalping system on the M1 time frame, as well as part of your existing trading system. Bonus: when purchasing an indicator, Trend Arrow Super is provided free of charge, write to us after purchase. The indicator 100% does not repaint!!! If a signal appears, it does not disappear! Unlike indicators with redrawing, which lead to the loss of a deposit, because they can show a signal and then remove it.
このインジケーターを購入すると、プロ仕様のトレードマネージャーを無料で差し上げます。 まず第一に、このトレーディングシステムがノンリペイント、ノンリドロー、ノンラグのインジケーターであることを強調する価値がある。これにより、手動取引とロボット取引の両方に理想的なものになっています。 オンラインコース、マニュアル、プリセットのダウンロード。 「スマートトレンドトレーディングシステム MT5」は、新規および経験豊富なトレーダー向けにカスタマイズされた包括的なトレーディングソリューションです。10以上のプレミアムインジケーターを組み合わせ、7つ以上の堅実なトレーディング戦略を備えており、多様な市場状況に対応する多目的な選択肢となっています。 トレンドフォロー戦略:トレンドを効果的に乗り越えるための正確なエントリーとストップロス管理を提供します。 リバーサル戦略:潜在的なトレンドの反転を特定し、トレーダーがレンジ相場を活用できるようにします。 スキャルピング戦略:高速で正確なデイトレードおよび短期取引のために設計されています。 安定性:すべてのインジケーターはノンリペイント、ノンリドロー、ノ
Buy Sell Signal Pro — Market Structure & Pivot based Indicator Looking for a powerful yet lightweight market structure indicator designed to accurately detect swing turning points and visualize trend behavior with clarity . Built for traders who demand precision without chart clutter , it identifies key structural levels and delivers reliable buy/sell signals across any timeframe and instrument . By confirming pivot points before plotting signals, the indicator ensures consistent, non-repaintin
OFFER OFFER! The price of the indicator is kept at 75 dollars only from 20th Feb to 28th Feb. Full Fledged EA and Alert plus for alerts will also be provided in this offer along with the purchase of Indicator. Limited copies only at this price and Ea too. Grab your copy soon Alert plus for indicator with set file is kept in comment section with the image  SMC Blast Signal with FVG, BOS and trend Breakout The SMC Blast Signal is a Precise trading system for Meta Trader 4 that uses Smart Money Con
まず第一に、この取引インジケーターは再描画されず、再描画されず、遅延しないことを強調する価値があります。これにより、手動取引とロボット取引の両方に理想的なものになります。 ユーザーマニュアル:設定、入力、戦略。 アトミックアナリストは、価格の強さとモメンタムを利用して市場でより良いエッジを見つけるためのPA価格アクションインジケーターです。ノイズや誤ったシグナルを除去し、取引ポテンシャルを高めるための高度なフィルターを備えています。複雑なインジケーターの複数のレイヤーを使用して、アトミックアナリストはチャートをスキャンし、複雑な数学的計算をシンプルなシグナルと色に変換します。これにより、どのような初心者トレーダーでも理解して使用し、一貫した取引の決定を行うことができます。 「アトミックアナリスト」は、新規および経験豊富なトレーダー向けにカスタマイズされた包括的な取引ソリューションです。プレミアムインジケーターとトップノッチの機能を1つの取引戦略に組み合わせ、すべてのタイプのトレーダーにとって汎用性のある選択肢にします。 デイリートレーディングとスキャルピング戦略:高速で正確な
Trend indicator AI
Ramil Minniakhmetov
4.57 (82)
Trend Ai indicatorは、トレンドの識別と実用的なエントリポイントと反転アラートを組み合わせることで、トレーダーの市場分析を強化する優れたツールです。 この指標は、ユーザーが自信と正確さで外国為替市場の複雑さをナビゲートすることを可能にします トレンドAiインジケーターは、主要なシグナル以外にも、プルバックやリトレースメント中に発生するセカンダリエントリポイントを識別し、トレーダーが確立されたトレンド内の価格修正を活用できるようにします。 重要な利点: *MT4およびMT5の仕事 *明確な買いまたは売りシグナル *再描画しません ·すべての資産で動作します 私はeaやセットをtelegram it詐欺で販売しないように注意してください。 すべての設定はここでブログで無料です。  重要! 指示とボーナスを得るために購入後すぐに私に連絡してください! 私の他のプロダクトと同様、実質操作の監視はここに見つけることができます: https://www.mql5.com/en/users/mechanic/seller&nbsp ; 設定および入力: すべての
No Repaint Bext は完全な取引システムです。エントリーとエグジットのタイミング、そして取引の方向を示します。 緑の矢印 が表示されるたびに、 買い注文 を開きます。 赤い矢印 が表示されたら、すべての買い注文を閉じます。 同様に、 赤い矢印 が表示されたら、 売り注文 を開き、 緑の矢印 が表示されたらすべての売り注文を閉じます。 取引には M5(1分足) を使用し、 どの通貨ペアでも取引可能 です。 このインジケーターは 再描画されず 、ほとんど遅延しません。ただし、 ローソク足が確定するまで待つ という自然な条件はあります。 RSI フィルター と**2 つのクラシックな反転パターン(エンゴルフィング、ピンバー)**を使用し、反転の瞬間をほぼリアルタイムで捉えます。 インジケーターの効果的な使い方 どの通貨ペアでも使用可能 (テスト済み: GBPUSD, EURUSD ) 時間足:M5(1分足) 初期資金:500ドル以上 取引ロット:0.01 緑の矢印 が表示されたら、買い注文を開く。 赤い矢印 が表示されたら、すべての買い注文を閉じる。 赤い矢印 が表示されたら、売
Top Bottom Tracker は、洗練されたアルゴリズムに基づき、市場のトレンドを分析し、トレンドの高値と安値を検出することができるインジケーターです / MT5バージョン 。 価格は500$に達するまで徐々に上昇します。次の価格 --> $99 特徴 リペイントなし このインジケーターは 新しいデータが到着してもその値を変更しません 取引ペア すべてのFXペア 時間枠 すべての時間枠 パラメーター ==== インジケータの設定 設定パラメータ // 40 (値が高いほど、シグナルは少なくなりますが、より正確です) 上レベル値 // 80 (上水平線の値) 下限値 // 20 (下限水平線の値) インジケータ計算バー // 3000 (何本分のインジケータを計算するか。0を指定すると、全てのバーに対してインジケータを計算します) ==== アラーム設定 ポップアップアラート // true (端末にアラームを表示) メールアラート // true (アラームをメールで通知) アラート時間間隔 // 10 (アラーム間隔 (分)) 警告
現在20%OFF! 初心者やエキスパートトレーダーに最適なソリューションです。 このインディケータは、エキゾチックペア・コモディティ・インデックス・先物など、あらゆるシンボルの通貨の強さを表示することに特化したインディケータです。金、銀、原油、DAX、US30、MXN、TRY、CNHなどの通貨の強さを表示するために、9行目にどのシンボルでも追加することができます。独自の機能を多数搭載し、新しい計算式を採用したため、ユニークで高品質、かつ手頃な価格のトレーディングツールとなっています。新しいトレンドやスキャルピングチャンスのトリガーポイントを正確に把握することができるため、あなたのトレードがどのように改善されるか想像してみてください。 ユーザーマニュアル:ここをクリック   https://www.mql5.com/en/blogs/post/708876 すべての時間枠に対応します。あなたはすぐにトレンドを見ることができるようになります! 新しいアルゴリズムに基づいて設計されているため、潜在的な取引の特定と確認がより簡単になります。これは、8つの主要通貨と1つのシンボルの強弱
通貨強さウィザードは、取引を成功させるためのオールインワン ソリューションを提供する非常に強力な指標です。このインジケーターは、複数の時間枠のすべての通貨のデータを使用して、このまたはその外国為替ペアのパワーを計算します。このデータは、使いやすい通貨インデックスと通貨パワーラインの形式で表され、特定の通貨のパワーを確認するために使用できます。 必要なのは、取引したいチャートにインジケーターを接続することだけです。インジケーターは、取引する通貨の実際の強さを示します。このインジケーターは、トレンドに合わせて取引するときに有利に利用できる売買高の圧力の極値も示します。このインジケーターには、フィボナッチに基づく可能なターゲットも表示されます。 このインジケーターは、PUSH 通知を含むあらゆるタイプのアラートを提供します。 購入後ご連絡下さい。私の取引のヒントをあなたと共有し、素晴らしいボーナスインジケーターを無料で提供します! 幸せで有益な取引をお祈りします。
The Super Arrow Indicator provides non-repainting buy and sell signals with exceptional accuracy. Key Features No repainting – confirmed signals remain fixed Clear visual arrows: green for buy, red for sell Real-time alerts via pop-up, sound, and optional email Clean chart view with no unnecessary clutter Works on all markets: Forex, gold, oil, indices, crypto Adjustable Parameters TimeFrame Default: "current time frame" Function: Sets the time frame for indicator calculation Options: Can be set
Prime Strike Signal – 明確なエントリー。リペイントなし。 Prime Strike Signal No Repaint Never は、視認性と安定性を求めるトレーダーのために設計された、シンプルでルールに基づくシグナルツールです。チャート上に即座に矢印を表示し、相場の短期的な方向転換にスムーズに追従できるようサポートします。 最新情報をチェック 今後のアップデートや新リリース情報を受け取るには、公式チャンネルに参加してください: https://www.mql5.com/en/channels/signalsandindicators ロジック このシステムは、異なる平滑化期間を用いた2つの価格ベースの計算を比較し、モメンタムの変化を検出します。算出された差分は第2のロジックレイヤーによってフィルタリングされ、有効なクロスが発生した場合にのみシグナルが発生します。これにより、ノイズではなく実際の価格の動きに基づいたエントリーが可能になります。 リペイントしますか? しません。本ツールは、ローソク足が完全に確定してからシグナルを表示します。シグナル
Scalper Vault は、スキャルピングを成功させるために必要なすべてを提供するプロフェッショナルなスキャルピング システムです。このインジケーターは、外国為替およびバイナリー オプションのトレーダーが使用できる完全な取引システムです。推奨される時間枠は M5 です。 システムは、トレンドの方向に正確な矢印シグナルを提供します。また、トップとボトムのシグナルとギャン マーケット レベルも提供します。 インジケーターは、プッシュ通知を含むすべてのタイプのアラートを提供します。 インジケータの購入後にご連絡ください。私の個人的な取引の推奨事項と素晴らしいボーナス指標を無料で共有します! 幸せで有益な取引をお祈りします!
System Trend Pro - This is the best trend trading indicator!!! 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
Meravith
Ivan Stefanov
5 (3)
マーケットメーカーのためのツール。 Meravith は次の機能を提供します: すべての時間足を分析し、現在有効なトレンドを表示します。 強気と弱気の出来高が等しくなる流動性ゾーン(出来高均衡)を強調表示します。 異なる時間足のすべての流動性レベルをチャート上に直接表示します。 テキスト形式の市場分析を生成し、参考情報として表示します。 現在のトレンドに基づいて目標値、サポートレベル、ストップロスを計算します。 取引のリスクリワード比を算出します。 口座残高に基づいてポジションサイズを計算し、潜在的な利益を推定します。 また、市場に大きな変化があった場合には警告を表示します。 インジケーターの主要ライン: 強気/弱気の出来高エグゾーストライン ― 目標値として機能します。 市場のトレンドを示すライン。市場が強気か弱気かによって色が変わり、トレンドのサポートとして機能します。主にその色が市場センチメントを示します。 出来高均衡ライン(Eq)。Eq(Volume Equilibrium)ラインはシステムの中核です。これは買い手と売り手の出来高のバランスポイントを表します。市場の流動性を示し
作者のその他のプロダクト
Timeless Charts
Samuel Manoel De Souza
5 (3)
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
Market Structure Patterns
Samuel Manoel De Souza
4.47 (19)
Available for   MT4   and   MT5 . Join the Market Structure Patterns channel to download materials available for study and/or additional informations. Related posts: Market Structure Patterns - Introduction Beyond Fancy Order Blocks: Using True Volumetric Analysis with Market Structure Patterns & Timeless Charts 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
Visual Book on Chart
Samuel Manoel De Souza
4.44 (9)
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
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
フィルタ:
cos136
117
cos136 2025.08.12 08:34 
 

If there is an indicator that can last a lifetime, I recommend Market Structure Patterns. As a practitioner of SMC indicators, it has achieved simplification and accuracy. Effective. Thank you author.

Molefi Mokhethi
513
Molefi Mokhethi 2024.07.29 12:04 
 

i am new to ICT/SMC and i have just added this indicator into my trading arsenal. i can already say its clear. Two months later, May you update it with ICT daily bias with options for all time frames bias...THANK YOU FOR ADDING BPR

Max
1624
Max 2024.07.09 11:21 
 

Brilliant tool, clean design and well programmed, love the box shades and clever labels (i never saw this on any mql product) Order blocks and FVGs accurately displayed for trading (not repainted or appearing on secondary move) and numerous other aspect/tools included in one package! This is actually cheaper than many but does more in better quality surprisingly. And beautiful design mostly. Extensive options and alerts on each aspect.+++

Akos Petrekovics
142
Akos Petrekovics 2024.05.27 07:59 
 

Very good, useful tool. Must for SMC! Best, here in this market.

eryuechunshen
672
eryuechunshen 2024.04.29 22:26 
 

First of all, I would like to thank the author for his hard work, this is the best market structure trading tool I have ever purchased, it is undoubtedly the best trading tool in the market right now, every upgrade and update is always an unexpected surprise!

Aussie Trader
1056
Aussie Trader 2024.04.23 08:55 
 

I looked at all the others and found this to be the best. A great tool for Smart Money Concepts and the author is open to suggestions for improvement. He also provides good support

Mike Kleinsteuber
151
Mike Kleinsteuber 2024.04.10 19:56 
 

A great indi for those who follow the ICT methodology. I appreciate it isn't for everyone and much of what ICT is is repackaged stuff that's been around for years. But just with different handles. Who cares if it works for you. And it works for me. Even though I've been trading for years I still have a lot to learn and this methodology has given me a framework I can use. There are other indis for ICT stuff out there but this is the best I've come across and is pretty comprehensive. Bar not including MSS icons which I've asked to be added if possible. Certainly worth the money if you follow ICT

TheStoneMX
135
TheStoneMX 2023.11.02 09:44 
 

A Game-Changer for Technical Traders! Having tried numerous tools and indicators over the years, I can confidently say that the "Market Structure Patterns MT4" stands out as a beacon of excellence. From the moment I integrated it into my MT4 platform, it was evident that this tool was meticulously designed with the trader in mind. The patterns it identifies are not only accurate but also incredibly timely, allowing for precise entry and exit points. What truly sets it apart, however, is its intuitive interface. Even for someone who might be new to the world of trading, the learning curve is minimal, thanks to its user-friendly design. Moreover, the visual representation of market structures provides an unparalleled clarity, making it easier to understand the underlying market dynamics. This has not only improved my trading strategy but has also bolstered my confidence in making trading decisions. In a world where the markets are constantly evolving, having a tool like "Market Structure Patterns MT4" is akin to having a trusted advisor by your side. It's not just an indicator; it's a game-changer. I wholeheartedly recommend it to both novice and seasoned traders. Your trading journey will undoubtedly be enriched by it!

elite luis
3483
elite luis 2023.09.25 10:22 
 

After trying many ICT, SMT, this is the VERY BEST! has bought mt4, going to buy mt5 but 1 issue please check comment, seem that the order block sometime doesn't auto refresh properly? also please add the 3x alert for Premium, Equilabrium and Discount zone, once fix and added will buy your MT5 and give you 5 star review again :)

Samuel Manoel De Souza
38286
開発者からの返信 Samuel Manoel De Souza 2023.10.10 19:58
Thanks for the comment. Will consider that in the update to be sent this week.
rajivcau
513
rajivcau 2023.09.03 13:21 
 

I'm training to be potentially working in this Industry, this is the sort of stuff they are training us and is used in Banks, A+++ Amazing , very happy, BIG THANKS to the author...

FXGUY
135
FXGUY 2023.08.14 23:32 
 

GREAT INDICATOR !! New version is awesome. Developer fixed the issues I was having. Thank you Samuel

Samuel Manoel De Souza
38286
開発者からの返信 Samuel Manoel De Souza 2023.08.23 20:53
Thank you. I'll fix in the next update.
Greg Nicolas
158
Greg Nicolas 2023.08.03 21:52 
 

I have purchased this trading system since last Two months now. However, I confidently say it's one of its kind ever but The challenge I have which I don't know if it is general is I don't get any alert till now.

Samuel Manoel De Souza
38286
開発者からの返信 Samuel Manoel De Souza 2023.08.03 21:58
Hope you are using the latest version.
If so, make sure to select the type of alert [popup, push, email] and the patterns for which you need the alerts. If still doesn't work, send me a private message about the settings that you are using, symbol and timeframe.
Thank you.
Alexandre Henrique Vassoler
988
Alexandre Henrique Vassoler 2023.07.26 16:29 
 

Excelente indicador! Recomendo a todos!

Blocked Gutters
384
Blocked Gutters 2023.06.15 23:45 
 

ユーザーは評価に対して何もコメントを残しませんでした

378686
47
378686 2023.06.09 10:11 
 

how do i purchase i more of this product

Samuel Manoel De Souza
38286
開発者からの返信 Samuel Manoel De Souza 2023.06.15 23:48
You cannot purchase the same product twice.
Junaid Munawar
1062
Junaid Munawar 2023.05.19 06:26 
 

Great indicator Recommended

hassani777
21
hassani777 2023.05.15 11:44 
 

Very useful ... and thanks for keep it up to date ...

AlbertZAR
671
AlbertZAR 2023.05.12 16:04 
 

This is the most perfect SMC indicator I've ever bought. Incredible work, Samuel! I love how fine-tuned the alerts can be, like only alert on BOS bullish. Brilliant! Just perfect, love it, 5/5.

shashi44
245
shashi44 2023.05.10 11:40 
 

Hi Today i have purchased this indicator MT4 Please guide me to use it on M1 chart for scalping Means good setting for M1 chart for scalping

Kazuya fujioka
275
Kazuya fujioka 2023.05.09 06:53 
 

This is amazing. The line drawn by the indicator using the daily chart will show its power at a later date when the next swing is pushed back. The profit/loss ratio is also strong. And it is more accurate than similar products. I like it very much. Also, thanks to the author for offering this product at a price that is too cheap. thank you.

12
レビューに返信