Replies: 1 comment 1 reply
-
|
This was fixed in Release 4.0.3 released yesterday. To get more than the default 8 periods use |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Hi! Hope you are having a great day!
I have an issue with retrieving data before 2017.
I'm using the following:
`c = Company("AAPL")
filing = c.latest("10-K")
xb = XBRL.from_filing(filing)
filings = c.latest("10-K", 16)
xbrls = XBRLS.from_filings(filings)
xbrls.statements
cash = xbrls.statements.cashflow_statement()
income = xbrls.statements.income_statement()
balance = xbrls.statements.balance_sheet()`
All I get is data from 2024 to 2017.
Is there a way to retrieve earlier data?
Beta Was this translation helpful? Give feedback.
All reactions