-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathstock.cpp
85 lines (72 loc) · 2.08 KB
/
stock.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
/**********************************************************************
**
** stock.cpp - Stock class.
**
** Vesion history
** v0.1 - Joseph Smidt. Initial upload
**
*********************************************************************/
// Include Standard Template libraries routines.
#include <boost/tokenizer.hpp>
#include <iostream>
#include <cstring>
#include "stock.hpp"
#include <fstream>
#include <vector>
using std::cout;
using std::endl;
using std::cerr;
using std::fstream;
using std::ios;
Stock::Stock(std::string n, size_t m) :
open(m), close(m), high(m), low(m), volume(m)
{
name = n;
}
void Stock::load_stock_csv(std::string filename)
{
std::vector< std::vector<double> > csv_values;
fstream file(filename.c_str(), ios::in);
// Load in values.
if (file) {
typedef boost::tokenizer< boost::char_separator<char> > Tokenizer;
boost::char_separator<char> sep(",");
std::string line;
// Skip one line for header.
getline(file, line);
while (getline(file, line)) {
Tokenizer info(line, sep); // tokenize the line of data
std::vector<double> values;
for (Tokenizer::iterator it = info.begin(); it != info.end(); ++it){
if (it == info.begin())
this->date.push_back(*it);
else
values.push_back(strtod(it->c_str(), 0));
}
// store array of values
csv_values.push_back(values);
}
}
else {
cerr << "Error: Unable to open file " << filename << endl;
}
// display results
cout.precision(2);
cout.setf(ios::fixed,ios::floatfield);
// Load values into stock arrays.
for (size_t i = 0; i < csv_values.size(); i++) {
this->open(i) = csv_values[i][0];
this->high(i) = csv_values[i][1];
this->low(i) = csv_values[i][2];
this->close(i) = csv_values[i][3];
this->volume(i) = csv_values[i][4];
}
}
Stock::~Stock()
{
// Destructor
}
size_t Stock::size()
{
return open.size();
}