The official Rust client library for Databento. The clients support streaming both real-time and historical market data through similar interfaces.
To add the crate to an existing project, run the following command:
sh
cargo add databento
Real-time and intraday replay is provided through the Live clients. Here is a simple program that fetches the next ES mini futures trade:
```rust use std::{collections::HashMap, error::Error};
use databento::{ dbn::{ enums::{SType, Schema}, record::{SymbolMappingMsg, TradeMsg}, }, live::Subscription, LiveClient, };
async fn main() -> Result<(), Box
let mut symbol_mappings = HashMap::new();
// Get the next trade
loop {
let rec = client.next_record().await?.unwrap();
if rec.has::<TradeMsg>() {
let trade = rec.get::<TradeMsg>().unwrap();
let symbol = symbol_mappings.get(&trade.hd.instrument_id).unwrap();
println!("Received trade for {symbol}: {trade:?}",);
break;
} else if rec.has::<SymbolMappingMsg>() {
let sym_map = rec.get::<SymbolMappingMsg>().unwrap();
symbol_mappings.insert(
sym_map.hd.instrument_id,
sym_map.stype_out_symbol()?.to_owned(),
);
}
}
Ok(())
}
``
To run this program, set the
DATABENTOAPIKEY` environment variable with an actual API key.
Here is a simple program that fetches 10 minutes worth of historical trades for the entire CME Globex market: ```rust use std::error::Error;
use databento::{ dbn::{enums::Schema, record::TradeMsg}, historical::timeseries::GetRangeParams, HistoricalClient, Symbols, }; use time::macros::datetime;
async fn main() -> Result<(), Box
To run this program, set the DATABENTO_API_KEY
environment variable with an actual API key.
You can find more detailed examples and the full API documentation on the Databento docs site.
Distributed under the Apache 2.0 License.