Quote:
|
Originally Posted by leutzuro
OutQuotings.mq4 works but i dont know if make update evry hour or minutes, depends what timeframe i use
i will test when the market is open
Currency_Loader.mq4 i really dont know what doing because dont save any fille or somethink like this
any help?
thanks for sharing
|
Currency_Loader.mq4 is EA. Not a script.
I open this EA in MetaEditor and it is written the following:
Code:
extern int BarsMin=100; // Minimal number bars in history which might be loaded into files.
extern int MaxBarsInFile = 20000; // Max Bars for loading into file.
extern int FrequencyUpdate = 60; // this value identify frequency update for files in sec.
extern bool LoadM1 = false; //Timeframes of securities which data will be loaded onto File if True
extern bool LoadM5 = false;
extern bool LoadM15 = false;
extern bool LoadM30 = false;
extern bool LoadH1 = false;
extern bool LoadH4 = false;
extern bool LoadD1 = false;
extern bool LoadW1 = false;
extern bool LoadMN = false;
extern bool AllowInfo = True;
extern bool AllowLogFile = True;
As I understand from the code this EA is storing the data to csv file and probably updating as well.