retrieve_current_price
Retrieve the real-time stock price for a specific ticker symbol. Provides current price data and related information in JSON format, enabling quick access for financial analysis and trading decisions.
Instructions
Retrieves the current price for the given ticker.
Args:
ticker: The ticker symbol of the stock to retrieve the current price for.
Returns:
A JSON-serializable dict with the current price and related info.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
ticker | Yes |
Input Schema (JSON Schema)
{
"properties": {
"ticker": {
"title": "Ticker",
"type": "string"
}
},
"required": [
"ticker"
],
"title": "retrieve_current_priceArguments",
"type": "object"
}