Orderbook Simulation
OrderbookSim is a C++ application simulating a financial market order book. It efficiently manages and matches buy and sell orders while calculating the Volume-Weighted Average Price (VWAP).
|
#include <chrono>
#include <sstream>
#include <iomanip>
#include "OrderType.hpp"
#include "Side.hpp"
#include "Usings.hpp"
#include "Constants.hpp"
Go to the source code of this file.
Classes | |
class | MatchedOrderDetail |
Stores details of a matched order, including price, quantity, and time. More... | |
Typedefs | |
using | timeChrono = std::chrono::system_clock::time_point |
using timeChrono = std::chrono::system_clock::time_point |