FIX Query Language

Skip to end of metadata
Go to start of metadata

There is a similar language implemented in HermesJMS. We should investigate it.

Labels:
None
Enter labels to add to this page:
Please wait 
Looking for a label? Just start typing.
  1. Sep 28, 2006

    I used JamSel to implement the SQL-like functionality. The selector is really a JMS selector but is quite effective on a FIX message. There is some good documentation

  2. Sep 29, 2006

    I've been looking at JamSel and it's very interesting. I assume you wrote some type of value adapter for QFJ messages. I'd like to borrow that if use JamSel in QFJ.

  3. Oct 05, 2006

    There is a simple interface to implement that calls you back to get the value of specific fields:

    FIXMessageValueProvider.java

    FIXMessage is just an interface that I wrap your QuickFIX messages in to minimise coupling.

    You also need this to deal with identifiers such as $MsgType

    FIXIdentifierExtension.java

    It's that simple....