Thanks!
Yesterday I also wrote a code which easily downloads fromm Google, only Assets names should be enterred into the code. Enough to "test" the code. For me 1 minute was enough to download 80 assets' history:
Quote:

int download (string ass)
{
string Code = ass;
string URL = strf("http://www.google.com/finance/historical?q=%s&startdate=01-Jan-2000&output=csv",Code);
string Content = http_transfer(URL,0);

file_write("Historyhistory.csv",Content,0);
dataNew(1,0,7);
if(dataParse(1,"%d-%b-%y,f3,f1,f2,f4,f6","Historyhistory.csv"))
dataSave(1,strf("History%s.t6",Code));
}

void main()
{

while(loop( // Here you can list all assets
"AGG",
"ALFA",
"AMZA",
// ....
))
download(Loop1);


}




Last edited by konorti; 06/22/17 13:11.