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
================================================================================
Önerilen ürünler
Trading Session MT5
Kevin Schneider
3 (1)
Alım Satım Oturumu Göstergesi Alım Satım Oturumu Göstergesi, Asya, Londra ve New York alım satım oturumlarının başlangıç ve bitiş saatleri ile yüksek ve düşük noktalarını doğrudan grafiğinizde gösterir. Özellikler: Ana alım satım oturumlarının görselleştirilmesi Yüksek ve düşük noktaların vurgulanması Her oturumun başlangıç ve bitiş saatlerinin gösterilmesi Özelleştirilebilir oturum saatleri Kullanıcı dostu ve verimli Özelleştirilebilirlik: Her alım satım oturumu (Asya, Londra, New York) belirli
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 MT5
Muammar Cadillac Sungkar
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
Easy SMC Trading
Israr Hussain Shah
4 (1)
Otomatik Risk/Ödül ve Yapı Kırılması (BOS) Tarayıcılı Yapı Trendi Sürüm: 1.0 Genel Bakış Otomatik Risk/Ödül ile Yapı Trendi, Fiyat Hareketine ve Piyasa Yapısına dayanan yatırımcılar için tasarlanmış kapsamlı bir işlem sistemidir. Yüksek olasılıklı işlem kurulumları oluşturmak için düzeltilmiş bir trend filtresini, Swing Noktası tespiti ve Yapı Kırılması (BOS) sinyalleriyle birleştirir. Bu aracın öne çıkan özelliği Otomatik Risk Yönetimidir. Geçerli bir Yapı Kırılması tespit edildiğinde, göste
Rule Plotter Scanner
Francisco Gomes Da Silva
5 (1)
Hiç düşündün mü, tüm stratejileri tarayan ve bu varlığın tüm zaman dilimlerinde alım ve satım noktalarını gösteren bir tarayıcıya sahip olmayı? İşte tam olarak bu tarayıcı bunu yapar. Bu tarayıcı, Rule Plotter: programlama olmadan strateji oluşturucu 'da oluşturduğunuz alım ve satım sinyallerini göstermek ve bunları farklı varlıklarda ve zaman dilimlerinde çalıştırmak için tasarlanmıştır. Rule Plotter'ın varsayılan stratejisi yalnızca yükselen ve düşen mumlardır; yani Rule Plotter içinde herhang
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
Haven FVG Indicator
Maksim Tarutin
5 (8)
Gösterge   Haven FVG   , piyasaları analiz etmek için bir araçtır ve grafikte verimsizlik alanlarını (Fair Value Gaps, FVG) tanımlamanıza olanak tanır, böylece tüccarlara fiyat analizi ve ticari kararlar almak için anahtar seviyeler sağlar. Diğer ürünler ->  BURADA Ana Özellikler: Bireysel renk ayarları: Alış FVG rengi   (Bullish FVG Color). Satış FVG rengi   (Bearish FVG Color). Esnek FVG görselleştirme: FVG aramak için maksimum mum sayısı. FVG bölgelerinin belirli bir bar sayısı kadar ek uzat
FREE
Price direct alert
Dorah Zandile Mahesu
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
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
XbigCandleFibo
Alex Sandro Aparecido
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
WH Price Wave Pattern MT5
Wissam Hussein
4.25 (12)
Fiyat Dalga Modeli   MT5 --(ABCD Modeli)--   hoş geldiniz ABCD modeli, teknik analiz dünyasında güçlü ve yaygın olarak kullanılan bir ticaret modelidir. Tüccarların piyasadaki potansiyel alım ve satım fırsatlarını belirlemek için kullandıkları uyumlu bir fiyat modelidir. ABCD modeliyle, tüccarlar potansiyel fiyat hareketlerini tahmin edebilir ve alım satımlara ne zaman girip çıkacakları konusunda bilinçli kararlar verebilir. EA Sürümü: Price Wave  EA MT5 MT4 Sürümü :   Price Wave Pattern MT4
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
The SMC Market Structure indicator tracks key price action shifts using Smart Money Concepts (SMC), helping traders identify institutional behavior and overall trend direction. It automatically detects and displays: Break of Structure (BOS) – Signals continuation of trend Change of Character (CHOCH) – Indicates potential reversal Swing Highs and Lows – Used to define market structure and directional bias Each structural event is clearly marked on the chart, allowing traders to visualize momentu
FREE
Envolventes con alertas
Juan Manuel Rojas Perez
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
HENRIQUE ARAUJO
BarX — Belirli Mumun En Yüksek ve En Düşük Seviyesini Gösteren Göstergesi BarX , kullanıcı tarafından tanımlanan gün içindeki belirli bir mumun en yüksek ve en düşük seviyelerini otomatik olarak vurgulayan teknik bir göstergedir (örneğin mum 0 , piyasa açılışından sonraki ilk mumu temsil eder). Bu araç, sabit fiyat seviyelerini destek, direnç, kırılım veya dönüş noktası olarak kullanan traderlar için özellikle faydalıdır. Bu noktaları grafikte görsel olarak işaretleyerek, BarX teknik analizi kol
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
This indicator is designed to detect high probability reversal patterns: Double Tops/Bottoms with fake breakouts . This is the FREE version of the indicator: https://www.mql5.com/en/market/product/29957 The free version works only on EURUSD and GBPUSD! Double top and bottom patterns are chart patterns that occur when the trading instrument moves in a similar pattern to the letter "W" (double bottom) or "M" (double top). The patterns usually occur at the end of a trend and are used to signal tren
FREE
Bu ürünün alıcıları ayrıca şunları da satın alıyor
SuperScalp Pro
Van Minh Nguyen
5 (9)
SuperScalp Pro – Gelişmiş Çoklu Filtreli Scalping Gösterge Sistemi SuperScalp Pro, klasik Supertrend ile çok sayıda akıllı onay filtresini birleştiren gelişmiş bir scalping gösterge sistemidir. Gösterge M1’den H4’e kadar tüm zaman dilimlerinde verimli çalışır ve özellikle XAUUSD, BTCUSD ve ana Forex pariteleri için uygundur. Bağımsız bir sistem olarak kullanılabilir veya mevcut ticaret stratejilerine esnek şekilde entegre edilebilir. Gösterge, hız ve yavaş EMA’lar, trend belirleyen üç EMA, EMA e
Bu indikatörü satın alırsanız, Profesyonel Trade Manager’ımı  + EA ÜCRETSİZ olarak alacaksınız. Öncelikle, bu Ticaret Sistemi'nin Non-Repainting, Non-Redrawing ve Non-Lagging Göstergesi olduğunu vurgulamak önemlidir, bu da hem manuel hem de robot ticareti için ideal hale getirir. Online kurs, kılavuz ve ön ayarları indir. "Smart Trend Trading System MT5", yeni ve deneyimli tüccarlar için özelleştirilmiş kapsamlı bir ticaret çözümüdür. 10'dan fazla premium göstergeyi birleştiriyor ve 7'den fazla
FX Trend MT5 NG
Daniel Stein
5 (4)
FX Trend NG: Yeni Nesil Çoklu Piyasa Trend Zekâsı Genel Bakış FX Trend NG , çoklu zaman dilimlerinde çalışan profesyonel bir trend analiz ve piyasa izleme aracıdır. Piyasanın yapısını saniyeler içinde anlamanızı sağlar. Birden fazla grafik arasında geçiş yapmak yerine, hangi enstrümanların trendde olduğunu, momentumun nerede zayıfladığını ve hangi zaman dilimlerinin uyumlu olduğunu anında görebilirsiniz. Lansman Teklifi – FX Trend NG sadece $30 (6 Ay) veya $80 Ömür Boyu Lisans ile edinin. Zate
Market Flow Pro
Gabriele Sabatino
4 (1)
Market Flow Pro Market Flow Pro is an intelligent trading advisor for the MetaTrader 5 platform, designed for automatic trading on financial markets using algorithmic analysis and strict risk management. -Key features: - Fully automatic trading 24/5 - Adaptive trend and momentum entry algorithm -  Built-in risk management - Flexible lot settings (fixed/auto-calculation) - Support for major currency pairs and indices - Optimised for operation on various timeframes  How it works Market
Divergence Bomber
Ihor Otkydach
4.89 (83)
Bu göstergeyi satın alan herkese aşağıdaki ekstra içerikler ücretsiz olarak sunulmaktadır: Her işlemi otomatik olarak yöneten, Stop Loss ve Take Profit seviyelerini ayarlayan ve işlemleri strateji kurallarına göre kapatan özel yardımcı araç: "Bomber Utility" Göstergenin farklı varlıklar üzerinde kullanılmasına yönelik ayar dosyaları (set dosyaları) Bomber Utility için 3 farklı modda kullanım sunan ayar dosyaları: "Minimum Risk", "Dengeli Risk" ve "Bekle-Gör Stratejisi" Bu ticaret stratejisini hı
Entry In The Zone and SMC Multi Timeframe is a real-time market analysis tool developed based on Smart Money Concepts (SMC). It is designed to analyze market structure, price direction, reversal points, and key zones across multiple timeframes in a systematic way. The system displays Points of Interest (POI) and real-time No Repaint signals, with instant alerts when price reaches key zones or when signals occur within those zones. It functions as both an Indicator and a Signal System (2-in-1), c
ARICoins
Temirlan Kdyrkhan
ARICoin is a powerful trading companion designed to generate high-probability entry signals with dynamic TP/SL/DP levels based on volatility. Built-in performance tracking shows win/loss stats, PP1/PP2 hits, and success rates all updated live. Key Features: Buy/Sell signals with adaptive volatility bands Real-time TP/SL/DP levels based on ATR Built-in MA Filter with optional ATR/StdDev volatility Performance stats panel (Success, Profit/Loss, PP1/PP2) Alerts via popup, sound, push, or email Cust
Grabber System MT5
Ihor Otkydach
4.82 (22)
Size mükemmel bir teknik gösterge olan Grabber’ı tanıtıyorum. Bu araç, kullanıma hazır bir “her şey dahil” işlem stratejisi olarak çalışır. Tek bir yazılım kodu içinde güçlü piyasa teknik analiz araçları, işlem sinyalleri (oklar), uyarı işlevleri ve push bildirimleri entegre edilmiştir. Bu göstergeyi satın alan herkes aşağıdaki hediyeleri ücretsiz olarak alır: Açık emirleri otomatik yönetmek için Grabber Yardımcı Aracı Kurulum, yapılandırma ve nasıl işlem yapılacağını adım adım anlatan video kıl
Gold Entry Sniper
Tahir Mehmood
5 (5)
Gold Entry Sniper – Altın Scalping & Swing Trading için Profesyonel Çoklu Zaman Çerçeveli ATR Paneli Gold Entry Sniper , XAUUSD ve diğer enstrümanlar için doğru al/sat sinyalleri veren, ATR Trailing Stop mantığı ve çoklu zaman çerçevesi analizi ile geliştirilmiş gelişmiş bir MetaTrader 5 göstergesidir. Temel Özellikler ve Avantajlar Çoklu Zaman Çerçevesi Analizi – M1, M5, M15 trendlerini tek panelde gösterir. ATR Tabanlı Trailing Stop – Volatiliteye göre dinamik olarak ayarlanır. Profesyonel Gra
Atomic Analyst MT5
Issam Kassas
4.03 (30)
Öncelikle belirtmek gerekir ki bu Ticaret Göstergesi Yeniden Çizim Yapmaz, Gecikmez ve Gecikme Göstermez, bu da hem manuel hem de robot ticareti için ideal hale getirir. Kullanıcı kılavuzu: ayarlar, girişler ve strateji. Atom Analisti, Piyasada Daha İyi Bir Avantaj Bulmak İçin Fiyatın Gücünü ve Momentumunu Kullanan PA Fiyat Hareketi Göstergesidir. Gürültüleri ve Yanlış Sinyalleri Kaldırmaya ve Ticaret Potansiyelini Artırmaya Yardımcı Olan Gelişmiş Filtrelerle Donatılmıştır. Birden fazla katmanl
Quantum TrendPulse
Bogdan Ion Puscasu
5 (22)
SuperTrend   ,   RSI   ve   Stochastic'in   gücünü tek bir kapsamlı göstergede birleştirerek işlem potansiyelinizi en üst düzeye çıkaran nihai işlem aracı olan   Quantum TrendPulse'u   tanıtıyoruz. Hassasiyet ve verimlilik arayan yatırımcılar için tasarlanan bu gösterge, piyasa trendlerini, momentum değişimlerini ve en uygun giriş ve çıkış noktalarını güvenle belirlemenize yardımcı olur. Temel Özellikler: SuperTrend Entegrasyonu:   Güncel piyasa trendlerini kolayca takip edin ve karlılık dalgası
AriX
Temirlan Kdyrkhan
1 (4)
AriX Indicator for MT5 A powerful trend-following and signal-evaluation tool AriX is a custom MT5 indicator that combines Moving Averages and ATR-based risk/reward logic to generate clear buy/sell signals. It visualizes dynamic SL/TP levels, evaluates past trade outcomes, and displays win/loss statistics in a clean on-chart panel. Key features include: Buy/Sell signals based on MA crossovers ATR-based SL/TP1/TP2/TP3 levels with visual lines and labels Signal outcome tracking with real-time stat
Power Candles – Tüm Piyasalar İçin Güce Dayalı Giriş Sinyalleri Power Candles , Stein Investments’ın kanıtlanmış güç analizini doğrudan fiyat grafiğinize taşır. Sadece fiyata tepki vermek yerine, her mum gerçek piyasa gücüne göre renklendirilir. Bu sayede momentum birikimleri, güç hızlanmaları ve net trend geçişleri anında görülebilir. Tüm Piyasalar İçin Tek Mantık Power Candles tüm işlem sembollerinde otomatik olarak çalışır. Gösterge, mevcut sembolün Forex mi yoksa Forex dışı bir piyasa mı old
Game Changer è un indicatore di tendenza rivoluzionario, progettato per essere utilizzato su qualsiasi strumento finanziario, per trasformare il tuo MetaTrader in un potente analizzatore di trend. Funziona su qualsiasi intervallo temporale e aiuta a identificare i trend, segnala potenziali inversioni, funge da meccanismo di trailing stop e fornisce avvisi in tempo reale per risposte tempestive del mercato. Che tu sia un professionista esperto o un principiante in cerca di un vantaggio, questo st
Top indicator for MT5   providing accurate signals to enter a trade without repainting! It can be applied to any financial assets:   forex, cryptocurrencies, metals, stocks, indices .  Watch  the video  (6:22) with an example of processing only one signal that paid off the indicator! MT4 version is here It will provide pretty accurate trading signals and tell you when it's best to open a trade and close it. Most traders improve their trading results during the first trading week with the help of
Smart Stop Indicator – Stop-loss düzeylerini doğrudan grafikte akıllı ve hassas şekilde belirleyin Genel Bakış Smart Stop Indicator, stop-loss seviyesini tahmin ederek veya sezgilere güvenerek değil, net ve sistematik bir şekilde belirlemek isteyen traderlar için özel olarak geliştirilmiştir. Bu araç, klasik price-action mantığını (yükselen tepeler, düşen dipler) modern breakout algılama ile birleştirerek bir sonraki mantıklı stop seviyesini belirler. Trendlerde, yatay piyasalarda veya hızlı k
RFI levels PRO MT5
Roman Podpora
3.67 (3)
Bu gösterge, fiyat dönüş noktalarını ve fiyat geri dönüş bölgelerini doğru bir şekilde gösterir.       Başlıca oyuncular   . Yeni trendlerin nerede oluştuğunu görüyorsunuz ve her işlem üzerinde kontrolü elinizde tutarak, azami hassasiyetle kararlar alıyorsunuz. TREND LINES PRO   göstergesiyle birlikte kullanıldığında maksimum potansiyelini ortaya koyar.  VERSION MT4 Göstergenin gösterdiği şey: Yeni bir trendin başlangıcında aktivasyonla birlikte tersine dönüş yapıları ve tersine dönüş seviyeler
Trend Screener Pro MT5
STE S.S.COMPANY
4.84 (101)
Trend Göstergesi, Trend Alım Satım ve Filtreleme için Çığır Açan Benzersiz Çözüm, Tüm Önemli Trend Özellikleriyle Tek Bir Araç İçinde Yerleştirildi! Forex, emtialar, kripto para birimleri, endeksler ve hisse senetleri gibi tüm sembollerde/araçlarda kullanılabilen %100 yeniden boyamayan çoklu zaman çerçevesi ve Çoklu para birimi göstergesidir. Trend Screener, grafikte noktalarla ok trend sinyalleri sağlayan etkili bir trend trend göstergesidir. Trend analizörü göstergesinde bulunan özellikler: 1.
TREND ÇİZGİLERİ PRO       Piyasanın gerçek yön değiştirdiği noktayı anlamaya yardımcı olur. Gösterge, gerçek trend dönüşlerini ve büyük oyuncuların piyasaya yeniden girdiği noktaları gösterir. Anlıyorsun   BOS hatları   Daha yüksek zaman dilimlerindeki trend değişiklikleri ve önemli seviyeler, karmaşık ayarlar veya gereksiz gürültü olmadan gösterilir. Sinyaller yeniden çizilmez ve çubuk kapandıktan sonra grafikte kalır. MT4 SÜRÜMÜ   -   RFI LEVELS PRO   göstergesiyle   birlikte kullanıldığında m
Order Block Pro (MQL5) – Sürüm 1.0 Yazar: KOUAME N'DA LEMISSA Platform: MetaTrader 5 Açıklama: Order Block Pro , grafiğinizdeki boğa ve ayı emir bloklarını (Order Blocks) otomatik olarak tespit eden gelişmiş bir göstergedir. Konsolidasyon mumlarını ve ardından gelen güçlü impuls mumlarını analiz ederek, fiyatın hızlanabileceği kritik bölgeleri belirler. Bu gösterge, şunları yapmak isteyen traderlar için idealdir: Kesin giriş ve çıkış noktalarını belirlemek Dinamik destek ve direnç bölgelerini t
FX Power MT5 NG
Daniel Stein
5 (31)
FX Power: Daha Akıllı Ticaret Kararları için Para Birimlerinin Gücünü Analiz Edin Genel Bakış FX Power , her piyasa koşulunda başlıca para birimlerinin ve altının gerçek gücünü anlamak için vazgeçilmez bir araçtır. Güçlü para birimlerini alıp zayıf olanları satarak, FX Power ticaret kararlarınızı basitleştirir ve yüksek olasılıklı fırsatları ortaya çıkarır. İster trendlere sadık kalın ister Delta'nın aşırı değerlerini kullanarak tersine dönüşleri öngörün, bu araç ticaret tarzınıza mükemmel bir
ARIPoint
Temirlan Kdyrkhan
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
Azimuth Pro
Ottaviano De Cicco
5 (4)
LAUNCH PROMO Azimuth Pro price is initially set at 299$ for the first 100 buyers. Final price will be 499$ . THE DIFFERENCE BETWEEN RETAIL AND INSTITUTIONAL ENTRIES ISN'T THE INDICATOR — IT'S THE LOCATION. Most traders enter at arbitrary price levels, chasing momentum or reacting to lagging signals. Institutions wait for price to reach structured levels where supply and demand actually shift. Azimuth Pro maps these levels automatically: swing-anchored VWAP, multi-timeframe structure lines, an
Tanıtım       Quantum Breakout PRO   , Breakout Bölgeleri ile ticaret yapma şeklinizi değiştiren çığır açan MQL5 Göstergesi! 13 yılı aşkın ticaret tecrübesine sahip deneyimli tüccarlardan oluşan bir ekip tarafından geliştirilmiştir.       Kuantum Breakout PRO       yenilikçi ve dinamik koparma bölgesi stratejisiyle ticaret yolculuğunuzu yeni zirvelere taşımak için tasarlanmıştır. Kuantum Breakout Göstergesi, size 5 kar hedefi bölgesi ile kırılma bölgelerinde sinyal okları ve kırılma kutusuna da
RelicusRoad Pro: Kantitatif Piyasa İşletim Sistemi ÖMÜR BOYU ERİŞİMDE %70 İNDİRİM (SINIRLI SÜRE) - 2.000+ TRADER'A KATILIN Neden çoğu trader "mükemmel" indikatörlere rağmen başarısız olur? Çünkü tekil kavramları boşlukta trade ederler. Bağlamı olmayan bir sinyal kumardır. Sürekli kazanmak için KONFLÜANS (UYUM) gerekir. RelicusRoad Pro basit bir ok indikatörü değildir. Tam bir Kantitatif Piyasa Ekosistemi dir. Tescilli volatilite modellemesini kullanarak fiyatın ilerlediği "Adil Değer Yolu"nu har
FX Dynamic MT5
Daniel Stein
5 (5)
FX Dynamic: Özelleştirilebilir ATR Analiziyle Volatilite ve Trendleri Takip Edin Genel Bakış FX Dynamic , ortalama gerçek aralık (ATR) hesaplamalarını kullanarak günlük ve gün içi volatilite hakkında rakipsiz bilgiler sağlayan güçlü bir araçtır. 80%, 100%, 130% gibi net volatilite eşikleri ayarlayarak, piyasa olağan hareketlerinin ötesine geçtiğinde hızlı şekilde uyarı alabilir ve potansiyel kazanç fırsatlarını süratle tespit edebilirsiniz. FX Dynamic , brokerınızın zaman dilimine uyum sağlaya
FX Levels MT5
Daniel Stein
5 (13)
FX Levels: Tüm Piyasalar İçin Son Derece Hassas Destek ve Direnç Hızlı Bakış Döviz kurları, endeksler, hisseler veya emtialar gibi herhangi bir piyasada güvenilir destek ve direnç seviyeleri belirlemek mi istiyorsunuz? FX Levels geleneksel “Lighthouse” yöntemini ileri düzey bir dinamik yaklaşımla birleştirerek neredeyse evrensel bir doğruluk sağlar. Gerçek broker deneyimimize ve otomatik günlük güncellemeler ile gerçek zamanlı güncellemelerin birleşimine dayalı olarak, FX Levels size dönüş nok
Trend indicator AI mt5
Ramil Minniakhmetov
5 (15)
Trend Ai göstergesi, trend tanımlamasını işlem yapılabilir giriş noktaları ve geri dönüş uyarılarıyla birleştirerek bir yatırımcının piyasa analizini geliştirecek harika bir araçtır. Bu gösterge, kullanıcıların forex piyasasının karmaşıklıklarında güvenle ve hassasiyetle yol almalarını sağlar. Birincil sinyallerin ötesinde, Trend Ai göstergesi geri çekilmeler veya düzeltmeler sırasında ortaya çıkan ikincil giriş noktalarını belirleyerek, yatırımcıların belirlenen trend içindeki fiyat düzeltmele
Market Structure Order Block Dashboard MT5 , MT5 için bir indikatördür . Piyasa yapısı ve ICT / Smart Money Concepts yaklaşımına odaklanır: HH/HL/LH/LL , BOS , ChoCH , ayrıca Order Blocks , Fair Value Gaps (FVG) , likidite (EQH/EQL, sweeps), seanslar / Kill Zones ve entegre Volume Profile ile kompakt bir confluence dashboard sunar. Önemli: Bu bir analiz aracıdır . İşlem açmaz (EA değildir). Alıcı Bonusu Satın aldıktan sonra mağazamdan seçerek 2 bonus indikatör ücretsiz alabilirsiniz. Bonusları
Trend Hunter MT5
Andrey Tatarinov
5 (3)
Trend Hunter , Forex, kripto para birimi ve CFD piyasalarında çalışmaya yönelik bir trend göstergesidir. Göstergenin özel bir özelliği, fiyat trend çizgisini hafifçe deldiğinde sinyali değiştirmeden trendi güvenle takip etmesidir. Gösterge yeniden çizilmez; çubuk kapandıktan sonra pazara giriş sinyali görünür. Bir trend boyunca hareket ederken gösterge, trend yönünde ek giriş noktalarını gösterir. Bu sinyallere dayanarak küçük bir Zararı Durdur ile işlem yapabilirsiniz. Trend Hunter dürüst bi
Yazarın diğer ürünleri
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
Filtrele:
İnceleme yok
İncelemeye yanıt