Update added matchAsksToBids function

This commit is contained in:
Lev
2021-06-11 18:27:42 -05:00
parent faa2ac9531
commit 0dd93700c2

View File

@ -20,6 +20,7 @@ class OrderBook
* If no next timestamp is found, wraps to the start */
std::string getNextTime(std::string timestamp);
void insertOrder(OrderBookEntry& order);
std::vector<OrderBookEntry> matchAsksToBids();
static double getHighPrice(std::vector<OrderBookEntry>& orderList);
static double getLowPrice(std::vector<OrderBookEntry>& orderList);
private: