Registry / messaging / quickfix

quickfix

JSON →
library1.16.0vcpkgunverified

QuickFIX is a free and open source implementation of the FIX protocol.

vcpkg install quickfix
INSTALL
IMPORT
SIG · QUICKFIX
Q
quickfix
messagingcppv1.16.0
harness data pending
Install & Compatibility
Where this runs

No compatibility data collected yet for this library.

Code
Verified usage

Verified import paths — ran on the pinned version, not inferred.

quickfix/Application.h
#include <quickfix/Application.h>

Minimal QuickFIX application skeleton

#include <quickfix/Application.h> #include <quickfix/Session.h> #include <iostream> class MyApp : public FIX::Application { public: void onCreate(const FIX::SessionID&) override {} void onLogon(const FIX::SessionID&) override { std::cout << "Logon" << std::endl; } void onLogout(const FIX::SessionID&) override {} void toAdmin(FIX::Message&, const FIX::SessionID&) override {} void toApp(FIX::Message&, const FIX::SessionID&) override {} void fromAdmin(const FIX::Message&, const FIX::SessionID&) override {} void fromApp(const FIX::Message&, const FIX::SessionID&) override {} }; int main() { MyApp app; return 0; }
Debug
Known issues
gotchaQuickFIX requires a FIX dictionary XML file for session configuration
fix
Ensure you provide a valid FIX data dictionary via SessionSettings or environment variable
affects: *
Upgrade
Version history
1.16.0latest on vcpkg
Audit
Dependencies

No dependency data recorded yet.

Agent activity
19 hits · last 30 days
node
18
OpenAI (training)
1
Resources

No resource links recorded.

quickfix — pip install quickfix · libregistry