Dear-
We know that a simplest way to download daily OHLC of MSFT, using R
install.packages("quantmod")
library(quantmod)
NY <- new.env()
tickerNY <-c("ABT" , "ABBV" , "MSFT" , "ZION" , "ZTS")
getSymbols(tickerNY, src="yahoo" , env=NY , from="2015-01-01")
NY$MSFT[,4]
will show close of MSFT.
1) Is there any other alternative way to download as above, other than R?
2) To download DowJones, SnP500, GermanDAX, FrenchCAC, what symbol is used instead of MSFT?
We know that a simplest way to download daily OHLC of MSFT, using R
install.packages("quantmod")
library(quantmod)
NY <- new.env()
tickerNY <-c("ABT" , "ABBV" , "MSFT" , "ZION" , "ZTS")
getSymbols(tickerNY, src="yahoo" , env=NY , from="2015-01-01")
NY$MSFT[,4]
will show close of MSFT.
1) Is there any other alternative way to download as above, other than R?
2) To download DowJones, SnP500, GermanDAX, FrenchCAC, what symbol is used instead of MSFT?