Only market order is possible for now. But in your case, you can produce same system with just market order.
1. Enter this in ZeroCode:
Buy logics:
Bid > LastPrice + (10 * Point)
Sell logics:
Bid < LastPrice - (10 * Point)
2. In the mql file, find
// Calculate indicators' value
3. Below that, add these code:
PHP Code:
var: LastPrice(0), LastTime(0);
if TimeDay(LastTime) != Day() and Hour()=7 and Minute()=29 then
{
LastPrice = Bid;
LastTime = CurTime();
}
4. In above code, you may change Hour()=7 and Minute()=29 to whatever time you like. But it's in broker's timezone, not CET! So be sure to modify this to correct time.