get_cashflow
Retrieve cash flow statements for any stock symbol from Yahoo Finance. Set frequency to yearly, quarterly, or trailing for detailed financial insights.
Instructions
Get cashflow 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"
}