historical_options
Retrieve historical options data for specific stock symbols to analyze past option contract performance and market trends.
Instructions
Fetch historical 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"
}