| 81 | |
| 82 | #[derive(Debug, Clone, Copy, PartialEq)] |
| 83 | pub struct EarlyWarningSnapshot { |
| 84 | pub timestamp_ns: i64, |
| 85 | pub price: f64, |
| 86 | pub vpin: Option<f64>, |
| 87 | pub hhi: Option<f64>, |
| 88 | /// Simple normalized alert score for operations dashboards. |
| 89 | pub normalized_risk_score: Option<f64>, |
| 90 | pub is_alert: bool, |
| 91 | } |
| 92 | |
| 93 | #[derive(Debug, Clone, Copy, PartialEq)] |
| 94 | pub struct StreamingRunMetrics { |
nothing calls this directly
no outgoing calls
no test coverage detected