QuickFIX is an open source implementation of FIX protocol, currently compatible with the FIX 4.0-5.0 specifications.
0
votes
3answers
42 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
...
0
votes
1answer
35 views
How to parse a string FIXMessage into a FIXMessage object in c#
I have string FIX message as input and I want to convert it into a FIX Message. I am using QuickFix 1.13.3 (which I downloaded few days back from quickfix website)
I am quite new to QuickFix. Most of ...
0
votes
1answer
37 views
how to close and reopen TCP connection in QuickFix
Using QuickFixN, if I restart my trading application I occasionally am unable to logon, getting a "an existing connection was forcibly closed by the remote host" error.
The QuickFix engine retries to ...
1
vote
1answer
50 views
How to connect server by quickfix using private key
Im connecting to server using FIX protocol 4.4.
Previously i used username and password for authentication.
Below is my configuration file
[DEFAULT] ConnectionType=initiator HeartBtInt=30
...
0
votes
1answer
37 views
FIX transport logon message, username/password configuration
In the FIX transport implementation, If synapse acts as an initiator, it first sends logon message to the acceptor..If the acceptor requires username/password for logon message, is there a way to ...
0
votes
0answers
31 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
1answer
44 views
QuickFIX marketdatarequest after disconnect
Im using quickfix. I start session and send MarketDataRequest, it works fine, but after the disconnect happened and quickfix session reconnected, i cant get any market data anymore. Server does not ...
1
vote
1answer
60 views
How to correct a compile/build issue with quickfix (v1.13.3) with Python support (… “_quickfix” import exception)
It took the equivalent of a 1/2 day for me to figure this out, so I want to share the Quickfix Engine compile problem I encountered and the solution.
I didn't get a reply from the "Quickfix Engine" ...
0
votes
1answer
44 views
Disconnect in Quickfixj
I am using quickfixj where I have acceptor from which I am sending fix message using Logout() method "8=FIX.4.29=8235=534=38749=TEST152=20130409-08:01:47.86256=TEST2-1136558=User Is ...
0
votes
1answer
72 views
QuickFIX /n Not Connecting
I have a implementation of QuickFIX/n that I have given to a client. It connects to the Currenex RFQ system. They experience a issue when the start up the application occasionally. No errors are ...
1
vote
2answers
73 views
What's the expected behavior when TCP connection is lost?
I looked through FIX v4.2 spec, it is not clear to me what the expected behavior it should be when the TCP connection is lost in the middle of a session.
More specifically, suppose the current ...
1
vote
2answers
140 views
QuickFix Trouble - Repeating Groups
My fix engine keeps rejecting messages and I was hoping someone could help me figure out why... I'm receiving the following sample message:
8=FIXT.1.1 9=518 35=AE 34=4 1128=8 49=XXXXXXX 56=YYYYYYY ...
0
votes
1answer
39 views
QuickFIX: log rotation feature
It seems QuickFIX has not log rotation feature.
Is it possible to do it somehow?
Thanks in advence
0
votes
2answers
88 views
Quickfixj Persist Messages
I have an acceptor application which sends Market Data to the user. The problem is that even though we have set PersistMessages = N for the sessions we can see that messages are persisted . As per the ...
0
votes
1answer
61 views
quickfix : how to get Symbol ( flag 55 ) from messages?
I'm running QuickFix with the Python API and connecting to a TT FIX Adapter using FIX4.2
I am logging on and sending a market data request for two instruments. That works fine and data from the ...
0
votes
1answer
68 views
FIX session level reject
I am studying fix session layer and having some confusion about session level reject.
In case of a garbled or invalid (error in checksum, bodylength, required tag missing...etc) received message ...
0
votes
0answers
81 views
interfacing quickfix with verilog
I am working on a fpga based FIX session management module written in Verilog. I am exploring possible verification strategy of my hardware fix engine. One thing I have in mind is emulating initiator ...
0
votes
1answer
67 views
FIX Reading Repeating groups
I have a FIX log file. I'm iterating on the lines, putting each string into
Message m = new Message(str, false)
Because for some reason, validation fails on the file (even the first line). Now, I ...
0
votes
1answer
57 views
0
votes
1answer
140 views
Incorrect NumInGroup count for repeating group QuickFix
I am unable to parse this market data incremental refresh message(fix 4.3):
...
0
votes
1answer
78 views
Data Dictionary in QuickFix within .net Wrapper
I'm using the QuickFix .Net Dll to receive and process TradeCaptureReport messages. I have been sent a TradeCaptureReport message that contains a few custom fields.
I'm able to pull some values from ...
0
votes
1answer
101 views
Namespace problems in QuickFix's .Net DLL wrapper
I'm battling with the QuickFix engine in .Net (using the C++ DLL wrapper) to craft a TradeCaptureReportRequest message:
var req = new QuickFix44.TradeCaptureReportRequest();
req.set(new ...
0
votes
2answers
99 views
quickfix sendingtime (field 52) dropping milliseconds
I'm running QuickFix with the Python API and connecting to a TT FIX Adapter using FIX4.2
I'm successfully logging on and sending a market data request. The replies are fine. In my message logs (both ...
1
vote
1answer
62 views
Compile QuickFIX C++ with MySQL Support
I'm trying to compile the quickfix c++ from the source code downloaded, I enabled the have mysql option in the config_windows.h file but it generates error.
I checked the documentation site but i'm ...
0
votes
1answer
103 views
Using QuickFix/n to read a FIX log file
I have a FIX format log file and a data structure I've built myself in C#. What I want to do is to run the log file in QuickFix and build my own event listener. In that listener, I'll convert the FIX ...
2
votes
1answer
99 views
What is the relationship between the FIX Protocol's OrdID, ClOrdID, OrigClOrdID?
I'm pretty new to the FIX protocol and was hoping someone could help clarify some terms.
In particular could someone explain (perhaps with an example) the flow of NewOrderSingle, ExecutionReport, ...
0
votes
1answer
60 views
Quickfix on windows not working as expected?
I am using "quickfix_net.dll" and "quickfix_net_messages.dll" downloaded from quickfix.org.
I am using Visual C++ 2010 Express and doing development in fully managed environment.
When I receive a ...
0
votes
2answers
109 views
QuickFix using Pipes, shared memory, message queues etc
Here's my scenario:
In my application i have several processes which communicate with each other using Quickfix which internally use tcp sockets.the flow is like:
Process1 sends quickfix messaage-> ...
1
vote
0answers
49 views
quickfix sendToTarget and persistence
In a c++ quickfix server app, is there a way to call sendToTarget when the target session is not logged on, so that when the client possibly does logon later it will get all the messages that were ...
0
votes
1answer
77 views
get the value of QuickFix::Field::OrdType?
I downloaded QuickFix.dll from quickfixengine.org
When i declare an object which belongs to namespace QuickFix::Fields, i cannot get its corresponding base value(i mean char value for OrdType, string ...
0
votes
1answer
87 views
Reading quickfix log file
I want to test my trading system by playing execution reports back into my application. Then I could verify that my order/position state is correct.
I found this somewhat related question: how to ...
0
votes
0answers
74 views
quickfixj: Session state is not current
We have a FIX client (on quickfixj 1.5.1) which has been working fine for months. Earlier today, because of some network issue, I had to restart the java process. After the restart, our client was ...
1
vote
0answers
64 views
Quickfix Which has higher priority: message header or sessionID?
If i send A quickfix message using
FIX::Session::sendToTarget(FIX::Message, FIX::SessionID)
Then suppose in header of message:
sender Comp ID = s1, target CompID = t1
and in the SessionID ...
0
votes
1answer
62 views
Error using QuickFix with VC++ in Visual Studio 2010 (utility.obj)
Here it goes:
I downloaded the QuickFix source, built it using CMake and got the .sln file.
Then I opened the .sln file in VC++ 2010 and built the project named "quickfix_vs10"
(actually i built a ...
1
vote
0answers
91 views
Quickfix file log factory
When using the QuickFix dll and the QuickFix interface, I am creating a new session using a QuiCkFix File Store Factory and a Log Factory. Is there a method or a process I can follow to clear these ...
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
1answer
96 views
quick fix (java) protocol reconnect
I am using quick fix protocol,
If my log in (start in SocketInitiator) get reject the fix protocol try to connect again and again every 5 sec (using "ReconnectInterval"),
Is there a way to make the ...
0
votes
1answer
121 views
How to retrieve tag value from quickfixj FIX.4.2 executionreport
I want to persist a fix4.2 message to database by retrieving the value of each tag. I am having the ExecutionReport object of the fix message.
I am retrieving the tag value of account using ...
0
votes
0answers
62 views
Intiator and acceptor on different OS
I have to run my initiator and acceptor on two different OS. I am seeing a weird problem of socket disconnection. Following are the different scenarios I have tried. I am using C++/Quickfix. I have ...
0
votes
0answers
236 views
Adding custom field to QuickFIX data dictionary
I defined a custom field at "fields" section of the FIX44.xml dictionary.
Then, I added that field to NewOrderSingle message. When i start my application i get this error:
Configuration failed: ...
0
votes
1answer
187 views
What is the purpose of quickfix message store?
What is the purpose of the message store structure in quickfix? I understand that you can log all incoming and outgoing fix messages via the message store interface and quickfix provides multiple ...
1
vote
1answer
357 views
.NET QuickFix wrong Logout message sent at logon
I'm using .NET wrapper for QuickFix with the latest binaries from QuickFix site (1.13.3).
The session is configured as acceptor and scheduled daily from 06:10:00 to 15:35:00.
The problem is that ...
-1
votes
1answer
79 views
How to generate message classes from new custom FIX dictionary [closed]
There is a way to do this in QuickFIX/j.
Is there a way to do this in QuickFIX c++?
0
votes
2answers
112 views
How to hardcode the settings
How can I hardcode the settings of the initiator and the acceptor, so that I don't need an external settings file?
This is what I've tried so far:
FIX::SessionSettings serverSettings;
...
0
votes
1answer
147 views
Sending a message in QuickFIX
I am using the python code examples from "http://www.quickfixengine.org" and have a question. I create my application using the code segment shown below
import quickfix
if len(sys.argv) < 2: ...
1
vote
1answer
300 views
Add user defined fields in the FIX dictionary
I need to add/modify fields in the FIX4.4 dictionary. I haven't found any helpful documentation or tutorials on this.
I'm guessing I have to modify the FIX44.xml file, but I'm not sure how exactly ...
1
vote
2answers
382 views
Questions about QuickFIX message cracking
VERY basic questions from a FIX newbie
Looking at the documentation at http://www.quickfixengine.org and reading posts here on stackoverflow I see lots of talk about message 'cracking'. I think I ...
2
votes
1answer
235 views
why FIX fields using quickfix are null?
I am new to FIX. I have a FIX message:
8=FIX.4.4|9=122|35=D|34=215|49=CLIENT12|52=20100225-19:41:57.316|56=B|1=Marcel|11=13346|21=1|40=2|44=5|54=1|59=0|60=20100225-19:39:52.020|10=072|
and I am ...
0
votes
2answers
121 views
QuickFIX logon trouble: multiple rapid fire logon attempts being sent
QuickFIX logon trouble: (using QuickFIX, with FIX 4.4 in Python 2.7)
Once I do initiator.start() a connection is made, and logon message is sent. However, I don't ever see the ACK and session status ...
0
votes
1answer
312 views
How to make the login part in QuickFIX
How can I make the login part in QuickFIX in c++?
I found tons of tutorials and articles on how to do this on c# or java, but nothing on c++.
I have a server (acceptor), and a client (initiator). The ...