vote up 5 vote down star
7

I'm trying to make a stock market simulator (perhaps eventually growing into a predicting AI), but I'm having trouble finding data to use. I'm looking for a (hopefully free) source of historical stock market data.

Ideally, it would be a very fine-grained (second or minute interval) data set with price and volume of every symbol on NASDAQ and NYSE (and perhaps others if I get adventurous). Does anyone know of a source for such info?

I found this question which indicates Yahoo offers historical data in CSV format, but I've been unable to find out how to get it in a cursory examination of the site linked.

I also don't like the idea of downloading the data piecemeal in CSV files... I imagine Yahoo would get upset and shut me off after the first few thousand requests.

I also discovered another question that made me think I'd hit the jackpot, but unfortunately that OpenTick site seems to have closed its doors... too bad, since I think they were exactly what I wanted.

I'd also be able to use data that's just open/close price and volume of every symbol every day, but I'd prefer all the data if I can get it. Any other suggestions?

flag

79% accept rate

8 Answers

vote up 6 vote down

A data set of every symbol on the NASDAQ and NYSE on a second or minute interval is going to be massive.

Let's say there are a total of 4000 companies listed on both exchanges (this is probably on the very low side since there are over 3200 companies listed on the NASDAQ). For data at a second interval, assuming there are 6.5 trading hours in a day, that would give you 23400 data points per day per company, or about 93,600,000 data points in total for that one day. Assuming 200 trading days in a year, thats about 18,720,000,000 data points for just one year.

Maybe you want to start with a smaller set first?

link|flag
I was operating under the assumption that most of the companies would not be traded every second, so the number of data points would be significantly less. perhaps that's a bad assumption. still, I was predicting on the order of 10s of GB per year... – rmeador Apr 16 at 3:16
One a couple months of stock data for like 10 symbols came on 3 DVDs. The data was compressed text as well. – Alan Apr 16 at 3:47
1  
@rmeador thats true, but also some stocks have way more daily volume than there are seconds in a day, meaning they trade more than once a second - and not all trades are guaranteed to be at the same price. So you'd have to decide if you're interested in the price at an interval, or at trade – matt b Apr 16 at 3:49
vote up 3 vote down

I know you wanted "free", but I'd seriously consider getting the data from csidata.com for about $300/year, if I were you.

It's what yahoo uses to supply their data.

It comes with a decent API, and the data is (as far as I can tell) very clean.

You get 10 years of history when you subscribe, and then nightly updates afterward.

They also take care of all sorts of nasty things like splits and dividends for you. If you haven't yet discovered the joy that is data-cleaning, you won't realize how much you need this, until the first time your ATS (Automated Trading System) thinks some stock is really really cheap, only because it split 2:1 and you didn't notice.

link|flag
vote up 2 vote down

I'd crawl finance.google.com (for the quotes) - or finance.yahoo.com.

Both these will return html pages for most exchanges around the world, including historical. Then, it's just a matter of parsing the HTML to extract what you need.

I've done this in the past, with great success. Alternatively, if you don't mind using Perl - there are several modules on CPAN that have done this work for you - i.e. extracting quotes from Google/Yahoo.

For more, see Quote History

link|flag
vote up 2 vote down

There shouldn't be a big problem downloading it from Yahoo. Here's a good site:

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

link|flag
vote up 1 vote down

Unfortunately historical ticker data that is free is hard to come by. Now that opentick is dead, I dont know of any other provider.

In a previous lifetime I worked for a hedgefund that had an automated trading system, and we used historical data profusely.

We used TickData for our source. Their prices were reasonable, and the data had sub second resolution.

link|flag
vote up 1 vote down

You can use yahoo to get daily data (a much more managable dataset) but you have to structure the urls. See this link. You are not making lots of little requests you are making a fewer large requests. Lot of free software uses this so they shouldn't shut you down.

EDIT: This guy does it, maybe you can have a look at the calls his software makes.

link|flag
at first I thought that link looked promising, but I can't seem to find how to specify historical data... it looks like it's all real-time. Am I missing something? – rmeador Apr 16 at 3:35
you are right. I have added another link of someone with software that does the historical stuff so I know it is possible. Maybe have a look at the calls his software makes. – jimconstable May 27 at 4:09
vote up 1 vote down

A former project of mine was going to use freely downloadable data from EODData.

link|flag
vote up -1 vote down

Warning: if you are looking to do stock speculation, you can expect that your AI's actions will effect the stock prices so the only way to test the system is to put real cash on the line.

link|flag
2  
I really don't think that trading in 10s of shares (all I can afford) will make more than a few-cent difference on any reasonably large-volume stocks. anyways, AI trading is a far off second-stage to what I'm trying to accomplish presently, though I would like to get there eventually... – rmeador Apr 16 at 15:45
1  
AI trading bets on your AI being able to squeeze a few more cents out of the transaction than the next guy can so even a few pennies of effect could kill it. Personally I have never liked the idea of people trying to make money by just shuffling money around as it doesn't help society at large. – BCS Apr 16 at 21:11
1  
"shuffling money around" is a common misconception of the stock market. You're actually shuffling ownership of companies around, which gives investment capital to those companies (helping society). If the companies do well, that's how the owners (shareholders) make money (helping themselves). – rmeador Apr 17 at 1:03
2  
Person A has mony to invest, Good. Person B needs money invested, Good. Person C gets money for helping A invest in B, All good. But the kind of decisions needed to make money by doing any of those are well beyond any known AI and require things like talking to people. Using an AI to predict value fluctuations is pure speculation and is something totally different. – BCS Apr 17 at 19:05

Your Answer

Get an OpenID
or

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