get_stock_price
Retrieve the current stock price for a specific ticker symbol using Yahoo Finance data integration. Input the stock ticker symbol to receive up-to-date pricing information.
Instructions
Get the current stock price using yfinance.
Args:
symbol: Stock ticker (e.g. AAPL, TSLA, MSFT)
Input Schema
Name | Required | Description | Default |
---|---|---|---|
symbol | Yes |
Input Schema (JSON Schema)
{
"properties": {
"symbol": {
"title": "Symbol",
"type": "string"
}
},
"required": [
"symbol"
],
"title": "get_stock_priceArguments",
"type": "object"
}