數據

原始基本會計數據(非比率)

  • September 2, 2016

我在哪裡可以從損益表、資產負債表和現金流量表中獲得原始的基本會計數據,例如銷售/收入、總收入、息稅前利潤、營業收入、現金和短期投資、應收賬款總額、庫存、運營現金流量、現金來自投資的流量、來自融資的現金流等。

理想情況下可通過 R 介面下載。

$$ edit $$ 一件很重要的事,我忘記了。我還需要會計數據的發布日期(與截至日期的報告不同!),因為我想對其執行預測統計模型(否則會產生未來輸入數據的錯誤)。也許我必須從另一個網站獲取發布日期,以防我無法一手掌握所有內容,也許也可以通過 HTML 網頁抓取。 $$ /edit $$ 在此先感謝領事

您可以使用R 包getFinancials中的函式從 Google Finance 中提取財務報表(損益表、資產負債表和現金流量表)數據。quantmod

> library(quantmod) 
> getFinancials('IBM')
> head(viewFin(IBM.f, type = 'IS'))
Annual Income Statement for IBM
                                      2014-12-31 2013-12-31 2012-12-31
Revenue                                     92793      98367     102874
Other Revenue, Total                           NA         NA         NA
Total Revenue                               92793      98367     102874
Cost of Revenue, Total                      46386      49683      52513
Gross Profit                                46407      48684      50361
Selling/General/Admin. Expenses, Total      21385      22214      23463
                                      2011-12-31
Revenue                                    106916
Other Revenue, Total                           NA
Total Revenue                              106916
Cost of Revenue, Total                      56778
Gross Profit                                50138
Selling/General/Admin. Expenses, Total      22865

從 quantmod 文件:

“viewFinancials(x, type=c(‘BS’,‘IS’,‘CF’), period=c(‘A’,‘Q’), 子集 = NULL)”

類型為資產負債表、損益表和現金流量表,期間為年度或季度。

剛發現這個:

https://www.quandl.com/data/SF0/documentation/about

轟沙卡拉!包括 R(以及許多其他)和完整的 db csv 下載選項。

https://www.quandl.com/tools/full-list

引用自:https://quant.stackexchange.com/questions/20642