Welcome to Forex-TSD!, one of the largest Forex forums worldwide, where you will be able to find the most complete and reliable Forex information imaginable.
From the list below, select the forum that you want to visit and register to post, as many times you want. It’s absolutely free. Click here for registering on Forex-TSD.
Exclusive Forum
The Exclusive Forum is the only paid section. Once you subscribe, you will get free access to real cutting-edge Trading Systems (automated and not), Indicators, Signals, Articles, etc., that will help and guide you, in ways that you could only imagine, with your Forex trading.
Elite Section
Get access to private discussions, specialized support, indicators and trading systems reported every week.
Advanced Elite Section
For professional traders, trading system developers and any other member who may need to use and/or convert, the most cutting-edge exclusive indicators and trading systems for MT4 and MT5.
Hello coders
If is posible to code a script to save me all data what i have avaiable on my metatrader4
for example i open eur/usd 4H chart i put the script and to save me data for eur/usd on CSV format fille and to update evry 4H
If i put the script on 5M timeframe to be update evry 5 min and so on for all timeframe or pair where i put the script
Thanks Very much
Hello coders
If is posible to code a script to save me all data what i have avaiable on my metatrader4
for example i open eur/usd 4H chart i put the script and to save me data for eur/usd on CSV format fille and to update evry 4H
If i put the script on 5M timeframe to be update evry 5 min and so on for all timeframe or pair where i put the script
Thanks Very much
I do not know it is fully identical to your idea or not but I found the folowing:
- OutQuotings.mq4 is script to download the data for selected period into the file;
- Currency_Loader.mq4 is EA.
I do not know it is fully identical to your idea or not but I found the folowing:
- OutQuotings.mq4 is script to download the data for selected period into the file;
- Currency_Loader.mq4 is EA.
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
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.
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.
i know is not a script but the EA dont save me any CSV fille
is very strange
the Currency_Loader.mq4 EA do a great joob but on the first line of the CSV fille i have this "Date" "Time" "Open" "High" "Low" "Close" "Volume"
is posible to modify the EA to dont show me this
i need the CSV fille to start directly with the right line
2006.02.15,23:00,0.8547,0.8557,0.8545,0.8554,118