sandbox-quant 1.0.7

Exchange-truth trading core for Binance Spot and Futures
Documentation
1
2
3
4
5
6
7
8
use crate::domain::identifiers::BatchId;
use crate::execution::close_symbol::CloseSymbolResult;

#[derive(Debug, Clone, PartialEq, Eq)]
pub struct CloseAllBatchResult {
    pub batch_id: BatchId,
    pub results: Vec<CloseSymbolResult>,
}