Thanks!

My broker is FXChoice (MT4).
I just created the attached AssetsFix.csv with this script:

Code:
// connect to your broker and click the "Trade" button.
// this script creates this file: /zorro/log/assets.csv
// replace your assetsfix.csv in /zorro/history/ with this file!
// (better make a backup of the old one, jsut in case you need it again!)

function run()
{
	StartDate = 20180101;
	EndDate = 20181231;
	LookBack = 1;
	BarPeriod = 1440;


	while(asset(loop("AUD/CAD","AUD/CHF","AUD/JPY","AUD/NZD","AUD/USD","CAD/CHF","CAD/JPY","CHF/JPY","EUR/AUD","EUR/CAD","EUR/CHF","EUR/GBP","EUR/JPY","EUR/NZD","EUR/USD","GBP/AUD","GBP/CAD","GBP/CHF","GBP/JPY","GBP/NZD","GBP/USD","NZD/CAD","NZD/CHF","NZD/JPY","NZD/USD","USD/CAD","USD/CHF","USD/JPY"))) 
									
	{
		vars Price = series(price());
	}
}


Attached Files
AssetsFix.csv (16 downloads)
Last edited by sdh309795gaas; 02/26/19 19:00.