Ok, here is a simple result of a simple script.
the strategy should open a trade at every pricelevel @1.4300
i set in the script the TICKS function and test in a 1 Hourchart.
usually the strategy should open very much trades, but opens only 2 orders.
this are the orders where the open of a 1 hour candle was exactly at 1.4300.
In my opinion: this is a big bug. like i stated befor. the execution of a trade shoudl process immediately if the conditions are right, otherwise a trader likes to open a trade at the open of a new candle. this is a normal process, that i usually check at open of a new bar the conditions at the last bar.

for example if a MA cross happens then i take the value of bar 2 and the value of bar 1 and calculate the possible cross. this process happens at opening at Bar 0 and if conditions met, the trade opens at the next tick and not at the very next opene of bar.

maybe i'm doing something wrong and i'm an idiot, but if not, then Zorro is in a not-acceptable state.
here is the script and a picture of this script:

function run()
Code:
function run()
{
	set(TICKS);
	NumDays = 500;
	var priceLevel = 1.4300;
	if(priceOpen() == priceLevel)
	{
		enterLong();
	}
	
}





i draw a line, where the pricelevel is, then you can imagine that there must be more orders executed

@jcl: if you are not understanding my english then it is easier for me to explain in german. we could also have a skype session if you want.

Last edited by PriNova; 11/09/12 17:25.