Update ask and bid books retrieved from Merkel

This commit is contained in:
Lev
2021-07-02 17:14:35 -05:00
parent 12865538a4
commit 656ed9d71d

View File

@ -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 <string>
#include <iostream>
#include <vector>
class TradingBot
{
public:
TradingBot(MerkelMain* merkel);
void testFunc();
private:
MerkelMain* merkel;
std::vector<OrderBookEntry> bookBids;
std::vector<OrderBookEntry> bookAsks;
};