realtime_options
Fetch real-time options data for specific stock symbols to monitor market positions and analyze financial derivatives.
Instructions
Fetch realtime options
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| symbol | Yes | ||
| datatype | No | ||
| contract | No |
Input Schema (JSON Schema)
{
"properties": {
"contract": {
"type": "string"
},
"datatype": {
"type": "string"
},
"symbol": {
"type": "string"
}
},
"required": [
"symbol"
],
"type": "object"
}