retrieve_ticker_info
Retrieve detailed stock information for a specific ticker symbol to support financial analysis and investment decisions. Provides a JSON-serializable dict containing key data for the given ticker.
Instructions
Retrieves information about the given ticker.
Args:
ticker: The ticker symbol of the stock to retrieve the information for.
Returns:
A JSON-serializable dict with information about the given ticker.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
ticker | Yes |
Input Schema (JSON Schema)
{
"properties": {
"ticker": {
"title": "Ticker",
"type": "string"
}
},
"required": [
"ticker"
],
"title": "retrieve_ticker_infoArguments",
"type": "object"
}