Tell me more ×
Quantitative Finance Stack Exchange is a question and answer site for finance professionals and academics. It's 100% free, no registration required.

Data is normally adjusted for splits/reverse splits, etc. The current shares outstanding is usually available. Is there a data repository that captures the shares outstanding for any point in the past?

share|improve this question
$ or free data? the later I won't think exists – pyCthon Sep 4 '12 at 16:49
I guess either one though this seems obscure enough, for whatever reasons, that it is hard to imagine anyone is collecting it with a big payoff in mind. – Rage With The Machine Sep 4 '12 at 19:34

1 Answer

up vote 3 down vote accepted

That information is available in the SEC's EDGAR database, though there can be many flavors of "shares outstanding". It is reported quarterly in a company's 10-Q/K, sometimes on a weighted-average basis. If you don't want to get it manually, a service like Bloomberg will let you access the historical levels quite easily, or you can parse the EDGAR XML feeds.

You should note that the "current" number you refer to is just the most recent quarterly number -- the data isn't available with finer granularity.

If you need to reconcile splits, one (free) option is to use a service like Yahoo Finance -- their "Adjusted Close" normalizes historical prices for dividends and splits. You could back out the dividend impact and use the ratio of "Close" to your new "dividend-excluding Adjusted Close" to get the necessary scaling factor. Alternatively, you can download a table of just dividend/split information and parse it to get the required factors for splits only. To get that table, choose the misleadingly-named "Dividends Only" option.

share|improve this answer
Thanks, that was helpful. – Rage With The Machine Sep 11 '12 at 23:44

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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