I have a python script that downloads stock prices via Yahoo's APIs. I'm trying to add the NASDAQ index, but I can not find a working symbol.
From Yahoo finance webpage NASDAQ is '^IXIC', however the following fail
url = "http://download.finance.yahoo.com/d/quotes.csv?s=^IXIC&f=ac"
url = "http://download.finance.yahoo.com/d/quotes.csv?s=%5EIXIC&f=ac"
For the DOW I needed to use an ETF symbol 'DIA' (then multiple the result by 100)
url = "http://download.finance.yahoo.com/d/quotes.csv?s=DIA&f=ac"
Anyone know of a symbol for NASDAQ that works with Yahoo's APIs?