get_company_overview
Retrieve company overview and key financial metrics by providing a stock ticker symbol, enabling quick insights into stock market performance and company data.
Instructions
Get company overview and key metrics
Input Schema
Name | Required | Description | Default |
---|---|---|---|
symbol | Yes | Stock ticker symbol |
Input Schema (JSON Schema)
{
"properties": {
"symbol": {
"description": "Stock ticker symbol",
"type": "string"
}
},
"required": [
"symbol"
],
"type": "object"
}