Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

getQuote does not work when some metrics are not requested #255

Closed
mehdiMBH opened this issue Nov 10, 2018 · 2 comments
Closed

getQuote does not work when some metrics are not requested #255

mehdiMBH opened this issue Nov 10, 2018 · 2 comments
Labels

Comments

@mehdiMBH
Copy link

Description

The function getQuote does not work when I don't request some specific metrics in the what argument. After taking a deeper look at the code and the JSON, it turns out that Yahoo does not return (anymore?) the regularMarketTime when metrics - such as the price, bid, ask and I don't know what else - are not requested.

For example, if you request only the shares outstanding and earnings per share, then you get an error.

what_metrics <- yahooQF(c("Shares Outstanding",
                          "Earnings/Share"))

getQuote("AAPL", what=what_metrics)

Error returned:

Error in [.data.frame(sq, , "regularMarketTime") :
undefined columns selected

That's normal because if you look at the JSON, there is not regularMarketTime variable: https://query1.finance.yahoo.com/v7/finance/quote?symbols=AAPL&fields=sharesOutstanding,epsTrailingTwelveMonths

However, if you request also, say, the bid price, then all works well:

what_metrics <- yahooQF(c("Shares Outstanding",
                          "Earnings/Share",
                           "Bid"))

getQuote("AAPL", what=what_metrics)

That's because the JSON returned by Yahoo actually provides regularMarketTime: https://query1.finance.yahoo.com/v7/finance/quote?symbols=AAPL&fields=sharesOutstanding,epsTrailingTwelveMonths,bid

I guess this should not be too difficult to fix in getQuote's code. A possible solution would be tto automatically query the regularMarketTime from Yahoo when the user asks for a customized list of metrics. So if I ask for shares outstanding only, we would append ",regularMarketTime" to the URL, which would then look like: https://query1.finance.yahoo.com/v7/finance/quote?symbols=AAPL&fields=sharesOutstanding,epsTrailingTwelveMonths,regularMarketTime
This could be done in the getQuote function or the YahooQF function I guess.

FYI, here is my R session info:

R version 3.3.2 (2016-10-31)
Platform: x86_64-apple-darwin13.4.0 (64-bit)
Running under: macOS  10.13.3

locale:
[1] C

attached base packages:
[1] parallel  stats     graphics  grDevices utils     datasets  methods   base     

other attached packages:
[1] rvest_0.3.2      xml2_1.1.1       lubridate_1.7.1  testit_0.8       finreportr_1.0.1 quantmod_0.4-13  TTR_0.23-2      
[8] xts_0.11-0       zoo_1.7-14      

loaded via a namespace (and not attached):
 [1] Rcpp_0.12.16     bindr_0.1.1      magrittr_1.5     tidyselect_0.2.4 lattice_0.20-34  R6_2.2.2         rlang_0.2.0     
 [8] httr_1.3.1       stringr_1.3.1    dplyr_0.7.6      tools_3.3.2      grid_3.3.2       selectr_0.3-1    assertthat_0.2.0
[15] tibble_1.3.4     Matrix_1.2-12    bindrcpp_0.2.2   purrr_0.2.5      curl_2.3         glue_1.3.0       stringi_1.2.4   
[22] compiler_3.3.2   jsonlite_1.5     pkgconfig_2.0.2 

Cheers,

Mehdi

@joshuaulrich
Copy link
Owner

Thanks for the report and suggestion! I'm working on getQuote.tiingo() (#247, #250), and I also see the need for some validation of the results returned from the various providers.

@joshuaulrich
Copy link
Owner

...better late than never...

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

No branches or pull requests

2 participants