Tagged Questions

2
votes
2answers
157 views

how can I process fix message quicker when sending through quickfixj

I am having a problem with processing speed in QuickfixJ. I read in this question that its possible to process 300messages/sec. I also saw elsewhere numbers reported in the thousands. My Quickfix ...
2
votes
4answers
488 views

FIX communication model - messaging or socket

My situation is: A c++ program needs to talk with a Java program using FIX protocol. My solution: - Messaging: C++ program publishes a text in FIX format which Java progrma can consume and parse ...
2
votes
3answers
342 views

Implementing FIX Protocol-based orders with support for Stop Loss and Take Profit

I spent a substantial amount of time looking for examples or descriptions of how to implement order execution methodology that will support stop losses and take profits through FIX Protocol. I ...
1
vote
1answer
171 views

Compare two FixMessages in QuickFIXJ

I need to compare two fix messages (say two ExecutionReports) in QuickFIXJ. Let's call them er1 and er2 Now, what I mean by comparing them is that a bunch of fields must be identical. for instance ...
1
vote
1answer
656 views

Is it worthy to migrate quickfixj from Mina to Netty?

I am writing a FIX buyside GUI based on quickfixj. Although the performance is not an issue to a GUI, I am thinking of migrating the quickfixj from Mina to Netty as I would like to develop it to a ...
1
vote
2answers
413 views

quick fix for JSP with in Eclipse?

I'm running Eclipse 3.4 java enterprise adition and writing JSP pages with it. It does not appear to support quick fix, for example ArrayList ourList; comes up as an error but there isn't a quick fix ...
0
votes
1answer
134 views

QuickFIX/J how to disable auto logon response

I'd like to perform some operations after receiving LOGON message and then decide if LOGON failed or not (for example check username and password) but... Immediately after receiving LOGON message ...
0
votes
1answer
92 views

quickfix/j problem with receive message

I've problem with QuickFixJ Application. I create object of class(AppImpl) which implements Appplication interface, pass it to SocketAcceptor and wait for messages. However I receive new messages from ...
0
votes
2answers
168 views

Quickfix support for fpml

I am trying to figure out if quickfix supports fpml. I am guessing not , since i could not tell by googling.
0
votes
1answer
729 views

QuickFIX/J Multiple Logon

Currently, the example provided in QuickFIX/J, only allow single executor to talk with single banzai. From the settings in configuration file : SenderCompID TargetCompID Their behavior is as follow ...