I am trying to get data for the Dow Jones index from google. I tried a few things, but they don't seem to work.
require(quantmod)
getSymbols(".DJI",src = "google")
getSymbols("^DJI",src = "google")
getSymbols("INDEXDJX:.DJI",src = "google")
source
share