Add starting code for trading bot
This commit is contained in:
@ -0,0 +1,6 @@
|
||||
#include "TradingBot.h"
|
||||
|
||||
TradingBot::TradingBot(MerkelMain* merkel)
|
||||
{
|
||||
this->merkel = merkel;
|
||||
}
|
||||
@ -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;
|
||||
};
|
||||
Reference in New Issue
Block a user