Skip to main content

apple_quant_algorithmic/price/
corrected.rs

1pub trait FromCorrectedPrice {
2	fn from_i64(price: i64) -> Self;
3	fn from_f64(price: f64) -> Self;
4}