pub struct PositionSide {
    pub financing: Option<f32>,
    pub unrealized_pl: Option<f32>,
    pub trade_i_ds: Option<Vec<String>>,
    pub resettable_pl: Option<f32>,
    pub guaranteed_execution_fees: Option<f32>,
    pub units: Option<f32>,
    pub average_price: Option<f32>,
    pub pl: Option<f32>,
}

Fields§

§financing: Option<f32>

The total amount of financing paid/collected for this PositionSide over the lifetime of the Account. format: A decimal number encoded as a string. The amount of precision provided depends on the Account’s home currency.

§unrealized_pl: Option<f32>

The unrealized profit/loss of all open Trades that contribute to this PositionSide. format: A decimal number encoded as a string. The amount of precision provided depends on the Account’s home currency.

§trade_i_ds: Option<Vec<String>>

List of the open Trade IDs which contribute to the open Position.

§resettable_pl: Option<f32>

Profit/loss realized by the PositionSide since the Account’s resettablePL was last reset by the client. format: A decimal number encoded as a string. The amount of precision provided depends on the Account’s home currency.

§guaranteed_execution_fees: Option<f32>

The total amount of fees charged over the lifetime of the Account for the execution of guaranteed Stop Loss Orders attached to Trades for this PositionSide. format: A decimal number encoded as a string. The amount of precision provided depends on the Account’s home currency.

§units: Option<f32>

Number of units in the position (negative value indicates short position, positive indicates long position). format: A decimal number encoded as a string. The amount of precision provided depends on what the number represents.

§average_price: Option<f32>

Volume-weighted average of the underlying Trade open prices for the Position. format: A decimal number encodes as a string. The amount of precision provided depends on the Instrument.

§pl: Option<f32>

Profit/loss realized by the PositionSide over the lifetime of the Account. format: A decimal number encoded as a string. The amount of precision provided depends on the Account’s home currency.

Implementations§

source§

impl PositionSide

source

pub fn new() -> PositionSide

source

pub fn with_financing(self, x: f32) -> Self

The total amount of financing paid/collected for this PositionSide over the lifetime of the Account. format: A decimal number encoded as a string. The amount of precision provided depends on the Account’s home currency.

  • param f32
  • return PositionSide
source

pub fn with_unrealized_pl(self, x: f32) -> Self

The unrealized profit/loss of all open Trades that contribute to this PositionSide. format: A decimal number encoded as a string. The amount of precision provided depends on the Account’s home currency.

  • param f32
  • return PositionSide
source

pub fn with_trade_i_ds(self, x: Vec<String>) -> Self

List of the open Trade IDs which contribute to the open Position.

  • param Vec
  • return PositionSide
source

pub fn with_resettable_pl(self, x: f32) -> Self

Profit/loss realized by the PositionSide since the Account’s resettablePL was last reset by the client. format: A decimal number encoded as a string. The amount of precision provided depends on the Account’s home currency.

  • param f32
  • return PositionSide
source

pub fn with_guaranteed_execution_fees(self, x: f32) -> Self

The total amount of fees charged over the lifetime of the Account for the execution of guaranteed Stop Loss Orders attached to Trades for this PositionSide. format: A decimal number encoded as a string. The amount of precision provided depends on the Account’s home currency.

  • param f32
  • return PositionSide
source

pub fn with_units(self, x: f32) -> Self

Number of units in the position (negative value indicates short position, positive indicates long position). format: A decimal number encoded as a string. The amount of precision provided depends on what the number represents.

  • param f32
  • return PositionSide
source

pub fn with_average_price(self, x: f32) -> Self

Volume-weighted average of the underlying Trade open prices for the Position. format: A decimal number encodes as a string. The amount of precision provided depends on the Instrument.

  • param f32
  • return PositionSide
source

pub fn with_pl(self, x: f32) -> Self

Profit/loss realized by the PositionSide over the lifetime of the Account. format: A decimal number encoded as a string. The amount of precision provided depends on the Account’s home currency.

  • param f32
  • return PositionSide

Trait Implementations§

source§

impl Debug for PositionSide

source§

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

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

impl<'de> Deserialize<'de> for PositionSide

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 PositionSide

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> 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, U> TryFrom<U> for T
where U: Into<T>,

§

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>,

§

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>,