<market>0</market>
<tif>DAY</tif>
<ocagroupid></ocagroupid>
*/
if (showDetails) {
SignalAction action = order.action();
int quantity = order.quantity();
String symbol = order.symbol();
BigDecimal limit = order.limit(); //original signal value unless its relative in which case its not available
BigDecimal stop = order.stop(); //original signal value unless its relative in which case its not available
BigDecimal market = order.market();
Duration duration = order.timeInForce();
Integer ocaGroupId = order.oneCancelsAnother();
queue.add(eventFactory.createStartElement("", "", "action"));
queue.add(eventFactory.createCharacters(action.toString()));
queue.add(eventFactory.createEndElement("", "", "action"));
queue.add(eventFactory.createStartElement("", "", "quant"));
queue.add(eventFactory.createCharacters(Integer.toString(quantity)));
queue.add(eventFactory.createEndElement("", "", "quant"));