void OrderPrint( )
Prints information about the selected order in the log in the following format:.
次のフォーマットで、ログに選択したオーダーの情報を出力します。
ticket number; open time; trade operation; amount of lots; open price; Stop Loss; Take Profit; close time; close price; commission; swap; profit; comment; magic number; pending order expiration date.
チケット番号; 約定時間; 取引処理; ロット数; 約定価格; 損切り; 利食い; 決済時間; 決済価格; 手数料; スワップ; 損益; コメント; マジック ナンバー; 待機注文の有効期限.
Order must be selected by the OrderSelect() function
オーダーは、OrderSelect() 関数で選択されている必要があります。
Sample:
サンプル:
1 2 3 4 | if(OrderSelect(10, SELECT_BY_TICKET)==true) OrderPrint(); else Print("OrderSelect failed error code is",GetLastError()); |