Add dynamic universe and subscription controls

This commit is contained in:
boris
2026-04-23 07:12:56 -07:00
parent 5265f82fef
commit 152b5c3141
12 changed files with 963 additions and 24 deletions

View File

@@ -787,6 +787,30 @@ where
self.cancel_all_open_orders(date, reason, report);
Ok(())
}
OrderIntent::UpdateUniverse { symbols, reason } => {
report.diagnostics.push(format!(
"engine_control_intent_skipped kind=update_universe count={} reason={}",
symbols.len(),
reason
));
Ok(())
}
OrderIntent::Subscribe { symbols, reason } => {
report.diagnostics.push(format!(
"engine_control_intent_skipped kind=subscribe count={} reason={}",
symbols.len(),
reason
));
Ok(())
}
OrderIntent::Unsubscribe { symbols, reason } => {
report.diagnostics.push(format!(
"engine_control_intent_skipped kind=unsubscribe count={} reason={}",
symbols.len(),
reason
));
Ok(())
}
}
}