Im trying to retrieve company information from EDGAR platform with following code:
library(edgar)
library(tidyverse)
library(kableExtra)
tesla <- getFilingsHTML(
cik.no = 0001318605,
form.type = '10-K',
filing.year = 2017,
quarter = c(1,2,3,4)
)
However, I get the following error:
No filing information found for given CIK(s) and Form Type in the mentioned year(s)/quarter(s).
I have checked the CIK code as well as the website www.sec.gov and everything looks to be OK.
Any help would be appreciated.