GetFTSE100Stocks {BatchGetSymbols} | R Documentation |
This function scrapes the stocks that constitute the FTSE100 index from the wikipedia page at <https://en.wikipedia.org/wiki/FTSE_100_Index#List_of_FTSE_100_companies>.
GetFTSE100Stocks(
do.cache = TRUE,
cache.folder = file.path(tempdir(), "BGS_Cache")
)
do.cache |
Use cache system? (default = TRUE) |
cache.folder |
Where to save cache files? (default = file.path(tempdir(), 'BGS_Cache') ) |
A dataframe that includes a column with the list of tickers of companies that belong to the FTSE100 index
## Not run:
df.FTSE100 <- GetFTSE100Stocks()
print(df.FTSE100$tickers)
## End(Not run)