int OrderMagicNumber( )
Returns an identifying (magic) number for the currently selected order.
現在、選択したオーダーの識別(マジック)番号を返します。
Note: The order must be previously selected by the OrderSelect() function.
注意:
オーダーは、OrderSelect() 関数で事前に選択されている必要があります。
Sample:
サンプル:
if(OrderSelect(10,SELECT_BY_POS)==true)
Print("Magic number for the order 10 ", OrderMagicNumber());
else
Print("OrderSelect returned error of ",GetLastError());
|