Tick Data Exporter

The primary function of this script, Tick Data Exporter, is to efficiently extract historical tick data.
Tick data represents the most granular level of market data, capturing every single price change.
The script downloads this data from a broker and formats it into CSV files for external quantitative analysis.

Five things tick data shows that bars permanently hide:
  1. Spread microstructure: Bars give you one spread number per period (typically the spread at bar close). Ticks show you the spread literally tick-by-tick. The widening seconds before high-impact news is invisible in bars; in ticks it's a billboard. Same for the "spread blink" some brokers do at session opens — they widen for 200ms and tighten back. Bar data smears it out.
  2. Quote frequency as a volatility proxy: When a market is "thinking," ticks come in slowly — maybe 1 to 2 per second. When it's reactive, you get 30 to 50 per second. Tick density itself, separate from price movement, is a real signal. Some professional traders watch quote frequency more than they watch price. A sudden burst of ticks without much price change can precede a directional move by tens of seconds.
  3. Bid/ask asymmetry: In tick exports you see flag patterns like a BID-only update followed milliseconds later by an ASK-only update. That pattern reveals which side of the market is leading. Sustained bid-leading versus ask-leading often precedes directional moves by several seconds. Bar data has no concept of this — bars only show you the resulting price, not the order in which the bids and asks moved.
  4. True touch quality: When you ask "did price touch this level?" using bar data, you check bar high or bar low. Tick data tells you not just whether, but how many times, for how long, and at what spread. Three completely different texture-of-touch readings for the same level.
  5. Sub-bar reversal mapping: A bar that opens at the low and closes at the high (a strong bull bar) tells you nothing about the *path*. Did price spike to the high in the first 30 seconds and chop sideways? Did it grind up steadily? Did it spike, retrace 90%, then break out? These three patterns produce nearly identical bars and very different next-bar behavior. Tick data reconstructs the path.

When NOT to use tick data:
Tick data has costs that bar data doesn't: file size, fetch time, and analytical complexity. The tool isn't right for every question. Use bar data instead when:
  • You're studying multi-day or multi-week trends. Bar data on the right TF is plenty.
  • You only care about open/high/low/close values. Bars deliver these directly; ticks would require aggregation.
  • You're correlating multiple symbols. The OHLC exporter's wide format is far better for this. Tick timestamps don't align across symbols.
  • You're working in Excel without much patience.

Settings:

=== Range ===
  1. Start datetime: First moment to fetch ticks for, in server (broker) time. Inclusive.
  2. End datetime: Last moment to fetch ticks for, in server (broker) time. Exclusive of the very last second by convention. Must be after Start datetime. Always specify a date range.

=== File ===
  1. Auto-name file from Symbol + dates?: When true, output filenames are derived from symbol, date(s), and split granularity (e.g. EURUSD_TICKS_2026-05-04_13h.csv). When false, uses File name (used when Auto-name OFF and Split OFF), with date/hour suffixes appended for split-mode exports to avoid collisions.
  2. File name (used when Auto-name OFF and Split OFF): Manual filename (used only when Auto-name file from Symbol + dates? is false). For split exports, the relevant date or date_HHh suffix is inserted before the .csv extension automatically.
  3. Split output into one file per: hour / 4h / day / week / off: How to slice the export into separate files. Off = single file for whole range. 1H/4H = one file per hour or 4-hour window (good for news-window analysis). 1D = one per day (default, balanced). 1W = one file per week (long-range exports). Boundaries align to natural clock units.
  4. Metadata block placement: OFF, TOP, or BOTTOM. Top is default; choose BOTTOM if you plan to use Excel's freeze-top-row feature on the data.
  5. Write 'sep=;' first line so Excel auto-detects delimiter (locale-safe)?: When true, writes 'sep=;' as the very first line of the file. Excel reads this hint and automatically uses semicolon as the delimiter for that file regardless of the OS regional setting. Recommended on European locales (Danish, German, French) where Excel's default delimiter is comma.

=== Time ===
  1. Time zone for timestamps: Time zone for the Date and Time columns. Server = broker's time zone. UTC = GMT/no offset (best for cross-system data analysis). Local PC = your machine's time zone.
  2. Include milliseconds in time column (HH:MM:SS.fff)?: When true, the Time column shows HH:MM:SS.fff with millisecond precision. Important for high-frequency tick data where multiple ticks per second are common. Adds a few characters per row but doesn't significantly increase file size. Recommended ON for serious analysis.

=== Tick Filter ===
  1. Which tick types to export: Which tick types to export. ALL = everything the broker sent. BIDASK = only ticks that updated bid or ask (skips pure-volume ticks; reduces file size slightly). TRADES = only ticks marking actual trades (TICK_FLAG_LAST). Trades-only is rare-to-empty for retail forex but populated for indices, stocks, and centrally-cleared instruments.

=== Columns ===
Each column is independently toggleable. Disabling unused columns shrinks file size, sometimes meaningfully. For example, disabling Volume and Last on retail forex saves about 5% per row.

  1. Include Date column?: Include the Date column (ISO YYYY-MM-DD). Disable only if all your ticks are in one day and you don't need the date.
  2. Include Time column?: Include the Time column. Format depends on "Include milliseconds in time column (HH:MM:SS.fff)?".
  3. Include Bid column?: Include the bid price at the time of the tick.
  4. Include Ask column?: Include the ask price at the time of the tick.
  5. Include Spread column (computed as ask - bid)?: Include the spread (computed as ask - bid, rounded to symbol digits). Recommended ON; spread microstructure is one of the main reasons to use tick data.
  6. Include Last column (trade price; usually empty for retail forex)?: Include the last trade price. Empty for most retail forex (no actual trades reported); useful for indices/stocks. Default off because it's mostly empty.
  7. Include Volume column?: Include trade volume. Same caveat as Last — mostly zero for retail forex. Default off.
  8. Include Flags column (pipe-separated, e.g. "BID|ASK")?: Include the decoded tick flags column showing what changed in this tick (e.g. BID, ASK, BID|ASK, BID|ASK|LAST, BUY, SELL). Pipe-separated. Default off because most analyses don't need it; turn on for advanced microstructure work.

=== Performance ===
  1. Chunk duration per fetch (RAM vs API calls): Time window per API call. Smaller chunks use less RAM during fetch but require more API calls. Larger chunks use more RAM but finish faster. 1D is the right default for most retail forex use; bump to 1W if you have a beefy machine and large exports, drop to 4H or 1H if you're hitting memory issues.
  2. Log progress every N chunks (0 = silent): Log a progress line every N chunks. Set to 0 to silence intermediate progress (only the final 'mission accomplished' line will appear). Set to 5 or 10 to reduce spam on long exports.

Note that Chunk duration per fetch (RAM vs API calls) and Split output into one file per: hour / 4h / day / week / off are independent settings. Chunk size affects how the script *fetches* data internally; split granularity affects how the *output is sliced into files*. They can be set differently — for example, fetching in 1D chunks (efficient) but writing into 1H files (granular for analysis).


=== .CSV File Column reference ===
  • Date: ISO YYYY-MM-DD Date of the tick in the chosen time zone. ISO format ensures unambiguous interpretation regardless of locale.
  • Time: HH:MM:SS or HH:MM:SS.fff Time of the tick in the chosen time zone. Format depends on Include milliseconds in time column (HH:MM:SS.fff)?.
  • Bid: Bid price at the time of this tick, formatted to the symbol's digit count.
  • Ask: Ask price at the time of this tick.
  • Spread: Computed as ask - bid, rounded to the symbol's digit count. This is the actual spread at this tick, not a bar-aggregated value.
  • Last: Last trade price. Empty (or 0) when the broker didn't report a trade with this tick.
  • Volume: Trade volume. Empty for most retail forex.
  • Flags: Pipe-separated tokens Decoded tick flags. Tokens: BID (bid changed), ASK (ask changed), LAST (trade), VOL (volume update), BUY/SELL (trade direction). A single tick can have multiple flags, e.g. BID|ASK|LAST.


=== Important note about dates and Excel ===
Dates in the file are written in ISO YYYY-MM-DD format. Most tools (pandas, Python, R, plain text editors) read them exactly as written. Excel does not.
When you open a tick file in Excel, the Date column will be displayed in your locale's date format (DD-MM-YYYY in most of Europe, MM/DD/YYYY in the US). Excel auto-parses the ISO dates and re-displays them. If you save the file from Excel, Excel will also rewrite the dates to its locale format inside the file itself, mutating your original ISO data.
This is documented in the file's metadata block as a reminder. Two strategies to handle it:
Treat Excel as a viewer only, never save changes. Open, inspect, close without saving.
Read the file in pandas or Python instead of Excel. The ISO format works perfectly there.
If you specifically need Excel to leave dates alone, format the Date column as Text via the Data > From Text/CSV import wizard.


=== Tips & Examples ===
Choosing the right split granularity. The Split output into one file per: hour / 4h / day / week / off setting profoundly affects how the data is structured for analysis. Choosing the right value is about matching file granularity to your analysis question.
  • SPLIT OFF Single file When you want one continuous tick stream for an entire range and intend to use pandas or Python to filter. Avoid for ranges over 1 day — files get too large to navigate.
  • SPLIT 1H Hourly files Best for news-window analysis. FOMC, NFP, CPI: export the 4-6 hours around the event with SPLIT_1H, and you have one file per hour ready for separate analysis. Each hour-file is small enough to open in Excel.
  • SPLIT 4H Session-aligned files Best for session-based analysis. Files align to 00/04/08/12/16/20 boundaries which roughly correspond to Asian/early-European/London/lunch/NY/NY-late session windows. A week's worth is 42 files but each one is tractable.
  • SPLIT 1D Daily files (default) The general-purpose default. One day per file is a natural unit, files are 5-15 MB on retail forex, and pandas reads them quickly.
  • SPLIT 1W Weekly files Long-range exports where weekly granularity is enough. A month-long export becomes 4-5 files instead of 30.

Example 1: Studying the FOMC announcement
FOMC rate decisions land at 19:00 server time on a specific Wednesday. You want to study what the spread, tick density, and price action looked like in the 2 hours leading up and 2 hours following the announcement.
Settings:
  • Start datetime = D'2026.05.07 17:00:00' // 2 hours before FOMC
  • End datetime    = D'2026.05.07 21:00:00'    // 2 hours after
  • Auto-name file from Symbol + dates?  = true
  • Split output into one file per: hour / 4h / day / week / off    = SPLIT_1H                        // hourly files for granular analysis
  • Time zone for timestamps  = EXPORT_TIME_SERVER
  • Include milliseconds in time column (HH:MM:SS.fff)? = true                          // sub-second sequence matters around news
  • Which tick types to export = TICK_ALL
  • Include Flags column (pipe-separated, e.g. "BID|ASK")? = true                      // helps see bid-leading vs ask-leading patterns
  • Chunk duration per fetch (RAM vs API calls) = CHUNK_1D                      // single fetch fine for 4 hours
Results: four files named EURUSD_TICKS_2026-05-07_17h.csv through _20h.csv. Each file is small (1-5 MB even with the 19h announcement file probably being the largest). You can open the announcement-hour file in Excel directly to inspect, or load all four in pandas to analyze tick density vs. price change.
What to look for: spread typically widens 30-60 seconds before the announcement (broker preparing for volatility), spikes to 5-10x normal at the moment of release, then tightens back over the next 5-15 minutes. Tick density goes from 1-2 per second pre-news to 50-100 per second in the first 30 seconds post-release.

Example 2: Comparing session-open behavior across a week
You want to see whether the spread blink at the London 08:00 open behaves consistently across all five trading days of a week.
Settings:
  • Start datetime = D'2026.05.04 07:30:00'    // Monday, 30 min before London
  • End datetime    = D'2026.05.08 09:00:00'    // Friday, 1 hour after
  • Auto-name file from Symbol + dates?  = true
  • Split output into one file per: hour / 4h / day / week / off    = SPLIT_1D                  // one file per trading day
  • Time zone for timestamps  = EXPORT_TIME_UTC            // UTC since session times are commonly stated in UTC
  • Include milliseconds in time column (HH:MM:SS.fff)? = true
  • Which tick types to export = TICK_ALL
  • Chunk duration per fetch (RAM vs API calls) = CHUNK_1D
Results: five files, one per day. In each file, filter to roughly 06:30-08:00 UTC (London 07:00-09:00 wall clock). Compare spread evolution across the five days side by side.
What to look for: Mondays often have wider opens than midweek (weekend gap effects). Fridays often have tighter post-open spread (book is winding down).

Example 3: Detecting unusual tick density
You want to flag minutes where tick density was unusually high, as a signal that something interesting may have happened.
Settings:
  • Start datetime = D'2026.05.04 00:00:00'
  • End datetime    = D'2026.05.04 23:59:59'    // single full day
  • Auto-name file from Symbol + dates?  = true
  • Split output into one file per: hour / 4h / day / week / off    = SPLIT_OFF                  // single file for the whole day
  • Time zone for timestamps  = EXPORT_TIME_SERVER
  • Include milliseconds in time column (HH:MM:SS.fff)? = true
  • Which tick types to export = TICK_BIDASK              // exclude pure-volume noise
  • Include Flags column (pipe-separated, e.g. "BID|ASK")? = false                  // not needed for density analysis
  • Chunk duration per fetch (RAM vs API calls) = CHUNK_1D
Results: one file containing the full day. In pandas, group by minute and count rows. Sort descending by count. The top 10 minutes are your high-density periods. Cross-reference timestamps against your economic calendar.
This is a powerful diagnostic technique: tick density highs often precede price moves by tens of seconds, and they correlate with events that don't always make the calendar (large institutional orders, broker-side liquidity shifts, sympathetic moves from correlated markets).

Example 4: Spread cost analysis for a Backtest
You're running a Backtest at a tight stop-loss (5-8 pips) and worried that the bar-aggregated spread reading is hiding intra-bar widening that would have stopped you out. You want the actual spread at every tick during the period.
Settings:
  • Start datetime = D'2026.04.01 00:00:00'
  • End datetime    = D'2026.04.30 23:59:59'
  • Auto-name file from Symbol + dates?  = true
  • Split output into one file per: hour / 4h / day / week / off    = SPLIT_1D                  // one file per day, manageable chunks
  • Time zone for timestamps  = EXPORT_TIME_SERVER
  • Include milliseconds in time column (HH:MM:SS.fff)? = false                      // for cost analysis, second precision is fine
  • Which tick types to export = TICK_BIDASK
  • Include Bid column?    = false                  // you only need spread, not price
  • Include Ask column?    = false
  • Include Spread column (computed as ask - bid)? = true
  • Include Flags column (pipe-separated, e.g. "BID|ASK")?  = false
  • Chunk duration per fetch (RAM vs API calls) = CHUNK_1D
Results: 30 daily files, each containing only Date, Time, and Spread columns. Total volume ~50-150 MB for the month. In pandas, you can compute the empirical spread distribution: mean, p95, p99, max. Compare to the constant spread your Backtest assumed. Adjust your stop loss accordingly, or accept that some trades that worked in Backtest would have been stopped on actual spread spikes.

Example 5: Reconstructing a flash event
Something unusual happened on a chart at 14:32 — a sudden 15-pip spike followed by an immediate retrace. Bar data shows the move but not the path. You want millisecond-level detail of what actually happened.
Settings:
  • Start datetime = D'2026.05.04 14:30:00'    // 2 minutes before
  • End datetime    = D'2026.05.04 14:35:00'    // 3 minutes after
  • Auto-name file from Symbol + dates?  = true
  • Split output into one file per: hour / 4h / day / week / off    = SPLIT_OFF                  // 5 minutes is one tiny file
  • Time zone for timestamps  = EXPORT_TIME_SERVER
  • Include milliseconds in time column (HH:MM:SS.fff)? = true                      // critical for reconstructing path
  • Which tick types to export = TICK_ALL
  • Include Flags column (pipe-separated, e.g. "BID|ASK")? = true                    // see bid vs ask leading
  • Chunk duration per fetch (RAM vs API calls) = CHUNK_1H
Results: one small file with potentially 5,000-15,000 ticks depending on event severity. Open in Excel directly. Plot bid and ask over time. The exact sequence of the spike — how many ticks at the spike high, the spread when it spiked, whether bid moved first or ask moved first — tells you whether this was a stop-hunt, a fat-finger order, a news leak, or genuine liquidity event.
This kind of post-mortem is the single best use case for tick data. Bar data shows the wound; tick data shows how it was inflicted.

Produits recommandés
CChart
Rong Bin Su
Overview In the fast-paced world of forex and financial markets, quick reactions and precise decision-making are crucial. However, the standard MetaTrader 5 terminal only supports a minimum of 1-minute charts, limiting traders' sensitivity to market fluctuations. To address this issue, we introduce the Second-Level Chart Candlestick Indicator , allowing you to effortlessly view and analyze market dynamics from 1 second to 30 seconds on a sub-chart. Key Features Support for Multiple Second-Level
SmartSetup Bot est un outil de trading avancé qui combine la flexibilité des configurations manuelles avec la puissance des fonctionnalités semi-automatiques. Il génère automatiquement des objets graphiques, affichant des zones critiques telles que les niveaux de support et de résistance, les zones de stop loss et take profit, et d'autres indicateurs essentiels. SmartSetup Bot permet une visualisation claire et précise de vos paramètres de trading, facilitant la prise de décision éclairée. Ce bo
FREE
Donchian Breakout And Rsi
Mattia Impicciatore
4.5 (2)
Description générale Cet indicateur est une version améliorée du Canal Donchian classique, enrichie de fonctionnalités pratiques pour le trading réel. En plus des trois lignes standard (supérieure, inférieure et ligne médiane), le système détecte les cassures et les affiche visuellement avec des flèches sur le graphique, en montrant uniquement la ligne opposée à la direction actuelle de la tendance pour une lecture plus claire. L’indicateur comprend : Signaux visuels : flèches colorées lors des
FREE
It has never been so easy to manage the risk of your account until now, this tool will allow you to have full control of your capital and manage your entries in the synthetic index derivative markets, in an easy, practical and safe way. The available input and configuration parameters are as follows :  RISK MANAGEMENT 1. Value of your account: Here as its name says you will place the value corresponding to the size of your account, for example if your account is 150 dollars the corresponding val
Pin Bars MT5
Yury Emeliyanov
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
The Simple Manual Trading Panel (v2.11) Is a professional trade management tool designed with a clean, movable UI to streamline manual execution and automated exit strategies. Core Features Dynamic Visual Interface: A movable GUI panel that provides real-time information including a bar countdown timer, live spread, and advanced volume analysis. Flexible Lot Size setting, with 2 decimals (If broker supports it). Multi-Stage Take Profit: Supports three distinct Take Profit (TP) levels in either
LT Ajuste Diario
Thiago Duarte
3.67 (3)
This is a tool in script type. It shows in chart the actual and/or past day ajust price in a horizontal line. The symbol name and it expiration must be set up according to the actual parameters. The lines appearance are fully customizable. You need to authorize the B3 url on MT5 configurations:  www2.bmf.com.br. You need this to the tool can work. This is a tool for brazilian B3 market only!
FREE
MT5 to Telegram & Discord Notifier MT5 to Telegram & Discord Notifier is a lightweight and practical notification utility for MetaTrader 5 that automatically sends real-time trade updates to your Telegram and Discord channels. It is designed for traders who want to stay informed about trading activity without constantly watching the terminal. Once connected, the notifier delivers instant alerts whenever a position is opened or closed, helping you monitor live activity, improve communication, an
FREE
Risk Manager – Assistant de Trade pour MT5 Aperçu Risk Manager – Assistant de Trade est un outil avancé conçu pour améliorer l’exécution des trades, automatiser la gestion des risques et optimiser la performance de trading. Il intègre le calcul dynamique de la taille des lots, une protection par stop-loss caché, l’automatisation des trades et un journal de trading en temps réel pour offrir aux traders un avantage sur le marché. Avec son interface intuitive et ses capacités d’automatisation, Ri
Introduction: The RosMaFin Trading Panel is not just a standard order execution tool. It is a comprehensive, professional assistant designed for manual and price-action traders who want to save time, manage risk with mathematical precision, and maintain full market awareness. Say goodbye to manual lot size calculations and tedious Stop Loss adjustments. This panel streamlines your entire trading workflow from analysis to trade exit. KEY FEATURES & BENEFITS: Advanced Risk Management & Exec
FREE
Kronos is a multi-timer that displays local time, server time and the countdown of the current period. The programme is multilingual, with a choice of English, Italian and Spanish Language selectables in input. Available in four colours and with the choise of five types of font to be used. Like any other programme we have created, the graphic interface is developed to be non-invasive and intuitive. At start-up, the three windows that make up the graphic interface of Kronos are closed on the left
Smart FVG Stats
- Md Rashidul Hasan
5 (1)
The  Smart FVG Statistics Indicator  is a powerful MetaTrader 5 tool designed to automatically identify, track, and analyze Fair Value Gaps (FVGs) on your charts. Love it? Hate it? Let me know in a review! Feature requests and ideas for new tools are highly appreciated. :) Try "The AUDCAD Trader": https://www.mql5.com/en/market/product/151841 Key Features Advanced  Fair Value Gap  Detection Automatic Identification : Automatically scans for both bullish and bearish FVGs across specified histo
FREE
High Low Open Close
Alexandre Borela
4.98 (44)
Si vous aimez ce projet, laissez un examen 5 étoiles. Cet indicateur tire les prix ouverts, élevés, bas et de fermeture pour les prix spécifiés période et il peut être ajusté pour un fuseau horaire spécifique. Il s ' agit là d ' un niveau important qui s ' intéresse à de nombreux domaines institutionnels et professionnels. traders et peut être utile pour vous de connaître les endroits où ils pourraient être plus active. Les périodes disponibles sont les suivantes : Jour précédent. Semaine pré
FREE
Telegram to MT5 Coppy
Sergey Batudayev
5 (8)
Télégramme vers MT5 :   la solution ultime pour copier des signaux Simplifiez votre trading avec Telegram vers MT5, l'outil moderne qui copie les signaux de trading directement des canaux et chats Telegram vers votre plateforme MetaTrader 5, sans DLL. Cette solution puissante garantit une exécution précise des signaux, de nombreuses options de personnalisation, un gain de temps et une efficacité accrue. [ Instructions and DEMO ] Caractéristiques principales Intégration directe de l'API Telegram
ORB Range Architect : Description complète ORB Range Architect est un indicateur professionnel de range de session et d'expansion pour les traders qui souhaitent une structure plus propre, des zones de cassure plus claires et un contexte plus intelligent à partir des cycles de prix de session, quotidiens et hebdomadaires. ORB Range Architect est conçu pour aider les traders à cartographier les plages d'ouverture et de référence les plus importantes sur le graphique, à projeter des niveaux d'ex
StealthTrade Commander est un panneau de trading visuel avancé et un utilitaire de gestion des risques conçu pour les traders manuels, les scalpers et les candidats aux Prop-Firms. Cet outil vous aide à exécuter des transactions visuellement directement depuis le graphique, à cacher vos niveaux de Stop Loss et de Take Profit au courtier (broker), et à contrôler strictement votre Drawdown quotidien — une caractéristique cruciale pour réussir et conserver les comptes financés des Prop-Firms. CARAC
FREE
Trade Manager DashPlus
Henry Lyubomir Wallace
5 (13)
DashPlus est un outil de gestion de trading avancé conçu pour améliorer l'efficacité et la performance de vos transactions sur la plateforme MetaTrader 5. Il offre un ensemble complet de fonctionnalités, incluant le calcul des risques, la gestion des ordres, des systèmes de grilles avancés, des outils basés sur les graphiques et des analyses de performance. Fonctionnalités principales 1. Grille de récupération Implémente un système de grille flexible et de moyenne pour gérer les transactions dan
Algo Scalper EA
Tshepo Michael Motaung
Algo Scalper EA is a confluence day trading robot using market orders and it trades during Trading Sessions. The EA exercise consistency and risk management, it has 2 entry signals produced from  Moving Averages(90 & 120) to harvest the most out of the trending market (on automatic mode). It is capable of allowing you to trade any symbol you want and during the time you want. Profits can only be secured by take profit level. Low spread is highly recommended for this EA, and you will see signific
CosmiCLab SMC FIBO CosmiCLab SMC FIBO is a professional trading indicator designed for traders who use Smart Money Concepts (SMC), market structure analysis and Fibonacci retracement levels. The indicator automatically detects market swings and builds Fibonacci levels based on the latest impulse movement. It also identifies market structure changes such as BOS (Break of Structure) and CHOCH (Change of Character), helping traders understand the current market direction. CosmiCLab SMC FIBO also pr
IMPORTANT NOTE: This is a professional Trade Management Utility and on-chart assistant. It is NOT an automated trading robot. It does not open trades on its own. The UltraFast Trade Manager MT5 is the ultimate execution and risk-management suite designed to give you absolute control over your manual and algorithmic trades. When managing multiple positions, calculating complex net break-even points, or constantly monitoring the economic calendar, hesitation can lead to costly mistakes. This utili
FREE
PropFolio Command Manager Pro PropFolio Command Manager Pro is an advanced, multi-symbol execution terminal designed to automate your custom arrow indicators. Simply enter the name of your arrow indicator into the settings, and the Command Manager will monitor up to 30 currency pairs, indices, or metals simultaneously from a single chart. When your indicator generates a signal, the EA verifies the trend using the built-in Higher Timeframe (HTF) algorithm, checks the live spread, and manages the
Friend of the Trend: Your Trend Tracker Master the market with Friend of the Trend , the indicator that simplifies trend analysis and helps you identify the best moments to buy, sell, or wait. With an intuitive and visually striking design, Friend of the Trend analyzes price movements and delivers signals through a colorful histogram: Green Bars : Signal an uptrend, indicating buying opportunities. Red Bars : Alert to a downtrend, suggesting potential selling points. Orange Bars : Represent cons
FREE
MeeKiew Easy Order Manager (MT5)   is a high-performance trading utility designed to streamline order execution and management on the MetaTrader 5 platform. Specifically optimized for use with the   MeeKiew Dynamic MTF Pivot (MT5)   indicator, this tool allows traders to react to market levels with speed and precision. While MT5 can sometimes feel slower in manual execution, this manager bridges the gap with a "One-Click" philosophy and advanced bulk management features. MeeKiew Dynamic MTF Pivo
FREE
Just $10 for six months!!!. This will draw Supply & Demand zones just by clicking on a candle. It can also draw a 50% line on the zone. https://youtu.be/XeO_x7cpx8g As a drawing tool, it is not active all the time after adding it to the chart. Activate by pressing 's' twice on the keyboard within a second. If activated but then decided not to draw, deactivate by pressing 's' once.  Box color depends if candle is above or below current price. Features: Draw the box up to the last current candl
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
Rainbow MT5
Jamal El Alama
4 (1)
Description : Rainbow MT5 is a technical indicator based on Moving Average with period 34 and very easy to use. When price crosses above MA and MA changes color to green, then this is a signal to buy. When price crosses below MA and MA changes color to red, then this is a signal to sell. The Expert advisor ( Rainbow EA MT5 ) based on Rainbow MT5 indicator is now available here . MT4 version is available here .
FREE
Object Synchronizer MT5 : Better focus/analysis of the price chart in many timeframes. Are you bored to save and load template many times for the same symbol for many chart timeframes? Here is the alternative. With this indicator, you enjoy creating objects across many charts, you can modify the same object in any chart, you can delete the same object in any chart. All objects you created/modified are always synchronized across all chart windows (with the same symbol). Save your time, you can fo
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
KT Forex Trade Manager EA MT5
KEENBASE SOFTWARE SOLUTIONS
Le KT Trade Manager est un outil puissant conçu pour améliorer l'exécution des ordres et la gestion des positions. Grâce à son interface conviviale, les traders peuvent facilement surveiller et contrôler leurs opérations. Cette solution complète couvre divers aspects du trading, notamment la gestion des risques et des positions. En intégrant ces éléments essentiels, elle permet aux traders de naviguer plus efficacement sur les marchés financiers, de prendre des décisions éclairées et d’optimise
Forex 4up MT5
Volodymyr Hrybachov
Do you want to trade and publish your signals in the telegram channel? Then this utility is for you. - Trades in your terminal - Publishes deals to your telegram channel Your customers will be glad to: - from 5 signals daily - beautiful design of signals Customization Service -> Settings -> Expert Advisors -> Allow WebRequest for the following URLs: https://api.telegram.org IN       Telegram       go to @BotFather and create a bot Copy the bot's Token and enter it in the parameters of the advi
Les acheteurs de ce produit ont également acheté
Trade Assistant MT5
Evgeniy Kravchenko
4.42 (209)
It helps to calculate the risk per trade, the easy installation of a new order, order management with partial closing functions, trailing stop of 7 types and other useful functions. Additional materials and instructions Installation instructions - Application instructions - Trial version of the application for a demo account Line function -   shows on the chart the Opening line, Stop Loss, Take Profit. With this function it is easy to set a new order and see its additional characteristics bef
Bienvenue sur Trade Manager EA, l’outil ultime de gestion des risques conçu pour rendre le trading plus intuitif, précis et efficace. Ce n’est pas seulement un outil d’exécution d’ordres ; c’est une solution complète pour la planification des trades, la gestion des positions et le contrôle des risques. Que vous soyez débutant, trader expérimenté ou scalpeur ayant besoin d’une exécution rapide, Trade Manager EA s’adapte à vos besoins, offrant une flexibilité sur tous les marchés, des devises et i
Local Trade Copier EA MT5
Juvenille Emperor Limited
4.96 (136)
Découvrez une expérience exceptionnellement rapide de copie de trades avec le   Local Trade Copier EA MT5 . Avec sa configuration facile en 1 minute, ce copieur de trades vous permet de copier des trades entre plusieurs terminaux MetaTrader sur le même ordinateur Windows ou Windows VPS avec des vitesses de copie ultra-rapides de moins de 0.5 seconde. Que vous soyez un trader débutant ou professionnel, le   Local Trade Copier EA MT5   offre une large gamme d'options pour le personnaliser en fonc
Farmed Hedge Yield Farming | All Markets (Manual - Hybrid - Semi/Automated EA) MULTI-ASSET SUPPORT Trade any asset available on your broker - Forex: Major, Minor, Exotic pairs - Crypto: BTC, ETH, XRP, SOL, BNB - Stocks: Apple, Tesla, Amazon, Google, etc. - Commodities: Gold, Silver, Oil, Gas - Indices: US30, NAS100, SPX500, DAX40 - Any CFD your broker offers VERIFIED TRADING RESULTS - Farmed Hedge Yield Axi Copy:  https://www.mql5.com/en/signals/2356376 - Farmed Hedge Yield Exn Copy:   https:/
TradePanel MT5
Alfiya Fazylova
4.87 (153)
Trade Panel est un assistant commercial multifonction. L'application contient plus de 50 fonctions de trading pour le trading manuel et permet d'automatiser la plupart des tâches commerciales. Avant l'achat, vous pouvez tester la version de démonstration sur un compte de démonstration. Télécharger la version d'essai de l'application pour un compte de démonstration : https://www.mql5.com/fr/blogs/post/762644 . Instructions complètes ici . Commerce. Permet d'effectuer des opérations commerciales e
Version Bêta Le Telegram to MT5 Signal Trader est presque prêt pour la sortie officielle en version alpha. Certaines fonctionnalités sont encore en développement et vous pourriez rencontrer de petits bugs. Si vous rencontrez des problèmes, merci de les signaler, vos retours aident à améliorer le logiciel pour tout le monde. Telegram to MT5 Signal Trader est un outil puissant qui copie automatiquement les signaux de trading depuis des chaînes ou groupes Telegram vers votre compte MetaTrader 5 .
Power Candles Strategy Scanner - Outil de recherche de configurations multi-symboles à optimisation automatique Le Power Candles Strategy Scanner utilise le même moteur d'auto-optimisation que celui qui alimente l'indicateur Power Candles, pour chaque symbole de votre Market Watch, en parallèle. Un panneau vous indique quels symboles sont statistiquement négociables à l'instant, quelle stratégie est la plus performante pour chacun, la paire Stop Loss / Take Profit optimale, et vous alerte dès qu
Trade Dashboard MT5
Fatemeh Ameri
4.94 (123)
Trade Dashboard simplifies how you open, manage, and control your trades, with built-in lot size calculation. It allows you to execute trades, manage risk, and control positions directly on the chart, with tools such as partial close, breakeven, and trailing stop. Designed to reduce manual work and help you stay focused on your trading decisions. A demo version is available for testing. Detailed explanations of features are provided within the MQL5 platform. Installation instructions are include
Exp COPYLOT CLIENT for MT5
Vladislav Andruschenko
3.82 (34)
Copieur professionnel de trades pour MetaTrader 5 Un copieur de trades rapide, professionnel et fiable pour MetaTrader . COPYLOT permet de copier des trades Forex entre les terminaux MT4 et MT5 avec prise en charge des comptes Hedge et Netting . La version MT5 de COPYLOT prend en charge : - MT5 Hedge → MT5 Hedge - MT5 Hedge → MT5 Netting - MT5 Netting → MT5 Hedge - MT5 Netting → MT5 Netting - MT4 → MT5 Hedge - MT4 → MT5 Netting Version MT4 Description complète + DEMO + PDF Comment acheter Comme
Trade copier MT5
Alfiya Fazylova
4.59 (41)
Trade Copier est un utilitaire professionnel conçu pour copier et synchroniser les commandesentre les comptes de trading. Les commandes sont copiées du compte/terminal du fournisseur vers le compte/terminal du destinataire, qui sont installés sur le même ordinateur ou vps. PROMOTION - Si vous avez déjà acquis le "Trade copier MT5", vous pouvez obtenir le "Trade copier MT4" gratuitement (pour la copie MT4 > MT5 et MT4 < MT5). Pour obtenir des informations plus détaillées sur les conditions, veuil
Timeless Charts
Samuel Manoel De Souza
5 (4)
Timeless Charts est une solution de graphiques avancée conçue pour les traders professionnels qui ont besoin de graphiques personnalisés / unités de temps personnalisées – y compris les graphiques en secondes / unités de temps en secondes, les graphiques Renko / barres Renko, les graphiques en clusters / footprints et des outils avancés similaires à ceux disponibles sur les plateformes les plus populaires. Contrairement aux graphiques hors ligne traditionnels ou aux simples indicateurs personnal
Footprint Chart Pro — Professional OrderFlow EA for MetaTrader 5 Version 6.34 | Professional tool for real traders | Institutional-Grade Visualization DEMO USERS - PLEASE SELECT EVERY TICK / REAL TICK WHEN TESTING AND YOU HAVE DOWNLOADED HISTORICAL DATA. IF YOU SEE A WAITING SCREEN AND IT IS NOT DOWNLOADING, IT MEANS YOU HAVE LOW HISTORICAL DATA. TRY 1 MIN AND 5 MIN FIRST ON 1 DAY DATA. ONE DAY DATA SHOULD BE THE NEWEST AND MOST CURRENT DATE. PLEASE WAIT UNTIL THE MARKET HAS ROLLED OVER PERIOD.
AntiOverfit PRO MT5
Enrique Enguix
5 (4)
Avant d’acheter un EA, vérifiez s’il tient vraiment la route ou s’il a simplement eu de la chance en backtest. La plupart des robots se vendent avec un beau backtest. Une courbe qui monte. Un bon profit factor. Très peu de doutes. Et pourtant, beaucoup de ces EA s’effondrent dès que le marché cesse de se comporter comme dans cet historique précis. Pourquoi ? Parce qu’un backtest ne prouve qu’une seule chose : que cette stratégie a fonctionné sur un parcours de prix bien précis. Il ne prouve pas
MT5 to Telegram Signal Provider est un utilitaire facile à utiliser et entièrement personnalisable qui permet l'envoi de signaux spécifiés vers un chat, un canal ou un groupe Telegram, transformant ainsi votre compte en fournisseur de signaux. Contrairement à la plupart des produits concurrents, il n'utilise pas d'importations DLL. [ Démonstration ] [ Manuel ] [ Version MT4 ] [ Version Discord ] [ Canal Telegram ]  New: [ Telegram To MT5 ] Configuration Un guide utilisateur étape par étape est
Copy Cat More Trade Copier MT5 (Chat Copieur MT5) est un copieur de trades local et un framework complet de gestion des risques et d'exécution conçu pour les défis commerciaux d'aujourd'hui. Des défis de prop firms à la gestion de portefeuille personnel, il s'adapte à chaque situation avec une combinaison d'exécution robuste, de protection du capital, de configuration flexible et de gestion avancée des trades. Le copieur fonctionne à la fois en mode Master (expéditeur) et Slave (récepteur), avec
HINN MagicEntry Extra
ALGOFLOW OÜ
4.71 (14)
HINN MAGIC ENTRY – the ultimate tool for entry and position management! Place orders by selecting a level directly on the chart! full description   ::  demo-version  :: 60-sec-video-description Key features: - Market, limit, and pending orders - Automatic lot size calculation - Automatic spread and commission accounting - Unlimited partitial take-profits  - Breakeven and trailing stop-loss and take-profit  functions - Invalidation leves - Intuitive, adaptive, and customizable interface - Works
Seconds Chart MT5
Boris Sedov
4.59 (17)
Seconds Chart - un outil unique pour créer des graphiques en secondes dans MetaTrader 5 . Grâce à Seconds Chart , vous pouvez créer un graphique avec une période définie en secondes, offrant une flexibilité et une précision idéales pour l'analyse, indisponibles sur les graphiques standards en minutes ou en heures. Par exemple, la période S15 indique un graphique avec des bougies d'une durée de 15 secondes. Vous pouvez utiliser n'importe quels indicateurs et experts advisors compatibles avec les
ABQ Visual Risk Sizer
Cristian David Castillo Arrieta
ABQ Visual Risk Sizer - Risque Institutionnel et Exécution de Transaction Catégorie : Utilitaires / Gestion du Risque Le calcul manuel des lots coûte du temps et de l'argent. Dans le trading moderne, particulièrement lors de la gestion de comptes financés (Prop Firms), une erreur de calcul de lotissage ou un délai de 5 secondes lors de la saisie d'un ordre peut signifier la violation de la règle de Drawdown quotidien ou la perte du prix d'entrée parfait. ABQ Visual Risk Sizer est un outil de qua
Custom Alerts AIO : Surveillez tous les marchés à la fois — sans aucune configuration Présentation Custom Alerts AIO est une solution de surveillance du marché prête à l’emploi, sans configuration nécessaire. Tous les indicateurs requis — FX Power, FX Volume, FX Dynamic, FX Levels, IX Power — sont directement intégrés. Aucun graphique n’est affiché, ce qui rend cet outil idéal pour la génération d’alertes en temps réel. Il prend en charge toutes les classes d’actifs proposées par votre courtie
Cerberus Equity Watcher
Samuel Bandi Roccatello
5 (3)
Cerberus the Equity Watcher est un outil de gestion des risques qui surveille en permanence la valeur de votre compte et empêche les pertes importantes, qu'elles soient causées par des EA défectueux ou des émotions si vous êtes un trader discrétionnaire. Il est extrêmement utile pour les traders systématiques qui s'appuient sur des EA susceptibles de contenir des bogues ou de ne pas fonctionner correctement dans des conditions de marché inattendues. Cerberus vous permet de définir une valeur min
Telegram To MT5 Receiver
Levi Dane Benjamin
4.31 (16)
Copiez les signaux de n'importe quel canal dont vous êtes membre (y compris les canaux privés et restreints) directement sur votre MT5.  Cet outil a été conçu en pensant à l'utilisateur et offre de nombreuses fonctionnalités nécessaires pour gérer et surveiller les trades. Ce produit est présenté dans une interface graphique conviviale et attrayante. Personnalisez vos paramètres et commencez à utiliser le produit en quelques minutes ! Guide de l'utilisateur + Démo  | Version MT4 | Version Disc
Panneau de trading pour MetaTrader 5 — contrôle professionnel du trading en un clic depuis le graphique et le clavier Un panneau de trading avancé conçu pour les traders actifs, afin d’ouvrir, gérer et clôturer des positions bien plus rapidement qu’avec l’interface standard de MetaTrader. Cette solution s’adresse à ceux qui veulent contrôler positions, ordres en attente, profit global et exécution depuis un seul espace de travail professionnel. Il ne s’agit pas d’un simple utilitaire. C’est un
HINN Lazy Trader
ALGOFLOW OÜ
5 (2)
The core idea: using the user interface, you configure the parameters the chart must meet before entering a position (or positions), choose which entry models to use, and set the rules for when trading and planning should end. Lazy Trader  handles the rest: it  takes over all the routine chart watching and execution! full description  :: 3 key videos [1] ->  [2]   ->  [3] What can it do? - Understands Larry Williams market structure - Understands swing market structure by Michael Huddleston
Poc Breakout Signal: The Ultimate Institutional Order Flow & Price Action System Elevate your trading with Poc Breakout, a comprehensive technical analysis tool designed to bridge the gap between retail trading and institutional market understanding. This all-in-one system combines powerful Buy/Sell signals, advanced Volume Profile analysis, real-time Order Flow (Depth of Market), and critical macroeconomic data to give you a clear, unambiguous edge in the markets. Poc Breakout Signal decodes c
Bots Builder Pro MT5
Andrey Barinov
4.17 (6)
This is exactly what the name says. Visual strategy builder . One of a kind. Turn your trading strategies and ideas into Expert Advisors without writing single line of code. Generate mql source code files with a few clicks and get your fully functional Expert Advisors, which are ready for live execution, strategy tester and cloud optimization. There are very few options for those who have no programming skills and can not create their trading solutions in the MQL language. Now, with Bots Builde
The product will copy all telegram signal to MT5 ( which you are member) , also it can work as remote copier.  Easy to set up, copy order instant, can work with almost signal formats, image signal,  s upport to translate other language to English Work with all type of channel or group, even channel have "Restrict Saving Content", work with  multi channel, multi MT5 Work as remote copier: with signal have ticket number, it will copy exactly via ticket number. Support to backtest signal. How to s
FUTURES ORDERFLOW FOOTPRINT CHART Professional OrderFlow EA for MetaTrader 5 Version 1.01| Professional tool for real traders | Institutional-Grade Visualization STRATEGY TESTER USERS - PLEASE SELECT EVERY REAL TICK WHEN TESTING AND YOU HAVE DOWNLOADED HISTORICAL DATA. IF YOU SEE A WAITING SCREEN AND IT IS NOT DOWNLOADING, IT MEANS YOU HAVE LOW HISTORICAL DATA. TRY 1 MIN AND 5 MIN FIRST ON 1 DAY DATA. ONE DAY DATA SHOULD BE THE NEWEST AND MOST CURRENT DATE. PLEASE WAIT UNTIL THE MARKET HAS ROL
Le Local Trade Copier EA est une solution pour les commerçants individuels ou les gestionnaires de compte qui ont besoin d'exécuter des signaux commerciaux à partir de sources externes ou qui ont besoin de gérer plusieurs comptes en même temps, sans avoir besoin d'un compte MAM ou PAMM. Il copie jusqu'à 8 comptes maîtres vers un nombre illimité de comptes esclaves [ Guide d'installation | Guide de mise à jour | Dépannage | FAQ | Tous les produits ] 100% auto-hébergé Facile à installer et à util
Ultimate Extractor
Clifton Creath
5 (9)
Ultimate Extractor - Professional Trading Analytics for MT5 *****this is the local HTML version of Ultimate Extractor. !!!!!it is not compatible with Cloud!!!! For the online version please reach out to me directly****** Ultimate Extractor transforms your MetaTrader 5 trading history into actionable insights with comprehensive analytics, interactive charts, and real-time performance tracking. What It Does Automatically analyzes your MT5 trading history across all Expert Advisors and generates
Trader Evolution
Siarhei Vashchylka
5 (7)
" Trader Evolution " - A utility designed for traders who use wave and technical analysis in their work. One tab of the utility is capable of money management and opening orders, and the other can help in making Elliott wave and technical analysis. Manual (Be sure to read before purchasing) | Version for MT4 Advantages 1. Trading in a few clicks. Immediate and pending orders are available in the panel 2. Money management. The program automatically selects the appropriate lot size 3. Simplifies
Plus de l'auteur
The Simple Manual Trading Panel (v2.11) Is a professional trade management tool designed with a clean, movable UI to streamline manual execution and automated exit strategies. Core Features Dynamic Visual Interface: A movable GUI panel that provides real-time information including a bar countdown timer, live spread, and advanced volume analysis. Flexible Lot Size setting, with 2 decimals (If broker supports it). Multi-Stage Take Profit: Supports three distinct Take Profit (TP) levels in either
Trend Matrix Panel is a multi-timeframe technical indicator for MetaTrader 5 that compresses an entire trading session's structural picture into a single panel. Rather than flipping between charts to read M1, M15, H1, and D1 separately, the panel shows the trend state of three configurable moving averages across twelve timeframes simultaneously, with a heatmap that draws your eye to the genuinely strong signals and away from noise. The core idea is simple: every cell in the matrix tells you how
This script is an Intelligence Gathering Utility designed to give you full control over your data exports from MetaTrader 5. It allows you to synchronize up to three different symbols into a single file with precise timestamping. 1. Setting the Data Range (Range) You can define exactly which historical period you want to capture: Date Mode : If Last N bars (0 = use date range above) is set to 0 , the script will export all data between your chosen start and end dates. Bar Mode : By entering a nu
Filtrer:
Aucun avis
Répondre à l'avis