kucoin_arbitrage 0.0.12

Event-Driven Kucoin Arbitrage Framework in Async Rust
Documentation
1
2
3
4
5
6
use crate::model::order::Order;

/// trait used by market gatekeeper to determine of the order is allowed
pub trait ExchangeLimit {
    fn is_allowed(&self, order: dyn Order) -> bool;
}