diff --git a/rustybot/src/orders.rs b/rustybot/src/orders.rs index 7569fa8..b307bc6 100644 --- a/rustybot/src/orders.rs +++ b/rustybot/src/orders.rs @@ -19,3 +19,19 @@ pub struct Order { pub hidden: i32, pub placed_id: Option, } + +pub enum OrderKind { + Limit, + ExchangeLimit, + Market, + ExchangeMarket, + Stop, + ExchangeStop, + StopLimit, + ExchangeStopLimit, + TrailingStop, + Fok, + ExchangeFok, + Ioc, + ExchangeIoc, +}