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
================================================================================
Prodotti consigliati
Trading Session MT5
Kevin Schneider
3 (1)
Indicatore delle Sessioni di Trading L'Indicatore delle Sessioni di Trading visualizza i punti alti e bassi, nonché gli orari di inizio e fine delle sessioni di trading asiatiche, di Londra e di New York direttamente sul tuo grafico. Caratteristiche: Visualizzazione delle principali sessioni di trading Evidenziazione dei punti alti e bassi Visualizzazione degli orari di inizio e fine di ogni sessione Orari delle sessioni personalizzabili Facile da usare ed efficiente Personalizzabilità: Ogni ses
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
Structure Trend con Auto RR e Scanner BOS Versione: 1.0 Panoramica Structure Trend con Auto RR è un sistema di trading completo progettato per i trader che si affidano all'azione del prezzo e alla struttura del mercato. Combina un filtro di tendenza levigato con il rilevamento dei punti swing e i segnali di rottura della struttura (BOS) per generare configurazioni di trading ad alta probabilità. La caratteristica distintiva di questo strumento è la gestione automatica del rischio. Al rilevame
Rule Plotter Scanner
Francisco Gomes Da Silva
5 (1)
Hai mai pensato di avere uno scanner che analizza tutte le strategie e mostra i punti di acquisto e vendita su tutti i timeframes di quell'attivo, tutto contemporaneamente? È esattamente ciò che fa questo scanner. Questo scanner è progettato per mostrare i segnali di acquisto e vendita che hai creato nel Rule Plotter: creatore di strategie senza programmazione ed eseguirli all'interno di questo scanner su vari attivi e timeframes differenti. La strategia predefinita di Rule Plotter riguarda solo
FREE
The 3 Bar Break
Stephen Reynolds
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)
L'indicatore   Haven FVG   è uno strumento per l'analisi dei mercati che permette di identificare le aree di inefficienza (Fair Value Gaps, FVG) nel grafico, fornendo ai trader livelli chiave per l'analisi dei prezzi e la presa di decisioni commerciali. Altri prodotti ->  QUI Caratteristiche principali: Impostazioni dei colori individuali: Colore per FVG rialzista   (Bullish FVG Color). Colore per FVG ribassista   (Bearish FVG Color). Visualizzazione flessibile di FVG: Numero massimo di candele
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
Swing Point BoS CHoCH Con Exp Alerts
Usiola Oluwadamilol Olagundoye
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)
Benvenuto nel nostro   modello di ondata di prezzo   MT5 --(modello ABCD)-- Il modello ABCD è un modello di trading potente e ampiamente utilizzato nel mondo dell'analisi tecnica. È un modello di prezzo armonico che i trader utilizzano per identificare potenziali opportunità di acquisto e vendita sul mercato. Con il modello ABCD, i trader possono anticipare potenziali movimenti di prezzo e prendere decisioni informate su quando entrare e uscire dalle negoziazioni. Versione EA:   Price Wave EA
FREE
FlatBreakout MT5
Aleksei Vorontsov
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
Emanuel Andriato
4.8 (5)
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 — Indicatore di Massimi e Minimi di una Candela Specifica BarX è un indicatore tecnico che evidenzia automaticamente il massimo e il minimo di una candela specifica del giorno , definita dall’utente (ad esempio candela 0 rappresenta la prima candela dopo l’apertura del mercato ). Questo strumento è particolarmente utile per i trader che utilizzano livelli di prezzo fissi come supporto, resistenza, breakout o inversione . Segnando visualmente questi punti sul grafico, BarX semplifica l’anali
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
4.33 (6)
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
Gli utenti di questo prodotto hanno anche acquistato
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
SuperScalp Pro
Van Minh Nguyen
5 (9)
SuperScalp Pro – Sistema avanzato di indicatore per scalping con filtri multipli SuperScalp Pro è un sistema avanzato di indicatore per scalping che combina il classico Supertrend con molteplici filtri di conferma intelligenti. L’indicatore funziona in modo efficiente su tutti i timeframe da M1 a H4 ed è particolarmente adatto per XAUUSD, BTCUSD e le principali coppie Forex. Può essere utilizzato come sistema stand-alone o integrato in modo flessibile nelle strategie di trading esistenti. L’indi
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
Se acquisti questo indicatore, riceverai il mio Trade Manager Professionale + EA  GRATUITAMENTE. Innanzitutto è importante sottolineare che questo sistema di trading è un indicatore Non-Repainting, Non-Redrawing e Non-Lagging, il che lo rende ideale sia per il trading manuale che per quello automatico. Corso online, manuale e download di preset. Il "Sistema di Trading Smart Trend MT5" è una soluzione completa pensata sia per i trader principianti che per quelli esperti. Combina oltre 10 indicat
Divergence Bomber
Ihor Otkydach
4.89 (83)
Ogni acquirente dell’indicatore riceverà inoltre gratuitamente: L’utilità esclusiva “Bomber Utility”, che gestisce automaticamente ogni operazione, imposta i livelli di Stop Loss e Take Profit e chiude le posizioni secondo le regole della strategia I file di configurazione (set file) per adattare l’indicatore a diversi asset I set file per configurare il Bomber Utility in tre modalità: “Rischio Minimo”, “Rischio Bilanciato” e “Strategia di Attesa” Una guida video passo-passo per installare, conf
FX Trend MT5 NG
Daniel Stein
5 (4)
FX Trend NG: La Nuova Generazione di Intelligenza di Trend Multi-Mercato Panoramica FX Trend NG è uno strumento professionale di analisi del trend multi-timeframe e monitoraggio dei mercati. Ti consente di comprendere la struttura completa del mercato in pochi secondi. Invece di passare tra numerosi grafici, puoi identificare immediatamente quali strumenti sono in trend, dove il momentum sta diminuendo e dove esiste un forte allineamento tra i timeframe. Offerta di Lancio – Ottieni FX Trend NG
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
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
Grabber System MT5
Ihor Otkydach
4.82 (22)
Ti presento un eccellente indicatore tecnico: Grabber, che funziona come una strategia di trading "tutto incluso", pronta all’uso. In un solo codice sono integrati strumenti potenti per l’analisi tecnica del mercato, segnali di trading (frecce), funzioni di allerta e notifiche push. Ogni acquirente di questo indicatore riceve anche gratuitamente: L’utility Grabber: per la gestione automatica degli ordini aperti Video tutorial passo dopo passo: per imparare a installare, configurare e utilizzare
Gold Entry Sniper
Tahir Mehmood
5 (5)
Gold Entry Sniper – Dashboard ATR Multi-Timeframe per Scalping e Swing Trading sull’Oro Gold Entry Sniper è un indicatore avanzato per MetaTrader 5 che offre segnali di acquisto/vendita precisi per XAUUSD e altri strumenti, basato sulla logica ATR Trailing Stop e l' analisi multi-timeframe . Caratteristiche e Vantaggi Analisi Multi-Timeframe – Visualizza trend su M1, M5, M15 in un'unica dashboard. Trailing Stop Basato su ATR – Stop dinamici che si adattano alla volatilità. Dashboard Professional
Game Changer Indicator mt5
Vasiliy Strukov
4.62 (21)
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
Power Candles MT5
Daniel Stein
5 (6)
Power Candles – Segnali di ingresso basati sulla forza per tutti i mercati Power Candles porta l’analisi di forza collaudata di Stein Investments direttamente sul grafico dei prezzi. Invece di reagire solo al prezzo, ogni candela viene colorata in base alla reale forza di mercato, consentendo di identificare immediatamente accumuli di momentum, accelerazioni della forza e transizioni di trend pulite. Un’unica logica per tutti i mercati Power Candles funziona automaticamente su tutti i simboli di
Quantum TrendPulse
Bogdan Ion Puscasu
5 (22)
Ecco   Quantum TrendPulse   , lo strumento di trading definitivo che combina la potenza di   SuperTrend   ,   RSI   e   Stocastico   in un unico indicatore completo per massimizzare il tuo potenziale di trading. Progettato per i trader che cercano precisione ed efficienza, questo indicatore ti aiuta a identificare con sicurezza le tendenze di mercato, i cambiamenti di momentum e i punti di entrata e uscita ottimali. Caratteristiche principali: Integrazione SuperTrend:   segui facilmente l'andame
RFI levels PRO MT5
Roman Podpora
3.67 (3)
L'indicatore mostra accuratamente i punti di inversione e le zone di ritorno dei prezzi in cui il       Principali attori   . Vedi dove si formano le nuove tendenze e prendi decisioni con la massima precisione, mantenendo il controllo su ogni operazione. VERSION MT4     -    Rivela il suo massimo potenziale se combinato con l'indicatore   TREND LINES PRO Cosa mostra l'indicatore: Strutture di inversione e livelli di inversione con attivazione all'inizio di un nuovo trend. Visualizzazione dei li
Atomic Analyst MT5
Issam Kassas
4.1 (29)
Innanzitutto, vale la pena sottolineare che questo indicatore di trading non è repaint, non è ridisegno e non presenta ritardi, il che lo rende ideale sia per il trading manuale che per quello automatico. Manuale utente: impostazioni, input e strategia. L'Analista Atomico è un indicatore di azione del prezzo PA che utilizza la forza e il momentum del prezzo per trovare un miglior vantaggio sul mercato. Dotato di filtri avanzati che aiutano a rimuovere rumori e segnali falsi, e aumentare il pote
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
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
FX Power MT5 NG
Daniel Stein
5 (31)
FX Power: Analizza la Forza delle Valute per Decisioni di Trading Più Intelligenti Panoramica FX Power è lo strumento essenziale per comprendere la reale forza delle principali valute e dell'oro in qualsiasi condizione di mercato. Identificando le valute forti da comprare e quelle deboli da vendere, FX Power semplifica le decisioni di trading e rivela opportunità ad alta probabilità. Che tu segua le tendenze o anticipi inversioni utilizzando valori estremi di Delta, questo strumento si adatta
Trend Screener Pro MT5
STE S.S.COMPANY
4.84 (101)
Indicatore di tendenza, soluzione unica rivoluzionaria per il trading di tendenze e il filtraggio con tutte le importanti funzionalità di tendenza integrate in un unico strumento! È un indicatore multi-timeframe e multi-valuta al 100% non ridipingibile che può essere utilizzato su tutti i simboli/strumenti: forex, materie prime, criptovalute, indici e azioni. Trend Screener è un indicatore di tendenza che segue un indicatore efficiente che fornisce segnali di tendenza a freccia con punti nel gra
Trend indicator AI mt5
Ramil Minniakhmetov
5 (15)
Trend Ai indicator è un ottimo strumento che migliorerà l'analisi di mercato di un trader combinando l'identificazione della tendenza con punti di ingresso utilizzabili e avvisi di inversione. Questo indicatore consente agli utenti di navigare nelle complessità del mercato forex con fiducia e precisione Oltre ai segnali primari, l'indicatore Ai di tendenza identifica i punti di ingresso secondari che si presentano durante i pullback o i ritracciamenti, consentendo ai trader di capitalizzare le
Smart Stop Indicator – Precisione intelligente dello stop-loss direttamente sul grafico Panoramica Smart Stop Indicator è la soluzione ideale per i trader che desiderano posizionare il loro stop-loss in modo chiaro e metodico, senza dover indovinare o affidarsi all’intuizione. Questo strumento combina la logica classica del price action (massimi e minimi strutturali) con un moderno riconoscimento dei breakout per identificare il prossimo livello di stop realmente logico. In trend, in range o i
Trend Lines PRO MT5
Roman Podpora
5 (1)
LINEE DI TENDENZA PRO  Aiuta a capire dove il mercato sta realmente cambiando direzione. L'indicatore mostra reali inversioni di tendenza e punti in cui i principali operatori rientrano. Vedi   Linee BOS   Cambiamenti di tendenza e livelli chiave su timeframe più ampi, senza impostazioni complesse o rumore inutile. I segnali non vengono ridisegnati e rimangono sul grafico dopo la chiusura della barra. VERSIONE MT4   -   Svela il suo massimo potenziale se abbinato all'indicatore   RFI LEVELS PRO
RelicusRoad Pro: Sistema Operativo Quantitativo di Mercato 70% DI SCONTO ACCESSO A VITA (TEMPO LIMITATO) - UNISCITI A 2.000+ TRADER Perché la maggior parte dei trader fallisce anche con indicatori "perfetti"? Perché operano su Singoli Concetti isolati. Un segnale senza contesto è una scommessa. Per vincere serve CONFLUENZA . RelicusRoad Pro non è un semplice indicatore. È un Ecosistema Quantitativo completo . Mappa la "Fair Value Road", distinguendo tra rumore e rotture strutturali. Smetti di in
Candle Smart Range
Gianny Alexander Lugo Sanchez
Candle Smart Range (CSR) per MetaTrader 5 Candle Smart Range è un indicatore tecnico progettato per l'identificazione automatica dei range di prezzo su più timeframe. Questo strumento analizza la struttura del mercato basandosi sulle formazioni delle candele e sull'interazione del prezzo con i massimi e i minimi precedenti. Caratteristiche principali: Rilevamento Range: Identifica le zone di consolidamento prima dei movimenti impulsivi. Identificazione Falsi Breakout: Segnala quando il prezzo su
FX Levels MT5
Daniel Stein
5 (13)
FX Levels: Supporti e Resistenze di Precisione Eccezionale per Tutti i Mercati Panoramica Rapida Cercate un modo affidabile per individuare livelli di supporto e resistenza in ogni mercato—coppie di valute, indici, azioni o materie prime? FX Levels fonde il metodo tradizionale “Lighthouse” con un approccio dinamico all’avanguardia, offrendo una precisione quasi universale. Basato sulla nostra esperienza reale con i broker e su aggiornamenti automatici giornalieri più quelli in tempo reale, FX
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
IX Power MT5
Daniel Stein
4.92 (13)
IX Power: Scopri approfondimenti di mercato per indici, materie prime, criptovalute e forex Panoramica IX Power è uno strumento versatile progettato per analizzare la forza di indici, materie prime, criptovalute e simboli forex. Mentre FX Power offre la massima precisione per le coppie di valute utilizzando i dati di tutte le coppie disponibili, IX Power si concentra esclusivamente sui dati di mercato del simbolo sottostante. Questo rende IX Power una scelta eccellente per mercati non correlat
Presentazione       Quantum Breakout PRO   , l'innovativo indicatore MQL5 che sta trasformando il modo in cui scambi le zone di breakout! Sviluppato da un team di trader esperti con un'esperienza di trading di oltre 13 anni,       Quantum Breakout PRO       è progettato per spingere il tuo viaggio di trading a nuovi livelli con la sua strategia innovativa e dinamica della zona di breakout. Quantum Breakout Indicator ti fornirà frecce di segnalazione sulle zone di breakout con 5 zone target di
Mirage Trading System — False Breakout (Fakey) Pattern Detector for MetaTrader 5 MANUAL   ,   MQL5 Channel Buy any indicator and get a FREE bonus indicator Phantom trading System, SMC retest Trading system, GOLD SCALP System! Send me a private message for details. Overview   Mirage Trading System detects the Fakey pattern (false breakout reversal) on completed bars and draws entry, stop loss, and take profit levels on the chart. Detection is non-repainting: signal values do not change after bar
FX Dynamic MT5
Daniel Stein
5 (5)
FX Dynamic: Monitora volatilità e trend con un’analisi ATR personalizzabile Panoramica FX Dynamic è uno strumento potente che sfrutta i calcoli di Average True Range (ATR) per fornire ai trader informazioni impareggiabili sulla volatilità, sia giornaliera che intraday. Impostando soglie di volatilità chiare—ad esempio 80%, 100%, 130%—puoi individuare rapidamente opportunità di profitto o ricevere avvisi quando il mercato supera i range abituali. FX Dynamic si adatta al fuso orario del tuo brok
Altri dall’autore
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
Filtro:
Nessuna recensione
Rispondi alla recensione