I want to display on a wordpress page the total volume of shares traded on the NYSE stock exchange the last 2 weeks that it's been open. What is the best way to go about doing this?

link|improve this question

feedback

3 Answers

up vote 2 down vote accepted

Yahoo Finance lets you export their data. For a ticker, on the left sidebar there is a link to Historical Prices. On the bottom of that page there is a link "Download To Spreadsheet".

You could pass that to fgetcsv to parse it.

link|improve this answer
Yeah that's probably what I'll do. Let me think about this for a minute. – pg. Nov 14 '09 at 0:32
feedback

Scraping websites for data is generally seen as unethical, depending on your intentions and the frequency of the scrape. The bandwidth isn't free, you know. Instead, you should hopefully be able to find a data feed which has been designed to be consumed by other sites, such as yours.

Not knowing very much about your domain, I wouldn't really know what to search for, but here's some guesses:

link|improve this answer
Not to mention that content worth scraping is generally owned by another party and republishing it may well violate another party's rights. Check the legal section of any website you consider scraping or contact the owner. – Eric J. Nov 14 '09 at 0:25
I guess it's analogous to saying the score of a game after the game is over. I hadn't considered the legal/ethical issues too much. Yahoo seems to encourage the use of that kind of thing with their pipes. – pg. Nov 14 '09 at 0:34
feedback

Yahoo would be your best bet as they have an unofficial api documented here:

http://www.gummy-stuff.org/Yahoo-data.htm

Tons of apps/widgets rely on this so I can't see it going away

From first glance, this url would give you what you need: http://finance.yahoo.com/d/quotes.csv?s=^NYA&f=v

link|improve this answer
actually I can't see a format argument for giving you volume so @Alex L's answer is probably better – Ravi Nov 14 '09 at 0:23
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.