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
Happy Holidays Dwight, I hope you are doing well. I am trying to use the Multi Financial feature; pulling the last 5 years for AVGO (I also tried APPLE) just to see if there was something else wrong. I continue to get the same error which is below. Is there a bug or issue? Below is the code I am using. Please let me know your thoughts thank you.
Required imports
from edgar import MultiFinancials, Company
from IPython.display import display, HTML
import pandas as pd
import matplotlib.pyplot as plt
Initialize the company object using the stock symbol AAPL
company = Company("AVGO")
Retrieve the latest 5 filings of type "10-K" for AVGO
filings = company.latest("10-K", 5)
Create a MultiFinancials object from the retrieved filings
I want to follow-up on my issue regarding the cash flow statement error I am getting. Is this an issue with edgartools or is it the code I using? Please let me know.
Happy Holidays Dwight, I hope you are doing well. I am trying to use the Multi Financial feature; pulling the last 5 years for AVGO (I also tried APPLE) just to see if there was something else wrong. I continue to get the same error which is below. Is there a bug or issue? Below is the code I am using. Please let me know your thoughts thank you.
Required imports
from edgar import MultiFinancials, Company
from IPython.display import display, HTML
import pandas as pd
import matplotlib.pyplot as plt
Initialize the company object using the stock symbol AAPL
company = Company("AVGO")
Retrieve the latest 5 filings of type "10-K" for AVGO
filings = company.latest("10-K", 5)
Create a MultiFinancials object from the retrieved filings
financials = MultiFinancials(filings)
Retrieve financial statements
balance_sheet = financials.balance_sheet
income_statement = financials.income
cash_flow_statement = financials.cash_flow
ERROR:
File ~/Documents/untitled31.py:27
cash_flow_statement = financials.cash_flow
AttributeError: 'MultiFinancials' object has no attribute 'cash_flow'
@dgunning
The text was updated successfully, but these errors were encountered: