| 70 | } |
| 71 | |
| 72 | void processMarketData() { |
| 73 | try { |
| 74 | for (const auto& symbol : config_->getSymbols()) { |
| 75 | auto market_data = data_loader_->loadMarketData(symbol); |
| 76 | strategy_->onMarketData(market_data); |
| 77 | } |
| 78 | } catch (const std::exception& e) { |
| 79 | spdlog::error("Error processing market data: {}", e.what()); |
| 80 | } |
| 81 | } |
| 82 | |
| 83 | void processSignals() { |
| 84 | try { |
nothing calls this directly
no test coverage detected