void OrderPrint( )
Prints information about the selected order in the log in the following
format:.
次のフォーマットで、ログに選択したオーダーの情報を出力します。
チケット番号; 約定時間; 取引処理; ロット数; 約定価格; 損切り; 利食い; 決済時間; 決済価格; 手数料; スワップ; 損益; コメント; マジック ナンバー; 待機注文の有効期限.
オーダーは、OrderSelect() 関数で選択されている必要があります。
Sample:
サンプル:
if(OrderSelect(10, SELECT_BY_TICKET)==true)
OrderPrint();
else
Print("OrderSelect failed error code is",GetLastError());
|