Questions tagged [sec]

39 questions
0
votes
2 answers

Scraping 13F filings from SEC using R

I'm trying to scrape the data in the SEC FORM 13-F Information Table from the following link: https://sec.report/Document/0001567619-21-010281/ I tried the below script: library(timetk) library(tidyverse) library(rvest) url <-…
0
votes
1 answer

Xpath query trying to pull a value from a website table

I am trying to make a loop to go into a list of company profiles on sec.report and gather their "state of Incorporation" but only getting blank results back. For example, on https://sec.report/Ticker/adbe, I am trying to use the Xpath function to…
noelyh
  • 11
  • 2
0
votes
1 answer

sec.gov scraping with nested for-loops running into Unicode Error

I am trying to scrape the sec to get all 10-K filing-links of a company selected by input. The program loops through each quarter (QTR1-4) in each year from 1993 until now. I got the code from https://codingandfun.com/scraping-sec-edgar-python/ When…
user15440638
0
votes
1 answer

R - checking HTML for formatting tags (bold, italics etc.)

I am using edgarWebR to parse 10K (SEC EDGAR) filings. I am trying to write an algorithm to deduce whether each HTML element is normal text, a subheading or a heading by checking how the document is formatted (e.g. some 10Ks might have all headings…
ks123321
  • 51
  • 8
0
votes
0 answers

Python Edgar package - get CIK number

I am reading S-1 filings from Edgar sec. I get my initial data from Bloomberg. Through the company name I can look for the matching CIK number using the term get_cik_by_company_name(company_name: str). I should be able to get the CIK number which I…
0
votes
2 answers

Find a Pattern across Multiple lines with R

I am trying to identify a pattern across multiple lines, to be exact 2 lines. Since the pattern in either individual line is not unique I am using this approach. So far I have tried to go with the function "grep" but I think I am missing the correct…
Johann
  • 23
  • 4
-1
votes
2 answers

What does the `end` property mean in the XBRL data?

I'm trying to read some programmatic API data from EDGAR, and I'm having trouble understanding the end property. For example, when looking at AssetsCurrent: "end": "2018-03-31", "val": 206935000000, "accn": "0001652044-18-000016", "fy": 2018, "fp":…
jayjyli
  • 771
  • 3
  • 11
  • 23
-1
votes
1 answer

Scraping EDGAR with Python codes (Program 2) not working

I tried the python codes from the article of Rasha Ashraf "Scraping EDGAR with Python". Yesterday I got helped from you great developer(s). Specially Thanks for Jack Fleeting. The links related to this problem are as follows: Text Scraping (from…
-1
votes
1 answer

Can't find a referenced R File on the SEC Website?

I am attempting to understand the 2020q1 data set found here: https://www.sec.gov/dera/data/financial-statement-data-sets.html, and am using the reference documentation inside the 2020q1 folder as a “readme” file. The reference documentation…
1 2
3