nautilus_model::instruments::any

Enum InstrumentAny

Source
pub enum InstrumentAny {
    Betting(BettingInstrument),
    BinaryOption(BinaryOption),
    CryptoFuture(CryptoFuture),
    CryptoPerpetual(CryptoPerpetual),
    CurrencyPair(CurrencyPair),
    Equity(Equity),
    FuturesContract(FuturesContract),
    FuturesSpread(FuturesSpread),
    OptionsContract(OptionsContract),
    OptionsSpread(OptionsSpread),
}

Variants§

§

Betting(BettingInstrument)

§

BinaryOption(BinaryOption)

§

CryptoFuture(CryptoFuture)

§

CryptoPerpetual(CryptoPerpetual)

§

CurrencyPair(CurrencyPair)

§

Equity(Equity)

§

FuturesContract(FuturesContract)

§

FuturesSpread(FuturesSpread)

§

OptionsContract(OptionsContract)

§

OptionsSpread(OptionsSpread)

Implementations§

Source§

impl InstrumentAny

Source

pub fn into_instrument(self) -> Box<dyn Instrument>

Consumes the OrderAny enum and returns the underlying order as a boxed trait.

Source

pub fn instrument_class(&self) -> InstrumentClass

Source

pub fn id(&self) -> InstrumentId

Source

pub fn symbol(&self) -> Symbol

Source

pub fn venue(&self) -> Venue

Source

pub fn raw_symbol(&self) -> Symbol

Source

pub fn underlying(&self) -> Option<&Ustr>

Source

pub fn base_currency(&self) -> Option<Currency>

Source

pub fn quote_currency(&self) -> Currency

Source

pub fn settlement_currency(&self) -> Currency

Source

pub fn is_inverse(&self) -> bool

Source

pub fn price_precision(&self) -> u8

Source

pub fn size_precision(&self) -> u8

Source

pub fn price_increment(&self) -> Price

Source

pub fn size_increment(&self) -> Quantity

Source

pub fn multiplier(&self) -> Quantity

Source

pub fn activation_ns(&self) -> Option<UnixNanos>

Source

pub fn expiration_ns(&self) -> Option<UnixNanos>

Source

pub fn max_quantity(&self) -> Option<Quantity>

Source

pub fn min_quantity(&self) -> Option<Quantity>

Source

pub fn max_notional(&self) -> Option<Money>

Source

pub fn min_notional(&self) -> Option<Money>

Source

pub fn make_price(&self, value: f64) -> Price

Source

pub fn make_qty(&self, value: f64) -> Quantity

Source

pub fn calculate_notional_value( &self, quantity: Quantity, price: Price, use_quote_for_inverse: Option<bool>, ) -> Money

Source

pub fn maker_fee(&self) -> Decimal

Source

pub fn taker_fee(&self) -> Decimal

Source

pub fn get_base_quantity(&self, quantity: Quantity, last_px: Price) -> Quantity

Trait Implementations§

Source§

impl Clone for InstrumentAny

Source§

fn clone(&self) -> InstrumentAny

Returns a copy of the value. Read more
1.0.0 · Source§

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

Performs copy-assignment from source. Read more
Source§

impl Debug for InstrumentAny

Source§

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

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

impl PartialEq for InstrumentAny

Source§

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

Tests for self and other values to be equal, and is used by ==.
1.0.0 · 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.

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> CloneToUninit for T
where T: Clone,

Source§

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

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dst. 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> 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.
§

impl<T> Ungil for T
where T: Send,