nautilus_data::client

Trait DataClient

Source
pub trait DataClient {
Show 35 methods // Required methods fn client_id(&self) -> ClientId; fn venue(&self) -> Option<Venue>; fn start(&self); fn stop(&self); fn reset(&self); fn dispose(&self); fn is_connected(&self) -> bool; fn is_disconnected(&self) -> bool; fn subscribe( &mut self, data_type: &DataType, params: &Option<HashMap<String, String>>, ) -> Result<()>; fn subscribe_instruments( &mut self, venue: Option<&Venue>, params: &Option<HashMap<String, String>>, ) -> Result<()>; fn subscribe_instrument( &mut self, instrument_id: &InstrumentId, params: &Option<HashMap<String, String>>, ) -> Result<()>; fn subscribe_order_book_deltas( &mut self, instrument_id: &InstrumentId, book_type: BookType, depth: Option<usize>, params: &Option<HashMap<String, String>>, ) -> Result<()>; fn subscribe_order_book_snapshots( &mut self, instrument_id: &InstrumentId, book_type: BookType, depth: Option<usize>, params: &Option<HashMap<String, String>>, ) -> Result<()>; fn subscribe_quote_ticks( &mut self, instrument_id: &InstrumentId, params: &Option<HashMap<String, String>>, ) -> Result<()>; fn subscribe_trade_ticks( &mut self, instrument_id: &InstrumentId, params: &Option<HashMap<String, String>>, ) -> Result<()>; fn subscribe_bars( &mut self, bar_type: &BarType, params: &Option<HashMap<String, String>>, ) -> Result<()>; fn subscribe_instrument_status( &mut self, instrument_id: &InstrumentId, params: &Option<HashMap<String, String>>, ) -> Result<()>; fn subscribe_instrument_close( &mut self, instrument_id: &InstrumentId, params: &Option<HashMap<String, String>>, ) -> Result<()>; fn unsubscribe( &mut self, data_type: &DataType, params: &Option<HashMap<String, String>>, ) -> Result<()>; fn unsubscribe_instruments( &mut self, venue: Option<&Venue>, params: &Option<HashMap<String, String>>, ) -> Result<()>; fn unsubscribe_instrument( &mut self, instrument_id: &InstrumentId, params: &Option<HashMap<String, String>>, ) -> Result<()>; fn unsubscribe_order_book_deltas( &mut self, instrument_id: &InstrumentId, params: &Option<HashMap<String, String>>, ) -> Result<()>; fn unsubscribe_order_book_snapshots( &mut self, instrument_id: &InstrumentId, params: &Option<HashMap<String, String>>, ) -> Result<()>; fn unsubscribe_quote_ticks( &mut self, instrument_id: &InstrumentId, params: &Option<HashMap<String, String>>, ) -> Result<()>; fn unsubscribe_trade_ticks( &mut self, instrument_id: &InstrumentId, params: &Option<HashMap<String, String>>, ) -> Result<()>; fn unsubscribe_bars( &mut self, bar_type: &BarType, params: &Option<HashMap<String, String>>, ) -> Result<()>; fn unsubscribe_instrument_status( &mut self, instrument_id: &InstrumentId, params: &Option<HashMap<String, String>>, ) -> Result<()>; fn unsubscribe_instrument_close( &mut self, instrument_id: &InstrumentId, params: &Option<HashMap<String, String>>, ) -> Result<()>; fn request_data(&self, request: DataRequest); fn request_instruments( &self, correlation_id: UUID4, venue: Venue, start: Option<UnixNanos>, end: Option<UnixNanos>, params: &Option<HashMap<String, String>>, ) -> Vec<InstrumentAny>; fn request_instrument( &self, correlation_id: UUID4, instrument_id: InstrumentId, start: Option<UnixNanos>, end: Option<UnixNanos>, params: &Option<HashMap<String, String>>, ) -> InstrumentAny; fn request_order_book_snapshot( &self, correlation_id: UUID4, instrument_id: InstrumentId, depth: Option<usize>, params: &Option<HashMap<String, String>>, ) -> Payload; fn request_quote_ticks( &self, correlation_id: UUID4, instrument_id: InstrumentId, start: Option<UnixNanos>, end: Option<UnixNanos>, limit: Option<usize>, params: &Option<HashMap<String, String>>, ) -> Vec<QuoteTick>; fn request_trade_ticks( &self, correlation_id: UUID4, instrument_id: InstrumentId, start: Option<UnixNanos>, end: Option<UnixNanos>, limit: Option<usize>, params: &Option<HashMap<String, String>>, ) -> Vec<TradeTick>; fn request_bars( &self, correlation_id: UUID4, bar_type: BarType, start: Option<UnixNanos>, end: Option<UnixNanos>, limit: Option<usize>, params: &Option<HashMap<String, String>>, ) -> Vec<Bar>;
}

Required Methods§

Source

fn client_id(&self) -> ClientId

Source

fn venue(&self) -> Option<Venue>

Source

fn start(&self)

Source

fn stop(&self)

Source

fn reset(&self)

Source

fn dispose(&self)

Source

fn is_connected(&self) -> bool

Source

fn is_disconnected(&self) -> bool

Source

fn subscribe( &mut self, data_type: &DataType, params: &Option<HashMap<String, String>>, ) -> Result<()>

Parse command and call specific function

Source

fn subscribe_instruments( &mut self, venue: Option<&Venue>, params: &Option<HashMap<String, String>>, ) -> Result<()>

Source

fn subscribe_instrument( &mut self, instrument_id: &InstrumentId, params: &Option<HashMap<String, String>>, ) -> Result<()>

Source

fn subscribe_order_book_deltas( &mut self, instrument_id: &InstrumentId, book_type: BookType, depth: Option<usize>, params: &Option<HashMap<String, String>>, ) -> Result<()>

Source

fn subscribe_order_book_snapshots( &mut self, instrument_id: &InstrumentId, book_type: BookType, depth: Option<usize>, params: &Option<HashMap<String, String>>, ) -> Result<()>

Source

fn subscribe_quote_ticks( &mut self, instrument_id: &InstrumentId, params: &Option<HashMap<String, String>>, ) -> Result<()>

Source

fn subscribe_trade_ticks( &mut self, instrument_id: &InstrumentId, params: &Option<HashMap<String, String>>, ) -> Result<()>

Source

fn subscribe_bars( &mut self, bar_type: &BarType, params: &Option<HashMap<String, String>>, ) -> Result<()>

Source

fn subscribe_instrument_status( &mut self, instrument_id: &InstrumentId, params: &Option<HashMap<String, String>>, ) -> Result<()>

Source

fn subscribe_instrument_close( &mut self, instrument_id: &InstrumentId, params: &Option<HashMap<String, String>>, ) -> Result<()>

Source

fn unsubscribe( &mut self, data_type: &DataType, params: &Option<HashMap<String, String>>, ) -> Result<()>

Source

fn unsubscribe_instruments( &mut self, venue: Option<&Venue>, params: &Option<HashMap<String, String>>, ) -> Result<()>

Source

fn unsubscribe_instrument( &mut self, instrument_id: &InstrumentId, params: &Option<HashMap<String, String>>, ) -> Result<()>

Source

fn unsubscribe_order_book_deltas( &mut self, instrument_id: &InstrumentId, params: &Option<HashMap<String, String>>, ) -> Result<()>

Source

fn unsubscribe_order_book_snapshots( &mut self, instrument_id: &InstrumentId, params: &Option<HashMap<String, String>>, ) -> Result<()>

Source

fn unsubscribe_quote_ticks( &mut self, instrument_id: &InstrumentId, params: &Option<HashMap<String, String>>, ) -> Result<()>

Source

fn unsubscribe_trade_ticks( &mut self, instrument_id: &InstrumentId, params: &Option<HashMap<String, String>>, ) -> Result<()>

Source

fn unsubscribe_bars( &mut self, bar_type: &BarType, params: &Option<HashMap<String, String>>, ) -> Result<()>

Source

fn unsubscribe_instrument_status( &mut self, instrument_id: &InstrumentId, params: &Option<HashMap<String, String>>, ) -> Result<()>

Source

fn unsubscribe_instrument_close( &mut self, instrument_id: &InstrumentId, params: &Option<HashMap<String, String>>, ) -> Result<()>

Source

fn request_data(&self, request: DataRequest)

Source

fn request_instruments( &self, correlation_id: UUID4, venue: Venue, start: Option<UnixNanos>, end: Option<UnixNanos>, params: &Option<HashMap<String, String>>, ) -> Vec<InstrumentAny>

Source

fn request_instrument( &self, correlation_id: UUID4, instrument_id: InstrumentId, start: Option<UnixNanos>, end: Option<UnixNanos>, params: &Option<HashMap<String, String>>, ) -> InstrumentAny

Source

fn request_order_book_snapshot( &self, correlation_id: UUID4, instrument_id: InstrumentId, depth: Option<usize>, params: &Option<HashMap<String, String>>, ) -> Payload

Source

fn request_quote_ticks( &self, correlation_id: UUID4, instrument_id: InstrumentId, start: Option<UnixNanos>, end: Option<UnixNanos>, limit: Option<usize>, params: &Option<HashMap<String, String>>, ) -> Vec<QuoteTick>

Source

fn request_trade_ticks( &self, correlation_id: UUID4, instrument_id: InstrumentId, start: Option<UnixNanos>, end: Option<UnixNanos>, limit: Option<usize>, params: &Option<HashMap<String, String>>, ) -> Vec<TradeTick>

Source

fn request_bars( &self, correlation_id: UUID4, bar_type: BarType, start: Option<UnixNanos>, end: Option<UnixNanos>, limit: Option<usize>, params: &Option<HashMap<String, String>>, ) -> Vec<Bar>

Implementors§