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).
Public Attributes | List of all members
Result Struct Reference

Holds expected results for order book counts used for assertions. More...

Public Attributes

std::size_t _allCount
 Total count of orders in the order book. More...
 
std::size_t _bidCount
 Count of bid orders in the order book. More...
 
std::size_t _askCount
 Count of ask orders in the order book. More...
 

Detailed Description

Holds expected results for order book counts used for assertions.

Member Data Documentation

◆ _allCount

std::size_t Result::_allCount

Total count of orders in the order book.

◆ _askCount

std::size_t Result::_askCount

Count of ask orders in the order book.

◆ _bidCount

std::size_t Result::_bidCount

Count of bid orders in the order book.


The documentation for this struct was generated from the following file: