Hi jcl!
I narrowed my problem down:
if i trade on demo/fxcm the following script:
Code:
function run()
{
	BarPeriod=1;
	StartDate=2013;
	Verbose=14;
	Weekend=1;
	while(asset(loop("EUR/USD","AUD/USD","GBP/USD","GER30","NAS100","SPX500","UK100","US30","USD/CAD","USD/CHF","USD/JPY","USOil","XAG/USD","XAU/USD")))
	{	
		Stop=TakeProfit=5*PIP;
		if (NumOpenTotal<1)
		{
			if(random()>0) enterLong();
			else enterShort();
		}
	}
	
}



Can you confirm it does nothing after a minute? Or ever:)?
When setting Weekend to 2, or deleting the multiasset loop, it enters a trade normally after 1 minute.

Am i doing something wrong or is it a bug?