Replace yahoo finance to stooq (#131)

Old code is dropped to separated provider
This commit is contained in:
2017-12-15 02:01:34 +03:00
parent eb911551eb
commit e5a9e99438
134 changed files with 1213 additions and 1597 deletions

View File

@ -42,12 +42,10 @@ private slots:
private:
ExtQuotes *extQuotes = nullptr;
QVariantHash cache;
QString ticker = "EURUSD=X";
QStringList types = QStringList() << "ask"
<< "bid"
<< "price";
QString ticker = "EURUSD";
QStringList types = {"price", "volume"};
// we assume that price will not be differ more than in 2 times
QPair<double, double> price = QPair<double, double>(0.5, 2.0);
QPair<double, double> price = QPair<double, double>(0.0, 2.0);
};