super_option_tool
Analyze and summarize key option metrics for a given stock ticker, including Greeks, implied volatility, open interest, volume, and trade data. Access formatted tables and indicators for informed decision-making.
Instructions
Analyzes and summarizes option data for a given ticker.
This function retrieves option indicators and Greeks for the specified ticker,
generates a digest summarizing key metrics, and formats a table of key option
data including last trade date, strike, option type, open interest, volume,
and implied volatility.
Args:
ticker: Stock ticker symbol.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
ticker | Yes |
Input Schema (JSON Schema)
{
"properties": {
"ticker": {
"title": "Ticker",
"type": "string"
}
},
"required": [
"ticker"
],
"title": "super_option_toolArguments",
"type": "object"
}