ESPO.L = VANECK VECTORS UCITS ETFS PLC V (ESPO.L) Stock Historical Prices & Data - Yahoo Finance
Code used:
'''
tickers = c("DIS", "GILD", "FB", "PCG", "ESPO.L")
getSymbols(tickers,
from = "2017-01-01",
to = "2018-01-15",
periodicity = "daily",
src = "yahoo")
prices <- map(tickers,function(x) Ad(get(x)))
prices <- reduce(prices,merge)
colnames(prices) <- tickers
head(prices)
'''
Error:
Warning: ESPO.L download failed; trying again.
Warning: Unable to import “ESPO.L”.
argument "conn" is missing, with no default
I'm trying to retrieve ESPO.L data from Yahoo Finance in a quick way, but I am not able to do so. Not a R wiz, so bare in mind that. Thank you for the help!