#pragma once #include "OrderBook.h" #include //#include "CSVReader.h" class Bot { public: MerkelMain app; Bot(MerkelMain app); /** 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); private: double getMean(std::vector); std::vector Bot::getTimeStamps(); };