Coding program with Metatrader 5 where import BTC CSV data and visualization

 

Hello everyone,

I am new here. I was going through the market place of Metatrader so that anything satisfies my requirement. But I guess I need to code it myself. But a tiny problem.

I am using Metatrdader 5, where there is no option for the importing of CSV or linking the API of CEX.io, so that I can get the historic data loaded in the Metatrader 5 and apply the various indicators.

Friends, kindly suggest me what I can do? I need a code that can interact with my CEX.IO API or else import the data form CSV and apply the SMA or any other indicator on the data looaded.

Please help me.

I have attached my CSV file.

Files:
2018-02-03.txt  2938 kb
 
jafferwilson:

I am using Metatrdader 5, where there is no option for the importing of CSV

https://www.mql5.com/en/docs/files/fileopen

open_flags

[in] combination of flags determining the operation mode for the file. The flags are defined as follows:
FILE_READ file is opened for reading
FILE_WRITE file is opened for writing
FILE_BIN binary read-write mode (no conversion from a string and to a string)
FILE_CSV file of csv type (all recorded items are converted to the strings of unicode or ansi type, and are separated by a delimiter)
FILE_TXT a simple text file (the same as csv, but the delimiter is not taken into account)
FILE_ANSI lines of ANSI type (single-byte symbols)
FILE_UNICODE lines of UNICODE type (double-byte characters)
FILE_SHARE_READ shared reading from several programs
FILE_SHARE_WRITE shared writing from several programs
FILE_COMMON location of the file in a shared folder for all client terminals \Terminal\Common\Files

Reason: