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).
Classes
OrderModify.hpp File Reference

Defines the OrderModify class, which encapsulates modifications to an order's details. More...

#include "Order.hpp"
#include <memory>

Go to the source code of this file.

Classes

class  OrderModify
 Represents a modification to an existing order. More...
 

Detailed Description

Defines the OrderModify class, which encapsulates modifications to an order's details.

The OrderModify class stores updated information for an order, such as order ID, price, side, and quantity. It also includes a method to convert these modifications into a new order.