get_cash_flow
Retrieve company cash flow statement data for a specified stock symbol, with options to select the data source and determine the number of recent records to analyze.
Instructions
Get company cash flow statement data.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
recent_n | No | Number of most recent records to return | |
source | No | Data source | sina |
symbol | Yes | Stock symbol/ticker (e.g. '000001') |
Input Schema (JSON Schema)
{
"properties": {
"recent_n": {
"anyOf": [
{
"minimum": 1,
"type": "integer"
},
{
"type": "null"
}
],
"default": 10,
"description": "Number of most recent records to return",
"title": "Recent N"
},
"source": {
"const": "sina",
"default": "sina",
"description": "Data source",
"title": "Source",
"type": "string"
},
"symbol": {
"description": "Stock symbol/ticker (e.g. '000001')",
"title": "Symbol",
"type": "string"
}
},
"required": [
"symbol"
],
"type": "object"
}