0

I am using quantmod to run analysis on financial data.I am trying to fetch data from google finance, but I am getting an error.

Error in download.file and HTTP status '404 Not Found'

install.packages('quantmod')
setSymbolLookup(QQQ='yahoo',SPY='google')
getSymbols("NSE:JISLJALEQS",src="google") # from google finance
Joshua Ulrich
  • 173,410
  • 32
  • 338
  • 418
1111
  • 93
  • 1
  • 1
  • 11

1 Answers1

1

The error is because Google Finance does not provide a historical data download for that instrument. There's nothing quantmod::getSymbols can do.

If you look on the Google Finance historical prices page, you will see that there is no "Download to spreadsheet" link under the chart on the right.

Joshua Ulrich
  • 173,410
  • 32
  • 338
  • 418