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