GMail Reader using MQL and wininet – script MetaTrader 4

GMail Reader using MQL and wininet - script for MetaTrader 4
Description: This script reads your unread GMail messages. Google provide read only access to GMail inbox via secured http protocol. Messages are displayed on chart. Script properties consist of: GMailUserName = “your_account@gmail.com”; GMailPassword = “your_password”; NumOfEntries = 5. The feed consist of maximum of 20 entries of unread messages. It is far easier writing code … Read more

CSV file reader for MQL5 – library MetaTrader 5

CSV file reader for MQL5 - library for MetaTrader 5
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 … Read more

EVZ Reader – script MetaTrader 4

EVZ Reader - script for MetaTrader 4
This program downloads daily EVZ data which is needed in the Euro FX Vix indicator from Yahoo Finance. It is necessary to add the URL “https://query1.finance.yahoo.com” to the list of allowed URLs in the ‘Advisors’ tab (Tools > Options > Expert Advisors) for this program to work. It can download data once and be removed … Read more

EVZ Reader – script MetaTrader 5

EVZ Reader - script for MetaTrader 5
This program downloads daily EVZ data which is needed in the Euro FX Vix indicator from Yahoo Finance. It is necessary to add the URL “https://query1.finance.yahoo.com” to the list of allowed URLs in the ‘Advisors’ tab (Tools > Options > Expert Advisors) for this program to work. It can download data once and be removed … Read more

Simplest CSV file reader – script MetaTrader 5

Simplest CSV file reader - script for MetaTrader 5
Use this simplest class to read CSV file with out any preparations and types casting declarations. Find the shortest usage example below. string Filename = “filename.csv”; CDKSimplestCSVReader CSVFile; // Create class object // Read file pass FILE_ANSI for ANSI files or another flag for another codepage. // Give values separator and flag of 1sr line … Read more