VolumeLeaders Levels

================================================================================
              VL LEVELS INDICATOR - USER GUIDE
              VolumeLeaders Institutional Trade Levels for MetaTrader 5
================================================================================

WHAT IS THIS INDICATOR?
-----------------------
This indicator displays VolumeLeaders institutional  dark pools trade levels on your MT5 charts. These levels represent price points where significant institutional
trading activity has occurred, ranked by dollar volume. They represent level of support and resistance.

DISCLAIMER:

This is an Unofficial product with no tie with the www.volumeleaders.com platform. I have a personal subscription to www.volumeleaders.com, and best usage of this indicator can only be achieved if you are subscribed too to the platform.


================================================================================
                         QUICK START GUIDE
================================================================================

STEP 1: FIND YOUR MT5 DATA FOLDER
---------------------------------
The indicator reads level files from a special "Files" folder in MetaTrader 5.

To find this folder:
  1. Open MetaTrader 5
  2. Click: File -> Open Data Folder
  3. Navigate to: MQL5 -> Files
  4. Create a new folder called: VL_Levels

Your path should look like:
  [MT5 Data Folder]/MQL5/Files/VL_Levels/

Common locations:
  Windows: C:\Users\[YourName]\AppData\Roaming\MetaQuotes\Terminal\[ID]\MQL5\Files\VL_Levels\
  Mac/Wine: ~/.mt5/drive_c/Program Files/MetaTrader 5/MQL5/Files/VL_Levels/


STEP 2: DOWNLOAD LEVELS FROM VOLUMELEADERS
------------------------------------------
Go to VolumeLeaders.com and download the level data for your symbol.

VolumeLeaders offers TWO export formats:

  A) ThinkScript TXT (RECOMMENDED - easiest!)
     - Download the .txt file directly
     - No conversion needed
     - File contains ThinkScript code that our indicator can parse

  B) Excel XLSX
     - Download the .xlsx file
     - You must convert it to CSV (see instructions below)


STEP 3: PLACE THE FILE IN THE VL_LEVELS FOLDER
----------------------------------------------
Name the file to match your MT5 symbol EXACTLY.

Examples:
  - For Apple stock:     AAPL.txt  or  AAPL.csv
  - For S&P 500 ETF:     SPY.txt   or  SPY.csv
  - For Energy ETF:      XLE.txt   or  XLE.csv

IMPORTANT: The filename must match your broker's symbol name!
  - Check your MT5 chart title for the exact symbol
  - Some brokers add suffixes (e.g., AAPL.US, AAPL.NAS)
  - If your broker uses "AAPL.US", name the file "AAPL.US.txt"


STEP 4: ADD THE INDICATOR TO YOUR CHART
---------------------------------------
  1. Open a chart for the symbol you downloaded levels for
  2. Go to: Insert -> Indicators -> Custom -> Ind_VL_Levels
  3. Click OK to apply with default settings
  4. The levels will appear as horizontal lines on your chart!


================================================================================
                      FILE FORMAT DETAILS
================================================================================

OPTION A: THINKSCRIPT TXT FORMAT (Recommended)
----------------------------------------------
This is the easiest option - just download and use directly!

The .txt file from VolumeLeaders contains ThinkScript code like this:

  def show_AAPL = GetSymbol() == "AAPL";
  plot line_AAPL_0 = if show_AAPL then 280.0 else Double.NaN;
  AddChartBubble(..., 280.0, "$1.24B", Color.WHITE, yes);

Our indicator automatically extracts:
  - Price levels from "plot" lines
  - Dollar volumes from "AddChartBubble" lines
  - Rank from the line number (0 = Rank 1, 1 = Rank 2, etc.)


OPTION B: CSV FORMAT (Requires Conversion)
------------------------------------------
If you downloaded the .xlsx file, convert it to CSV:

  Excel:
    File -> Save As -> Choose "CSV (Comma delimited) (*.csv)"

  Google Sheets:
    File -> Download -> Comma-separated values (.csv)

  LibreOffice Calc:
    File -> Save As -> Choose "Text CSV (.csv)"

Expected CSV format:
  VolumeLeaders.com,,,,,,,
  Price,$$,Shares,Trades,RS,PCT,Level Rank,Level Date Range
  280.0,1240000000,4500000,1200,5.2,100,1,2023-01-01 - 2024-01-01
  275.0,892450000,3200000,980,4.1,95,2,2023-02-15 - 2024-01-01
  ...

Required columns: "Price" and "Level Rank" (or just "Rank")
Optional columns: "$$" (dollars), "Shares", "Trades", "Level Date Range"


================================================================================
                      INDICATOR SETTINGS
================================================================================

DISPLAY SETTINGS
----------------
  Level Line Color    - Color for single price levels (default: gold/amber)
  Zone Line Color     - Color for clustered zones
  Level Line Width    - Thickness of level lines (1-5)
  Zone Line Width     - Thickness of zone lines (1-5)
  Line Style          - Solid, Dash, Dot, etc.

LABEL SETTINGS
--------------
  Show Labels         - Display "VL #1 $1.24B" text (default: ON)
  Show Dates          - Include date range in label
  Show Volume         - Include share volume in label

FILE SETTINGS
-------------
  Symbol Override     - Use a different symbol than the chart
                        (useful if your broker uses different naming)
  Folder Path         - Subfolder in MQL5/Files/ (default: VL_Levels)
  Auto-Refresh        - Automatically reload when file changes (default: ON)
  Refresh Interval    - How often to check for file updates (seconds)

BEHAVIOR
--------
  Verbose Logs        - Enable detailed logging for troubleshooting


================================================================================
                      TROUBLESHOOTING
================================================================================

LEVELS NOT APPEARING?
---------------------
1. Check the Experts tab (View -> Toolbox -> Experts tab) for error messages

2. Verify your file is in the correct location:
   - File -> Open Data Folder -> MQL5 -> Files -> VL_Levels -> [SYMBOL].txt

3. Make sure the filename matches the chart symbol EXACTLY
   - Check your chart title bar for the exact symbol name
   - Symbol names are case-sensitive on some systems

4. Try removing and re-adding the indicator to the chart

5. Check if the file format is correct:
   - TXT file should contain "plot line_" and "AddChartBubble"
   - CSV file should have "Price" column in the header


SYMBOL NAME MISMATCH?
---------------------
Different brokers use different symbol names:
  - Standard: AAPL, SPY, XLE
  - With suffix: AAPL.US, SPY.NYSE, XLE.ARCA
  - CFD style: AAPLm, #AAPL

Solutions:
  1. Rename your file to match broker's symbol exactly
  2. OR use the "Symbol Override" setting in the indicator


FILE NOT FOUND ERROR?
---------------------
The indicator looks in: MQL5/Files/VL_Levels/[SYMBOL].txt (or .csv)

To verify the path:
  1. In MT5: File -> Open Data Folder
  2. Navigate to MQL5 -> Files -> VL_Levels
  3. Confirm your file is there with the correct name


LEVELS SHOWING AT WRONG PRICES?
-------------------------------
This can happen if:
  1. The file is for a different symbol
  2. The symbol had a stock split (prices need adjustment)
  3. Your broker uses different price formatting


================================================================================
                      TIPS FOR BEST RESULTS
================================================================================

1. DOWNLOAD FRESH DATA REGULARLY
   VolumeLeaders updates their data - download new files periodically

2. USE TXT FORMAT WHEN POSSIBLE
   The ThinkScript .txt format requires no conversion

3. ENABLE AUTO-REFRESH
   Keep auto-refresh ON to see updates when you replace files

4. CREATE FILES FOR MULTIPLE SYMBOLS
   You can have files for many symbols - the indicator will automatically
   load the correct one based on which chart you're viewing

5. BACKUP YOUR FILES
   Keep a backup of your level files outside the MT5 folder


================================================================================
                      SUPPORT
================================================================================

For VolumeLeaders data questions:

For indicator issues:
  Check the Experts tab in MT5 for detailed error messages


================================================================================
              (c) VL MT5 Bridge - https://www.volumeleaders.com
================================================================================
おすすめのプロダクト
MT5 ハンマー&スター・バー形成インジケーター この強力な MT5 インジケーターは、チャート上で ハンマー(Hammer) と スター・バー(Star Bar) の重要な反転パターンを素早く特定できるツールです。市場の方向性に関係なく、トレンド転換のチャンスを逃さずキャッチできます。 主な機能と利点: 高値/安値の検出 :現在のローソク足を過去 X 本と比較し、信号の正確性を確保 ヒゲとローソク本体の比率調整 :トップ/ボトムのヒゲは本体の X 倍以上で、ノイズを排除 逆ヒゲ確認 :反対側のヒゲが信号ヒゲの X 倍以上で、取引信頼度を向上 通知機能 :プッシュ通知やチャート上のコメントで重要なシグナルを見逃さない 推奨時間足 :H4 以上の長めの時間枠で安定したシグナルを提供 すべてのトレーダー向け :初心者は簡単に使用可能、上級者は戦略に合わせてカスタマイズ可能 再描画なし :一度表示されたシグナルは固定、信頼できる分析をサポート このインジケーターを使用することで、市場の反転ポイントを事前に把握し、最適なエントリーとエグジットを設定できます。デイトレードからスイングトレードま
FREE
Trading Session Indicator The Trading Session Indicator visualizes the high and low points as well as the start and end times of the Asian, London, and New York trading sessions directly on your chart. Features: Visualization of major trading sessions Highlighting of high and low points Display of start and end times for each session Customizable session times User-friendly and efficient Customizability: Each trading session (Asian, London, New York) can be individually customized to match speci
FREE
Little useful tool - you manually select range on chart by dragging vertical blue lines and indicator shows support and resistance zones for this range and extends them outside of selected range.  Useful for: * Range trading * Range breakout * Range breakout & retest * Good entry during pullback in trend phase when previous high is retested * Good for scalping on short timeframes * Good for trades on longer timeframes around selected important zones like daily high or low
FREE
CDS SR Fractal Level: Dynamic Fractal Support & Resistance with Breakout Alerts Overview Tired of manually drawing and updating support and resistance lines? The CDS SR Fractal Level  indicator automates this crucial process by intelligently identifying key market levels based on fractals. This lightweight and efficient tool allows you to focus on your trading strategy, not on chart setup, ensuring you never miss an important price level or a potential breakout. This indicator is clean, simple,
FREE
Norion Candle Range Levels is a professional indicator designed to highlight the maximum and minimum price range of a user-defined number of candles. By selecting a specific candle count, the indicator automatically calculates and plots the highest high and lowest low of that range, providing a clear visual reference of recent market structure, consolidation zones, and potential breakout areas. This tool is especially useful for traders who operate using price action, range expansion, and liquid
FREE
Main purpose:   "Pin Bars"   is designed to automatically detect pin bars on financial market charts. A pin bar is a candle with a characteristic body and a long tail, which can signal a trend reversal or correction. How it works:   The indicator analyzes each candle on the chart, determining the size of the body, tail and nose of the candle. When a pin bar corresponding to predefined parameters is detected, the indicator marks it on the chart with an up or down arrow, depending on the directi
FREE
Rule Plotter Scanner
Francisco Gomes Da Silva
5 (1)
すべてのストラテジーをスキャンし、選択したアクティブのすべてのタイムフレームでの買いポイントと売りポイントを表示するスキャナーをお持ちになったことはありますか? それがまさにこのスキャナーが行うことです。このスキャナーは、 Rule Plotter: プログラミング不要のストラテジー作成ツール で作成した買いシグナルと売りシグナルを表示し、さまざまなアクティブとタイムフレームで実行するために設計されています。 Rule Plotterのデフォルトストラテジーは陽線と陰線だけです。つまり、Rule Plotter内に何のストラテジーも描かない場合、このスキャナーは選択したアクティブのすべてのタイムフレームでのキャンドルの色を表示します。キャンドルが陰線の場合は赤で、陽線の場合は緑です。 好きなだけストラテジーを作成 標準のストラテジーに制限されることはありません。Metatraderで利用可能なすべての指標を使用して従来のストラテジーを構築するか、お好きな指標を使用してカスタムストラテジーを構築できます。 このスキャナーはRule Plotterが提供するもののほんの一部であり、Rule
FREE
Three Bar Break is based on one of Linda Bradford Raschke's trading methods that I have noticed is good at spotting potential future price volatility. It looks for when the 1st bar's High is less than the 3rd bar's High as well as the 1st bar's Low to be higher than the 3rd bar's Low. This then predicts the market might breakout to new levels within 2-3 of the next coming bars. It should be used mainly on the daily chart to help spot potential moves in the coming days. Features : A simple meth
FREE
The Choppery notifier is an indicator that has been developed and tested for the purpose of alerting you that a candle is about to form, it takes away the trouble of having to play a guessing game as to when next a candle will form after a trend, therefore most of the time it eliminates the thought of having to predict which direction price will begin to move at. This indicator can be used in any timeframe, a notification will be sent out to you via email when price moves. you can start at a min
FREE
QuantumAlert Stoch Navigator is a free indicator available for MT4/MT5 platforms, its work is to provide "alerts" when the market is inside "overbought and oversold" regions in the form of "buy or sell" signals. This indicator comes with many customization options mentioned in the parameter section below, user can customise these parameters as needful. Join our   MQL5 group , where we share important news and updates. You are also welcome to join our private channel as well, contact me for the p
FREE
The Advanced Pivot Point Indicator is a powerful tool designed to help traders identify key support and resistance levels in the market. This versatile indicator offers a customizable and user-friendly interface, allowing traders to select from five different pivot point calculation methods: Floor, Woodie, Camarilla, Tom DeMark, and Fibonacci. With its easy-to-read lines for pivot points (PP), support (S1, S2, S3, S4), and resistance (R1, R2, R3, R4) levels, the Advanced Pivot Point Indicator pr
FREE
boom Spike Mitigation Zone Pro A professional spike pattern indicator built for synthetic traders who scalp and swing Boom 500/300/1000/600/900with precision.  This indicator: Detects powerful 3-candle spike formations (Spike → Pullback → Spike) Automatically draws a clean box around the pattern Marks the entry price from the middle candle Extends a horizontal mitigation line to guide perfect sniper entries Automatically deletes & redraws the line once price touches it (mitiga
FREE
OWL Divergence Scanner
Gabriel Alejandro Sanchez Lledo
OWL Divergence Scanner is a professional-grade multi-timeframe, multi-symbol divergence detection tool for MetaTrader 5. Built with precision and speed in mind, this advanced scanner automatically identifies Regular and Hidden divergences across your favorite oscillators, helping traders spot high-probability trend reversal and continuation setups before the market moves. Key Features Powerful Divergence Detection — Accurately detects both bullish and bearish regular divergences (for potential r
FREE
Forex Time
Yuriy Ponyatov
5 (1)
An indicator for visualizing time ranges of key trading sessions: Asian, European, and American. The indicator features functionality for setting the start and end times of each trading session, as well as an adjustable timezone of the trading server. The main advantages of the indicator include the ability to operate with minimal CPU load and memory usage. Moreover, it offers the option to specify the number of displayed historical days, providing the user with flexible market dynamics analysis
FREE
This Mt5 Indicator Signals when there is two opposite direction bars engulfed by current bar.  has a recent Exponential Moving Average Cross and past bar was oversold/bought Expert Advisor Available in Comments  Free Version Here : https://www.mql5.com/en/market/product/110114?source=Site&nbsp ; Full Alerts for mt5 terminal , phone , email, print to file, print to journal  Buy Signal ( blue line ) Past ema cross ( set at 30 bars back ) Past bar rsi is oversold ( level 40  ) Engulfing bar closes
FREE
NOTE: Turn Pattern Scan ON This indicator identifies Swing Points, Break of Structure (BoS), Change of Character (CHoCH), Contraction and Expansion patterns which are plotted on the charts It also comes with Alerts & Mobile notifications so that you do not miss any trades. It can be used on all trading instruments and on all timeframes. The non-repaint feature makes it particularly useful in backtesting and developing profitable trading models. The depth can be adjusted to filter swing points.
FREE
FX Clock
Abderrahmane Benali
FXClock – Professional Clock Indicator for Traders Please leave a 5 star rating if you like this free tool! Thank you so much :) The FXClock indicator is a practical and simple tool that displays time directly on your trading platform, allowing you to track multiple key pieces of information at the same time. It is specially designed to help traders synchronize their trading with market hours and global sessions. Key Features: Displays the broker server time with precision. Displays your local c
FREE
This indicator marks the 50% mark of each candle. It will help you make profitable scalping trades. If the next candle opens above the 50% mark of the previous candle, you should open a BUY position, and if the next candle opens below the 50% mark of the previous candle, you should open a SELL position. This strategy is very profitable. To make the most of it, keep an eye on the candle contexts on the left. Good luck!
FREE
Japanese candlestick analysis has been in existence for hundreds of years and is a valid form of technical analysis. Candlestick charting has its roots in the militaristic culture that was prevalent in Japan in the 1700s. One sees many terms throughout the Japanese literature on this topic that reference military analogies, such as the Three White Soldiers pattern Unlike more conventional charting methods, candlestick charting gives a deeper look into the mind-set of investors, helping to establ
FREE
Inside Bar Radar
Flavio Javier Jarabeck
4.67 (6)
The Inside Bar pattern is a very well known candlestick formation used widely by traders all over the world and in any marketplace. This approach is very simple and adds a little confirmation candle, so it adds a third past candlestick to the count to confirm the direction of the move (upward or downward). Obviously, there is no power on this candlestick formation if the trader has no context on what it is happening on the market he/she is operating, so this is not magic, this "radar" is only a
FREE
価格波形パターン MT5へようこそ --(ABCD パターン)-- ABCD パターンは、テクニカル分析の世界で強力で広く使用されている取引パターンです。 これは、トレーダーが市場での潜在的な売買機会を特定するために使用する調和的な価格パターンです。 ABCD パターンを使用すると、トレーダーは潜在的な価格変動を予測し、いつ取引を開始および終了するかについて十分な情報に基づいた決定を下すことができます。 EA バージョン:     Price Wave   EA MT5 MT4バージョン:   Price Wave Pattern MT4 特徴 :  ABCDパターンの自動検出。 強気パターンと弱気パターン。  任意のシンボルと任意の時間枠で機能します。 主要なレベルと価格目標。 カスタマイズ可能な設定と繊維レベルの調整。 アラートと通知。 今後  さらに多くの 機能が追加される  予定です 。
FREE
SMC Signals  (BOS/CHoCH + ADR TP/SL Zones)  SMC Signals  is a free Smart Money Concepts (SMC) market structure indicator for MetaTrader 5 that automatically detects: BOS (Break of Structure) CHoCH (Change of Character) Swing High / Swing Low pivots Trade entry levels and projected targets The indicator also calculates ADR(10) (Average Daily Range) and automatically plots: Entry level Stop Loss (SL) Take Profit 1 (TP1) Take Profit 2 (TP2) A built-in dashboard displays live performance statistic
FREE
FlatBreakout MT5 (Free Version) Flat Range Detector and Breakout Panel for MT5 — GBPUSD Only FlatBreakout MT5   is the free version of the professional FlatBreakoutPro MT5 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 MT5 and test breakout signals on a live market without limitations. Who Is This Product For? For traders who prefer to trade breakout of
FREE
WaPreviousCandleLevelsMT5
Wachinou Lionnel Pyrrhus Sovi Guidi
!!!This Free Version just works on EURUSD!!! Wa Previous Candle Levels MT5 shows the previous candle levels, it shows the previous candle Open High Low Close levels (OHLC Levels) in different time frame. It's designed to help the trader to analyse the market and pay attention to the previous candle levels in different time frame.  We all know that the OHLC Levels in Monthly, Weekly and Daily are really strong and must of the time, the price strongly reacts at those levels. In the technical anal
FREE
MT5 Enveloping Pattern Detector: Your competitive advantage in trading Are you looking for a tool to help you accurately identify the best trading opportunities in the forex market? Our Engulfing Pattern Detector provides you with a highly reliable buy or sell signal, based on one of the most recognized and effective Japanese candlestick patterns: the engulfing pattern. With an average success rate of 70%, this indicator will allow you to make safer and more profitable investment decisions. Don'
FREE
Cybertrade Keltner Channels - MT5 Created by Chester Keltner, this is a volatility indicator used by technical analysis. It is possible to follow the trend of financial asset prices and generate support and resistance patterns. In addition, envelopes are a way of tracking volatility in order to identify opportunities to buy and sell these assets. It works on periods longer than the period visible on the chart. All values ​​are available in the form of buffers to simplify possible automations.
FREE
BarX — 特定のローソク足の高値・安値を示すインジケーター BarX は、 ユーザーが指定した日足の特定のローソク足の高値と安値を自動的に強調表示 するテクニカルインジケーターです(例: ローソク足 0 は 市場オープン後の最初のローソク足 を表します)。 このツールは、 サポート、レジスタンス、ブレイクアウト、または反転 といった固定価格レベルを利用するトレーダーにとって特に有用です。これらのポイントをチャート上に視覚的にマークすることで、 BarX はテクニカル分析を容易にし 、市場の読みを高め、 迅速かつ客観的な判断 を支援します。 複数の時間足に対応 軽量、高速、使いやすい 日次オープン時の挙動や特定時間のパターンに基づく戦略に最適 日々のトレードに精度と明瞭さをもたらすために、 BarX をご活用ください。
FREE
Risk5Percent is a custom indicator for MetaTrader 5 designed to help you manage your risk exposure precisely. By entering the desired risk percentage and the number of lots used, it calculates and displays the corresponding price level on the chart that represents your maximum anticipated loss (e.g., 5%), automatically considering contract and tick size for the selected instrument. Key Features: Custom settings for trade direction (long/short), risk percentage, and lot size. Automatic adjus
FREE
White Crow Indicator by VArmadA A simple yet powerful  candle analysis based indicator using the White Soldiers & Crow patterns. Works with timeframes 1H and higher and tested on all major pairs. Pay attention to the signal: An arrow indicating a long or short entry. How It Works: Arrows indicate a ongoing trend. After multiple bullish or bearish candles in a row the chances for another candle towards that trend is higher. Instructions: - Crow Count: Set the number of candles that need to su
FREE
Girassol Sunflower MT5 Indicator
Saullo De Oliveira Pacheco
3.86 (7)
This is the famous Sunflower indicator for Metatrader5. This indicator marks possible tops and bottoms on price charts. The indicator identifies tops and bottoms in the asset's price history, keep in mind that the current sunflower of the last candle repaints, as it is not possible to identify a top until the market reverses and it is also not possible to identify a bottom without the market stop falling and start rising. If you are looking for a professional programmer for Metatrader5, please
FREE
このプロダクトを購入した人は以下も購入しています
SuperScalp Pro
Van Minh Nguyen
4.57 (21)
SuperScalp Pro – 高度なマルチフィルタースキャルピングインジケーターシステム SuperScalp Pro は、クラシックな Supertrend と複数のインテリジェント確認フィルターを組み合わせた高度なスキャルピングインジケーターです。M1 から H4 まで複数の時間足で効率的に動作し、XAUUSD、BTCUSD、主要 Forex 通貨ペア向けに最適化されています。 このインジケーターは明確な Buy / Sell シグナルを提供し、ATR に基づいてエントリー価格、Stop Loss、Take Profit を自動計算します。Fibonacci Take Profit 機能により、重要な価格帯で早期決済し、到達時に通知を送信します。 初期設定では Fibonacci Take Profit が有効化されており、より安定した取引体験を重視しています。チャートに適用するだけですぐ利用可能です。上級者向けに、すべてのパラメータは自由にカスタマイズできます。 EMA、RSI、ADX、Volume、VWAP、Bollinger Bands、MACD Divergence な
このインジケーターを購入された方には、以下の特典を 無料 で提供しています: 各トレードを自動で管理し、ストップロスとテイクプロフィットを設定し、戦略ルールに基づいてポジションを決済する補助ツール 「Bomber Utility」 様々な銘柄に合わせたインジケーターの設定ファイル(セットファイル) 「最小リスク」、「バランスリスク」、「待機戦略」 の3つのモードで使用できる Bomber Utility 用の設定ファイル このトレーディング戦略をすぐに導入・設定・開始できる ステップバイステップのビデオマニュアル ご注意: 上記の特典を受け取るには、MQL5のプライベートメッセージシステムを通じて販売者にご連絡ください。 オリジナルのカスタムインジケーター 「Divergence Bomber(ダイバージェンス・ボンバー)」 をご紹介します。これは、MACDのダイバージェンス(乖離)戦略に基づいた 「オールインワン」型のトレーディングシステム です。 このテクニカルインジケーターの主な目的は、価格とMACDインジケーターの間に発生するダイバージェンスを検出 し、将来の価格の動きを示す
Entry In The Zone and SMC Multi Timeframe is a real-time 2-in-1 market analysis tool that combines market structure analysis and a No Repaint BUY / SELL signal system into a single indicator, built on Smart Money Concepts (SMC) — a widely adopted framework used by professional traders to understand market structure. This indicator helps you see the market more clearly, make decisions based on structure rather than guesswork, and focus on high-probability zones where price is more likely to react
Azimuth Pro
Ottaviano De Cicco
5 (6)
Azimuth Pro V2:MT5向けシンセティック・フラクタル構造分析と確認済みエントリー 概要 Azimuth Pro は Merkava Labs によるマルチレベルスイング構造インジケーターです。4つのネストされたスイングレイヤー、スイングアンカーVWAP、ABCパターン検出、3タイムフレーム構造フィルタリング、そして確定バーでの確認済みエントリー — 1つのチャートで、ミクロスイングからマクロサイクルまでを網羅するワークフロー。 これはブラインドシグナル製品ではありません。ロケーション、コンテキスト、タイミングを重視するトレーダーのための構造ファーストワークフローです。 V2発売記念オファー — Azimuth Pro V2をUSD 399で(次の100本)。最終価格:USD 499。 1. V2での変更点 シンセティック・マルチタイムフレームエンジン 上位タイムフレーム分析をMeridian Proと同じ独自のシンセティックアーキテクチャで一から再構築。よりクリーンなHTFコンテキスト、安定したライブ動作、従来のMTF同期問題なし。シンセティックエンジンは 固定比率タ
Gold Entry Sniper – ゴールドスキャルピング&スイングトレード用プロフェッショナル多時間足ATRダッシュボード Gold Entry Sniper は、XAUUSDや他の銘柄向けに正確な 売買シグナル を提供する、MetaTrader 5用の高度なインジケーターです。 ATRトレーリングストップロジック と 多時間足分析ダッシュボード を搭載し、スキャルピングからスイングトレードまで対応します。 主な特徴と利点 多時間足シグナル分析 – M1、M5、M15 のトレンドを同時表示。 ATRベースのトレーリングストップ – ボラティリティに応じて動的に調整。 プロ仕様のチャートダッシュボード – シグナル状況、ATRレベル、回帰線、売買方向を表示。 明確な売買マーカー – 自動矢印とテキストラベル。 エグジットアラートとトレード管理 – 利益確定のための自動検出。 完全カスタマイズ可能 – パネル位置、色、フォント、ATR/回帰設定を調整可能。 ゴールド(XAUUSD)に最適化 – M1〜M15のスキャルピングに最適、FXや指数、暗号資産にも対応。 Gold Entry
Quantum TrendPulse を ご紹介します。これは、   SuperTrend   、   RSI   、および Stochastic のパワーを 1 つの包括的なインジケーターに組み合わせて、取引の可能性を最大限に引き出す究極の取引ツールです。精度と効率を求めるトレーダー向けに設計されたこのインジケーターは、市場のトレンド、勢いの変化、最適なエントリー ポイントとエグジット ポイントを自信を持って特定するのに役立ちます。 主な特徴: SuperTrend 統合: 現在の市場動向に簡単に追従し、収益性の波に乗ることができます。 RSI精度: 買われすぎと売られすぎのレベルを検出し、市場の反転のタイミングに最適で、SuperTrendのフィルターとして使用されます。 確率的精度: 確率的振動を活用して、変動の激しい市場で隠れたチャンスを見つけます。SuperTrend のフィルターとして使用されます。 マルチタイムフレーム分析:   M5 から H1 または H4 まで、さまざまなタイムフレームで市場を常に把握します。 カスタマイズ可能なアラート: カスタム取引条件が満たされ
Power Candles – あらゆる市場に対応した強度ベースのエントリーシグナル Power Candles は、Stein Investments が長年培ってきた強度分析を価格チャート上に直接反映します。価格だけに反応するのではなく、各ローソク足は実際の市場の強さに基づいて色分けされ、モメンタムの蓄積、強度の加速、明確なトレンド転換を瞬時に把握できます。 すべての市場に共通する単一ロジック Power Candles は すべての取引シンボル で自動的に動作します。現在のシンボルが Forex か非 Forex 市場かを自動判別し、内部で適切な強度モデルを適用します。 Forex および Gold :FX Power のデルタ値を使用(絶対値レンジ最大 100) 指数、暗号資産、CFD :IX Power の強度値を使用(絶対値レンジ最大 50) 必要な強度計算は Power Candles に直接組み込まれています。ローソク足のカラーリングやシグナルロジックに、追加のインジケーターは不要です。 価格ノイズではなく「強度状態」 各ローソク足は、以下の 9 つの明確に定義された強
Gann Made Easy   は、ミスター・ギャンの理論を使用した取引の最良の原則に基づいた、プロフェッショナルで使いやすい外国為替取引システムです。 W・D・ガン。このインジケーターは、ストップロスとテイクプロフィットレベルを含む正確な買いと売りのシグナルを提供します。 PUSH通知を利用して外出先でも取引可能です。 ご購入後、取引方法の説明と優れた追加インジケーターを無料で入手するには、私にご連絡ください! おそらく、ギャンの取引手法についてはすでに何度も聞いたことがあるでしょう。通常、ギャンの理論は初心者のトレーダーだけでなく、すでにある程度の取引経験がある人にとっても非常に複雑なものです。なぜなら、ギャンの取引手法は理論的にはそれほど簡単に適用できるものではないからです。私はその知識を磨き、最良の原則を私の外国為替インジケーターに組み込むために数年を費やしました。 このインジケーターは非常に簡単に適用できます。必要なのは、それをチャートに添付し、簡単な取引推奨事項に従うだけです。このインジケーターは常に市場分析の仕事を行い、取引の機会を探します。適切なエントリーポイントを検
OmniSync Projection
Antonio-alin Teculescu
5 (1)
Chronos Fractal Engine is an innovative price projection indicator for MetaTrader 5, designed to transform your technical analysis by intelligently identifying and projecting historical price patterns. Built upon an advanced correlation algorithm and the fractal principles of the market, this powerful tool visualizes potential future price movements, giving you a unique edge in your trading decisions. What is Chronos Fractal Engine? At its core, the Chronos Fractal Engine employs a sophisticat
このインジケーターを購入すると、プロ仕様のトレードマネージャーを無料で差し上げます。 まず第一に、このトレーディングシステムがノンリペイント、ノンリドロー、ノンラグのインジケーターであることを強調する価値がある。これにより、手動取引とロボット取引の両方に理想的なものになっています。 オンラインコース、マニュアル、プリセットのダウンロード。 「スマートトレンドトレーディングシステム MT5」は、新規および経験豊富なトレーダー向けにカスタマイズされた包括的なトレーディングソリューションです。10以上のプレミアムインジケーターを組み合わせ、7つ以上の堅実なトレーディング戦略を備えており、多様な市場状況に対応する多目的な選択肢となっています。 トレンドフォロー戦略:トレンドを効果的に乗り越えるための正確なエントリーとストップロス管理を提供します。 リバーサル戦略:潜在的なトレンドの反転を特定し、トレーダーがレンジ相場を活用できるようにします。 スキャルピング戦略:高速で正確なデイトレードおよび短期取引のために設計されています。 安定性:すべてのインジケーターはノンリペイント、ノンリドロー、ノ
ご紹介     Quantum Breakout PRO は 、ブレイクアウト ゾーンの取引方法を変革する画期的な MQL5 インジケーターです。 13年以上の取引経験を持つ経験豊富なトレーダーのチームによって開発されました。     クォンタム ブレイクアウト プロ   は、革新的でダイナミックなブレイクアウト ゾーン戦略により、あなたのトレーディングの旅を新たな高みに押し上げるように設計されています。 クォンタム ブレイクアウト インジケーターは、5 つの利益ターゲット ゾーンを備えたブレイクアウト ゾーン上のシグナル矢印と、ブレイクアウト ボックスに基づいたストップロスの提案を提供します。 初心者トレーダーにもプロのトレーダーにも適しています。 量子EAチャネル:       ここをクリック 重要!購入後、インストールマニュアルを受け取るためにプライベートメッセージを送ってください。 推奨事項: 時間枠: M15 通貨ペア: GBPJPY、EURJPY、USDJPY、NZDUSD、XAUUSD アカウントの種類: ECN、Raw、またはスプレッドが非常に低い R
優れたテクニカルインジケーター「Grabber」をご紹介します。これは、すぐに使える「オールインワン」トレーディング戦略として機能します。 ひとつのコードに、市場のテクニカル分析ツール、取引シグナル(矢印)、アラート機能、プッシュ通知が強力に統合されています。 このインジケーターを購入された方には、以下の特典を無料で提供します: Grabberユーティリティ:オープンポジションを自動で管理するツール ステップバイステップのビデオマニュアル:インジケーターのインストール、設定、取引方法を解説 カスタムセットファイル:インジケーターをすばやく自動設定し、最大限の成果を出すための設定ファイル 他の戦略はもう忘れてください!Grabberだけが、あなたを新たなトレードの高みへと導いてくれるのです。 Grabber戦略の主な特徴: 推奨タイムフレーム:M5〜H4 対応通貨ペア・資産:どれでも使用可能ですが、私が実際に検証した以下を推奨します(GBPUSD、GBPCAD、GBPCHF、AUDCAD、AUDUSD、AUDSGD、AUDCHF、NZDUSD、NZDCAD、EURCAD、EURUSD、E
FX Trend NG:次世代マルチマーケット・トレンドインテリジェンス 概要 FX Trend NG は、複数の時間足に対応したプロフェッショナル向けトレンド分析およびマーケット監視ツールです。 市場全体の構造を数秒で把握することができます。 複数のチャートを切り替える必要はありません。どの銘柄がトレンド中なのか、どこでモメンタムが弱まっているのか、そしてどの時間足で強い整合性があるのかを瞬時に確認できます。 ローンチ特別オファー – FX Trend NG を $30(6ヶ月) または $80 永久ライセンス でご利用いただけます。 すでに Stein Investments のユーザーですか? -> メッセージを送信 して、プライベートグループへアクセスしてください。 セットアップや詳細情報が必要ですか? -> Stein Investments 公式ページ をご覧ください。 1. FX Trend NG が他と異なる理由 3ステート・トレンドロジック ― Buy と Sell だけではない • 多くのインジケーターは Buy または Sell の2状態のみを表示します。
まず正直に言いましょう。 どんなインジケーターも、それ単体であなたを利益化させることはできません。もしそう言う人がいるなら、それは夢を売っているだけです。完璧な売買シグナル(矢印)を表示するインジケーターは、いくらでも“完璧に見せる”ことができます。正しい過去の区間を拡大して、勝ちトレードだけを切り取ればいいだけです。私たちはそれをしません。 SMC Intraday Formula はツールです。 市場構造を読み取り、最も高い確率の価格ゾーンを特定し、今この瞬間のスマートマネーの痕跡をシンプルな言葉で正確に示します。最終判断はあなたが行います。トレードを実行するのもあなたです。しかし今は「希望」ではなく「精度」でエントリーできます。 私たちはこのインジケーターを、ゴールド(XAUUSD)および主要FX通貨ペアで約3年間、日々のスキャルピングに使用してきました。M1、M5、M15、M30の主要ツールです。これは未来を予測しようとするのではなく、今まさに形成されている高確率セットアップを示し、その理由を説明します。 他のすべてのインジケーターと何が違うのか? ほとんどのトレーディングイ
あなたのシンボルでどの戦略が実際に機能するか確認しましょう - リアルマネーをリスクにさらす前に。 Power Barは、あらゆるシンボルとあらゆるタイムフレームで 極端な価格バー を検出し、3つの異なるトレード戦略を即座にバックテストします。勝率、プロフィットファクター、損益を並べて比較できます。すべてが1つのインタラクティブなパネルに集約されています。 推測なし。カーブフィッティングなし。データだけです。 Power Barが特別な理由 ほとんどのインジケーターはシグナルを出すだけで、それが機能するかどうかは推測に任されます。Power Barはさらに先を行きます - すべてのシグナルを 3つの戦略 に対してテストし、統計を表示します。FlipFlop、Momentum、Reversalをワンクリックで切り替え、数値が即座に変化するのを確認できます。 FlipFlop - 常にポジションを保有。シグナルでエントリーし、反対シグナルでイグジット。当社のリサーチでは、US30、US500、DAXなどのトレンドのあるインデックスで最も効果的です。 Momentum - シグナルの方向に
CGE Trading Suite
Carl Gustav Johan Ekstrom
5 (2)
Institutional-Grade Analytics for MT5 C GE Trading Suite delivers the analytical edge typically reserved for professional trading desks. The platform integrates a full suite of analytical tools into one seamless workflow: dynamic grid mapping, liquidity behavior analysis, ECM, trend lines, MIDAS, trade cycles, and directional channel projections. Together, these provide a unified view of market structure and momentum. Directional clarity is further enhanced by the capital flow index, which meas
まず第一に、この取引インジケーターは再描画されず、再描画されず、遅延しないことを強調する価値があります。これにより、手動取引とロボット取引の両方に理想的なものになります。 ユーザーマニュアル:設定、入力、戦略。 アトミックアナリストは、価格の強さとモメンタムを利用して市場でより良いエッジを見つけるためのPA価格アクションインジケーターです。ノイズや誤ったシグナルを除去し、取引ポテンシャルを高めるための高度なフィルターを備えています。複雑なインジケーターの複数のレイヤーを使用して、アトミックアナリストはチャートをスキャンし、複雑な数学的計算をシンプルなシグナルと色に変換します。これにより、どのような初心者トレーダーでも理解して使用し、一貫した取引の決定を行うことができます。 「アトミックアナリスト」は、新規および経験豊富なトレーダー向けにカスタマイズされた包括的な取引ソリューションです。プレミアムインジケーターとトップノッチの機能を1つの取引戦略に組み合わせ、すべてのタイプのトレーダーにとって汎用性のある選択肢にします。 デイリートレーディングとスキャルピング戦略:高速で正確なデイ
トレンド スクリーナー インジケーターでトレンド取引の力を解き放ちます。ファジー ロジックと複数通貨システムを活用した究極のトレンド取引ソリューションです。 ファジー ロジックを活用した革新的なトレンド インジケーターである Trend Screener を使用して、トレンド取引を向上させます。 これは、13 を超えるプレミアム ツールと機能、および 3 つの取引戦略を組み合わせた強力なトレンド追跡インジケーターであり、Metatrader をトレンド アナライザーにする多用途の選択肢となります。 期間限定オファー : トレンド スクリーナー インジケーターは、わずか 100 ドルで生涯ご利用いただけます。 (元の価格 50$ ) (オファー延長) Trend Screener の 100% 非再描画精度の揺るぎない精度を体験して、取引の決定が過去の価格変動の影響を受けないようにしてください。 マルチタイムフレームおよびマルチ通貨機能の多用途性を解放し、比類のない自信を持って外国為替、商品、暗号通貨、インデックスの世界を取引できるようにします。 Trend Screener の包括的な
FX Power: 通貨の強弱を分析して、より賢い取引を実現 概要 FX Power は主要通貨と金の実際の強弱をあらゆる市場状況で理解するための必須ツールです。強い通貨を買い、弱い通貨を売ることで、 FX Power は取引の意思決定を簡素化し、高い確率の取引機会を見出します。トレンドを追従する場合でも、極端なデルタ値を使用して反転を予測する場合でも、このツールはあなたの取引スタイルに完全に適応します。ただ取引するだけではなく、 FX Power で賢く取引をしましょう。 1. なぜ FX Power がトレーダーにとって非常に有益なのか 通貨と金のリアルタイム強弱分析 • FX Power は主要通貨と金の相対的な強弱を計算し、マーケットダイナミクスに関する明確な洞察を提供します。 • どの資産がリードしているか、または後れを取っているかを監視して、取引するペアを賢く選びましょう。 マルチタイムフレームの包括的なビュー • 短期、中期、長期のタイムフレームで通貨と金の強弱を追跡し、マーケットトレンドに基づいて取引戦略を調整できます。 • スキャルピングからスイングトレード
BTMM State Engine Pro is a MetaTrader 5 indicator for traders who use the Beat The Market Maker approach: Asian session context, kill zone timing, level progression, peak formation detection, and a multi-pair scanner from a single chart. It combines cycle state logic with a built-in scanner dashboard so you do not need the same tool on many charts at once. What it does Draws the Asian session range; session times can follow broker server offset or be set in inputs. Tracks level progression (L
Crystal Heikin Ashi Signals - Professional Trend & Signal Detection Indicator Advanced Heikin Ashi Visualization with Intelligent Signal System for Manual & Automated Trading Final Price: $149 ---------> Price goes up $10 after every 10 sales . Limited slots available — act fast . Overview Crystal Heikin Ashi Signals is a professional-grade MetaTrader 5 indicator that combines pure Heikin Ashi candle visualization with an advanced momentum-shift detection system. Designed for both manual traders
Berma Bands
Muhammad Elbermawi
5 (8)
Berma Bands (BBs) インジケーターは、市場のトレンドを特定して活用したいトレーダーにとって貴重なツールです。価格と BBs の関係を分析することで、トレーダーは市場がトレンド段階にあるか、レンジ段階にあるかを判断できます。 詳細については、[ Berma Home Blog ] をご覧ください。 バーマ バンドは、上部バーマ バンド、中部バーマ バンド、下部バーマ バンドの 3 つの異なる線で構成されています。これらの線は価格の周りにプロットされ、全体的な傾向に対する価格の動きを視覚的に表します。これらのバンド間の距離から、ボラティリティや潜在的な傾向の反転についての洞察を得ることができます。 バーマ バンドの線がそれぞれ離れると、市場が横ばいまたはレンジ相場の期間に入っていることを示すことがよくあります。これは、明確な方向性の偏りがないことを示しています。トレーダーは、これらの期間中にトレンドを特定するのが難しいと感じる可能性があり、より明確なトレンドが出現するまで待つ場合があります。 バーマ バンドの線が 1 本の線に収束すると、強いトレンド環境の兆候となること
Meridian Pro
Ottaviano De Cicco
5 (1)
Meridian Pro:MT5用プロフェッショナル・マルチタイムフレーム・トレンドマトリックス 概要 Meridian Pro は Merkava Labs が開発したマルチタイムフレーム・トレンドマトリックスで、方向性の状態、強度、モメンタムの状況、マトリックスの合意をひとつのコンパクトなパネルに集約します。ひとつのアダプティブエンジンがM1からW1まで一貫して適用されます。シンボルごとの調整は不要。インジケーターの積み重ねも不要。すべてのアセットとすべてのタイムフレームをカバーするひとつの構造化された読み取りです。 発売キャンペーン — Meridian Proを USD 99 (導入価格)で入手。通常価格:USD 149 。 1. Meridian Proが他と異なる理由 ひとつのエンジン、バラバラなインジケーターのダッシュボードではない 多くのMTFダッシュボードは、タイムフレームごとに生のインジケーター値を繰り返すだけです。Meridian Proはマトリックス全体でひとつのアダプティブ・トレンドエンジンを使用するため、パネルの各行が同じ構造化フレームワークから導出されます
Bill Williams Advanced is designed for automatic chart analysis using Bill Williams' "Profitunity" system. The indicator analyzes four timeframes at once. Manual (Be sure to read before purchasing) Advantages 1. Analyzes the chart using Bill Williams' "Profitunity" system. Signals are displayed in a table in the corner of the screen and on the price chart. 2. Finds all known AO and AC signals, as well as zone signals. Equipped with a trend filter based on the Alligator. 3. Finds "Divergence Bar
Auto Optimized Parabolic RSI: 高度な3Dモメンタムエンジン ほとんどのリテール向けインジケーターは、市場のボラティリティが変化した瞬間に破綻する静的な入力値に依存しているため、失敗に終わります。Auto Optimized Parabolic RSIは、自らの数学的優位性を継続的に再計算することで「インジケーターの陳腐化」問題を解決し、機関投資家レベルの定量的適応力をMT5ターミナルに直接もたらします。 最大の強み: カスタムインメモリ3D最適化 標準的な自動最適化ツールは、インジケーターの呼び出しで端末に過負荷をかけるため、頻繁にMT5プラットフォームをフリーズさせます。本ツールは、このボトルネックを完全に回避しています。RAMベースのカスタムネイティブ計算機を内蔵した内部エンジンは、チャートを読み込んだりタイムフレームを変更したりするたびに、超高速の3Dグリッド探索を実行します。RSI期間(頻度)、SARステップ(加速度)、SAR最大値(制限速度)を同時にスイープし、プラットフォームを遅延させることなく、数万通りものパラメーターの組み合わせを絶対的なミ
Market Structure Order Block Dashboard MT5 は、チャート上でマーケットストラクチャーと主要な価格反応ゾーンを直接読み取りたいトレーダー向けに設計された MT5 インジケーターです。BOS、ChoCH、Order Blocks、Fair Value Gaps (FVG)、Liquidity、Kill Zones、Volume Profile、そして高速分析のためのコンパクトな dashboard を組み合わせています。 このインジケーターは、マーケットストラクチャー、ICT コンセプト、Smart Money コンセプトを意思決定の基準として使うトレーダー向けに作られています。トレンド継続、反転の可能性、価格の不均衡、流動性ターゲット、重要な注目ゾーンを、より構造的に把握するのに役立ちます。 Version 1.19 では重要な機能が追加されました。 Pending BOS / Pending ChoCH detection です。ローソク足が前回の swing を超えてクローズすると、標準的な swing 確認を待たずに、インジケーターが pe
ARICoin is a powerful trading companion designed to generate high-probability entry signals with dynamic TP/SL/DP levels based on volatility. Built-in performance tracking shows win/loss stats, PP1/PP2 hits, and success rates all updated live. Key Features: Buy/Sell signals with adaptive volatility bands Real-time TP/SL/DP levels based on ATR Built-in MA Filter with optional ATR/StdDev volatility Performance stats panel (Success, Profit/Loss, PP1/PP2) Alerts via popup, sound, push, or email Cust
ARIPoint is a powerful trading companion designed to generate high-probability entry signals with dynamic TP/SL/DP levels based on volatility. Built-in performance tracking shows win/loss stats, PP1/PP2 hits, and success rates all updated live. Key Features: Buy/Sell signals with adaptive volatility bands Real-time TP/SL/DP levels based on ATR Built-in MA Filter with optional ATR/StdDev volatility Performance stats panel (Success, Profit/Loss, PP1/PP2) Alerts via popup, sound, push, or email Cu
SignalTech MT5 is a trading system for EURUSD, USDCHF, USDJPY, AUDUSD, NZDUSD, EURJPY, AUDJPY, NZDJPY, CADJPY H2 and H3 Timeframe.  It can generate signals with Buy/Sell Arrows and Pop-Up/Sound Alerts. Each signal has clear Entry and Stop Loss levels, which should be automatically flagged on the chart, as well as potential Targets 1, 2, and 3. The Entry and TP levels are fixed after the trade is taken. The exit level is dynamic. If there are signs of a potential short-term trend reversal, the
Smart Stop Indicator – チャート上で実現するインテリジェントなストップロス精度 概要 Smart Stop Indicator は、ストップロスを勘や感情ではなく、明確で体系的に設定したいトレーダーのために設計されています。本ツールは、クラシックなプライスアクション(高値更新・安値切り下げ)と最新のブレイクアウト認識ロジックを組み合わせ、次に来るべき論理的なストップレベルを正確に特定します。トレンド相場、レンジ、急速なブレイクアウト局面のいずれであっても、最適な SL ゾーンとその状態(“new”、“broken”、“valid”)をチャート上に直接表示します。さらに今回、SL 距離の %ADR 表示も新たに追加されています。 主な特徴 マーケット構造に基づく自動ストップ配置 • 市場構造とリアルタイムの値動きに基づき、意味のあるストップロスレベルを自動検出します。 スマートなブレイクアウト感知 • 急激な方向転換やブレイクアウトにも柔軟に対応し、早すぎるストップ調整を避けます。 SL %ADR の表示 • ストップロスまでの距離を ADR(Averag
作者のその他のプロダクト
Price Volume Trend (PVT) Oscillator Description:  The PVT Oscillator is a volume indicator that serves as an alternative to the standard On-Balance Volume (OBV). While ordinary volume indicators can be noisy and hard to read, this tool converts volume flow into a clear Histogram Oscillator, similar to a MACD, but for Volume. It is designed to detect first  Trend Reversals and Divergences by analyzing the difference between a Fast and Slow PVT moving average. Why is this better than standard OBV?
FREE
This indicator is an MQL5 port inspired by the "Cyclic Smoothed RSI" concept originally developed by Dr_Roboto and popularized by LazyBear and LuxAlgo on TradingView. The Cyclic Smoothed RSI (cRSI) is an oscillator designed to address the two main limitations of the standard RSI: lag and fixed overbought/oversold levels. By using digital signal processing (DSP) based on market cycles, the cRSI reduces noise without sacrificing responsiveness.  It features Adaptive Bands that expand and contract
FREE
フィルタ:
レビューなし
レビューに返信