pending ticket cannot executed.

 

Why i execute pending ticket, it does not perform in the EA?

My code ....

#property copyright "xxx"
#property link "xxx"
#property show_confirm
bool temp_order_flag = False;
//+------------------------------------------------------------------+
//| script "send pending order" |
//+------------------------------------------------------------------+
#property show_confirm

//+------------------------------------------------------------------+
//| script "send pending order with expiration data" |
//+------------------------------------------------------------------+
int start()
{
int ticket,expiration;
double point;
//----
point=MarketInfo(Symbol(),MODE_POINT);
expiration=CurTime()+PERIOD_D1*60;
//----
while(true)
{
ticket=OrderSend(Symbol(),OP_SELLSTOP,1.0,Bid-100*point,0,0,0,"some comment",16384,expiration,Green);
if(ticket<=0) Print("Error = ",GetLastError());
else { Print("ticket = ",ticket); break; }
//---- 10 seconds wait
Sleep(10000);
}
//----
return(0);
}
//+------------------------------------------------------------------+

Reason: