[][src]Struct questrade_rs::AccountExecution

pub struct AccountExecution {
    pub id: u32,
    pub order_id: u32,
    pub symbol: String,
    pub symbol_id: u32,
    pub quantity: Number,
    pub side: OrderSide,
    pub price: Number,
    pub order_chain_id: u32,
    pub timestamp: DateTime<Utc>,
    pub notes: Option<String>,
    pub commission: Number,
    pub execution_fee: Number,
    pub sec_fee: Number,
    pub canadian_execution_fee: Number,
    pub parent_id: u32,
}

An account execution.

Fields

id: u32

Internal identifier of the execution.

order_id: u32

Internal identifier of the order to which the execution belongs.

symbol: String

Symbol that follows Questrade symbology (e.g., "TD.TO").

symbol_id: u32

Internal symbol identifier.

quantity: Number

Execution quantity.

side: OrderSide

Client view of the order side (e.g., "Buy-To-Open").

price: Number

Execution price.

order_chain_id: u32

Internal identifier of the order chain to which the execution belongs.

timestamp: DateTime<Utc>

Execution timestamp.

notes: Option<String>

Notes that may have been manually added by Questrade staff.

commission: Number

Questrade commission.

execution_fee: Number

Liquidity fee charged by execution venue.

sec_fee: Number

SEC fee charged on all sales of US securities.

canadian_execution_fee: Number

Additional execution fee charged by TSX (if applicable).

parent_id: u32

Internal identifierof the parent order.

Trait Implementations

impl Clone for AccountExecution[src]

impl Debug for AccountExecution[src]

impl<'de> Deserialize<'de> for AccountExecution[src]

impl PartialEq<AccountExecution> for AccountExecution[src]

impl Serialize for AccountExecution[src]

impl StructuralPartialEq for AccountExecution[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

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

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.