expert doesn't work

 

?'m testing this expert on demo, it should open a buy pos and place a Sl when attached to a chart, it does not work


int start()

{

OrderSend(Symbol(),OP_BUY,1.0,Ask,1,Ask-15*Point,0);


return(0);
}


also, I have a problem with the follow this open orders in delay or it doesn't at all 

int start()

{if(Hour() == 16)
if(Minute() == 07)
if(Seconds() > 57)
OrderSend(Symbol(),OP_BUY,1.0,Ask,1,Ask-15*Point,0);


return(0);
}

 
Check your logs, what kind of error is it?
Reason: