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
TradeInfo.hpp File Reference

Defines the TradeInfo struct, which holds essential information for a trade. More...

#include "Usings.hpp"

Go to the source code of this file.

Classes

struct  TradeInfo
 Holds essential information about a trade, including order ID, price, and quantity. More...
 

Detailed Description

Defines the TradeInfo struct, which holds essential information for a trade.

The TradeInfo struct represents the basic details of a trade, including order ID, price, and quantity. This information is used in trading systems to capture the key elements of each transaction.