Skip to main content

ExecutionMsg

Struct ExecutionMsg 

Source
pub struct ExecutionMsg {
Show 32 fields pub category: Category, pub symbol: String, pub is_leverage: bool, pub order_id: String, pub order_link_id: Option<String>, pub side: Side, pub order_price: Decimal, pub order_qty: Decimal, pub leaves_qty: Decimal, pub create_type: CreateType, pub order_type: OrderType, pub stop_order_type: StopOrderType, pub exec_fee: Decimal, pub exec_id: String, pub exec_price: Decimal, pub exec_qty: Decimal, pub exec_pnl: Decimal, pub exec_type: ExecType, pub exec_value: Decimal, pub exec_time: Timestamp, pub is_maker: bool, pub fee_rate: Decimal, pub trade_iv: Option<Decimal>, pub mark_iv: Option<Decimal>, pub mark_price: Decimal, pub index_price: Option<Decimal>, pub underlying_price: Option<Decimal>, pub block_trade_id: Option<String>, pub closed_size: Decimal, pub extra_fees: Option<Vec<ExtraFee>>, pub seq: i64, pub fee_currency: String,
}

Fields§

§category: Category

Product type spot, linear, inverse, option

§symbol: String

Symbol name

§is_leverage: bool

Whether to borrow. 0: false, 1: true

§order_id: String

Order ID

§order_link_id: Option<String>

User customized order ID

§side: Side

Side. Buy,Sell

§order_price: Decimal

Order price

§order_qty: Decimal

Order qty

§leaves_qty: Decimal

The remaining qty not executed

§create_type: CreateType

Order create type Spot, Option do not have this key

§order_type: OrderType

Order type. Market,Limit

§stop_order_type: StopOrderType

Stop order type. If the order is not stop order, any type is not returned

§exec_fee: Decimal

Executed trading fee. You can get spot fee currency instruction here

§exec_id: String

Execution ID

§exec_price: Decimal

Execution price

§exec_qty: Decimal

Execution qty

§exec_pnl: Decimal

Profit and Loss for each close position execution. The value keeps consistent with the field “cashFlow” in the Get Transaction Log

§exec_type: ExecType

Executed type

§exec_value: Decimal

Executed order value

§exec_time: Timestamp

Executed timestamp (ms)

§is_maker: bool

Is maker order. true: maker, false: taker

§fee_rate: Decimal

Trading fee rate

§trade_iv: Option<Decimal>

Implied volatility. valid for option

§mark_iv: Option<Decimal>

Implied volatility of mark price. valid for option

§mark_price: Decimal

The mark price of the symbol when executing. valid for option

§index_price: Option<Decimal>

The index price of the symbol when executing. valid for option

§underlying_price: Option<Decimal>

The underlying price of the symbol when executing. valid for option

§block_trade_id: Option<String>

Paradigm block trade ID

§closed_size: Decimal

Closed position size

§extra_fees: Option<Vec<ExtraFee>>

Extra trading fee information. Currently, this data is returned only for kyc=Indian user or spot orders placed on the Indonesian site or spot fiat currency orders placed on the EU site. In other cases, an empty string is returned. Enum: feeType, subFeeType

§seq: i64

Cross sequence, used to associate each fill and each position update The seq will be the same when conclude multiple transactions at the same time Different symbols may have the same seq, please use seq + symbol to check unique

§fee_currency: String

Trading fee currency

Trait Implementations§

Source§

impl Clone for ExecutionMsg

Source§

fn clone(&self) -> ExecutionMsg

Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§

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

Performs copy-assignment from source. Read more
Source§

impl Debug for ExecutionMsg

Source§

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

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

impl<'de> Deserialize<'de> for ExecutionMsg

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 PartialEq for ExecutionMsg

Source§

fn eq(&self, other: &ExecutionMsg) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 (const: unstable) · Source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

impl StructuralPartialEq for ExecutionMsg

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<ST, DT> CastableFrom<ST, Initialized, Initialized> for DT
where ST: ?Sized, DT: ?Sized,

Source§

impl<ST, DT> CastableFrom<ST, Uninit, Uninit> for DT
where ST: ?Sized, DT: ?Sized,

Source§

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

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

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

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

Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T> Instrument for T

Source§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
Source§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
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> PolicyExt for T
where T: ?Sized,

Source§

fn and<P, B, E>(self, other: P) -> And<T, P>
where T: Sized + Policy<B, E>, P: Policy<B, E>,

Create a new Policy that returns Action::Follow only if self and other return Action::Follow. Read more
Source§

fn or<P, B, E>(self, other: P) -> Or<T, P>
where T: Sized + Policy<B, E>, P: Policy<B, E>,

Create a new Policy that returns Action::Follow if either self or other returns Action::Follow. Read more
Source§

impl<T> Read<Exclusive, BecauseExclusive> for T
where T: ?Sized,

Source§

impl<T> Same for T

Source§

type Output = T

Should always be Self
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<V, T> VZip<V> for T
where V: MultiLane<T>,

Source§

fn vzip(self) -> V

Source§

impl<T> WithSubscriber for T

Source§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
Source§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more