Dear-
I was wondering easy download for the 500 equities in SnP500 long time.
Here is best(simplest) way so far, with no login and free.
Use free R to down free data using yahoo.com.
http://www.r-project.org/
install.packages("quantmod")
library(quantmod)
NY <- new.env()
tickerNY <-c("ABT" , "ABBV" , "ACE" , "ZION" , "ZTS") ##SnP 500
getSymbols(tickerNY, src="yahoo" , env=NY , from="2014-01-01")
NY$ABT[,4]
Then in the env (similar to folder), you have 500 data.
I was wondering easy download for the 500 equities in SnP500 long time.
Here is best(simplest) way so far, with no login and free.
Use free R to down free data using yahoo.com.
http://www.r-project.org/
install.packages("quantmod")
library(quantmod)
NY <- new.env()
tickerNY <-c("ABT" , "ABBV" , "ACE" , "ZION" , "ZTS") ##SnP 500
getSymbols(tickerNY, src="yahoo" , env=NY , from="2014-01-01")
NY$ABT[,4]
Then in the env (similar to folder), you have 500 data.