Reputation: 93
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
Upvotes: 0
Views: 1189
Reputation: 176638
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.
Upvotes: 1