Fundamental data tools
fundamental_data_tools
Functions:
| Name | Description |
|---|---|
get_fundamentals |
Retrieve comprehensive fundamental data for a given ticker symbol. |
get_balance_sheet |
Retrieve balance sheet data for a given ticker symbol. |
get_cashflow |
Retrieve cash flow statement data for a given ticker symbol. |
get_income_statement |
Retrieve income statement data for a given ticker symbol. |
get_fundamentals
Retrieve comprehensive fundamental data for a given ticker symbol.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
|
str
|
Ticker symbol of the company. |
required |
|
str
|
Current trading date in YYYY-MM-DD format. |
required |
Returns:
| Name | Type | Description |
|---|---|---|
str |
str
|
A formatted report containing comprehensive fundamental data. |
Source code in src/tradingagents/agents/utils/fundamental_data_tools.py
get_balance_sheet
Retrieve balance sheet data for a given ticker symbol.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
|
str
|
Ticker symbol of the company. |
required |
|
str
|
Reporting frequency, either annual or quarterly. Defaults to "quarterly". |
'quarterly'
|
|
str | None
|
Current trading date in YYYY-MM-DD format. Defaults to None. |
None
|
Returns:
| Name | Type | Description |
|---|---|---|
str |
str
|
A formatted report containing balance sheet data. |
Source code in src/tradingagents/agents/utils/fundamental_data_tools.py
get_cashflow
Retrieve cash flow statement data for a given ticker symbol.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
|
str
|
Ticker symbol of the company. |
required |
|
str
|
Reporting frequency, either annual or quarterly. Defaults to "quarterly". |
'quarterly'
|
|
str | None
|
Current trading date in YYYY-MM-DD format. Defaults to None. |
None
|
Returns:
| Name | Type | Description |
|---|---|---|
str |
str
|
A formatted report containing cash flow statement data. |
Source code in src/tradingagents/agents/utils/fundamental_data_tools.py
get_income_statement
Retrieve income statement data for a given ticker symbol.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
|
str
|
Ticker symbol of the company. |
required |
|
str
|
Reporting frequency, either annual or quarterly. Defaults to "quarterly". |
'quarterly'
|
|
str | None
|
Current trading date in YYYY-MM-DD format. Defaults to None. |
None
|
Returns:
| Name | Type | Description |
|---|---|---|
str |
str
|
A formatted report containing income statement data. |