Update linearRegression to header file
This commit is contained in:
@ -8,6 +8,8 @@ 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<double> linearRegresion(std::vector<OrderBookEntry> orderList, unsigned int start, unsigned int end);
|
||||
void Print(int intLimit);
|
||||
|
||||
private:
|
||||
|
||||
Reference in New Issue
Block a user