Tagged Questions
QuickFIX is a full-featured open source FIX engine, currently compatible with the FIX 4.0-5.0 specifications.
7
votes
5answers
3k views
The best way to parse a FIX message?
What's the best way to parse a FIX message ?
(FIX message as in the 'financial' FIX Protocol)
5
votes
4answers
839 views
Preventing :make in VIM from going to a warning
I have a warning I can not easily remove from my build, every time i run ":make" from inside vim the quickfix takes me to some header file I don't care about. How can I prevent VIM from doing this and ...
4
votes
7answers
499 views
Avoiding casting multiple times
I have a method which receives a parameter of base type and performs some pre-processing depending on actual parameter type.
Here is my code:
public void OnMessageReceived(QuickFix42.Message ...
3
votes
1answer
175 views
QuickFIX C++ library - general question regarding ThreadedSocketInitiator
I am new to QuickFIX and I have some basic question regarding QuickFix:
1)
Considering that at one time, there will be only one fix session between an acceptor and an initiator. I do not quite ...
3
votes
2answers
838 views
Repeating groups in quickfix/c++
I am writing a program that uses the quickfix library. The documentation is very poor, so I am requesting the help of SO fellows.
I have seen in the Group class that there are iterators. So I ...
3
votes
2answers
3k views
Open Source FIX Client Simulator
I want test a FIX gateway for our company and was wondering if anything in opensource already exists that I can use or perhaps leverage to complete this task.
I am currently looking at QuickFix but ...
3
votes
2answers
384 views
VIM search for pattern into quickfix
Basically I need to create a quickfix buffer listing all lines that match a regex. What is the best way?
The global command may not be the best, but I think it should be usable. The output of the ...
2
votes
2answers
57 views
FIX issue with new order single
I am new to FIX technology and am working on a FIX application. Whenever I send a NewOrderSingle message, I get an error.
I am using the QuickFix engine in C# and creating RequestPlaceOrder objects ...
2
votes
2answers
74 views
quickfix vs fix antenna
There are two major fix engines:
opensource QuickFix http://www.quickfixengine.org/
commercial Fix Antenna http://www.b2bits.com/trading_solutions/fix_engines/fix_engine_cpp.html
What are cons and ...
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
265 views
FIX protocol engine for Delphi?
Can anyone recommend a FIX Engine (commercial or open source) for use with Delphi?
Is it possible to use QuickFIX with Delphi?
2
votes
3answers
335 views
How to install a python library manually
I built quickfix engine (http://www.quickfixengine.org/) for one of my tasks and also built in python support for it. Unfortunately this is a multi user env and I dont have access to the oython ...
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
2answers
1k views
Customizing the FIX logon process in a QuickFIX acceptor
I'm using QuickFIX and C# to create a FIX acceptor (server). I want the client (the FIX initiator) to logon using a username and password. However, I'm not sure how I can do that in QuickFIX.
By ...
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 ...
2
votes
1answer
1k views
quickfix library questions
I’m new with the quickfix stuff and I have several questions regarding the quickfix library, and I will be more than happy to get answers from you:
I’m planning to develop FIX server that gets FIX ...
2
votes
1answer
366 views
How to get a message request from its sequence number?
Given a sequence number, I need to find the corresponding request message string.
I can't find a way to it easily do that with quickFix lib.
To be short, I've had the idea to use the FileStore "body" ...
2
votes
2answers
3k views
An established connection was aborted by the software in your host machine
The application uses quickfixj library, which uses Apache Mina.
This application keeps a socket connection to a remote host.
Suddenly we get the following error:
[SocketConnectorIoProcessor-0.0] - ...
2
votes
3answers
1k views
DLL runtime error crashes my c# app - how to avoid it?
Within my windows app, i'm using a c++ DLL wrapped with a .NET DLLs (specifically - the quickfix engine).
While running, once every day (not at any specific time), in one of the a constructor of one ...
2
votes
1answer
210 views
quickfixengine: possible to restrict logging?
In quickfixengine is there a setting to specify the log level to restrict number of messages logged? It seems that we are login a lot of data so we would like to restrict it bit. I assume that ...
2
votes
2answers
860 views
Detecting loss of connection to fix gateway? (QuickFix)
I'm trying to find a good way to detect a loss of connection.
My adapter is implemented as a Fix::Application based on one of the examples. It uses a socket initiator to connect to the fix gateway.
...
1
vote
1answer
16 views
Quickfix handling same session from multiple servers
I am using Quickfix/J to implement FIX protocol. The issue is we will have two servers supporting the application when it goes live. However, only one server will have the FIX engine up and running. ...
1
vote
0answers
20 views
ClassNoDefFoundError while running a junit test which is instrumented using TPTP probekit agent
I've been dealing with this error message for a while now and nobody has been able to help me...
I am trying to probe a java application using the standalone TPTP probekit agent with the following ...
1
vote
1answer
104 views
Quickfix - Set sequence number in Python
I use the Python bindings that come with Quickfix and I'd like to set the sequence number through it (see why). How can I do this?
I found the following in the SWIG bindings:
class Session(_object):
...
1
vote
2answers
90 views
quickfix: how to convert FIX::Account to a c_string or other types
I am using quickfixengine to build a FIX application. quickfix almost has no documentation, pretty much like a blackhole. I have a variable which is a FIX::Account type. I know it is a FIX string ...
1
vote
1answer
296 views
QuickFix login problem
I am using QuickFix(C#) to create Fix initiator. I try to logon FXCM server using a username and passwod. But my onLogon method is never triggered. When SocketInitior is started, onCreate method is ...
1
vote
4answers
121 views
Passing data from Django to C++ application and back
We are creating a trading application, where the backend is totally in C++ (using QuickFix engine). We would like to build a web application in Django on top of this backend, where the user can place ...
1
vote
1answer
109 views
How do you read the legs of a multileg order using QuickFix in C#?
When processing a QuickFix44.NewOrderMultileg message in C#, how do you extract the details of the legs?
The only documentation I've found so far seems to apply only to market data and/or be wildly ...
1
vote
1answer
72 views
Accessing UtcTimeStamp from Python via SWIG
I guess this is a python vs SWIG question more than anything else...
I'm using a C++ package with SWIG Python bindings.
One of the objects I receive is a UTC time stamp from which I'm trying to ...
1
vote
1answer
175 views
PyPy - SWIG - QuickFix mix
PyPy has some compatibility limitations, especially regarding the CPython C API.
I use QuickFix package which comes with precompiled SWIG bindings, and I'm considering using it with PyPy. As I am not ...
1
vote
2answers
409 views
QuickFix C# or Python [closed]
We are about to implement a small automated securities trader. The trader will be build on top of the excellent quickfix FIX engine.
After due though, we narrowed our options down to implementing it ...
1
vote
3answers
426 views
Quickfix: acceptor and initator in same application?
I am new to quickfix (I'm a student trying to teach myself), and have downloaded the examples from quickfix.org (in c++) and have been able to connect ordermatch to tradeclient and get them talking to ...
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
2answers
304 views
Setting up Fix Client to Record Tick Data
I am in the process of trying to assemble a tick dataset. What I would like to do is use a Fix Client paired with a vendor's Fix Adapter to retrieve marketdata (tick + orderbook) in FIX format and ...
1
vote
2answers
246 views
quickFixEngine: Initialize QuickFix.SessionSettings with Stream
I use quickFixEngine and want to use ConfigurationSection for all the engion setting instead the setting.txt file.
however I am not sure how to Initialize the SessionSettings with the setting.
I ...
1
vote
2answers
635 views
Quickfix 1.13.3 - SeqNum not reset properly at StartTime with ODBC Store
I am using quickfix 1.13.3 recompiled with ODBC and I have a strange behavior on my acceptors (two acceptors on different machines sharing the same ODBC database and enabled for hot failover).
My ...
1
vote
1answer
657 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
1answer
419 views
QuickFIX or QuickFIX/J?
I can develop with either C or Java. What implementation is most stable for production use? What implementation is most actively developed?
1
vote
1answer
410 views
Cannot pass a GCHandle across AppDomains
I have implemented quickfix engine using asp.net and C#.
and i am calling quickfix_net.dll which is written in unmanaged C++.
but i am getting error like "Cannot pass a GCHandle across AppDomains" ...
1
vote
1answer
375 views
A problem with QT/QuickFIX
I am using both Qt Framework and QuickFIX engine to create a financial application with GUI.
My problem is that when I compile a program that implements QickFIX engine and QT Framework , it gives me 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 ...
1
vote
1answer
831 views
Strange QuickFix engine response to execution report message
I am currently experiencing a strange problem with the open-source QuickFix engine. Our broker is sending some test trades with MsgType = 8 (Execution Report), and our QuickFix engine immediately ...
0
votes
1answer
25 views
QuickFix acceptance test
May someone please explain what exactly acceptance test for QuickFix have to do(test for)?
Right now i have done several test that test the latency and througput of messages but i have no idea what ...
0
votes
2answers
80 views
QuickFix engine acceptor and initiator
i`m trying to make a quickfix initiator and acceptor connect to each other and just send a heartbeats. But no matter what i try it dont seems to work at all. I read all the documentation avaible but ...
0
votes
2answers
39 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 ...
0
votes
0answers
29 views
how to do fix+fast using quickfix?
I consider to buy this connector:
MICEX FIX/FAST Market Data Adaptor http://www.b2bits.com/trading_solutions/market-data-solutions/micex-fixfast.html
But I don't like propriety software by some ...
0
votes
1answer
62 views
QuickFix Sequence Reset not working
I am working on QuickFix/J (FIX 4.2)to submit orders to an acceptor FIX engine. Basically I need help on two accounts:
When I first try to establish a connection with the acceptor, the acceptor ...
0
votes
1answer
95 views
Resetting message sequence numbers without reconnecting
since official QuickFix website is not working, I am asking here.
I am trying to meet my broker's (FXCM) demands for API readiness. I am using quickfix .NET v1.13.3. One of the demands was that I ...
0
votes
1answer
136 views
Quick FIX in C# [closed]
I am working on porting of C++ library on C# which is using QuickFix library.
I am not getting replacement of FIELD_GET_REF in C#, the C++ code is like
if (FIX::MsgType_Heartbeat != FIELD_GET_REF( ...
0
votes
1answer
60 views
Possible reasons for assembly failing to load on production system?
Problem
Assembly is loaded just fine in development, fail to be loaded on production.
Details
The assemblies quickfix_net.dll and quickfix_net_messages.dll (Quickfix.NET API) are failing to load on ...