Tag: QuickFIX/J

  • QuickFIX/J Book a FX Trade

    In our last tutorial we created a basic initiator and an acceptor. In this post we will enhance our code and we will book a single order. First we will enhance our executor class which is TestTradeAppExecutor.java. Important thing to note : Extends MessageCracker – which provides callback methods Implementation of fromApp cracks the message…

  • QuickFIXJ Initiator Acceptor Integration

    This post is beginning of a set of tutorial which we will write as part of building a web based application which will use QuickFIX/J for trade booking. By end of this tutorial you should have an initiator and acceptor with valid login working. In previous post we created an initiator. Though in this post…

  • Send and Receive Message from FIX Server using QuickFIX/J

    In this tutorial we will use QuickFIX/J to connect to a remote FIX server and send logon message. To consume messages from FIX server we need an Initiator. What we need : JDK1.6.0 log4j-1.2.15.jar quickfixj-all-1.5.2.jar slf4j-api-1.6.3.jar mina-core-1.1.7.jar First we need to specify the Session and Default Settings to QuickFIX/J. Create a file called as sessionSettings.txt.…