historex: export the history of rates and ticks to cs v-files

historex: export the history of rates and ticks to cs v-files
Download ALL MT5 scripts (351)
YouTube Video Thumbnail



Similar MetaTrader Tools

historex: export the history of rates and ticks to cs v-files

Info

The historex: export the history of rates and ticks to cs v-files is a Script for MetaTrader 5 that metatrader 5 allows you to export/import rates and ticks from/to the "symbols" dialog. due to some limitations, the export of ticks may not cover all required (available) history.

Usage

This tool is typically used for enhancing chart analysis and decision making.

Platform

This Script works exclusively on MetaTrader 5 (both build 600+ and newer versions).

Setup

Place the downloaded file in MQL5/Scripts folder via File ? Open Data Folder in MetaTrader 5.


How to Install and Use historex: export the history of rates and ticks to cs v-files

1. Installation: Move your script file into the MQL/Scripts directory and restart the platform.

2. Execution: Drag the script onto a chart; it will perform a one-time action, such as closing all open orders or clearing chart objects.

3. Editing: Use MetaEditor (F4) to modify code, click "Compile," and verify no errors appear in the terminal before running.

4. Removing: Scripts stop automatically, but you can remove them manually by right-clicking the chart and choosing "Remove Script."

Frequently Asked Questions

Q: How are scripts different from EAs? A: Scripts execute a single action and then stop; EAs monitor the market and trade continuously.

Q: Can I assign a hotkey to a script? A: Yes, right-click the script in the Navigator, select "Set Hotkey," and define your preferred keyboard shortcut.

Q: Why did my script stop? A: Scripts are designed to stop immediately after finishing their programmed command; this is normal behavior.

What this tool does

metatrader 5 allows you to export/import rates and ticks from/to the "symbols" dialog.

Typical Use Case

This Script excels in automated trading and technical analysis on MetaTrader 5.

Compatible Platform & Setup

This Script works on MetaTrader 5. Place the file in the MQL5/Scripts folder and restart the terminal.

Description & Settings

Related: Trade Journal Exporter: Closed Positions to CSV - another powerful script for MetaTrader 5 traders.


metatrader 5 allows you to export/import rates and ticks from/to the "symbols" dialog. due to some limitations, the export of ticks may not cover all required (available) history. this script allows you to export entire history or any part of it into the same csv-format used by standard export/import facilities.

Also recommended: advanced trade history exporter: mae, mfe, and time-based analysis - similar script with strong performance on MetaTrader 5.

the script uses the current chart's symbol. its history of rates and ticks in a given range of dates is saved into 2 csv-files (in mql5/files folder). the file names include symbol name, timeframe (for rates), range of dates.
input parameters

filterstart - first datetime to start processing from;

filterstop - last datetime to process (up to but not including);
by default both parameters are 0, which means entire available history.

You may also like: asq trading journal export - excellent alternative for script users on MetaTrader 5.

Source Code

#property script_show_inputs
#property description "Educational code - RobotFX www.robotfx.org"
input datetime FilterStart = 0;
input datetime FilterStop = 0;
const long DAY_LONG = 60 * 60 * 24;
#define TTSM(x) TimeToString((datetime)(x), TIME_DATE|TIME_MINUTES)
interface TickPlayer
{
bool accept(const MqlTick &t);
};

.......

Leave your opinion, ask a question, share some knowledge

Limitations & Risk Warning

  • This tool is provided for educational and testing purposes only.
  • Past performance does not guarantee future results.
  • Trading involves substantial risk of loss. Use on a demo account first.
  • Results may vary depending on market conditions, broker, and settings.
  • We recommend thorough backtesting and forward testing before using with real funds.
© ROBOTFX Free educational tools by RobotFX. Use entirely at your own risk; we are not liable for any financial losses incurred.