Got it working correctly! I borrowed info from AssetsOanda.csv to AssetsFix.csv.

However, I noticed that when using 'Test' mode, if I use printf command to output every info from AssetsFix.csv, all displayed correctly except for Leverage. When I changed Leverage to any number, the output via printf didn't change. I even restart Zorro and computer to see if it changes but nope. Is there other file where Leverage info is stored? Here's the code:
Code:
function run()
{

StartDate = 2014;
BarPeriod = 1;

asset("EUR/USD");
printf("n%s Spread: %.5f PipCost: %.6f MarginCost: %.5f Leverage: %.1f",Symbol,Spread,PIPCost,MarginCost,Leverage);
	
	//Lots = pow(2,LossStreakTotal); 

	if(NumOpenTotal == 0) {
		if(random() < 0)
			enterShort();
		else 
			enterLong();
	}
	
	set(PLOTNOW);
	PlotWidth = 800;
	PlotHeight1 = 320;
}