Details
Description
When ordermatch receives a new order it returns an execution report with ExecType and OrdStatus of FILLED. It should be returning NEW.
The following patch applied to rev 835 in the svn repository fixes this.
cd: quickfixj\examples\src\main\java\quickfix\examples\ordermatch
Index: Application.java
===================================================================
— Application.java (revision 835)
+++ Application.java (working copy)
@@ -147,7 +147,7 @@
}
private void acceptOrder(Order order)
{ - updateOrder(order, OrdStatus.FILLED); + updateOrder(order, OrdStatus.NEW); }private void cancelOrder(Order order) {