How to fetch the complete list of Yahoo Finance Stock symbol using YQL ???
not trying to fetch a single stock quote. I am trying to find the whole complete list of available stock symbol. E.g. all Stock Symbol from NYSE, NASDAQ.
|
How to fetch the complete list of Yahoo Finance Stock symbol using YQL ??? not trying to fetch a single stock quote. I am trying to find the whole complete list of available stock symbol. E.g. all Stock Symbol from NYSE, NASDAQ.
| ||||
|
feedback
|
|
I can't really see any official API online. Your best bet is to use regular expressions on the HTML source. I don't know what language you're using, but most languages (actually, all modern ones do) have both HTTP libraries and RegEx libraries. Get the source, and write a Regular Expression to extract the list. I've never used Yahoo Finance before, but if you direct me to a web-page that lists all the information you want, I'll try and write a RegEx expression for you to extract them. Edit: I've had a look around on Yahoo Finance, and I can't seem to find a single webpage with a list of stock symbols. It would be possible to apply the RegEx logic to any webpage, so if you're able to find any webpage that lists what you want, it should be possible to extract the symbol. | |||
|
feedback
|
|
Yahoo Finance may not help you much in this. You can get all the stock symbol from the exchange and later use the standard stock symbol in Yahoo Finance API or any other finance API to get the required details. You can use the following link to download the list as CSV http://www.nasdaq.com/screening/company-list.aspx. You might have to read the Terms and conditions, before using them. | |||
|
feedback
|