get_income_statement
Retrieve income statement data for a specific stock symbol, customizable by frequency, to analyze financial performance. Input the stock symbol to access detailed financial metrics.
Instructions
Get income statement for a given stock symbol.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
freq | No | At what frequency to get cashflow statements. Defaults to "yearly". Valid freqencies: "yearly", "quarterly", "trainling" | |
symbol | Yes | Stock symbol in Yahoo Finance format. |
Input Schema (JSON Schema)
{
"properties": {
"freq": {
"description": "At what frequency to get cashflow statements. Defaults to \"yearly\". Valid freqencies: \"yearly\", \"quarterly\", \"trainling\"",
"type": "string"
},
"symbol": {
"description": "Stock symbol in Yahoo Finance format.",
"type": "string"
}
},
"required": [
"symbol"
],
"type": "object"
}