double OrderOpenPrice( )
Returns open price for the currently selected order.
現在、選択されているオーダーの約定価格を返します。
Order must be first selected by the OrderSelect() function.
オーダーは、OrderSelect() 関数で、最初に選択されている必要があります。
Sample:
サンプル:
1 2 3 4 | if(OrderSelect(10, SELECT_BY_POS)==true) Print("open price for the order 10 ",OrderOpenPrice()); else Print("OrderSelect returned the error of ",GetLastError()); |