All Projects → Rblp → Rblpapi

Rblp / Rblpapi

Licence: other
R package interfacing the Bloomberg API from https://www.bloomberglabs.com/api/

Programming Languages

r
7636 projects

Projects that are alternatives of or similar to Rblpapi

digest
R package to create compact hash digests of R objects
Stars: ✭ 94 (-29.32%)
Mutual labels:  cran, r-package
Nanotime
Nanosecond Resolution Time Functionality for R
Stars: ✭ 39 (-70.68%)
Mutual labels:  r-package, cran
Dataexplorer
Automate Data Exploration and Treatment
Stars: ✭ 362 (+172.18%)
Mutual labels:  r-package, cran
UCSCXenaShiny
📊 An R package for interactively exploring UCSC Xena https://xenabrowser.net/datapages/
Stars: ✭ 52 (-60.9%)
Mutual labels:  cran, r-package
Drat
Drat R Archive Template
Stars: ✭ 127 (-4.51%)
Mutual labels:  r-package, cran
xfun
Miscellaneous R functions
Stars: ✭ 102 (-23.31%)
Mutual labels:  cran, r-package
Configr
Implements the JSON, INI, YAML and TOML parser, for R setting and writing of configuration file.
Stars: ✭ 38 (-71.43%)
Mutual labels:  r-package, cran
jpndistrict
🗾 Create Japansese Administration Area Maps
Stars: ✭ 18 (-86.47%)
Mutual labels:  cran, r-package
Wooldridge
The official R data package for "Introductory Econometrics: A Modern Approach". A vignette contains example models from each chapter.
Stars: ✭ 90 (-32.33%)
Mutual labels:  r-package, cran
Markovchain
Easy Handling Discrete Time Markov Chains
Stars: ✭ 80 (-39.85%)
Mutual labels:  r-package, cran
PackageDevelopment
Task View: PackageDevelopment
Stars: ✭ 38 (-71.43%)
Mutual labels:  cran, r-package
Mlr
Machine Learning in R
Stars: ✭ 1,542 (+1059.4%)
Mutual labels:  r-package, cran
pbapply
Adding progress bar to '*apply' functions in R
Stars: ✭ 115 (-13.53%)
Mutual labels:  cran, r-package
rcppgsl
Rcpp integration for GNU GSL vectors and matrices
Stars: ✭ 28 (-78.95%)
Mutual labels:  cran, r-package
FLightR
R package to position animals with solar geolocation archival tags
Stars: ✭ 16 (-87.97%)
Mutual labels:  cran, r-package
Rcpp
Seamless R and C++ Integration
Stars: ✭ 572 (+330.08%)
Mutual labels:  r-package, cran
rprotobuf
R Interface to Protocol Buffers
Stars: ✭ 62 (-53.38%)
Mutual labels:  cran, r-package
heddlr
Bring a functional programming mindset to R Markdown document generation
Stars: ✭ 14 (-89.47%)
Mutual labels:  cran, r-package
Pkgsearch
Search R packages on CRAN
Stars: ✭ 73 (-45.11%)
Mutual labels:  r-package, cran
Rinside
Seamless embedding of R in C++ programs
Stars: ✭ 112 (-15.79%)
Mutual labels:  r-package, cran

Rblpapi: R Access to Bloomberg API

Build Status Package-License LibraryLicense CRAN Dependencies Downloads Last Commit

Background

Rblpapi provides R with access to data and calculations from Bloomberg Finance L.P. via the API libraries provided by Bloomberg.

Requirements

A valid and working Bloomberg installation.

Examples

Here are a few simple examples.

library(Rblpapi)
con <- blpConnect() 	# automatic if option("blpAutoConnect") is TRUE

spx <- bdh(securities = "SPX Index", 
           fields = "PX_LAST", 
           start.date = as.Date("2013-03-01"))

spx_ndx <- bdh(securities = c("SPX Index","NDX Index"), 
               fields = "PX_LAST",
               start.date = as.Date("2013-03-01"), 
               include.non.trading.days = TRUE)

monthly.options <- structure(c("ACTUAL", "MONTHLY"),
                            names = c("periodicityAdjustment",
                                      "periodicitySelection"))
spx_ndx_monthly <- bdh(securities = c("SPX Index","NDX Index"), 
                       fields = "PX_LAST",
                       start.date = as.Date("2012-01-01"), 
                       options = monthly.options)

goog_ge_div <- bdh(securities = c("GOOG Equity","GE Equity"),
                   fields = c("PX_LAST","CF_DVD_PAID"), 
                   start.date = as.Date("2012-11-01"))

goog_ge_px <- bdp(securities = c("GOOG Equity","GE Equity"),
                  fields = c("PX_LAST","DS002"))

Status

Fully functional on Linux, OS X and Windows.

Installation

The package is on CRAN and can be installed as usual via

install.packages("Rblpapi")

Interim (source or binary) releases may be also be made available through the ghrr drat repository as well and can be accessed via

install.packages("drat")       # easier repo access + creation
drat:::add("ghrr")             # make it known
install.packages("Rblpapi")    # install it

Authors

Whit Armstrong, Dirk Eddelbuettel and John Laing

License

GPL-3 for our code

License.txt for the Bloomberg libraries and headers it relies upon

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].