[][src]Struct fxoanda::GuaranteedStopLossOrderEntryData

pub struct GuaranteedStopLossOrderEntryData {
    pub level_restriction: Option<GuaranteedStopLossOrderLevelRestriction>,
    pub minimum_distance: Option<f32>,
    pub premium: Option<f32>,
}

Fields

level_restriction: Option<GuaranteedStopLossOrderLevelRestriction>

A GuaranteedStopLossOrderLevelRestriction represents the total position size that can exist within a given price window for Trades with guaranteed Stop Loss Orders attached for a specific Instrument.

minimum_distance: Option<f32>

The minimum distance allowed between the Trade's fill price and the configured price for guaranteed Stop Loss Orders created for this instrument. Specified in price units. format: A decimal number encoded as a string. The amount of precision provided depends on what the number represents.

premium: Option<f32>

The amount that is charged to the account if a guaranteed Stop Loss Order is triggered and filled. The value is in price units and is charged for each unit of the Trade. format: A decimal number encoded as a string. The amount of precision provided depends on what the number represents.

Methods

impl GuaranteedStopLossOrderEntryData[src]

pub fn new() -> GuaranteedStopLossOrderEntryData[src]

pub fn with_level_restriction(
    self,
    x: GuaranteedStopLossOrderLevelRestriction
) -> GuaranteedStopLossOrderEntryData
[src]

A GuaranteedStopLossOrderLevelRestriction represents the total position size that can exist within a given price window for Trades with guaranteed Stop Loss Orders attached for a specific Instrument.

  • param GuaranteedStopLossOrderLevelRestriction
  • return GuaranteedStopLossOrderEntryData

pub fn with_minimum_distance(self, x: f32) -> GuaranteedStopLossOrderEntryData[src]

The minimum distance allowed between the Trade's fill price and the configured price for guaranteed Stop Loss Orders created for this instrument. Specified in price units. format: A decimal number encoded as a string. The amount of precision provided depends on what the number represents.

  • param f32
  • return GuaranteedStopLossOrderEntryData

pub fn with_premium(self, x: f32) -> GuaranteedStopLossOrderEntryData[src]

The amount that is charged to the account if a guaranteed Stop Loss Order is triggered and filled. The value is in price units and is charged for each unit of the Trade. format: A decimal number encoded as a string. The amount of precision provided depends on what the number represents.

  • param f32
  • return GuaranteedStopLossOrderEntryData

Trait Implementations

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

impl Serialize for GuaranteedStopLossOrderEntryData[src]

impl Debug for GuaranteedStopLossOrderEntryData[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]

impl<T> Erased for T