Skip to main content

management_discussion_analysis

Get the Management Discussion & Analysis section from the financial statements for a given company.

Examples

from openbb import obb
obb.equity.fundamental.management_discussion_analysis(symbol='AAPL', provider='sec')
# Get the Management Discussion & Analysis section by calendar year and period.
obb.equity.fundamental.management_discussion_analysis(symbol='AAPL', calendar_year=2020, calendar_period='Q4', provider='sec')
# Setting 'include_tables' to True will attempt to extract all tables in valid Markdown.
obb.equity.fundamental.management_discussion_analysis(symbol='AAPL', calendar_year=2020, calendar_period='Q4', provider='sec', include_tables=True)
# Setting 'raw_html' to True will bypass extraction and return the raw HTML file, as is. Use this for custom parsing or to access the entire HTML filing.
obb.equity.fundamental.management_discussion_analysis(symbol='AAPL', calendar_year=2020, calendar_period='Q4', provider='sec', raw_html=True)

Parameters

NameTypeDescriptionDefaultOptional
symbolstrSymbol to get data for.False
calendar_yearintCalendar year of the report. By default, is the current year. If the calendar period is not provided, but the calendar year is, it will return the annual report.NoneTrue
calendar_periodLiteral['Q1', 'Q2', 'Q3', 'Q4']Calendar period of the report. By default, is the most recent report available for the symbol. If no calendar year and no calendar period are provided, it will return the most recent report.NoneTrue

Returns

OBBject
results : List[ManagementDiscussionAnalysis]
Serializable results.

provider : Optional[Literal['sec']]
Provider name.

warnings : Optional[List[Warning_]]
List of warnings.

chart : Optional[Chart]
Chart object.

extra : Dict[str, Any]
Extra info.

Data

NameTypeDescription
symbolstrSymbol representing the entity requested in the data.
calendar_yearintThe calendar year of the report.
calendar_periodintThe calendar period of the report.
period_endingdateThe end date of the reporting period.
contentstrThe content of the management discussion and analysis.