I'm working through the 'Get Started' tutorials on the R Shiny website, however having problems with Lesson 6: https://shiny.rstudio.com/tutorial/written-tutorial/lesson6/
Packages used here are shiny (version 1.1.0) and quantmod (version 0.4-13)
The server part of the app contains the following code:
server <- function(input, output) {
dataInput <- reactive({
getSymbols(input$symb, src = "google",
from = input$dates[1],
to = input$dates[2],
auto.assign = FALSE)
})
Running this app results in the error:
''getSymbols.google' is defunct. Google Finance stopped providing data in March 2018. You could try setting src = "yahoo" instead'
So I set src="yahoo", saved and re ran.
I then got this error:
Timeout was reached:Connection timed out after 10000 milliseconds.
Please can someone advise?
Many thanks in advance, Liz