Convert EUR/USD CSV file to CTF

 
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
 

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!!!