That will mess up things. Instead you need to add the name conversion to the assetFix function in the Zorro.mq4 script. Example:

Code:
string assetFix(string Asset)
{
	if(Asset == "UK100") return("FTSE100");
	if(Asset == "GER30") return("DAX30");
	...
// rest of the function goes here
}