R下载谷歌财务数据

时间:2017-10-21 06:46:33

标签: r datatable google-finance

我下载了一个脚本来从谷歌下载历史数据,但是,它只下载了一年的数据,但我想下载所有数据,但脚本有数据的开始日期

# Make sure data.table is installed
if(!'data.table' %in% installed.packages()[,1]) 
install.packages('data.table')

# Function to fetch google stock data
google <- function(sym, current = TRUE, sy = 2005, sm = 1, sd = 1, ey, 
em, ed)
{
 if(current){
system_time <- as.character(Sys.time())
ey <- as.numeric(substr(system_time, start = 1, stop = 4))
em <- as.numeric(substr(system_time, start = 6, stop = 7))
ed <- as.numeric(substr(system_time, start = 9, stop = 10))
  }

require(data.table)

google_out = tryCatch(
 suppressWarnings(
   fread(paste0("http://www.google.com/finance/historical",
               "?q=", sym,
               "&startdate=", paste(sm, sd, sy, sep = "+"),
               "&enddate=", paste(em, ed, ey, sep = "+"),
               "&output=csv"), sep = ",")),
 error = function(e) NULL)

if(!is.null(google_out)){
  names(google_out)[1] = "Date"
 }

 return(google_out)}

它只下载了2016年至2017年的数据,但是有人可以告诉我为什么? 谢谢。

1 个答案:

答案 0 :(得分:2)

我认为你的答案就在这里:https://chrisconlan.com/download-historical-stock-data-google-r-python/

  

&#34; Google财经API停止接收此网址的请求。截至撰写本文时,它仅返回一年的每日数据,并且#34。。