You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is is possible to obtain financial information by CIK number? The following code is able to download the company information and annual reports but neither contrain the ticker symbol to download the financial reports
x <- "66740" # a single CIK number
library(finreportr)
library(dplyr)
AnnReps <- AnnualReports(x, foreign = FALSE)
CompInf <- CompanyInfo(x)
I've been browsing finreportr source code. It is actually possible to use these functions with the CIK.
Try, for instance, AnnualReports("0001652044").
The reason you were unable to successfully query is because you need to pass in the CIK as a 10 character string. If you pass in the numeric CIK it will fail.
Is is possible to obtain financial information by CIK number? The following code is able to download the company information and annual reports but neither contrain the ticker symbol to download the financial reports
The following returns an error:
I see in the functions that you deal a lot with the CIK numbers, how do you link the CIK with the ticker symbol?
The text was updated successfully, but these errors were encountered: