double OrderProfit( )
Returns the net profit value (without swaps or commissions) for the selected order. For open positions, it is the current unrealized profit. For closed orders, it is the fixed profit.
選択したオーダーの純損益値(スワップ、手数料を除く)を返します。保有ポジションでは、それは現在、未確定損益です。決済ポジションでは、それは確定損益です。
Returns profit 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("Profit for the order 10 ",OrderProfit()); else Print("OrderSelect returned the error of ",GetLastError()); |