From 656ed9d71df3b9947402b9c57f7ea4282dd4b041 Mon Sep 17 00:00:00 2001 From: Lev Date: Fri, 2 Jul 2021 17:14:35 -0500 Subject: [PATCH] Update ask and bid books retrieved from Merkel --- .../Midterm/Merkelrex-TradingBot/TradingBot.h | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/CM2005 Object Oriented Programming/Midterm/Merkelrex-TradingBot/TradingBot.h b/CM2005 Object Oriented Programming/Midterm/Merkelrex-TradingBot/TradingBot.h index bf39771..a8189eb 100644 --- a/CM2005 Object Oriented Programming/Midterm/Merkelrex-TradingBot/TradingBot.h +++ b/CM2005 Object Oriented Programming/Midterm/Merkelrex-TradingBot/TradingBot.h @@ -1,11 +1,18 @@ #pragma once #include "MerkelMain.h" // required to interact with the order book, place bids, withdraw bids, place asks +#include "OrderBookEntry.h" // required to build vectors of this type +#include +#include +#include class TradingBot { public: TradingBot(MerkelMain* merkel); + void testFunc(); private: MerkelMain* merkel; + std::vector bookBids; + std::vector bookAsks; }; \ No newline at end of file