├── .gitattributes ├── .gitignore ├── CODE_OF_CONDUCT.md ├── LICENSE ├── README.md ├── tradingsystem.sln └── tradingsystem ├── algoexecutionservice.hpp ├── algostreamingservice.hpp ├── allinquiries.txt ├── bond.xlsx ├── executions.txt ├── executionservice.hpp ├── functions.hpp ├── gui.txt ├── guiservice.hpp ├── historicaldataservice.hpp ├── inquiries.txt ├── inquiryservice.hpp ├── main.cpp ├── marketdata.txt ├── marketdataservice.hpp ├── positions.txt ├── positionservice.hpp ├── prices.txt ├── pricingservice.hpp ├── products.hpp ├── pv01cal.xlsx ├── risk.txt ├── riskservice.hpp ├── soa.hpp ├── streaming.txt ├── streamingservice.hpp ├── tradebookingservice.hpp ├── trades.txt ├── tradingsystem.vcxproj └── tradingsystem.vcxproj.filters /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjimzhou/MTH9815-Trading-System/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjimzhou/MTH9815-Trading-System/HEAD/.gitignore -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjimzhou/MTH9815-Trading-System/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjimzhou/MTH9815-Trading-System/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjimzhou/MTH9815-Trading-System/HEAD/README.md -------------------------------------------------------------------------------- /tradingsystem.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjimzhou/MTH9815-Trading-System/HEAD/tradingsystem.sln -------------------------------------------------------------------------------- /tradingsystem/algoexecutionservice.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjimzhou/MTH9815-Trading-System/HEAD/tradingsystem/algoexecutionservice.hpp -------------------------------------------------------------------------------- /tradingsystem/algostreamingservice.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjimzhou/MTH9815-Trading-System/HEAD/tradingsystem/algostreamingservice.hpp -------------------------------------------------------------------------------- /tradingsystem/allinquiries.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjimzhou/MTH9815-Trading-System/HEAD/tradingsystem/allinquiries.txt -------------------------------------------------------------------------------- /tradingsystem/bond.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjimzhou/MTH9815-Trading-System/HEAD/tradingsystem/bond.xlsx -------------------------------------------------------------------------------- /tradingsystem/executions.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjimzhou/MTH9815-Trading-System/HEAD/tradingsystem/executions.txt -------------------------------------------------------------------------------- /tradingsystem/executionservice.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjimzhou/MTH9815-Trading-System/HEAD/tradingsystem/executionservice.hpp -------------------------------------------------------------------------------- /tradingsystem/functions.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjimzhou/MTH9815-Trading-System/HEAD/tradingsystem/functions.hpp -------------------------------------------------------------------------------- /tradingsystem/gui.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjimzhou/MTH9815-Trading-System/HEAD/tradingsystem/gui.txt -------------------------------------------------------------------------------- /tradingsystem/guiservice.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjimzhou/MTH9815-Trading-System/HEAD/tradingsystem/guiservice.hpp -------------------------------------------------------------------------------- /tradingsystem/historicaldataservice.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjimzhou/MTH9815-Trading-System/HEAD/tradingsystem/historicaldataservice.hpp -------------------------------------------------------------------------------- /tradingsystem/inquiries.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjimzhou/MTH9815-Trading-System/HEAD/tradingsystem/inquiries.txt -------------------------------------------------------------------------------- /tradingsystem/inquiryservice.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjimzhou/MTH9815-Trading-System/HEAD/tradingsystem/inquiryservice.hpp -------------------------------------------------------------------------------- /tradingsystem/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjimzhou/MTH9815-Trading-System/HEAD/tradingsystem/main.cpp -------------------------------------------------------------------------------- /tradingsystem/marketdata.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjimzhou/MTH9815-Trading-System/HEAD/tradingsystem/marketdata.txt -------------------------------------------------------------------------------- /tradingsystem/marketdataservice.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjimzhou/MTH9815-Trading-System/HEAD/tradingsystem/marketdataservice.hpp -------------------------------------------------------------------------------- /tradingsystem/positions.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjimzhou/MTH9815-Trading-System/HEAD/tradingsystem/positions.txt -------------------------------------------------------------------------------- /tradingsystem/positionservice.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjimzhou/MTH9815-Trading-System/HEAD/tradingsystem/positionservice.hpp -------------------------------------------------------------------------------- /tradingsystem/prices.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjimzhou/MTH9815-Trading-System/HEAD/tradingsystem/prices.txt -------------------------------------------------------------------------------- /tradingsystem/pricingservice.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjimzhou/MTH9815-Trading-System/HEAD/tradingsystem/pricingservice.hpp -------------------------------------------------------------------------------- /tradingsystem/products.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjimzhou/MTH9815-Trading-System/HEAD/tradingsystem/products.hpp -------------------------------------------------------------------------------- /tradingsystem/pv01cal.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjimzhou/MTH9815-Trading-System/HEAD/tradingsystem/pv01cal.xlsx -------------------------------------------------------------------------------- /tradingsystem/risk.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjimzhou/MTH9815-Trading-System/HEAD/tradingsystem/risk.txt -------------------------------------------------------------------------------- /tradingsystem/riskservice.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjimzhou/MTH9815-Trading-System/HEAD/tradingsystem/riskservice.hpp -------------------------------------------------------------------------------- /tradingsystem/soa.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjimzhou/MTH9815-Trading-System/HEAD/tradingsystem/soa.hpp -------------------------------------------------------------------------------- /tradingsystem/streaming.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjimzhou/MTH9815-Trading-System/HEAD/tradingsystem/streaming.txt -------------------------------------------------------------------------------- /tradingsystem/streamingservice.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjimzhou/MTH9815-Trading-System/HEAD/tradingsystem/streamingservice.hpp -------------------------------------------------------------------------------- /tradingsystem/tradebookingservice.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjimzhou/MTH9815-Trading-System/HEAD/tradingsystem/tradebookingservice.hpp -------------------------------------------------------------------------------- /tradingsystem/trades.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjimzhou/MTH9815-Trading-System/HEAD/tradingsystem/trades.txt -------------------------------------------------------------------------------- /tradingsystem/tradingsystem.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjimzhou/MTH9815-Trading-System/HEAD/tradingsystem/tradingsystem.vcxproj -------------------------------------------------------------------------------- /tradingsystem/tradingsystem.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjimzhou/MTH9815-Trading-System/HEAD/tradingsystem/tradingsystem.vcxproj.filters --------------------------------------------------------------------------------