thank you for your answer.
i did modify the script and repeated the test in 1 Minute-Chart and 60-Minute Chart with different results.

in 60 Minute-Chart i got my 2 trades like in the last post, but in the M1 Chart Zorro opens all trades at the mentioned priceLevel.

Does Zorro do not take 1 Minute-datas in a 60 Minute-Test? i usually expected the same orders indepentend of timefrime.

Code:
set(TICKS+HEDGING);
function run()
{
	
	NumDays = 500;
	var priceLevel1 = 1.4300;
	if( (priceOpen() >= priceLevel1) and (priceOpen() <= priceLevel1 ))
	{
		enterLong();
	}
	
}


Last edited by PriNova; 11/09/12 18:13.