├── Build ├── CLI │ ├── CLI.vcxproj │ ├── CLI.vcxproj.filters │ └── CLI.vcxproj.user ├── CtpAdaptor │ ├── CtpAdaptor.vcxproj │ └── CtpAdaptor.vcxproj.filters ├── FileSysDB │ ├── FileSysDB.vcxproj │ ├── FileSysDB.vcxproj.filters │ └── FileSysDB.vcxproj.user └── MarketHub │ ├── MarketHub.sln │ ├── MarketHub.vcxproj │ ├── MarketHub.vcxproj.filters │ └── MarketHub.vcxproj.user ├── Deploy ├── CtpAdaptor.dll ├── FileSysDB.dll ├── MarketHub.dll ├── MarketHub.exe ├── MarketHub.ini ├── Qt5Core.dll ├── Qt5Gui.dll ├── Qt5Widgets.dll ├── TradingHours.ini ├── libmysql.dll ├── platforms │ └── qwindows.dll ├── tbb.dll ├── thostmduserapi.dll └── thosttraderapi.dll ├── Doc └── MarketHub.png ├── README.md └── Src ├── Adaptor ├── CTP │ ├── CtpAdaptor.cpp │ ├── CtpAdaptor.h │ ├── ThostFtdcMdApi.h │ ├── ThostFtdcTraderApi.h │ ├── ThostFtdcUserApi.h │ ├── ThostFtdcUserApiDataType.h │ ├── ThostFtdcUserApiStruct.h │ ├── thostmduserapi.dll │ ├── thostmduserapi.lib │ ├── thosttraderapi.dll │ └── thosttraderapi.lib └── FileSysDB │ ├── FileSysDb.cpp │ └── FileSysDb.h ├── CLI ├── CLI.cpp ├── RestartAPI.cpp ├── RestartAPI.h ├── TimerManager.cpp └── TimerManager.h ├── GUI ├── GUI.pro ├── GUI.vcxproj ├── GUI.vcxproj.filters ├── GUI.vcxproj.user ├── RestartAPI.cpp ├── RestartAPI.h ├── adaptormodel.cpp ├── adaptormodel.h ├── dialog.cpp ├── dialog.h ├── dialog.ui ├── favicon.ico ├── main.cpp ├── quickmail.c ├── quickmail.h ├── smtpsocket.c └── smtpsocket.h └── Hub ├── Adaptor.cpp ├── Adaptor.h ├── Cache_Local.cpp ├── Cache_Local.h ├── Cache_Redis.cpp ├── Cache_Redis.h ├── Composer.cpp ├── Composer.h ├── Controller.cpp ├── ControllerImpl.cpp ├── ControllerImpl.h ├── DataSource_Csv.cpp ├── DataSource_Csv.h ├── DataSource_MySql.cpp ├── DataSource_MySql.h ├── EventHub.cpp ├── EventHub.h ├── EventListener.h ├── Export.h ├── Logger.cpp ├── Logger.h ├── MarketHub.h ├── Runtime.cpp ├── Runtime.h ├── Server.cpp ├── Server.h ├── TinyCrypt.cpp ├── TinyCrypt.h ├── csv_parser.cpp ├── csv_parser.hpp └── disruptor ├── blocking_wait_strategy.hpp ├── config.hpp ├── multi_threaded_claim_strategy.hpp ├── ring_buffer.hpp ├── sequence.hpp ├── sequence_barrier.hpp ├── sequence_barrier_group.hpp ├── sequence_range.hpp ├── single_threaded_claim_strategy.hpp ├── spin_wait.hpp └── spin_wait_strategy.hpp /Build/CLI/CLI.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algosenses/MarketHub/HEAD/Build/CLI/CLI.vcxproj -------------------------------------------------------------------------------- /Build/CLI/CLI.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algosenses/MarketHub/HEAD/Build/CLI/CLI.vcxproj.filters -------------------------------------------------------------------------------- /Build/CLI/CLI.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algosenses/MarketHub/HEAD/Build/CLI/CLI.vcxproj.user -------------------------------------------------------------------------------- /Build/CtpAdaptor/CtpAdaptor.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algosenses/MarketHub/HEAD/Build/CtpAdaptor/CtpAdaptor.vcxproj -------------------------------------------------------------------------------- /Build/CtpAdaptor/CtpAdaptor.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algosenses/MarketHub/HEAD/Build/CtpAdaptor/CtpAdaptor.vcxproj.filters -------------------------------------------------------------------------------- /Build/FileSysDB/FileSysDB.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algosenses/MarketHub/HEAD/Build/FileSysDB/FileSysDB.vcxproj -------------------------------------------------------------------------------- /Build/FileSysDB/FileSysDB.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algosenses/MarketHub/HEAD/Build/FileSysDB/FileSysDB.vcxproj.filters -------------------------------------------------------------------------------- /Build/FileSysDB/FileSysDB.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algosenses/MarketHub/HEAD/Build/FileSysDB/FileSysDB.vcxproj.user -------------------------------------------------------------------------------- /Build/MarketHub/MarketHub.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algosenses/MarketHub/HEAD/Build/MarketHub/MarketHub.sln -------------------------------------------------------------------------------- /Build/MarketHub/MarketHub.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algosenses/MarketHub/HEAD/Build/MarketHub/MarketHub.vcxproj -------------------------------------------------------------------------------- /Build/MarketHub/MarketHub.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algosenses/MarketHub/HEAD/Build/MarketHub/MarketHub.vcxproj.filters -------------------------------------------------------------------------------- /Build/MarketHub/MarketHub.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algosenses/MarketHub/HEAD/Build/MarketHub/MarketHub.vcxproj.user -------------------------------------------------------------------------------- /Deploy/CtpAdaptor.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algosenses/MarketHub/HEAD/Deploy/CtpAdaptor.dll -------------------------------------------------------------------------------- /Deploy/FileSysDB.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algosenses/MarketHub/HEAD/Deploy/FileSysDB.dll -------------------------------------------------------------------------------- /Deploy/MarketHub.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algosenses/MarketHub/HEAD/Deploy/MarketHub.dll -------------------------------------------------------------------------------- /Deploy/MarketHub.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algosenses/MarketHub/HEAD/Deploy/MarketHub.exe -------------------------------------------------------------------------------- /Deploy/MarketHub.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algosenses/MarketHub/HEAD/Deploy/MarketHub.ini -------------------------------------------------------------------------------- /Deploy/Qt5Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algosenses/MarketHub/HEAD/Deploy/Qt5Core.dll -------------------------------------------------------------------------------- /Deploy/Qt5Gui.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algosenses/MarketHub/HEAD/Deploy/Qt5Gui.dll -------------------------------------------------------------------------------- /Deploy/Qt5Widgets.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algosenses/MarketHub/HEAD/Deploy/Qt5Widgets.dll -------------------------------------------------------------------------------- /Deploy/TradingHours.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algosenses/MarketHub/HEAD/Deploy/TradingHours.ini -------------------------------------------------------------------------------- /Deploy/libmysql.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algosenses/MarketHub/HEAD/Deploy/libmysql.dll -------------------------------------------------------------------------------- /Deploy/platforms/qwindows.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algosenses/MarketHub/HEAD/Deploy/platforms/qwindows.dll -------------------------------------------------------------------------------- /Deploy/tbb.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algosenses/MarketHub/HEAD/Deploy/tbb.dll -------------------------------------------------------------------------------- /Deploy/thostmduserapi.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algosenses/MarketHub/HEAD/Deploy/thostmduserapi.dll -------------------------------------------------------------------------------- /Deploy/thosttraderapi.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algosenses/MarketHub/HEAD/Deploy/thosttraderapi.dll -------------------------------------------------------------------------------- /Doc/MarketHub.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algosenses/MarketHub/HEAD/Doc/MarketHub.png -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algosenses/MarketHub/HEAD/README.md -------------------------------------------------------------------------------- /Src/Adaptor/CTP/CtpAdaptor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algosenses/MarketHub/HEAD/Src/Adaptor/CTP/CtpAdaptor.cpp -------------------------------------------------------------------------------- /Src/Adaptor/CTP/CtpAdaptor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algosenses/MarketHub/HEAD/Src/Adaptor/CTP/CtpAdaptor.h -------------------------------------------------------------------------------- /Src/Adaptor/CTP/ThostFtdcMdApi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algosenses/MarketHub/HEAD/Src/Adaptor/CTP/ThostFtdcMdApi.h -------------------------------------------------------------------------------- /Src/Adaptor/CTP/ThostFtdcTraderApi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algosenses/MarketHub/HEAD/Src/Adaptor/CTP/ThostFtdcTraderApi.h -------------------------------------------------------------------------------- /Src/Adaptor/CTP/ThostFtdcUserApi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algosenses/MarketHub/HEAD/Src/Adaptor/CTP/ThostFtdcUserApi.h -------------------------------------------------------------------------------- /Src/Adaptor/CTP/ThostFtdcUserApiDataType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algosenses/MarketHub/HEAD/Src/Adaptor/CTP/ThostFtdcUserApiDataType.h -------------------------------------------------------------------------------- /Src/Adaptor/CTP/ThostFtdcUserApiStruct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algosenses/MarketHub/HEAD/Src/Adaptor/CTP/ThostFtdcUserApiStruct.h -------------------------------------------------------------------------------- /Src/Adaptor/CTP/thostmduserapi.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algosenses/MarketHub/HEAD/Src/Adaptor/CTP/thostmduserapi.dll -------------------------------------------------------------------------------- /Src/Adaptor/CTP/thostmduserapi.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algosenses/MarketHub/HEAD/Src/Adaptor/CTP/thostmduserapi.lib -------------------------------------------------------------------------------- /Src/Adaptor/CTP/thosttraderapi.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algosenses/MarketHub/HEAD/Src/Adaptor/CTP/thosttraderapi.dll -------------------------------------------------------------------------------- /Src/Adaptor/CTP/thosttraderapi.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algosenses/MarketHub/HEAD/Src/Adaptor/CTP/thosttraderapi.lib -------------------------------------------------------------------------------- /Src/Adaptor/FileSysDB/FileSysDb.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algosenses/MarketHub/HEAD/Src/Adaptor/FileSysDB/FileSysDb.cpp -------------------------------------------------------------------------------- /Src/Adaptor/FileSysDB/FileSysDb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algosenses/MarketHub/HEAD/Src/Adaptor/FileSysDB/FileSysDb.h -------------------------------------------------------------------------------- /Src/CLI/CLI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algosenses/MarketHub/HEAD/Src/CLI/CLI.cpp -------------------------------------------------------------------------------- /Src/CLI/RestartAPI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algosenses/MarketHub/HEAD/Src/CLI/RestartAPI.cpp -------------------------------------------------------------------------------- /Src/CLI/RestartAPI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algosenses/MarketHub/HEAD/Src/CLI/RestartAPI.h -------------------------------------------------------------------------------- /Src/CLI/TimerManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algosenses/MarketHub/HEAD/Src/CLI/TimerManager.cpp -------------------------------------------------------------------------------- /Src/CLI/TimerManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algosenses/MarketHub/HEAD/Src/CLI/TimerManager.h -------------------------------------------------------------------------------- /Src/GUI/GUI.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algosenses/MarketHub/HEAD/Src/GUI/GUI.pro -------------------------------------------------------------------------------- /Src/GUI/GUI.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algosenses/MarketHub/HEAD/Src/GUI/GUI.vcxproj -------------------------------------------------------------------------------- /Src/GUI/GUI.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algosenses/MarketHub/HEAD/Src/GUI/GUI.vcxproj.filters -------------------------------------------------------------------------------- /Src/GUI/GUI.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algosenses/MarketHub/HEAD/Src/GUI/GUI.vcxproj.user -------------------------------------------------------------------------------- /Src/GUI/RestartAPI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algosenses/MarketHub/HEAD/Src/GUI/RestartAPI.cpp -------------------------------------------------------------------------------- /Src/GUI/RestartAPI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algosenses/MarketHub/HEAD/Src/GUI/RestartAPI.h -------------------------------------------------------------------------------- /Src/GUI/adaptormodel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algosenses/MarketHub/HEAD/Src/GUI/adaptormodel.cpp -------------------------------------------------------------------------------- /Src/GUI/adaptormodel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algosenses/MarketHub/HEAD/Src/GUI/adaptormodel.h -------------------------------------------------------------------------------- /Src/GUI/dialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algosenses/MarketHub/HEAD/Src/GUI/dialog.cpp -------------------------------------------------------------------------------- /Src/GUI/dialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algosenses/MarketHub/HEAD/Src/GUI/dialog.h -------------------------------------------------------------------------------- /Src/GUI/dialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algosenses/MarketHub/HEAD/Src/GUI/dialog.ui -------------------------------------------------------------------------------- /Src/GUI/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algosenses/MarketHub/HEAD/Src/GUI/favicon.ico -------------------------------------------------------------------------------- /Src/GUI/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algosenses/MarketHub/HEAD/Src/GUI/main.cpp -------------------------------------------------------------------------------- /Src/GUI/quickmail.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algosenses/MarketHub/HEAD/Src/GUI/quickmail.c -------------------------------------------------------------------------------- /Src/GUI/quickmail.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algosenses/MarketHub/HEAD/Src/GUI/quickmail.h -------------------------------------------------------------------------------- /Src/GUI/smtpsocket.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algosenses/MarketHub/HEAD/Src/GUI/smtpsocket.c -------------------------------------------------------------------------------- /Src/GUI/smtpsocket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algosenses/MarketHub/HEAD/Src/GUI/smtpsocket.h -------------------------------------------------------------------------------- /Src/Hub/Adaptor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algosenses/MarketHub/HEAD/Src/Hub/Adaptor.cpp -------------------------------------------------------------------------------- /Src/Hub/Adaptor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algosenses/MarketHub/HEAD/Src/Hub/Adaptor.h -------------------------------------------------------------------------------- /Src/Hub/Cache_Local.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algosenses/MarketHub/HEAD/Src/Hub/Cache_Local.cpp -------------------------------------------------------------------------------- /Src/Hub/Cache_Local.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algosenses/MarketHub/HEAD/Src/Hub/Cache_Local.h -------------------------------------------------------------------------------- /Src/Hub/Cache_Redis.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algosenses/MarketHub/HEAD/Src/Hub/Cache_Redis.cpp -------------------------------------------------------------------------------- /Src/Hub/Cache_Redis.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algosenses/MarketHub/HEAD/Src/Hub/Cache_Redis.h -------------------------------------------------------------------------------- /Src/Hub/Composer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algosenses/MarketHub/HEAD/Src/Hub/Composer.cpp -------------------------------------------------------------------------------- /Src/Hub/Composer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algosenses/MarketHub/HEAD/Src/Hub/Composer.h -------------------------------------------------------------------------------- /Src/Hub/Controller.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algosenses/MarketHub/HEAD/Src/Hub/Controller.cpp -------------------------------------------------------------------------------- /Src/Hub/ControllerImpl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algosenses/MarketHub/HEAD/Src/Hub/ControllerImpl.cpp -------------------------------------------------------------------------------- /Src/Hub/ControllerImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algosenses/MarketHub/HEAD/Src/Hub/ControllerImpl.h -------------------------------------------------------------------------------- /Src/Hub/DataSource_Csv.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algosenses/MarketHub/HEAD/Src/Hub/DataSource_Csv.cpp -------------------------------------------------------------------------------- /Src/Hub/DataSource_Csv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algosenses/MarketHub/HEAD/Src/Hub/DataSource_Csv.h -------------------------------------------------------------------------------- /Src/Hub/DataSource_MySql.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algosenses/MarketHub/HEAD/Src/Hub/DataSource_MySql.cpp -------------------------------------------------------------------------------- /Src/Hub/DataSource_MySql.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algosenses/MarketHub/HEAD/Src/Hub/DataSource_MySql.h -------------------------------------------------------------------------------- /Src/Hub/EventHub.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algosenses/MarketHub/HEAD/Src/Hub/EventHub.cpp -------------------------------------------------------------------------------- /Src/Hub/EventHub.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algosenses/MarketHub/HEAD/Src/Hub/EventHub.h -------------------------------------------------------------------------------- /Src/Hub/EventListener.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algosenses/MarketHub/HEAD/Src/Hub/EventListener.h -------------------------------------------------------------------------------- /Src/Hub/Export.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algosenses/MarketHub/HEAD/Src/Hub/Export.h -------------------------------------------------------------------------------- /Src/Hub/Logger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algosenses/MarketHub/HEAD/Src/Hub/Logger.cpp -------------------------------------------------------------------------------- /Src/Hub/Logger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algosenses/MarketHub/HEAD/Src/Hub/Logger.h -------------------------------------------------------------------------------- /Src/Hub/MarketHub.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algosenses/MarketHub/HEAD/Src/Hub/MarketHub.h -------------------------------------------------------------------------------- /Src/Hub/Runtime.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algosenses/MarketHub/HEAD/Src/Hub/Runtime.cpp -------------------------------------------------------------------------------- /Src/Hub/Runtime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algosenses/MarketHub/HEAD/Src/Hub/Runtime.h -------------------------------------------------------------------------------- /Src/Hub/Server.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algosenses/MarketHub/HEAD/Src/Hub/Server.cpp -------------------------------------------------------------------------------- /Src/Hub/Server.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algosenses/MarketHub/HEAD/Src/Hub/Server.h -------------------------------------------------------------------------------- /Src/Hub/TinyCrypt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algosenses/MarketHub/HEAD/Src/Hub/TinyCrypt.cpp -------------------------------------------------------------------------------- /Src/Hub/TinyCrypt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algosenses/MarketHub/HEAD/Src/Hub/TinyCrypt.h -------------------------------------------------------------------------------- /Src/Hub/csv_parser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algosenses/MarketHub/HEAD/Src/Hub/csv_parser.cpp -------------------------------------------------------------------------------- /Src/Hub/csv_parser.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algosenses/MarketHub/HEAD/Src/Hub/csv_parser.hpp -------------------------------------------------------------------------------- /Src/Hub/disruptor/blocking_wait_strategy.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algosenses/MarketHub/HEAD/Src/Hub/disruptor/blocking_wait_strategy.hpp -------------------------------------------------------------------------------- /Src/Hub/disruptor/config.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algosenses/MarketHub/HEAD/Src/Hub/disruptor/config.hpp -------------------------------------------------------------------------------- /Src/Hub/disruptor/multi_threaded_claim_strategy.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algosenses/MarketHub/HEAD/Src/Hub/disruptor/multi_threaded_claim_strategy.hpp -------------------------------------------------------------------------------- /Src/Hub/disruptor/ring_buffer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algosenses/MarketHub/HEAD/Src/Hub/disruptor/ring_buffer.hpp -------------------------------------------------------------------------------- /Src/Hub/disruptor/sequence.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algosenses/MarketHub/HEAD/Src/Hub/disruptor/sequence.hpp -------------------------------------------------------------------------------- /Src/Hub/disruptor/sequence_barrier.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algosenses/MarketHub/HEAD/Src/Hub/disruptor/sequence_barrier.hpp -------------------------------------------------------------------------------- /Src/Hub/disruptor/sequence_barrier_group.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algosenses/MarketHub/HEAD/Src/Hub/disruptor/sequence_barrier_group.hpp -------------------------------------------------------------------------------- /Src/Hub/disruptor/sequence_range.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algosenses/MarketHub/HEAD/Src/Hub/disruptor/sequence_range.hpp -------------------------------------------------------------------------------- /Src/Hub/disruptor/single_threaded_claim_strategy.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algosenses/MarketHub/HEAD/Src/Hub/disruptor/single_threaded_claim_strategy.hpp -------------------------------------------------------------------------------- /Src/Hub/disruptor/spin_wait.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algosenses/MarketHub/HEAD/Src/Hub/disruptor/spin_wait.hpp -------------------------------------------------------------------------------- /Src/Hub/disruptor/spin_wait_strategy.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algosenses/MarketHub/HEAD/Src/Hub/disruptor/spin_wait_strategy.hpp --------------------------------------------------------------------------------