Hello everyone
I have exported the data in EUR/USD ticks to an Excel CSV file from MT5. I want to convert this data into a file in CTF format for use.Please,tell me how it can be done.
Thanks in advance
Files:
EURUSD.csv
14189 kb
- Functions - Exporting Functions
- Uninstalling the Platform - For Advanced Users - Getting Started
- Depth of Market - Trading Operations
Hello, you can convert with Python.
import pandas as pd
csv_file = 'ruta/a/tu/archivo.csv'
df = pd.read_csv(csv_file)
ctf_file = 'ruta/a/tu/archivo.ctf'
df.to_csv(ctf_file, index=False)
Or with Chat GPT too!!!

You are missing trading opportunities:
- Free trading apps
- Over 8,000 signals for copying
- Economic news for exploring financial markets
Registration
Log in
You agree to website policy and terms of use
If you do not have an account, please register