This is somewhat related to the previous observation so I'll put it here.

I want to store RollLong/Short values from AssetsFix file in order to use a different rollover calculation as you suggested.

I have code like this:

Code:
if(is(INITRUN)){
	x = (var)RollShort;
}
RollShort = 0;



This works fine with a fresh Zorro start. But if I re-run the script Zorro remembers that RollShort = 0 from the previous run so the assignment to x variable is useless. Is it like this because of some other feature or would it make more sense to reset the rollover values with each new test run?