MQL4 Reference Trade Functions OrderPrint

MQL4 Help as One File:

OrderPrint

Prints information about the selected order in the log.

void  OrderPrint();

Parameters

Prints information about the selected order in the log in the following format:

#ticket number; open time; trade operation; amount of lots; symbol; open price; Stop Loss; Take Profit; close time; close price; commission; swap; profit; comment; magic number; pending order expiration date.

Note

The order must be previously selected by the OrderSelect() function.

Example:

  if(OrderSelect(10, SELECT_BY_TICKET)==true)
    OrderPrint();
  else
    Print("OrderSelect failed error code is",GetLastError());