Hello there! I am trying to use BatchGetSymbols to download financial data for a particular list of tickers, unfortunately, I get the message " Error in download.." for the vast majority of tickers. I've found an old post with a similar issue but the solution there was just to wait and this doesn't seem to work in this case.
This is the code I am using. I have included just the first 4 tickers as the problem persists regardless of the number of tickers I include. With these four I get the error for the first three while I am able to download the last one
..
#R
library(BatchGetSymbols)
tick<-c("AAP","ABT","AFL","AIG")
b.out<-BatchGetSymbols(tickers = tick,
first.date =as.Date(2015-30-09),
last.date = as.Date(2020-30-09))
...
I am quite new to R and any kind of help would be greatly appreciated.
Thanks
Giacomo