eikonapir
eikonapir copied to clipboard
Hi, I am getting the below error when I try Eikon api using R. No encoding supplied: defaulting to UTF-8. Error in print.default("HTTP Error, code= ", response$status_code, sep = "")...
Hi, Do you have a way to retrieve the field "open interest" of a time series RIC with the fonction "get_timeseries()" ? Thank you. Alban
In json_request.R, is missing a paste function in line 37. Original: `print("HTTP Error, code= ", response$status_code, sep = "")` Must be: `print(paste("HTTP Error, code= ", response$status_code, sep = ""))`
This commit makes the debug output for the request match the JSON actually submitted to the API, which is auto-unboxed by httr (see https://github.com/r-lib/httr/commit/e30854c0077da7bd9cfd25c957595fb2153c7f8d).
Hi, I´m trying to get a list of private companies that are listed on eikon using eikonapir. The command lines are the following: set_app_id("my_app_id") type
I don't know if it's an issue or if I am missing something.. Python API can map error with the code below. How to do it with R? df, err...
Original code used `datetime.now(tzlocal())` which is not a thing in R, AFAIU. Changed it to `Sys.time()` and formatted it.
I get the following message when I try to install the package: ``` > install_github("ahmedmohamedali/eikonapir") Installation failed: Timeout was reached: Connection timed out after 10000 milliseconds ``` Installing devtools worked...
This is an updated version of the package with support for downloading all matches in `get_symbology` and not only the best match. This is accomplished with the help of a...
Thanks for this nice package. The package was installing but not working in a machine with R version 3.4.4 (it was complaining that it could not find function `new`). With...