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.

Рекомендуем также
Обзор В быстроменяющемся мире форекса и финансовых рынков быстрое реагирование и точное принятие решений имеют решающее значение. Однако стандартный терминал MetaTrader 5 поддерживает только графики с минимальным временным интервалом в 1 минуту, что ограничивает чувствительность трейдеров к колебаниям рынка. Чтобы решить эту проблему, мы представляем Индикатор свечных графиков на уровне секунд , который позволяет вам легко просматривать и анализировать динамику рынка с интервалами от 1 до 30 сек
SmartSetup Bot Is an advanced trading tool that combines the flexibility of manual configurations with the power of semi-automated features. It automatically generates graphical objects, displaying critical zones such as support and resistance levels, stop loss and take profit areas, and other essential indicators. SmartSetup Bot provides clear and precise visualization of your trading parameters, facilitating informed decision-making. This bot is designed for traders who value manual control bu
FREE
Общее описание Этот индикатор — усовершенствованная версия классического канала Дончия с добавлением практических функций для реальной торговли. Помимо стандартных трёх линий (верхняя, нижняя и средняя), система определяет пробои и отображает их на графике стрелками, показывая только линию, противоположную текущему направлению тренда для более чистого восприятия. Индикатор включает: Визуальные сигналы : цветные стрелки при пробое Автоматические уведомления : всплывающие окна, push и email Фильтр
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"   предназначен для автоматического обнаружения пин-баров на графиках финансовых рынках. Пин-бар – это свеча с характерным телом и длинным хвостом, которая может сигнализировать о развороте тренда или коррекции. Принцип работы:   Индикатор анализирует каждую свечу на графике, определяя размер тела, хвоста и носа свечи. При обнаружении пин-бара, соответствующего заранее определенным параметрам, индикатор отмечает его на графике стрелкой вверх или вниз, в зависимос
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 – Торговый Ассистент для MT5 Обзор Risk Manager – Trade Assistant — это продвинутый инструмент для улучшения исполнения сделок, автоматизации управления рисками и оптимизации торговых результатов. Он включает динамический расчет лота, скрытую защиту стоп-лосса, автоматизацию сделок и журнал трейдера в реальном времени. Благодаря интуитивному интерфейсу и автоматизации Risk Manager идеально подходит для скальперов, дейтрейдеров и свинг-трейдеров, которые хотят торговать эффективно,
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)
Если вам нравится этот проект, оставьте 5-звездочный обзор. Данный показатель рисует открытые, высокие, низкие и закрывающие цены на указанные период и его можно отрегулировать для специфического часового пояса. Это важные уровни, которые выглядят многие институциональные и профессиональные трейдеры и могут быть полезны для вас, чтобы знать места, где они могут быть больше активный. Доступные периоды: Предыдущий день. Предыдущая неделя. Предыдущий месяц. Предыдущий квартал. Предыдущий год. Или
FREE
Telegram to MT5: Идеальное решение для копирования сигналов Упростите свою торговлю с Telegram to MT5 — современным инструментом, который копирует торговые сигналы прямо из каналов и чатов Telegram на вашу платформу MetaTrader 5, без необходимости использования DLL. Это мощное решение обеспечивает точное исполнение сигналов, широкие возможности настройки, экономит время и повышает вашу эффективность. [ Instructions and DEMO ] [ FAQ ] Ключевые возможности Прямая интеграция с Telegram API Аутенти
ORB Range Architect: Полное описание ORB Range Architect — это профессиональный индикатор торговых сессий и их расширений для трейдеров, которым нужна чистая структура, четкие зоны пробоя и глубокий контекст на основе сессионных, дневных и недельных ценовых циклов. ORB Range Architect разработан, чтобы помочь трейдерам наносить на график ключевые уровни открытия и справочные диапазоны, проецировать структурированные уровни расширения от этих диапазонов и отслеживать зоны ордер-блоков (Order Bl
StealthTrade Commander — это передовая визуальная торговая панель и утилита управления рисками, разработанная для ручных трейдеров, скальперов и участников отборов в проп-компании (Prop-Firms). Этот инструмент помогает визуально открывать сделки прямо с графика, скрывать уровни Stop Loss и Take Profit от брокера и строго контролировать дневную просадку, что является ключевой функцией для прохождения челленджей и сохранения финансируемых счетов. ОСНОВНЫЕ ФУНКЦИИ: Risk Guardian (Защита для Проп-ко
FREE
Trade Manager DashPlus
Henry Lyubomir Wallace
5 (13)
DashPlus – это продвинутое средство для управления торговлей, разработанное для повышения эффективности и результативности торговли на платформе MetaTrader 5. Оно предлагает широкий набор функций, включая расчет рисков, управление ордерами, продвинутые системы сеток, инструменты на основе графиков и аналитику производительности. Основные функции Восстановительная Сетка Внедряет систему усреднения и гибкую сетку для управления сделками в неблагоприятных рыночных условиях. Позволяет стратегически
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 — это профессиональный торговый индикатор, основанный на концепциях Smart Money Concepts (SMC), анализе структуры рынка и уровнях Fibonacci. Индикатор автоматически определяет свинги рынка и строит уровни Fibonacci по последнему импульсному движению. Также индикатор определяет ключевые изменения структуры рынка: BOS — Break Of Structure CHOCH — Change Of Character Дополнительно отображаются сигнальные стрелки BUY / SELL при пробое структуры. Индикатор подход
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: Ваш Трекер Трендов Освойте рынок с помощью Friend of the Trend — индикатора, который упрощает анализ трендов и помогает определить лучшие моменты для покупки, продажи или ожидания. С интуитивно понятным и визуально привлекательным дизайном, Friend of the Trend анализирует движения цен и предоставляет четкие сигналы через цветной гистограмму: Зеленые полосы : Указывают на восходящий тренд, сигнализируя о возможностях для покупки. Красные полосы : Предупреждают о нисходящем тр
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 : Лучше сосредоточиться/анализировать ценовой график на нескольких таймфреймах. Вам надоело сохранять и загружать шаблоны по много раз для одного и того же символа для нескольких таймфреймов? Вот альтернатива. С этим индикатором вы будете с удовольствием создавать объекты на нескольких графиках, изменять одинаковые объекты в любом графике, удалять одинаковые объекты с любого графика. Все объекты, которые вы создаете/изменяете всегда синхронизированы на всех окнах графиков
FlatBreakout  MT5 (Бесплатная версия) Детектор флэта и пробоев для MT5 — только для GBPUSD FlatBreakout   MT5  — это бесплатная версия профессионального индикатора FlatBreakoutPro MT5, специально предназначенная для анализа флэта и поиска точек пробоя только по паре   GBPUSD . Идеально для трейдеров, которые хотят познакомиться с уникальной фрактальной логикой FlatBreakout MT5  и протестировать сигналы пробоя диапазона на реальном рынке. Для кого этот продукт Для трейдеров, предпочитающих торгов
FREE
KT Trade Manager — это мощный инструмент для улучшения исполнения сделок и управления позициями. Благодаря удобному интерфейсу трейдеры могут легко контролировать и управлять своими сделками. Это комплексное решение охватывает различные аспекты торговли, включая управление рисками и позициями. Интеграция этих ключевых компонентов помогает трейдерам эффективнее ориентироваться на финансовых рынках, принимать обоснованные решения и оптимизировать торговые стратегии. С развитием глобальных рынков
Forex 4up MT5
Volodymyr Hrybachov
Хотите торговать и публиковать свои сигналы в телеграм канал? Тогда эта утилита именно для вас. - Торгует в вашем терминале - Публикует сделки в ваш телеграм канал Ваши клиенты будут рады: - от 5 сигналов ежедневно - красивое оформление сигналов Настройка Сервис -> Настройки -> Советники -> Разрешить WebRequest для следующих URL:  https://api.telegram.org В   Telegram   перейдите по адресу @BotFather и создайте бота Скопируйте Token бота, и введите его в параметрах советника Создайте свой кан
С этим продуктом покупают
Trade Assistant MT5
Evgeniy Kravchenko
4.42 (209)
Помогает рассчитать риск на сделку, простая установка нового ордера с помощью линий, управление ордерами с функциями частичного закрытия, 7 типов трейлинг-стопа и другие полезные функции. Дополнительные материалы и инструкции Инструкция по установке - Инструкция к приложению - Пробная версия приложения для демо счета Функция Линии   - отображает на графике линию открытия, стоп-лосс, тейк-профит. С помощью этой функции легко установить новый ордер и увидеть его дополнительные характеристики пе
Добро пожаловать в Trade Manager EA — лучший инструмент для управления рисками, предназначенный для упрощения, точности и эффективности торговли. Это не просто инструмент для размещения ордеров; это комплексное решение для удобного планирования торгов, управления позициями и усиленного контроля над рисками. Независимо от того, начинающий вы трейдер, опытный специалист или скальпер, нуждающийся в быстром исполнении, Trade Manager EA адаптируется к вашим потребностям и работает с любыми активами:
Local Trade Copier EA MT5
Juvenille Emperor Limited
4.96 (136)
Опыт экстремально быстрого копирования сделок с помощью Local Trade Copier EA MT5 . Благодаря простой установке в течение 1 минуты этот копировщик сделок позволяет вам копировать сделки между несколькими терминалами MetaTrader на одном компьютере с Windows или на Windows VPS с крайне быстрыми скоростями копирования менее 0.5 секунды. Независимо от того, новичок вы или профессиональный трейдер, Local Trade Copier EA MT5 предлагает широкий спектр опций, чтобы настроить его под ваши конкретные по
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 — это многофункциональный торговый помощник. Приложение содержит более 50 торговых функций для ручной торговли и позволяет автоматизировать большинство торговых операций. Перед покупкой вы можете протестировать демоверсию на демо-счете. Скачать пробную версию приложения для демонстрационного аккаунта: https://www.mql5.com/ru/blogs/post/750864 . Полная инструкция здесь . Торговля. Позволяет совершать торговые операции в один клик: Открыть отложенные ордера и позиции с автоматическим р
Бета-версия Telegram to MT5 Signal Trader почти готов к официальному альфа-релизу. Некоторые функции все еще находятся в разработке, и вы можете столкнуться с небольшими ошибками. Если вы заметите проблемы, пожалуйста, сообщите о них, ваша обратная связь помогает улучшать программное обеспечение для всех. Telegram to MT5 Signal Trader — мощный инструмент, который автоматически копирует торговые сигналы из каналов и групп Telegram прямо в ваш счёт MetaTrader 5 . Поддерживаются как публичные, так
Power Candles Strategy Scanner — самооптимизирующийся инструмент для поиска настроек по нескольким инструментам Power Candles Strategy Scanner использует тот же самооптимизирующийся движок, что и индикатор Power Candles — для всех символов в вашем Market Watch, одновременно. На одной панели отображается информация о том, какие символы в данный момент являются статистически торгуемыми, какая стратегия выигрывает на каждом из них, оптимальная пара Stop Loss / Take Profit, а также отправляется увед
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)
Профессиональный копировщик сделок для MetaTrader 5 Быстрый, профессиональный и надежный копировщик сделок для MetaTrader . COPYLOT позволяет копировать сделки Forex между терминалами MT4 и MT5 с поддержкой счетов Hedge и Netting . Версия COPYLOT для MT5 поддерживает: - MT5 Hedge → MT5 Hedge - MT5 Hedge → MT5 Netting - MT5 Netting → MT5 Hedge - MT5 Netting → MT5 Netting - MT4 → MT5 Hedge - MT4 → MT5 Netting Версия MT4 Полное описание + DEMO + PDF Как купить Как установить Как получить файлы жур
Trade copier MT5
Alfiya Fazylova
4.59 (41)
Trade Copier — это профессиональная утилита, предназначенная для копирования и синхронизации сделок между торговыми счетами. Копирование происходит от счета/терминала поставщика к счету/терминалу получателя, которые установлены на одном компьютере или vps. АКЦИЯ - Если вы уже приобрели "Trade copier MT5", вы можете получить "Trade copier MT4" бесплатно (для копирования MT4 > MT5 и MT4 < MT5). Для получения более подробной информации об условиях, пожалуйста, свяжитесь с нами через личные сообщени
Timeless Charts
Samuel Manoel De Souza
5 (4)
Timeless Charts is an advanced charting solution designed for professional traders seeking for custom charts / custom timeframes , including seconds charts / seconds timeframe, renko charts / renko bars, cluster charts / footprint charts and advanced tools present in most of the popular platforms. Unlike traditional offline charts or simplistic custom indicators, this solution constructs fully custom bars with true timestamp accuracy , down to miliseconds, allowing for a powerful and precise tr
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.
Прежде чем покупать EA, проверьте, действительно ли он держится, или ему просто повезло в бэктесте. Большинство роботов продаются с красивым бэктестом. Растущая кривая доходности. Хороший profit factor. Почти никаких сомнений. И всё же многие такие EA разваливаются, как только рынок перестаёт двигаться так, как в этом историческом участке. Почему? Потому что бэктест доказывает только одно: что эта стратегия сработала на одном конкретном ценовом пути. Он не доказывает, что система выдержит другие
MT5 to Telegram Signal Provider — это простой в использовании полностью настраиваемый инструмент, который позволяет отправлять определённые сигналы в чат, канал или группу Telegram, превращая вашу учётную запись в провайдера сигналов . В отличие от большинства конкурирующих продуктов, он не использует импорт DLL. [ Демо ]   [ Руководство ] [ Версия MT4 ] [ Версия для Discord ] [ Канал в Telegram ]  New: [ Telegram To MT5 ] Настройка Доступно пошаговое руководство пользователя . Никаких знаний A
Copy Cat More Trade Copier MT5 (Копи-Кот MT5) — это локальный торговый копировщик и полная система управления рисками и исполнения, разработанная для современных торговых задач. От испытаний проп-фирм до управления личным портфелем, он адаптируется к любой ситуации с сочетанием надежного исполнения, защиты капитала, гибкой настройки и продвинутой обработки сделок. Копировщик работает как в режиме Мастер (отправитель), так и в режиме Слейв (получатель), с синхронизацией в реальном времени рыночны
HINN MAGIC ENTRY - лучший инструмент для входа и менеджмента позиций! Выставляет ордера через выбор уровня на графике! полное описание    ::    demo-версия    ::   60-sec-video-description Основные функции: - Рыночные, лимитные и отложенные ордера -  Автоматический подсчет лоттажа  -  Автоматический учет спреда и комиссий -  Неограниченное количество промежуточных тейков для позиций - Перевод в безубыток и трейл стоп-лосса и тейк-профита - Уровни инвалидаций - Интуитивно понятный,  адаптивный,
Seconds Chart MT5
Boris Sedov
4.59 (17)
Seconds Chart - уникальный инструмент для создания секундных графиков в MetaTrader 5 . С помощью Seconds Chart вы можете построить график с таймфреймом, заданным в секундах, получая идеальную гибкость и точность анализа, недоступную на стандартных минутных или часовых графиках. Например, таймфрейм S15 обозначает график со свечами продолжительностью 15 секунд. Вы можете использовать любые индикаторы и советники с поддержкой пользовательских символов. Работать с ними так же удобно, как и на станда
ABQ Visual Risk Sizer
Cristian David Castillo Arrieta
ABQ Visual Risk Sizer - Институциональный риск и исполнение сделок Категория: Утилиты / Управление рисками Ручной расчет лота стоит времени и денег. В современном трейдинге, особенно при работе с проп-компаниями (Prop Firms), ошибка в расчете лота или задержка в 5 секунд при открытии ордера может привести к нарушению правила дневной просадки (Daily Drawdown) или потере идеальной цены входа. ABQ Visual Risk Sizer — это инструмент институционального уровня, разработанный для окончательного решения
Custom Alerts AIO: Универсальный сканер рынка — Без настройки Обзор Custom Alerts AIO — это самый быстрый и простой способ отслеживать рыночные сигналы в реальном времени на множестве инструментов без дополнительной настройки и без необходимости покупать другие продукты. В состав входят все необходимые индикаторы от Stein Investments, что делает этот инструмент идеальным решением «всё в одном» для трейдеров, ценящих простоту и эффективность. Просто установите на график и сразу получайте сигнал
Cerberus Equity Watcher
Samuel Bandi Roccatello
5 (3)
Cerberus the Equity Watcher — это инструмент управления рисками, который постоянно отслеживает средства на вашем счете и позволяет избежать крупных просадок, вызванных неисправными советниками или вашим эмоциональным поведением, если вы являетесь дискреционным трейдером. Это чрезвычайно полезно для систематических трейдеров, которые полагаются на советники, которые могут содержать ошибки или могут плохо работать в неожиданных рыночных условиях. Cerberus позволяет вам установить минимальное значе
Telegram To MT5 Receiver
Levi Dane Benjamin
4.31 (16)
Копируйте сигналы из любого канала, участником которого вы являетесь (в том числе частного и ограниченного), прямо на свой MT5. Этот инструмент был разработан с учетом потребностей пользователей и предлагает множество функций, необходимых для управления и мониторинга сделок. Этот продукт представлен в простом в использовании и визуально привлекательном графическом интерфейсе. Настройте свои параметры и начните использовать продукт в течение нескольких минут! Руководство пользователя + Демо  |
Торговая панель для MetaTrader 5 — профессиональная торговля в один клик с графика и клавиатуры Мощная торговая панель для активного ручного трейдинга, которая позволяет открывать, сопровождать и закрывать сделки значительно быстрее и удобнее, чем стандартными средствами MetaTrader. Панель создана для тех, кто хочет получить полный контроль над позициями, ордерами, прибылью и торговыми сценариями в одном рабочем пространстве. Это не просто вспомогательная утилита. Это полноценный торговый интер
Суть: используя юзер-интерфейс вы настраиваете параметры, которым должен соответствовать график до входа в позицию(позиции), настраиваете какие входные модели использовать, настраиваете правила по которым надо завершать торговлю и планирование. А всю рутину по наблюдению за графиком и исполнению Lazy Trader берет на себя. полное описание  :: 3 ключевых видео [1] -> [2] -> [3]  :: [ ДЕМО-ВЕРСИЯ ] Что он умеет? - Понимает структуру рынка по Ларри Вильямсу - Понимает Swing-структуру рынка по Майк
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)
Это визуальный конструктор стратегий. Единственный в своем роде. Превратите свои торговые стратегии и идеи в советники, не написав ни одной строчки кода. Создавайте файлы исходного кода mql в несколько кликов и получайте полнофункциональных советников, готовых к реальной работе, тестеру стратегий и облачной оптимизации. Вариантов для тех, кто не имеет навыков программирования и не может создавать свои торговые решения на языке MQL, очень мало. Теперь с помощью Bots Builder Pro каждый может созд
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
Local Trade Copier EA — это решение для индивидуальных трейдеров или менеджеров по работе с клиентами, которым необходимо выполнять торговые сигналы из внешних источников или которым необходимо управлять несколькими счетами одновременно, без необходимости использования МАМ или ПАММ-счета. Он копирует до 8 основных учетных записей на неограниченное количество подчиненных учетных записей. [ Руководство по установке | Руководство по обновлению | Устранение неполадок | Часто задаваемые вопросы | Вс
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" - Утилита, предназначенная для трейдеров, которые используют в своей работе волновой и технический анализ. Одна вкладка утилиты способна управлять капиталом и открывать ордера, а другая - помогать в построении волн Эллиотта, уровней поддержки и сопротивления, а также линий тренда. Инструкция/Мануал ( Обязательно читайте перед приобретением ) | Версия для МТ4 Преимущества 1. Торговля в несколько кликов. В панели доступны немедленные и отложенные ордера 2. Управление капиталом
Другие продукты этого автора
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
Фильтр:
Нет отзывов
Ответ на отзыв