get_current_stock_price
Retrieve the current stock price for a specific company by providing its Yahoo Finance stock symbol. Ideal for real-time financial data tracking.
Instructions
Get the current stock price based on stock symbol.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
symbol | Yes | Stock symbol in Yahoo Finance format. |
Input Schema (JSON Schema)
{
"properties": {
"symbol": {
"description": "Stock symbol in Yahoo Finance format.",
"type": "string"
}
},
"required": [
"symbol"
],
"type": "object"
}