sandbox-quant 1.0.10

Exchange-truth trading core for Binance Spot and Futures
Documentation
1
2
3
4
5
6
7
8
9
10
use crate::domain::instrument::Instrument;
use crate::domain::position::Side;

#[derive(Debug, Clone, PartialEq)]
pub struct ExecutionPlan {
    pub instrument: Instrument,
    pub side: Side,
    pub qty: f64,
    pub reduce_only: bool,
}