Edit cleaned up code
This commit is contained in:
@ -9,48 +9,4 @@ int main()
|
||||
{
|
||||
MerkelMain app{};
|
||||
app.init();
|
||||
|
||||
//CSVReader reader;
|
||||
//CSVReader::readCSV("20200317.csv");
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
// std::vector<OrderBookEntry> orders;
|
||||
|
||||
// orders.push_back( OrderBookEntry{1000,
|
||||
// 0.02,
|
||||
// "2020/03/17 17:01:24.884492",
|
||||
// "BTC/USDT",
|
||||
// OrderBookType::bid} );
|
||||
|
||||
// orders.push_back( OrderBookEntry{2000,
|
||||
// 0.02,
|
||||
// "2020/03/17 17:01:24.884492",
|
||||
// "BTC/USDT",
|
||||
// OrderBookType::bid} );
|
||||
|
||||
|
||||
// // std::cout << "The price is " << orders[1].price << std::endl;
|
||||
|
||||
// for (OrderBookEntry& order : orders)
|
||||
// {
|
||||
// std::cout << "The price is " << order.price << std::endl;
|
||||
// }
|
||||
|
||||
// for (unsigned int i = 0; i < orders.size() ; ++i)
|
||||
// {
|
||||
// std::cout << "The price is " << orders[i].price << std::endl;
|
||||
// }
|
||||
|
||||
// for (unsigned int i = 0; i < orders.size() ; ++i)
|
||||
// {
|
||||
// std::cout << "The price is " << orders.at(i).price << std::endl;
|
||||
// }
|
||||
|
||||
|
||||
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user