Skip to content

alexandrebrilhante/bloomberg

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

bloomberg

A Rust wrapper for Bloomberg's blpapi.

This is a work in progress and not intended to be used in production in its current version.

Installation

Download and install the Install C/C++ BLPAPI and set the BLPAPI_LIB environment variable to the extract path.

Add the following the following to your Cargo.toml:

[dependencies]
bloomberg = { version = "0.2.0" }

Example

Historical Data

use blpapi::{RefData, session::{SessionSync, HistOptions}};

#[derive(Default, RefData)]
struct Price {
    px_last: f64,
}

fn main() {
    let mut session = SessionSync::new().unwrap();

    let securities: &[&str] = &[ "IBM US Equity" ];

    let options = HistOptions::new("20240401", "20240430");

    let prices = session.hist_data::<_, Price>(securities, options);

    println!(prices);
}

About

Rust API for Bloomberg.

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published