Joel Grunbaum
2022-01-20 441abf1e6a15a39f1ef7bf5e4ee2a4a43bff327b
Added names and ready notice
1 files modified
3 ■■■■ changed files
strat.cpp 3 ●●●● patch | view | raw | blame | history
strat.cpp
@@ -43,6 +43,7 @@
void mainLoop()
{
    auto bs = protocol::recoverBook();
    std::cout << "ready" << std::endl;
    while (true) {
        auto messages = protocol::catchUp(bs);
        // bom::updateBom(bs);
@@ -106,7 +107,7 @@
    for (auto& i : m) {
        if (i->type == json::ADDED) {
            json::AddedMessage* j = (json::AddedMessage*)i;
            if (j->owner == "jgrunbau") {
            if (j->owner == "nseow" || j->owner == "jgrunbau" || j->owner == "zoar" || j->owner == "aobrien") {
                book::OrderSideEnum s =
                    j->side == book::Buy ? book::Sell : book::Buy;
                json::AddMessage a(json::ADD, j->product, j->price, s,