get_public_company_monthly_revenue
Retrieve monthly revenue data for public companies using their stock codes to analyze financial performance and track revenue trends over time.
Instructions
Obtain monthly revenue summary for a public company based on its stock code.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| code | Yes |
Input Schema (JSON Schema)
{
"properties": {
"code": {
"title": "Code",
"type": "string"
}
},
"required": [
"code"
],
"type": "object"
}