bool OrderDelete(int ticket, color Color=CLR_NONE)
Deletes previously opened pending order. If the function succeeds, the return value is true. If the function fails, the return value is false. To get the detailed error information, call GetLastError().
既に注文された待機中オーダーを削除します。この関数が正常終了した場合、戻り値は TURE です。この機能が失敗した場合は、戻り値は FALSE です。詳細なエラー情報を取得するには、GetLastError() を呼び出します。
Parameters:
パラメータ:
|
Sample:
サンプル:
1 2 3 4 5 | if(Ask>var1) { OrderDelete(order_ticket); return(0); } |