get_stock_quote
Fetch the latest stock price, daily change percentage, and trading volume for a given ticker symbol.
Instructions
Get the latest price, daily change %, and trading volume for a stock.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| symbol | Yes | Stock ticker symbol, e.g. NVDA |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| price | Yes | Latest trade price (USD) | |
| symbol | Yes | Ticker symbol | |
| volume | Yes | Most recent trading volume | |
| timestamp | Yes | Time the quote was fetched (UTC) | |
| change_pct | Yes | Daily change as a percentage |