Add starting code for trading bot

This commit is contained in:
Lev
2021-07-01 17:00:25 -05:00
parent 90b6e7da70
commit c06e6e72e3
2 changed files with 17 additions and 0 deletions

View File

@ -0,0 +1,6 @@
#include "TradingBot.h"
TradingBot::TradingBot(MerkelMain* merkel)
{
this->merkel = merkel;
}

View File

@ -0,0 +1,11 @@
#pragma once
#include "MerkelMain.h" // required to interact with the order book, place bids, withdraw bids, place asks
class TradingBot
{
public:
TradingBot(MerkelMain* merkel);
private:
MerkelMain* merkel;
};