Skip to content
Prev 15244 / 15274 Next

getSymbols() quantmod library doubt

I am not able to reproduce your problem but I may have a solution that
will help.
The result of my
names(tickers)
doesn't have those strange objects.
In any case, try this workaround. Replace

tickers <- mget(ls(pattern = paste(tickers, collapse = "|")))

by

tickers <- mget(ls(pattern = paste(paste(tickers,"$",sep=""), collapse="|")))

HTH,
Eric

On Mon, Dec 29, 2025 at 4:23?PM Andre Luiz Tietbohl Ramos
<andreltramos at gmail.com> wrote: