| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
| Name | Name | Last commit date | ||
|---|---|---|---|---|
QuickFIX is a free, open-source implementation of the FIX protocol (Financial Information eXchange). It is a full-featured messaging engine that supports FIX versions 4.0 through 5.0 SP2, including FIXT 1.1.
QuickFIX is tested on:
cmake -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=/usr/local .
make -j$(nproc)
sudo make installcmake -DCMAKE_BUILD_TYPE=Release -DHAVE_SSL=ON -DCMAKE_INSTALL_PREFIX=/usr/local .
make -j$(nproc)
sudo make installmkdir build
cd build
cmake -G "Visual Studio 17 2022" -A x64 -DCMAKE_INSTALL_PREFIX=C:\quickfix ..
cmake --build . --config Release
cmake --install . --config Releasemkdir build
cd build
cmake -G "Visual Studio 17 2022" -A x64 ^
-DHAVE_SSL=ON ^
-DOPENSSL_ROOT_DIR="C:\path\to\openssl" ^
-DCMAKE_INSTALL_PREFIX=C:\quickfix ..
cmake --build . --config Release
cmake --install . --config Release./bootstrap
./configure
make
make check
sudo make installgit clone https://github.com/Microsoft/vcpkg.git
cd vcpkg
./bootstrap-vcpkg.sh # or bootstrap-vcpkg.bat on Windows
./vcpkg integrate install
./vcpkg install quickfixQuickFIX includes several example applications:
These examples demonstrate how to build FIX applications using QuickFIX.
# Build with Python 3 support
cmake -DHAVE_PYTHON3=ON .
makePython bindings are also available via pip:
pip install quickfix# Build with Ruby support using autotools
./configure --with-ruby
makeRun the test suite:
# With CMake
cmake --build . --target test
# With Autotools
make checkWe welcome contributions! Please see CONTRIBUTING.md for guidelines on:
For security-related issues, please see our Security Policy.
QuickFIX is licensed under the QuickFIX Software License. See the LICENSE file for details.
QuickFIX is maintained by the open-source community. Special thanks to all contributors who have helped make this project possible.
| Back | FazBrowse Home | New Git URL |