I'm trying to use getSymbols with my own set of tickers.
I have the tickers imported from a csv file with 55 tickers. But, how can I read the Tickers dataframe correctly when running the getSymbols?
Currently I'm having a NULL error when I run the code below.
library(quantmod)
Tickers <- read.csv("nasdaq_tickers_list.csv", stringsAsFactors = FALSE)
getSymbols(Tickers,from="2018-01-01", src="yahoo" )
If I run class(Tickers) it is a data.frame.
What I'm doing wrong? Thank you very much.