Update added insertOrder

This commit is contained in:
Lev
2021-06-11 15:59:35 -05:00
parent 011c18bcef
commit aaba315e77

View File

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