Voir comment télécharger gratuitement des robots de trading
Retrouvez-nous sur Facebook !
Rejoignez notre page de fans
Un script intéressant ?
Poster un lien vers celui-ci -
laisser les autres l'évaluer
Vous avez aimé le script ? Essayez-le dans le terminal MetaTrader 5
Bibliothèque

CSV file reader for MQL5 - bibliothèque pour MetaTrader 5

Vues:
7461
Note:
(21)
Publié:
2019.02.23 17:01
Mise à jour:
2019.02.23 22:17
\MQL5\Scripts\
Sample.mq5 (3.59 KB) afficher
\MQL5\Files\
sample.zip (12.67 KB)
\MQL5\Include\
CsvReader.mqh (19.16 KB) afficher
Besoin d'un robot ou d'un indicateur basé sur ce code ? Commandez-le sur Freelance Aller sur Freelance

Usage of the class

1. Set up an array of column descriptions  in an MqlParam array.

   CCsvReader infile; 
   MqlParam example_column_desc[] =
   {
    { TYPE_STRING,   0, 0.0, "symbol" },       // 1. field is string
    { TYPE_DOUBLE,   0, 0.0, "contractsize" }, // 2. field is double
    { TYPE_DATETIME, 0, 0.0, "expiration" }    // 3. field is datetime
   }; 
   infile.FieldDesc(example_column_desc);


2. Open the file with the Open() function

   infile.Open(InpFileName, FILE_READ);

2a. When the file has a header and your are not interested in the contents of the headerline skip it with Readline(void).  

infile.ReadLine();


3. With ReadLine(MqlParam arr) a MqlParam array is filled with values of one text line of the CSV file.

   MqlParam dataline[];
   int fieldsread;
   fieldsread = infile.ReadLine(dataline);
 

Disadvantages of this class

  • this code is not very fast
  • handles only handle Unicode files at the moment. Single byte files are not a development priority.
  • It is possible this code reads a line and notices that EOF is reached at the end of the line.If possible do not  test with IsEnding(), use the return value  of the ReadLine functions instead. The return value will only return FILE_STATE_EOF after the next read. So all records will be processed.

Using the samples

I provided a LibreCalc spreadsheet with 3 sheets. It is a sample that calculate some orders of a pyramid system. The first sheet as exported as CSV file with "Save As...". Use format CSV file with Tab as separator and to use Unicode. Put the CSV file in your <MQL5>\Files directory. The script Sample.mq5 will read the CSV file and print the values of the CSV file.



Adaptive moving average - double smoothed Adaptive moving average - double smoothed

Adaptive moving average - double smoothed

Normalized MACD - of averages Normalized MACD - of averages

Normalized MACD of averages

Intra-day ATR Intra-day ATR

Intra-day average true range

Intra-day Keltner channel Intra-day Keltner channel

Intra-day Keltner channel