double OrderLots( )
Returns amount of lots for the selected order.
選択したオーダーのロット数を返します。
Note: The order must be previously selected by the OrderSelect() function.
注意:
オーダーは、OrderSelect() 関数で事前に選択されている必要があります。
Sample:
サンプル:
if(OrderSelect(10,SELECT_BY_POS)==true)
Print("lots for the order 10 ",OrderLots());
else
Print("OrderSelect returned error of ",GetLastError());
|