6

我想将通过 Yahoo Finance 可用的所有共同基金的列表获取到 R 中。TTR 包中有一个 stockSymbols 函数,但它似乎没有获取共同基金。

谢谢,

4

1 回答 1

3

我认为雅虎没有提供他们拥有数据的所有共同基金的列表(同样,他们没有提供他们所涵盖的股票的列表)。您可以从您在评论中提到的网站下载列表,遍历所有资金,从雅虎检索相应的“个人资料”页面,然后提取您需要的信息——“类别”字段似乎是最接近的您想要的“部门和行业”。

# Read the list of funds
# I assume the file was downloaded manually from 
#   http://www.eoddata.com/Data/symbollist.aspx?e=USMF
# This requires registration (free).
d <- read.delim( "USMF.txt", stringsAsFactors = FALSE )

# Retrieve the profile page, for each of the funds.
# It takes 1 second for each, and there are 24,000 of them:
# this may take more than 6 hours.
library(RCurl)
library(stringr)
d$Category <- ""
for( i in seq_len(nrow(d)) ) {
  try({
    url <- paste0("http://uk.finance.yahoo.com/q/pr?s=", d$Symbol[i])
    cat( url, " " )
    profile <- getURL(url)
    row  <- str_extract(profile, "Category.*?</tr>")
    cell <- str_extract(row,     "<td.*</td>"      )
    d$Category[i] <- str_replace_all( cell, "<.*?>", "" )
    cat( d$Category[i], "\n" )
  })
}
head(d)
于 2013-07-21T09:58:23.447 回答