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).
OrderDetail.cpp File Reference

Implements the OrderDetail class, providing details of an individual order. More...

#include "OrderDetail.hpp"
#include <iomanip>
#include <sstream>

Detailed Description

Implements the OrderDetail class, providing details of an individual order.

This file contains the implementation of the OrderDetail class, which includes methods for retrieving various attributes of an order, such as type, side, price, quantity, and timestamp. It also provides methods to convert these attributes to string representations.