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