无法从 EDGAR 平台检索公司记录

Cant retrieve company record from EDGAR platform

我正在尝试使用以下代码从 EDGAR 平台检索公司信息:

library(edgar)
library(tidyverse)
library(kableExtra)


tesla <- getFilingsHTML(
  cik.no = 0001318605,
  form.type = '10-K',
  filing.year = 2017,
  quarter = c(1,2,3,4)
 )

但是,我收到以下错误:

No filing information found for given CIK(s) and Form Type in the mentioned year(s)/quarter(s).

我检查了 CIK 代码和网站 www.sec.gov,一切看起来都正常。

如有任何帮助,我们将不胜感激。

如果您阅读help(getFillingsHTML)

getFilingsHTML {edgar}
Get HTML view of EDGAR filings
Description
getFilingsHTML retrieves complete EDGAR filings and store them in HTML format for view.

Usage
getFilingsHTML(cik.no, form.type, filing.year, quarter)
Arguments
cik.no  vector of CIK number of firms in integer format. Suppress leading zeroes from CIKs. Keep cik.no = 'ALL' if needs to download for all CIKs.

form.type   character vector containing form type to be downloaded. form.type = 'ALL' if need to download all forms.

filing.year vector of four digit numeric year

quarter vector of one digit quarter integer number. By deault, it is kept as c(1 ,2, 3, 4).

对于 cik.no,它声明要取消前导零。

因此:

getFilingsHTML(cik.no = "1318605",
   form.type = '10-K',
   filing.year = 2017)
#Downloading fillings. Please wait... 
#  #|========================================================================================================================| 100%
#Scrapping full EDGAR and converting to HTML...
#  #|========================================================================================================================| 100%
#HTML filings are stored in 'Edgar filings_HTML view' directory.      cik company.name form.type date.filed     accession.number
#1 1318605  Tesla  Inc       10-K 2017-03-01 0001564590-17-003118

kaspersky 在启用时会干扰 edgar 和 getFilingsHTML 函数

Downloading Master Indexes from SEC server for 2017 ... curl: (35) schannel: next InitializeSecurityContext failed: Unknown error (0x80092012) - The revocation function was unable to check revocation for the certificate. curl: (35) schannel: next InitializeSecurityContext failed: Unknown error (0x80092012) - The revocation function was unable to check revocation for the certificate. curl: (35) schannel: next InitializeSecurityContext failed: Unknown error (0x80092012) - The revocation function was unable to check revocation for the certificate. curl: (35) schannel: next InitializeSecurityContext failed: Unknown error (0x80092012) - The revocation function was unable to check revocation for the certificate. No filing information found for given CIK(s) and Form Type in the mentioned year(s)/quarter(s).