├── .Rbuildignore ├── .editorconfig ├── .github └── workflows │ └── ci.yaml ├── .gitignore ├── .travis.yml ├── ChangeLog ├── DESCRIPTION ├── LICENSE ├── NAMESPACE ├── R ├── RcppExports.R ├── bdh.R ├── bdp.R ├── bds.R ├── beqs.R ├── blpAuthenticate.R ├── blpConnect.R ├── blpDisconnect.R ├── bsrch.R ├── converters.R ├── defaults.R ├── fieldInfo.R ├── fieldSearch.R ├── getBars.R ├── getTicks.R ├── init.R ├── lookup.R ├── portfolio.R └── subscribe.R ├── README.md ├── cleanup ├── cleanup.win ├── configure ├── deprecated └── scripts │ ├── getBloombergAPI.R │ └── getBloombergAPI.sh ├── inst ├── License.txt ├── NEWS.Rd └── tinytest │ ├── test_bdh.R │ ├── test_bdp.R │ ├── test_bds.R │ ├── test_examples.R │ ├── test_getBars.R │ └── test_getTicks.R ├── man ├── bdh.Rd ├── bdp.Rd ├── bds.Rd ├── beqs.Rd ├── blpAuthenticate.Rd ├── blpConnect.Rd ├── blpDisconnect.Rd ├── bsrch.Rd ├── defaults.Rd ├── fieldInfo.Rd ├── fieldSearch.Rd ├── getBars.Rd ├── getHeaderVersion.Rd ├── getMultipleTicks.Rd ├── getPortfolio.Rd ├── getRuntimeVersion.Rd ├── getTicks.Rd ├── haveBlp.Rd ├── lookupSecurity.Rd └── subscribe.Rd ├── rblpapi.Rproj ├── src ├── Makevars.in ├── Makevars.no_blp ├── Makevars.win ├── Rblpapi_types.h ├── RcppExports.cpp ├── authenticate.cpp ├── bdh.cpp ├── bdp.cpp ├── bds.cpp ├── beqs.cpp ├── blpConnect.cpp ├── blpVersion.cpp ├── blpapi_utils.cpp ├── blpapi_utils.h ├── bsrch.cpp ├── fieldsearch.cpp ├── finalizers.h ├── getBars.cpp ├── getFieldInfo.cpp ├── getTicks.cpp ├── lookup.cpp └── subscribe.cpp ├── tests └── tinytest.R └── vignettes ├── rblpapi-intro.md └── water.css /.Rbuildignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rblp/Rblpapi/HEAD/.Rbuildignore -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rblp/Rblpapi/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/workflows/ci.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rblp/Rblpapi/HEAD/.github/workflows/ci.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rblp/Rblpapi/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rblp/Rblpapi/HEAD/.travis.yml -------------------------------------------------------------------------------- /ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rblp/Rblpapi/HEAD/ChangeLog -------------------------------------------------------------------------------- /DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rblp/Rblpapi/HEAD/DESCRIPTION -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rblp/Rblpapi/HEAD/LICENSE -------------------------------------------------------------------------------- /NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rblp/Rblpapi/HEAD/NAMESPACE -------------------------------------------------------------------------------- /R/RcppExports.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rblp/Rblpapi/HEAD/R/RcppExports.R -------------------------------------------------------------------------------- /R/bdh.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rblp/Rblpapi/HEAD/R/bdh.R -------------------------------------------------------------------------------- /R/bdp.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rblp/Rblpapi/HEAD/R/bdp.R -------------------------------------------------------------------------------- /R/bds.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rblp/Rblpapi/HEAD/R/bds.R -------------------------------------------------------------------------------- /R/beqs.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rblp/Rblpapi/HEAD/R/beqs.R -------------------------------------------------------------------------------- /R/blpAuthenticate.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rblp/Rblpapi/HEAD/R/blpAuthenticate.R -------------------------------------------------------------------------------- /R/blpConnect.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rblp/Rblpapi/HEAD/R/blpConnect.R -------------------------------------------------------------------------------- /R/blpDisconnect.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rblp/Rblpapi/HEAD/R/blpDisconnect.R -------------------------------------------------------------------------------- /R/bsrch.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rblp/Rblpapi/HEAD/R/bsrch.R -------------------------------------------------------------------------------- /R/converters.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rblp/Rblpapi/HEAD/R/converters.R -------------------------------------------------------------------------------- /R/defaults.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rblp/Rblpapi/HEAD/R/defaults.R -------------------------------------------------------------------------------- /R/fieldInfo.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rblp/Rblpapi/HEAD/R/fieldInfo.R -------------------------------------------------------------------------------- /R/fieldSearch.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rblp/Rblpapi/HEAD/R/fieldSearch.R -------------------------------------------------------------------------------- /R/getBars.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rblp/Rblpapi/HEAD/R/getBars.R -------------------------------------------------------------------------------- /R/getTicks.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rblp/Rblpapi/HEAD/R/getTicks.R -------------------------------------------------------------------------------- /R/init.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rblp/Rblpapi/HEAD/R/init.R -------------------------------------------------------------------------------- /R/lookup.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rblp/Rblpapi/HEAD/R/lookup.R -------------------------------------------------------------------------------- /R/portfolio.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rblp/Rblpapi/HEAD/R/portfolio.R -------------------------------------------------------------------------------- /R/subscribe.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rblp/Rblpapi/HEAD/R/subscribe.R -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rblp/Rblpapi/HEAD/README.md -------------------------------------------------------------------------------- /cleanup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rblp/Rblpapi/HEAD/cleanup -------------------------------------------------------------------------------- /cleanup.win: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rblp/Rblpapi/HEAD/cleanup.win -------------------------------------------------------------------------------- /configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rblp/Rblpapi/HEAD/configure -------------------------------------------------------------------------------- /deprecated/scripts/getBloombergAPI.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rblp/Rblpapi/HEAD/deprecated/scripts/getBloombergAPI.R -------------------------------------------------------------------------------- /deprecated/scripts/getBloombergAPI.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rblp/Rblpapi/HEAD/deprecated/scripts/getBloombergAPI.sh -------------------------------------------------------------------------------- /inst/License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rblp/Rblpapi/HEAD/inst/License.txt -------------------------------------------------------------------------------- /inst/NEWS.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rblp/Rblpapi/HEAD/inst/NEWS.Rd -------------------------------------------------------------------------------- /inst/tinytest/test_bdh.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rblp/Rblpapi/HEAD/inst/tinytest/test_bdh.R -------------------------------------------------------------------------------- /inst/tinytest/test_bdp.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rblp/Rblpapi/HEAD/inst/tinytest/test_bdp.R -------------------------------------------------------------------------------- /inst/tinytest/test_bds.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rblp/Rblpapi/HEAD/inst/tinytest/test_bds.R -------------------------------------------------------------------------------- /inst/tinytest/test_examples.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rblp/Rblpapi/HEAD/inst/tinytest/test_examples.R -------------------------------------------------------------------------------- /inst/tinytest/test_getBars.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rblp/Rblpapi/HEAD/inst/tinytest/test_getBars.R -------------------------------------------------------------------------------- /inst/tinytest/test_getTicks.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rblp/Rblpapi/HEAD/inst/tinytest/test_getTicks.R -------------------------------------------------------------------------------- /man/bdh.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rblp/Rblpapi/HEAD/man/bdh.Rd -------------------------------------------------------------------------------- /man/bdp.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rblp/Rblpapi/HEAD/man/bdp.Rd -------------------------------------------------------------------------------- /man/bds.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rblp/Rblpapi/HEAD/man/bds.Rd -------------------------------------------------------------------------------- /man/beqs.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rblp/Rblpapi/HEAD/man/beqs.Rd -------------------------------------------------------------------------------- /man/blpAuthenticate.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rblp/Rblpapi/HEAD/man/blpAuthenticate.Rd -------------------------------------------------------------------------------- /man/blpConnect.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rblp/Rblpapi/HEAD/man/blpConnect.Rd -------------------------------------------------------------------------------- /man/blpDisconnect.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rblp/Rblpapi/HEAD/man/blpDisconnect.Rd -------------------------------------------------------------------------------- /man/bsrch.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rblp/Rblpapi/HEAD/man/bsrch.Rd -------------------------------------------------------------------------------- /man/defaults.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rblp/Rblpapi/HEAD/man/defaults.Rd -------------------------------------------------------------------------------- /man/fieldInfo.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rblp/Rblpapi/HEAD/man/fieldInfo.Rd -------------------------------------------------------------------------------- /man/fieldSearch.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rblp/Rblpapi/HEAD/man/fieldSearch.Rd -------------------------------------------------------------------------------- /man/getBars.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rblp/Rblpapi/HEAD/man/getBars.Rd -------------------------------------------------------------------------------- /man/getHeaderVersion.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rblp/Rblpapi/HEAD/man/getHeaderVersion.Rd -------------------------------------------------------------------------------- /man/getMultipleTicks.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rblp/Rblpapi/HEAD/man/getMultipleTicks.Rd -------------------------------------------------------------------------------- /man/getPortfolio.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rblp/Rblpapi/HEAD/man/getPortfolio.Rd -------------------------------------------------------------------------------- /man/getRuntimeVersion.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rblp/Rblpapi/HEAD/man/getRuntimeVersion.Rd -------------------------------------------------------------------------------- /man/getTicks.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rblp/Rblpapi/HEAD/man/getTicks.Rd -------------------------------------------------------------------------------- /man/haveBlp.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rblp/Rblpapi/HEAD/man/haveBlp.Rd -------------------------------------------------------------------------------- /man/lookupSecurity.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rblp/Rblpapi/HEAD/man/lookupSecurity.Rd -------------------------------------------------------------------------------- /man/subscribe.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rblp/Rblpapi/HEAD/man/subscribe.Rd -------------------------------------------------------------------------------- /rblpapi.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rblp/Rblpapi/HEAD/rblpapi.Rproj -------------------------------------------------------------------------------- /src/Makevars.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rblp/Rblpapi/HEAD/src/Makevars.in -------------------------------------------------------------------------------- /src/Makevars.no_blp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rblp/Rblpapi/HEAD/src/Makevars.no_blp -------------------------------------------------------------------------------- /src/Makevars.win: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rblp/Rblpapi/HEAD/src/Makevars.win -------------------------------------------------------------------------------- /src/Rblpapi_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rblp/Rblpapi/HEAD/src/Rblpapi_types.h -------------------------------------------------------------------------------- /src/RcppExports.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rblp/Rblpapi/HEAD/src/RcppExports.cpp -------------------------------------------------------------------------------- /src/authenticate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rblp/Rblpapi/HEAD/src/authenticate.cpp -------------------------------------------------------------------------------- /src/bdh.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rblp/Rblpapi/HEAD/src/bdh.cpp -------------------------------------------------------------------------------- /src/bdp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rblp/Rblpapi/HEAD/src/bdp.cpp -------------------------------------------------------------------------------- /src/bds.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rblp/Rblpapi/HEAD/src/bds.cpp -------------------------------------------------------------------------------- /src/beqs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rblp/Rblpapi/HEAD/src/beqs.cpp -------------------------------------------------------------------------------- /src/blpConnect.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rblp/Rblpapi/HEAD/src/blpConnect.cpp -------------------------------------------------------------------------------- /src/blpVersion.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rblp/Rblpapi/HEAD/src/blpVersion.cpp -------------------------------------------------------------------------------- /src/blpapi_utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rblp/Rblpapi/HEAD/src/blpapi_utils.cpp -------------------------------------------------------------------------------- /src/blpapi_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rblp/Rblpapi/HEAD/src/blpapi_utils.h -------------------------------------------------------------------------------- /src/bsrch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rblp/Rblpapi/HEAD/src/bsrch.cpp -------------------------------------------------------------------------------- /src/fieldsearch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rblp/Rblpapi/HEAD/src/fieldsearch.cpp -------------------------------------------------------------------------------- /src/finalizers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rblp/Rblpapi/HEAD/src/finalizers.h -------------------------------------------------------------------------------- /src/getBars.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rblp/Rblpapi/HEAD/src/getBars.cpp -------------------------------------------------------------------------------- /src/getFieldInfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rblp/Rblpapi/HEAD/src/getFieldInfo.cpp -------------------------------------------------------------------------------- /src/getTicks.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rblp/Rblpapi/HEAD/src/getTicks.cpp -------------------------------------------------------------------------------- /src/lookup.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rblp/Rblpapi/HEAD/src/lookup.cpp -------------------------------------------------------------------------------- /src/subscribe.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rblp/Rblpapi/HEAD/src/subscribe.cpp -------------------------------------------------------------------------------- /tests/tinytest.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rblp/Rblpapi/HEAD/tests/tinytest.R -------------------------------------------------------------------------------- /vignettes/rblpapi-intro.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rblp/Rblpapi/HEAD/vignettes/rblpapi-intro.md -------------------------------------------------------------------------------- /vignettes/water.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rblp/Rblpapi/HEAD/vignettes/water.css --------------------------------------------------------------------------------