Tagged Questions

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
836 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 ...
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 ...
2
votes
1answer
365 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
857 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
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
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
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
3answers
424 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
409 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" ...
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
3answers
172 views

QUICKFIX 64-bit Build for .NET on Visual Studio (.NET C++ DLL Wrapper)

I spent a sleepless night trying to build QUICKFIX to have the 64-bit version of quickfix_net.dll and quickfix_net_messages.dll My C# Framework is 64-bit and the regular offered QUICKFIX dll's are ...
0
votes
0answers
87 views

Quickfix C++: passing a message from an “acceptor” to an “initiator” [SOLVED] [closed]

Possible Duplicate: Quickfix: acceptor and initator in same application? I am building an application with Quickfix C++, where I would need to accept a request from the clients and forward ...
0
votes
1answer
79 views

how to use quickfix c++ isSessionTime()

anyone know how to use the fucntion bool isSessionTime(const DateTime& time) of quickfix/c++? What I mean is that what should be passed in as the parameter? In the quickfix/J, there is no ...
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
424 views

run quickfix engine

I'm trying to get started with c++ quickfix engine. I downloaded the project (VS2010 version). The documentation is rather poor, so my understanding is that the project quickfix_vs10 is the actual ...
0
votes
1answer
289 views

How to get the quickfix timestamp?

I've seen in quickfix doxygen documentation that it generates an utc timestamp as soon as it has received a FIX message from a socket file. Have a look in ThreadedSocketConnection::processStream(), it ...