#pragma once #include "OrderBook.h" #include //#include "CSVReader.h" class Bot { public: Bot(std::string filename); /** returns a vector with the Y, B0 and B1 values in the formula Y = B0 + B1.X */ std::vector linearRegresion(std::vector orderList, unsigned int start, unsigned int end); void Print(int intLimit); private: std::vector orders; };