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