bool OrderModify(int ticket, double price, double stoploss, double takeprofit, datetime datetime expiration, color arrow_color=CLR_NONE)
Modification of characteristics for the previously opened position or pending orders. If the function succeeds, the returned value will be TRUE. If the function fails, the returned value will be FALSE. To get the detailed error information, call GetLastError() function.
既に保有しているポジション、もしくは待機中オーダーの内容を修正します。この関数が正常終了した場合、戻り値は TRUE です。この関数が失敗した場合、戻り値は FALSE です。詳細なエラー情報を取得するには、GetLastError() を呼び出します。
Notes: Open price and expiration time can be changed only for pending orders.
注意: 注文価格と有効期限は、待機中オーダーのみ変更することができます。
If unchanged values are passed as the function parameters, the error 1 (ERR_NO_RESULT) will be generated.
もし、変更されていない値が、関数パラメータとして渡された場合、エラー 1 (ERR_NO_RESULT) が生成されます。
Pending order expiration time can be disabled in some trade servers. In this case, when a non-zero value is specified in the expiration parameter, the error 147 (ERR_TRADE_EXPIRATION_DENIED) will be generated.
待機中オーダーの有効期限は、一部のトレード サーバーで無効になることがあります。この場合、ゼロ以外の値が、有効期限パラメータで指定されると、エラー 147 (ERR_TRADE_EXPIRATION_DENIED) が生成されます。
Parameters:
パラメータ:
|
Sample:
サンプル:
1 2 3 4 5 6 7 8 9 10 11 12 | if(TrailingStop>0) { OrderSelect(12345,SELECT_BY_TICKET); if(Bid-OrderOpenPrice()>Point*TrailingStop) { if(OrderStopLoss()<Bid-Point*TrailingStop) { OrderModify(OrderTicket(),OrderOpenPrice(),Bid-Point*TrailingStop,OrderTakeProfit(),0,Blue); return(0); } } } |