Skip to main content

sandbox_quant/execution/
price_source.rs

1use crate::domain::instrument::Instrument;
2
3pub trait PriceSource {
4    fn current_price(&self, instrument: &Instrument) -> Option<f64>;
5}