The Financial Information eXchange ("FIX") Protocol is a series of messaging specifications for the electronic communication of trade-related messages.

learn more… | top users | synonyms (1)

-1
votes
4answers
326 views

What is the fastest (transactions per second) Java FIX engine out there?

I am using QuickFix/J (Open Source) at the moment, and it has worked well enough. Now I am contemplating changing to a better/commercial FIX Engine, so basically I would like to know which one is the ...
1
vote
3answers
667 views

Help to use FIX (financial information exchange protocol) in application

I am coding on server side for related to financial application in java using proprietary protocol but some one suggested to me that to use FIX (financial information exchange protocol) in place of ...
0
votes
3answers
41 views

Fix Protocol Error : Field [5232] was not found in message

I am using Quickfix and stunnel to connect to server with RSA private key. When I am sending Market Data Request(MsgType=V), I am getting the following error ...
1
vote
2answers
457 views

Sending a TradeCaptureReport in QuickFIX using Python but cannot receive any TradeCaptureReportAck

I wrote an initiator using the Python API for QuickFIX 1.13.3. It simply sends a message of type TradeCaptureReport (code: AE) to an acceptor. I should receive a TradeCaptureReportAck (indeed, I ...
0
votes
2answers
236 views

How to use QuickFix to read secdef.dat file

I'm trying to read the static securities definition file from the CME, located at: ftp://ftp.cmegroup.com/fix/Production/secdef.dat.gz Since they seem to be standard fix messages, I thought I could ...
0
votes
2answers
893 views

How can I get QuickFix to process messages that come in from a resend request?

I am writing an acceptor application and using a persistent FIX session. I am trying to write a recovery mode, such that if I go offline or my program restarts, when I reconnect I want to reprocess ...
1
vote
1answer
425 views

quick simple and fast fix/fast engine

I've talked to several programmers and they said that writing basic engine to encode/decode fix/fast messages is pretty easy and about 3-days work for fix and one week work for fast. I'm looking for ...
0
votes
1answer
29 views

Best way of documenting mapping to different venues

Hi I have been asked by my employer to document how our FIX Spec will map to another venues FiX Spec. This will require hard work as it involves going through each message and seeing how it is ...
0
votes
1answer
130 views

Required field Missing 35 on NewOrderSingle Market Order

Don't know why the the FIX server is throwing this error. Using Fix.4.4, I've got a client generating a Market Order. Its being received by the Server, but its returning an error. The Logon is ...
0
votes
1answer
208 views

Quickfixj :i need to know what is the limitations and the problems for QuickFixJ

i need to know what is the limitations and the problems for QuickFixJ since i want to start development on it and i want to know if there's any problems with
0
votes
1answer
230 views

Can JSCH get messages quickly enough from remote server

I want to write a java tool to monitor some FIX log. The idea is using SSH to logon remote server, then getting the output of command "tail -f xxx" to my PC, rest is some log analysis work. When I ...
1
vote
0answers
29 views

How can I import .FAST files more quickly?

I need to import a large amount of data from .fast files into a database. I have been able to do it using a fast compliant decoder that streams into an application which in turn performs bulk inserts ...
1
vote
0answers
61 views

FIX Engine supporting different versions

We have developed a FIX Engine to support 4.2 version.But however we got a new Liquidity Provider who resides on FIX 4.4 version.Any ideas on how to convert the FIX 4.2 message to 4.4?
1
vote
0answers
269 views

quickfast vs openfast vs openfast.net

I'm looking for fast engine to be used in my program. What are prons and cons of each of these engines? How to select which one to use? Any links to "comparision reports" are welcome as I can not ...
0
votes
0answers
30 views

Quickfixn - Tag Appears More Than Once Rejection

I'm having an issue with Quickfixn and I'm hoping someone with more experience working with it can shed some light on an issue I'm facing. For some reason, messages are getting rejected by the ...
0
votes
0answers
43 views

how to implement arbitration of feed A and feed B in FAST financial protocol?

I need to implement feeds arbitration for FAST protocol. Problem is pretty common and there are even hardware solutions As problem is wide known i do think there should be at least general suggestions ...
0
votes
0answers
22 views

Fiximate replicate?

I want to create something similar to fiximate but the thing I want to do different is filter by venue instead of FIX version. Having downloaded the FIXImate for offline use to get an idea of the ...
0
votes
0answers
13 views

what is the ListUpdateAction used for in FIX?

what is the ListUpdateAction used for in FIX? Reading the FIX dictionary states "If provided, then Instrument occurrence has explicitly changed" What does that mean? Because the valid values for ...
0
votes
0answers
45 views

WSO2 ESB FIX Proxy Initiator Config stored in ESB registry

I am new to WSO2 and I already have got a FIX proxy (initiator) up and running. My question is around the services parameters for a FIX proxy service, can I store the Initiator Config in the registry ...
0
votes
0answers
130 views

Matlab not connecting to QuickFIX with socket initiation?

I am using the current QuikFIX/J package from http://fiximulator.org/ I am trying to get my Matlab code to connect to active components servers which include Banzai and Executor. Here is the Matlab ...
0
votes
0answers
165 views

why initator seems missing logon response and can't build a stable session?

my FIX initiator today didn't get any message in default time and sent TEST message to Acceptor for testing the session if active or not, and not got HEARTBEAT response, so it believed the session was ...
0
votes
0answers
304 views

Help need for openfast implementation

Our stock exchange going to implement FAST messaging in their system in order to reduced the bandwidth usage. We have already implement the FIX based application to trade with Stock exchange. In ...