Dear-
Here is easiest data feed method, with no login and free of charge, that I found so far.
My R screen shows as below (Monday roughly 10 AM).
However, it is 15-min delayed data for each minutes ( I assume data is free after 15-min).
Please tell me if there is/are other easy alternatives.
PS) I will pay every month, if someone or some company provide (simple) R code for 1-min delayed data feed, instead of the 15-min delayed data.
PS) Of course, for the daily OHLC for the last 1000 day,
NY <- new.env()
tickerNY <-c("ABT" , "ABBV" , "ACE" , "ZION" , "ZTS")
getSymbols(tickerNY, src="yahoo" , env=NY , from="2014-01-01")
*****************************************************
install.packages("quantmod")
library(quantmod)
> print(getQuote('MSFT'))
Trade Time Last Change % Change Open High Low Volume
MSFT 2016-01-25 09:56:00 52.08 -0.21 -0.40% 51.55 52.1 51.79 3810489
> print(getQuote('MSFT'))
Trade Time Last Change % Change Open High Low Volume
MSFT 2016-01-25 09:57:00 52.05 -0.24 -0.46% 51.55 52.1 51.79 3991561
> print(getQuote('MSFT'))
Trade Time Last Change % Change Open High Low Volume
MSFT 2016-01-25 09:58:00 52.08 -0.21 -0.40% 51.55 52.1 51.79 4031183
Here is easiest data feed method, with no login and free of charge, that I found so far.
My R screen shows as below (Monday roughly 10 AM).
However, it is 15-min delayed data for each minutes ( I assume data is free after 15-min).
Please tell me if there is/are other easy alternatives.
PS) I will pay every month, if someone or some company provide (simple) R code for 1-min delayed data feed, instead of the 15-min delayed data.
PS) Of course, for the daily OHLC for the last 1000 day,
NY <- new.env()
tickerNY <-c("ABT" , "ABBV" , "ACE" , "ZION" , "ZTS")
getSymbols(tickerNY, src="yahoo" , env=NY , from="2014-01-01")
*****************************************************
install.packages("quantmod")
library(quantmod)
> print(getQuote('MSFT'))
Trade Time Last Change % Change Open High Low Volume
MSFT 2016-01-25 09:56:00 52.08 -0.21 -0.40% 51.55 52.1 51.79 3810489
> print(getQuote('MSFT'))
Trade Time Last Change % Change Open High Low Volume
MSFT 2016-01-25 09:57:00 52.05 -0.24 -0.46% 51.55 52.1 51.79 3991561
> print(getQuote('MSFT'))
Trade Time Last Change % Change Open High Low Volume
MSFT 2016-01-25 09:58:00 52.08 -0.21 -0.40% 51.55 52.1 51.79 4031183
Last edited: