pub struct Position {
    pub financing: Option<f32>,
    pub short: Option<PositionSide>,
    pub margin_used: Option<f32>,
    pub unrealized_pl: Option<f32>,
    pub commission: Option<f32>,
    pub long: Option<PositionSide>,
    pub instrument: Option<String>,
    pub resettable_pl: Option<f32>,
    pub guaranteed_execution_fees: Option<f32>,
    pub pl: Option<f32>,
}

Fields§

§financing: Option<f32>

The total amount of financing paid/collected for this instrument 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.

§short: Option<PositionSide>

The representation of a Position for a single direction (long or short).

§margin_used: Option<f32>

Margin currently used by the Position. 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 Position. format: A decimal number encoded as a string. The amount of precision provided depends on the Account’s home currency.

§commission: Option<f32>

The total amount of commission paid for this instrument 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.

§long: Option<PositionSide>

The representation of a Position for a single direction (long or short).

§instrument: Option<String>

The Position’s Instrument. format: A string containing the base currency and quote currency delimited by a “_”.

§resettable_pl: Option<f32>

Profit/loss realized by the Position 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 for this instrument. format: A decimal number encoded as a string. The amount of precision provided depends on the Account’s home currency.

§pl: Option<f32>

Profit/loss realized by the Position 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 Position

source

pub fn new() -> Position

source

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

The total amount of financing paid/collected for this instrument 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 Position
source

pub fn with_short(self, x: PositionSide) -> Self

The representation of a Position for a single direction (long or short).

  • param PositionSide
  • return Position
source

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

Margin currently used by the Position. format: A decimal number encoded as a string. The amount of precision provided depends on the Account’s home currency.

  • param f32
  • return Position
source

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

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

  • param f32
  • return Position
source

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

The total amount of commission paid for this instrument 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 Position
source

pub fn with_long(self, x: PositionSide) -> Self

The representation of a Position for a single direction (long or short).

  • param PositionSide
  • return Position
source

pub fn with_instrument(self, x: String) -> Self

The Position’s Instrument. format: A string containing the base currency and quote currency delimited by a “_”.

  • param String
  • return Position
source

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

Profit/loss realized by the Position 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 Position
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 for this instrument. format: A decimal number encoded as a string. The amount of precision provided depends on the Account’s home currency.

  • param f32
  • return Position
source

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

Profit/loss realized by the Position 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 Position

Trait Implementations§

source§

impl Debug for Position

source§

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

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

impl<'de> Deserialize<'de> for Position

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 Position

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