[][src]Struct fxoanda_definitions::CalculatedPositionState

pub struct CalculatedPositionState {
    pub short_unrealized_pl: Option<f32>,
    pub instrument: Option<String>,
    pub margin_used: Option<f32>,
    pub net_unrealized_pl: Option<f32>,
    pub long_unrealized_pl: Option<f32>,
}

Fields

short_unrealized_pl: Option<f32>

The unrealized profit/loss of the Position's short open Trades format: A decimal number encoded as a string. The amount of precision provided depends on the Account's home currency.

instrument: Option<String>

The Position's Instrument. format: A string containing the base currency and quote currency delimited by a "_".

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.

net_unrealized_pl: Option<f32>

The Position's net unrealized profit/loss format: A decimal number encoded as a string. The amount of precision provided depends on the Account's home currency.

long_unrealized_pl: Option<f32>

The unrealized profit/loss of the Position's long open Trades format: A decimal number encoded as a string. The amount of precision provided depends on the Account's home currency.

Methods

impl CalculatedPositionState[src]

pub fn new() -> CalculatedPositionState[src]

pub fn with_short_unrealized_pl(self, x: f32) -> Self[src]

The unrealized profit/loss of the Position's short open Trades format: A decimal number encoded as a string. The amount of precision provided depends on the Account's home currency.

  • param f32
  • return CalculatedPositionState

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

The Position's Instrument. format: A string containing the base currency and quote currency delimited by a "_".

  • param String
  • return CalculatedPositionState

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

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 CalculatedPositionState

pub fn with_net_unrealized_pl(self, x: f32) -> Self[src]

The Position's net unrealized profit/loss format: A decimal number encoded as a string. The amount of precision provided depends on the Account's home currency.

  • param f32
  • return CalculatedPositionState

pub fn with_long_unrealized_pl(self, x: f32) -> Self[src]

The unrealized profit/loss of the Position's long open Trades format: A decimal number encoded as a string. The amount of precision provided depends on the Account's home currency.

  • param f32
  • return CalculatedPositionState

Trait Implementations

impl Debug for CalculatedPositionState[src]

impl Serialize for CalculatedPositionState[src]

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

Auto Trait Implementations

Blanket Implementations

impl<T> From for T[src]

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

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

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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

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

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

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

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

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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