You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The Orderbook Project is a C++ application simulating a financial order book. It manages buy and sell orders, matches them according to their prices, and keeps track of trades. The application supports two types of orders: Good Till Cancel (GTC) and Fill and Kill (FOK).
An orderbook implementation with RiskControl model, which will execute self-cross checking and rate limiting. High performance using shared lock and lock free mechanism.
Low-latency system that consumes historical market data from Databento, passes it through a lock-free ring buffer, and processes it in a separate thread to compute a simple real-time statistic.
A basic implementation of an order book system, simulating a financial market environment. Supports market and limit orders with bid/ask sides, order matching, and order book visualization. Ideal for understanding the core concepts of trading systems and financial market mechanics.
This Orderbook Simulation is a C++ application that simulates an order book for financial markets, featuring VWAP calculation, a custom neural network for price prediction, and Python GUIs for order management and visualization.