nautilus_model::ffi::orderbook::book

Struct OrderBook_API

Source
#[repr(C)]
pub struct OrderBook_API(/* private fields */);
Expand description

C compatible Foreign Function Interface (FFI) for an underlying OrderBook.

This struct wraps OrderBook in a way that makes it compatible with C function calls, enabling interaction with OrderBook in a C environment.

It implements the Deref trait, allowing instances of OrderBook_API to be dereferenced to OrderBook, providing access to OrderBook’s methods without having to manually access the underlying OrderBook instance.

Methods from Deref<Target = OrderBook>§

Source

pub fn reset(&mut self)

Resets the order book to its initial empty state.

Source

pub fn add( &mut self, order: BookOrder, flags: u8, sequence: u64, ts_event: UnixNanos, )

Adds an order to the book after preprocessing based on book type.

Source

pub fn update( &mut self, order: BookOrder, flags: u8, sequence: u64, ts_event: UnixNanos, )

Updates an existing order in the book after preprocessing based on book type.

Source

pub fn delete( &mut self, order: BookOrder, flags: u8, sequence: u64, ts_event: UnixNanos, )

Deletes an order from the book after preprocessing based on book type.

Source

pub fn clear(&mut self, sequence: u64, ts_event: UnixNanos)

Clears all orders from both sides of the book.

Source

pub fn clear_bids(&mut self, sequence: u64, ts_event: UnixNanos)

Clears all bid orders from the book.

Source

pub fn clear_asks(&mut self, sequence: u64, ts_event: UnixNanos)

Clears all ask orders from the book.

Source

pub fn apply_delta(&mut self, delta: &OrderBookDelta)

Applies a single order book delta operation.

Source

pub fn apply_deltas(&mut self, deltas: &OrderBookDeltas)

Applies multiple order book delta operations.

Source

pub fn apply_depth(&mut self, depth: &OrderBookDepth10)

Replaces current book state with a depth snapshot.

Source

pub fn bids(&self, depth: Option<usize>) -> impl Iterator<Item = &BookLevel>

Returns an iterator over bid price levels.

Source

pub fn asks(&self, depth: Option<usize>) -> impl Iterator<Item = &BookLevel>

Returns an iterator over ask price levels.

Source

pub fn bids_as_map(&self, depth: Option<usize>) -> IndexMap<Decimal, Decimal>

Returns bid price levels as a map of price to size.

Source

pub fn asks_as_map(&self, depth: Option<usize>) -> IndexMap<Decimal, Decimal>

Returns ask price levels as a map of price to size.

Source

pub fn group_bids( &self, group_size: Decimal, depth: Option<usize>, ) -> IndexMap<Decimal, Decimal>

Groups bid levels by price, up to specified depth.

Source

pub fn group_asks( &self, group_size: Decimal, depth: Option<usize>, ) -> IndexMap<Decimal, Decimal>

Groups ask levels by price, up to specified depth.

Source

pub fn has_bid(&self) -> bool

Returns true if the book has any bid orders.

Source

pub fn has_ask(&self) -> bool

Returns true if the book has any ask orders.

Source

pub fn best_bid_price(&self) -> Option<Price>

Returns the best bid price if available.

Source

pub fn best_ask_price(&self) -> Option<Price>

Returns the best ask price if available.

Source

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

Returns the size at the best bid price if available.

Source

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

Returns the size at the best ask price if available.

Source

pub fn spread(&self) -> Option<f64>

Returns the spread between best ask and bid prices if both exist.

Source

pub fn midpoint(&self) -> Option<f64>

Returns the midpoint between best ask and bid prices if both exist.

Source

pub fn get_avg_px_for_quantity( &self, qty: Quantity, order_side: OrderSide, ) -> f64

Calculates the average price to fill the specified quantity.

Source

pub fn get_avg_px_qty_for_exposure( &self, target_exposure: Quantity, order_side: OrderSide, ) -> (f64, f64, f64)

Calculates average price and quantity for target exposure. Returns (price, quantity, executed_exposure).

Source

pub fn get_quantity_for_price(&self, price: Price, order_side: OrderSide) -> f64

Returns the total quantity available at specified price level.

Source

pub fn simulate_fills(&self, order: &BookOrder) -> Vec<(Price, Quantity)>

Simulates fills for an order, returning list of (price, quantity) tuples.

Source

pub fn pprint(&self, num_levels: usize) -> String

Return a formatted string representation of the order book.

Source

pub fn update_quote_tick( &mut self, quote: &QuoteTick, ) -> Result<(), InvalidBookOperation>

Updates L1 book state from a quote tick. Only valid for L1_MBP book type.

Source

pub fn update_trade_tick( &mut self, trade: &TradeTick, ) -> Result<(), InvalidBookOperation>

Updates L1 book state from a trade tick. Only valid for L1_MBP book type.

Source

pub fn py_group_bids( &self, group_size: Decimal, depth: Option<usize>, ) -> IndexMap<Decimal, Decimal>

Source

pub fn py_group_asks( &self, group_size: Decimal, depth: Option<usize>, ) -> IndexMap<Decimal, Decimal>

Trait Implementations§

Source§

impl Deref for OrderBook_API

Source§

type Target = OrderBook

The resulting type after dereferencing.
Source§

fn deref(&self) -> &Self::Target

Dereferences the value.
Source§

impl DerefMut for OrderBook_API

Source§

fn deref_mut(&mut self) -> &mut Self::Target

Mutably dereferences the value.

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<P, T> Receiver for P
where P: Deref<Target = T> + ?Sized, T: ?Sized,

Source§

type Target = T

🔬This is a nightly-only experimental API. (arbitrary_self_types)
The target type on which the method may be called.
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<V, T> VZip<V> for T
where V: MultiLane<T>,

§

fn vzip(self) -> V

§

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