double OrderClosePrice( )
Returns close price for the currently selected order.
現在、選択されているオーダーの決済価格を返します。
Note: The order must be previously selected by the OrderSelect() function.
注意: オーダーは、OrderSelect() 関数で事前に選択されている必要があります。
Sample:
サンプル:
1 2 3 4 | if(OrderSelect(ticket,SELECT_BY_POS)==true) Print("Close price for the order ",ticket," = ",OrderClosePrice()); else Print("OrderSelect failed error code is",GetLastError()); |