We know that we can use R to download historical data (Daily OHLC), for EACH stock.
In R, the commands to receive MSFT via free and open yahoo source are
install.packages("quantmod")
library(quantmod)
getSymbols("MSFT", src="yahoo",from ="2013-01-01",to="2014-08-28")
The three lines will...