nautilus_model::orders::base

Struct OrderCore

source
pub struct OrderCore {
Show 37 fields pub events: Vec<OrderEventAny>, pub commissions: HashMap<Currency, Money>, pub venue_order_ids: Vec<VenueOrderId>, pub trade_ids: Vec<TradeId>, pub previous_status: Option<OrderStatus>, pub status: OrderStatus, pub trader_id: TraderId, pub strategy_id: StrategyId, pub instrument_id: InstrumentId, pub client_order_id: ClientOrderId, pub venue_order_id: Option<VenueOrderId>, pub position_id: Option<PositionId>, pub account_id: Option<AccountId>, pub last_trade_id: Option<TradeId>, pub side: OrderSide, pub order_type: OrderType, pub quantity: Quantity, pub time_in_force: TimeInForce, pub liquidity_side: Option<LiquiditySide>, pub is_reduce_only: bool, pub is_quote_quantity: bool, pub emulation_trigger: Option<TriggerType>, pub contingency_type: Option<ContingencyType>, pub order_list_id: Option<OrderListId>, pub linked_order_ids: Option<Vec<ClientOrderId>>, pub parent_order_id: Option<ClientOrderId>, pub exec_algorithm_id: Option<ExecAlgorithmId>, pub exec_algorithm_params: Option<HashMap<Ustr, Ustr>>, pub exec_spawn_id: Option<ClientOrderId>, pub tags: Option<Vec<Ustr>>, pub filled_qty: Quantity, pub leaves_qty: Quantity, pub avg_px: Option<f64>, pub slippage: Option<f64>, pub init_id: UUID4, pub ts_init: UnixNanos, pub ts_last: UnixNanos,
}

Fields§

§events: Vec<OrderEventAny>§commissions: HashMap<Currency, Money>§venue_order_ids: Vec<VenueOrderId>§trade_ids: Vec<TradeId>§previous_status: Option<OrderStatus>§status: OrderStatus§trader_id: TraderId§strategy_id: StrategyId§instrument_id: InstrumentId§client_order_id: ClientOrderId§venue_order_id: Option<VenueOrderId>§position_id: Option<PositionId>§account_id: Option<AccountId>§last_trade_id: Option<TradeId>§side: OrderSide§order_type: OrderType§quantity: Quantity§time_in_force: TimeInForce§liquidity_side: Option<LiquiditySide>§is_reduce_only: bool§is_quote_quantity: bool§emulation_trigger: Option<TriggerType>§contingency_type: Option<ContingencyType>§order_list_id: Option<OrderListId>§linked_order_ids: Option<Vec<ClientOrderId>>§parent_order_id: Option<ClientOrderId>§exec_algorithm_id: Option<ExecAlgorithmId>§exec_algorithm_params: Option<HashMap<Ustr, Ustr>>§exec_spawn_id: Option<ClientOrderId>§tags: Option<Vec<Ustr>>§filled_qty: Quantity§leaves_qty: Quantity§avg_px: Option<f64>§slippage: Option<f64>§init_id: UUID4§ts_init: UnixNanos§ts_last: UnixNanos

Implementations§

source§

impl OrderCore

source

pub fn new(init: OrderInitialized) -> Self

Creates a new OrderCore instance.

source

pub fn apply(&mut self, event: OrderEventAny) -> Result<(), OrderError>

source

pub fn set_slippage(&mut self, price: Price)

source

pub fn opposite_side(side: OrderSide) -> OrderSide

source

pub fn closing_side(side: PositionSide) -> OrderSide

source

pub fn signed_decimal_qty(&self) -> Decimal

source

pub fn would_reduce_only( &self, side: PositionSide, position_qty: Quantity, ) -> bool

source

pub fn commission(&self, currency: &Currency) -> Option<Money>

source

pub fn commissions(&self) -> HashMap<Currency, Money>

source

pub fn init_event(&self) -> Option<OrderEventAny>

Trait Implementations§

source§

impl Clone for OrderCore

source§

fn clone(&self) -> OrderCore

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for OrderCore

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl<'de> Deserialize<'de> for OrderCore

source§

fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>
where __D: Deserializer<'de>,

Deserialize this value from the given Serde deserializer. Read more
source§

impl Serialize for OrderCore

source§

fn serialize<__S>(&self, __serializer: __S) -> Result<__S::Ok, __S::Error>
where __S: Serializer,

Serialize this value into the given Serde serializer. Read more

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> CloneToUninit for T
where T: Clone,

source§

unsafe fn clone_to_uninit(&self, dst: *mut T)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dst. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> ToOwned for T
where T: Clone,

source§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

source§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
source§

impl<T> DeserializeOwned for T
where T: for<'de> Deserialize<'de>,

§

impl<T> Ungil for T
where T: Send,