Provided with a set of fund Bloomberg tickers pulls qualitative information on the corresponding fund(s) or retrieves it from an existing storethat SQLite database.
pull_fund_info(source = "Bloomberg", tickers, file = NULL, ...)
| source | a scalar character vector. Specifies the data source for the query: "Bloomberg" or "storethat". Defaults to "Bloomberg". | 
|---|---|
| tickers | a chatacter vector. Specifies the futures active contract Bloomberg tickers to query data for. | 
| file | a scalar chatacter vector. Optional parameter that specifies the target storethat SQLite database file to retrieve data from. | 
| ... | optional parameters to pass to the bdp function from the
Rblpapi package used
  for the query ( | 
An S4 object of class FundInfo.
if (FALSE) { BBG_info <- pull_fund_info(source = "Bloomberg", tickers = c("SPY US Equity", "IVV US Equity")) storethat_info <- pull_fund_info(source = "storethat", file = "~/storethat.sqlite", tickers = c("SPY US Equity", "IVV US Equity")) storethat_info <- pull_fund_info(source = "storethat", tickers = c("SPY US Equity", "IVV US Equity")) }