-
Notifications
You must be signed in to change notification settings - Fork 0
/
candlestickdatareader.cpp
45 lines (35 loc) · 1.14 KB
/
candlestickdatareader.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
// #include <iostream>
#include <QDateTime>
#include "candlestickdatareader.h"
CandlestickDataReader::CandlestickDataReader(QIODevice *device) : QTextStream(device)
{
}
CandlestickDataReader::~CandlestickDataReader()
{
}
void CandlestickDataReader::readFile(QIODevice *device)
{
QTextStream::setDevice(device);
}
QCandlestickSet *CandlestickDataReader::readCandlestickSet()
{
QString line = readLine();
if (line.startsWith("#") || line.isEmpty())
return 0;
QStringList strList = line.split(" ", QString::SkipEmptyParts);
if (strList.count() != 5)
return 0;
const qreal timestamp = strList.at(0).toDouble();
const qreal open = strList.at(1).toDouble();
const qreal high = strList.at(2).toDouble();
const qreal low = strList.at(3).toDouble();
const qreal close = strList.at(4).toDouble();
QCandlestickSet *candlestickSet = new QCandlestickSet(timestamp);
candlestickSet->setOpen(open);
candlestickSet->setHigh(high);
candlestickSet->setLow(low);
candlestickSet->setClose(close);
// std::cout << QDateTime::currentMSecsSinceEpoch() << std::endl;
// std::cout << QDateTime::currentSecsSinceEpoch() << std::endl;
return candlestickSet;
}