https://github.com/timxor/options_market_data
options_market_data
https://github.com/timxor/options_market_data
finance options options-api
Last synced: 5 months ago
JSON representation
options_market_data
- Host: GitHub
- URL: https://github.com/timxor/options_market_data
- Owner: timxor
- License: apache-2.0
- Created: 2023-08-15T15:38:55.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2025-01-25T18:10:36.000Z (about 1 year ago)
- Last Synced: 2025-01-25T18:28:27.711Z (about 1 year ago)
- Topics: finance, options, options-api
- Language: Java
- Homepage: https://github.com/timxor/options_market_data
- Size: 55.5 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# options_market_data
options_market_data
## alpha vantage api examples
alpha vantage api examples
Set and get ```YOUR_API_KEY``` from https://www.alphavantage.co/support/#api-key
## historical options data api documentation
https://www.alphavantage.co/documentation/#historical-options
## Example API URLs & curl requests for PLTR:
#### 1. Most recent options data:
```
curl "https://www.alphavantage.co/query?function=HISTORICAL_OPTIONS&symbol=PLTR&apikey=YOUR_API_KEY"
```
https://www.alphavantage.co/query?function=HISTORICAL_OPTIONS&symbol=PLTR&apikey=YOUR_API_KEY
#### 2. Specific date options data:
```
curl "https://www.alphavantage.co/query?function=HISTORICAL_OPTIONS&symbol=PLTR&date=2024-01-17&apikey=YOUR_API_KEY"
```
https://www.alphavantage.co/query?function=HISTORICAL_OPTIONS&symbol=PLTR&date=2024-01-17&apikey=YOUR_API_KEY
#### 3. CSV format:
```
curl "https://www.alphavantage.co/query?function=HISTORICAL_OPTIONS&symbol=PLTR&date=2024-01-17&apikey=YOUR_API_KEY&datatype=csv" > pltr_options.csv
```
https://www.alphavantage.co/query?function=HISTORICAL_OPTIONS&symbol=PLTR&date=2024-01-17&apikey=YOUR_API_KEY&datatype=csv
#### 4. JSON format:
```
curl "https://www.alphavantage.co/query?function=HISTORICAL_OPTIONS&symbol=PLTR&apikey=YOUR_API_KEY" | jq '.'
```
----------------------------------------------------------------------------------------------------------------
## example demo response payload data:
https://www.alphavantage.co/query?function=HISTORICAL_OPTIONS&symbol=IBM&apikey=demo
```
{
"endpoint": "Historical Options",
"message": "success",
"data": [
{
"contractID": "IBM250124C00120000",
"symbol": "IBM",
"expiration": "2025-01-24",
"strike": "120.00",
"type": "call",
"last": "0.00",
"mark": "104.88",
"bid": "104.15",
"bid_size": "72",
"ask": "105.60",
"ask_size": "73",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "4.67963",
"delta": "0.99638",
"gamma": "0.00020",
"theta": "-1.13997",
"vega": "0.00127",
"rho": "0.00326"
},
{
"contractID": "IBM250124P00120000",
"symbol": "IBM",
"expiration": "2025-01-24",
"strike": "120.00",
"type": "put",
"last": "0.00",
"mark": "0.01",
"bid": "0.00",
"bid_size": "0",
"ask": "2.13",
"ask_size": "10",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "3.90846",
"delta": "-0.00076",
"gamma": "0.00006",
"theta": "-0.21922",
"vega": "0.00031",
"rho": "-0.00000"
},
{
"contractID": "IBM250124C00125000",
"symbol": "IBM",
"expiration": "2025-01-24",
"strike": "125.00",
"type": "call",
"last": "98.82",
"mark": "99.68",
"bid": "98.70",
"bid_size": "72",
"ask": "100.65",
"ask_size": "72",
"volume": "0",
"open_interest": "5",
"date": "2025-01-24",
"implied_volatility": "3.56270",
"delta": "1.00000",
"gamma": "0.00000",
"theta": "-0.05412",
"vega": "0.00000",
"rho": "0.00342"
},
{
"contractID": "IBM250124P00125000",
"symbol": "IBM",
"expiration": "2025-01-24",
"strike": "125.00",
"type": "put",
"last": "0.00",
"mark": "0.01",
"bid": "0.00",
"bid_size": "0",
"ask": "2.13",
"ask_size": "10",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "3.66852",
"delta": "-0.00081",
"gamma": "0.00006",
"theta": "-0.21792",
"vega": "0.00033",
"rho": "-0.00001"
},
{
"contractID": "IBM250124C00130000",
"symbol": "IBM",
"expiration": "2025-01-24",
"strike": "130.00",
"type": "call",
"last": "0.00",
"mark": "94.40",
"bid": "93.25",
"bid_size": "72",
"ask": "95.55",
"ask_size": "74",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "3.38421",
"delta": "1.00000",
"gamma": "0.00000",
"theta": "-0.05628",
"vega": "0.00000",
"rho": "0.00356"
},
{
"contractID": "IBM250124P00130000",
"symbol": "IBM",
"expiration": "2025-01-24",
"strike": "130.00",
"type": "put",
"last": "0.00",
"mark": "0.01",
"bid": "0.00",
"bid_size": "0",
"ask": "2.13",
"ask_size": "10",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "3.43758",
"delta": "-0.00086",
"gamma": "0.00007",
"theta": "-0.21652",
"vega": "0.00035",
"rho": "-0.00001"
},
{
"contractID": "IBM250124C00135000",
"symbol": "IBM",
"expiration": "2025-01-24",
"strike": "135.00",
"type": "call",
"last": "0.00",
"mark": "89.80",
"bid": "89.05",
"bid_size": "74",
"ask": "90.55",
"ask_size": "72",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "3.20572",
"delta": "1.00000",
"gamma": "0.00000",
"theta": "-0.05845",
"vega": "0.00000",
"rho": "0.00370"
},
{
"contractID": "IBM250124P00135000",
"symbol": "IBM",
"expiration": "2025-01-24",
"strike": "135.00",
"type": "put",
"last": "0.00",
"mark": "0.01",
"bid": "0.00",
"bid_size": "0",
"ask": "2.13",
"ask_size": "10",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "3.21488",
"delta": "-0.00092",
"gamma": "0.00008",
"theta": "-0.21501",
"vega": "0.00037",
"rho": "-0.00001"
},
{
"contractID": "IBM250124C00140000",
"symbol": "IBM",
"expiration": "2025-01-24",
"strike": "140.00",
"type": "call",
"last": "84.29",
"mark": "84.47",
"bid": "83.25",
"bid_size": "72",
"ask": "85.70",
"ask_size": "72",
"volume": "0",
"open_interest": "1",
"date": "2025-01-24",
"implied_volatility": "3.02722",
"delta": "1.00000",
"gamma": "0.00000",
"theta": "-0.06061",
"vega": "0.00000",
"rho": "0.00384"
},
{
"contractID": "IBM250124P00140000",
"symbol": "IBM",
"expiration": "2025-01-24",
"strike": "140.00",
"type": "put",
"last": "0.00",
"mark": "0.01",
"bid": "0.00",
"bid_size": "0",
"ask": "2.13",
"ask_size": "139",
"volume": "0",
"open_interest": "5",
"date": "2025-01-24",
"implied_volatility": "2.99979",
"delta": "-0.00098",
"gamma": "0.00009",
"theta": "-0.21342",
"vega": "0.00039",
"rho": "-0.00001"
},
{
"contractID": "IBM250124C00145000",
"symbol": "IBM",
"expiration": "2025-01-24",
"strike": "145.00",
"type": "call",
"last": "79.30",
"mark": "79.72",
"bid": "79.25",
"bid_size": "41",
"ask": "80.20",
"ask_size": "63",
"volume": "0",
"open_interest": "1",
"date": "2025-01-24",
"implied_volatility": "2.84873",
"delta": "1.00000",
"gamma": "0.00000",
"theta": "-0.06278",
"vega": "0.00000",
"rho": "0.00397"
},
{
"contractID": "IBM250124P00145000",
"symbol": "IBM",
"expiration": "2025-01-24",
"strike": "145.00",
"type": "put",
"last": "0.00",
"mark": "0.01",
"bid": "0.00",
"bid_size": "0",
"ask": "1.67",
"ask_size": "116",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "2.79156",
"delta": "-0.00105",
"gamma": "0.00011",
"theta": "-0.21161",
"vega": "0.00042",
"rho": "-0.00001"
},
{
"contractID": "IBM250124C00150000",
"symbol": "IBM",
"expiration": "2025-01-24",
"strike": "150.00",
"type": "call",
"last": "75.99",
"mark": "74.72",
"bid": "73.75",
"bid_size": "72",
"ask": "75.70",
"ask_size": "72",
"volume": "1",
"open_interest": "1",
"date": "2025-01-24",
"implied_volatility": "2.67024",
"delta": "1.00000",
"gamma": "0.00000",
"theta": "-0.06494",
"vega": "0.00000",
"rho": "0.00411"
},
{
"contractID": "IBM250124P00150000",
"symbol": "IBM",
"expiration": "2025-01-24",
"strike": "150.00",
"type": "put",
"last": "0.00",
"mark": "0.01",
"bid": "0.00",
"bid_size": "0",
"ask": "1.47",
"ask_size": "119",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "2.58989",
"delta": "-0.00113",
"gamma": "0.00012",
"theta": "-0.20977",
"vega": "0.00044",
"rho": "-0.00001"
},
{
"contractID": "IBM250124C00155000",
"symbol": "IBM",
"expiration": "2025-01-24",
"strike": "155.00",
"type": "call",
"last": "71.09",
"mark": "69.45",
"bid": "68.35",
"bid_size": "76",
"ask": "70.55",
"ask_size": "72",
"volume": "1",
"open_interest": "1",
"date": "2025-01-24",
"implied_volatility": "2.49175",
"delta": "1.00000",
"gamma": "0.00000",
"theta": "-0.06711",
"vega": "0.00000",
"rho": "0.00425"
},
{
"contractID": "IBM250124P00155000",
"symbol": "IBM",
"expiration": "2025-01-24",
"strike": "155.00",
"type": "put",
"last": "0.00",
"mark": "0.01",
"bid": "0.00",
"bid_size": "0",
"ask": "1.27",
"ask_size": "113",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "2.39416",
"delta": "-0.00122",
"gamma": "0.00014",
"theta": "-0.20778",
"vega": "0.00048",
"rho": "-0.00001"
},
{
"contractID": "IBM250124C00160000",
"symbol": "IBM",
"expiration": "2025-01-24",
"strike": "160.00",
"type": "call",
"last": "61.60",
"mark": "64.67",
"bid": "63.80",
"bid_size": "96",
"ask": "65.55",
"ask_size": "72",
"volume": "0",
"open_interest": "1",
"date": "2025-01-24",
"implied_volatility": "2.31326",
"delta": "1.00000",
"gamma": "0.00000",
"theta": "-0.06927",
"vega": "0.00000",
"rho": "0.00438"
},
{
"contractID": "IBM250124P00160000",
"symbol": "IBM",
"expiration": "2025-01-24",
"strike": "160.00",
"type": "put",
"last": "0.00",
"mark": "0.01",
"bid": "0.00",
"bid_size": "0",
"ask": "1.47",
"ask_size": "122",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "2.20408",
"delta": "-0.00132",
"gamma": "0.00017",
"theta": "-0.20578",
"vega": "0.00051",
"rho": "-0.00001"
},
{
"contractID": "IBM250124C00165000",
"symbol": "IBM",
"expiration": "2025-01-24",
"strike": "165.00",
"type": "call",
"last": "0.00",
"mark": "59.83",
"bid": "59.25",
"bid_size": "52",
"ask": "60.40",
"ask_size": "78",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "2.02649",
"delta": "0.99851",
"gamma": "0.00020",
"theta": "-0.28234",
"vega": "0.00057",
"rho": "0.00451"
},
{
"contractID": "IBM250124P00165000",
"symbol": "IBM",
"expiration": "2025-01-24",
"strike": "165.00",
"type": "put",
"last": "0.00",
"mark": "0.01",
"bid": "0.00",
"bid_size": "0",
"ask": "1.27",
"ask_size": "120",
"volume": "0",
"open_interest": "1",
"date": "2025-01-24",
"implied_volatility": "2.01887",
"delta": "-0.00144",
"gamma": "0.00020",
"theta": "-0.20346",
"vega": "0.00055",
"rho": "-0.00001"
},
{
"contractID": "IBM250124C00170000",
"symbol": "IBM",
"expiration": "2025-01-24",
"strike": "170.00",
"type": "call",
"last": "54.10",
"mark": "54.90",
"bid": "54.15",
"bid_size": "59",
"ask": "55.65",
"ask_size": "80",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "2.29691",
"delta": "0.99146",
"gamma": "0.00086",
"theta": "-1.21723",
"vega": "0.00273",
"rho": "0.00460"
},
{
"contractID": "IBM250124P00170000",
"symbol": "IBM",
"expiration": "2025-01-24",
"strike": "170.00",
"type": "put",
"last": "0.00",
"mark": "0.01",
"bid": "0.00",
"bid_size": "0",
"ask": "2.13",
"ask_size": "10",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "1.83823",
"delta": "-0.00157",
"gamma": "0.00024",
"theta": "-0.20087",
"vega": "0.00060",
"rho": "-0.00001"
},
{
"contractID": "IBM250124C00175000",
"symbol": "IBM",
"expiration": "2025-01-24",
"strike": "175.00",
"type": "call",
"last": "48.83",
"mark": "49.80",
"bid": "48.95",
"bid_size": "70",
"ask": "50.65",
"ask_size": "70",
"volume": "0",
"open_interest": "1",
"date": "2025-01-24",
"implied_volatility": "1.77778",
"delta": "1.00000",
"gamma": "0.00000",
"theta": "-0.07577",
"vega": "0.00000",
"rho": "0.00479"
},
{
"contractID": "IBM250124P00175000",
"symbol": "IBM",
"expiration": "2025-01-24",
"strike": "175.00",
"type": "put",
"last": "0.00",
"mark": "0.01",
"bid": "0.00",
"bid_size": "0",
"ask": "1.67",
"ask_size": "2",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "1.66202",
"delta": "-0.00173",
"gamma": "0.00028",
"theta": "-0.19822",
"vega": "0.00065",
"rho": "-0.00001"
},
{
"contractID": "IBM250124C00180000",
"symbol": "IBM",
"expiration": "2025-01-24",
"strike": "180.00",
"type": "call",
"last": "43.83",
"mark": "44.75",
"bid": "44.25",
"bid_size": "39",
"ask": "45.25",
"ask_size": "76",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "1.59929",
"delta": "1.00000",
"gamma": "0.00000",
"theta": "-0.07793",
"vega": "0.00000",
"rho": "0.00493"
},
{
"contractID": "IBM250124P00180000",
"symbol": "IBM",
"expiration": "2025-01-24",
"strike": "180.00",
"type": "put",
"last": "0.00",
"mark": "0.01",
"bid": "0.00",
"bid_size": "0",
"ask": "0.75",
"ask_size": "185",
"volume": "0",
"open_interest": "22",
"date": "2025-01-24",
"implied_volatility": "1.48961",
"delta": "-0.00192",
"gamma": "0.00035",
"theta": "-0.19523",
"vega": "0.00072",
"rho": "-0.00001"
},
{
"contractID": "IBM250124C00185000",
"symbol": "IBM",
"expiration": "2025-01-24",
"strike": "185.00",
"type": "call",
"last": "39.61",
"mark": "39.47",
"bid": "38.65",
"bid_size": "80",
"ask": "40.30",
"ask_size": "70",
"volume": "0",
"open_interest": "1",
"date": "2025-01-24",
"implied_volatility": "1.42080",
"delta": "1.00000",
"gamma": "0.00000",
"theta": "-0.08010",
"vega": "0.00000",
"rho": "0.00507"
},
{
"contractID": "IBM250124P00185000",
"symbol": "IBM",
"expiration": "2025-01-24",
"strike": "185.00",
"type": "put",
"last": "0.00",
"mark": "0.01",
"bid": "0.00",
"bid_size": "0",
"ask": "1.27",
"ask_size": "37",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "1.32056",
"delta": "-0.00215",
"gamma": "0.00044",
"theta": "-0.19175",
"vega": "0.00080",
"rho": "-0.00001"
},
{
"contractID": "IBM250124C00187500",
"symbol": "IBM",
"expiration": "2025-01-24",
"strike": "187.50",
"type": "call",
"last": "0.00",
"mark": "37.10",
"bid": "36.50",
"bid_size": "72",
"ask": "37.70",
"ask_size": "66",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "1.33155",
"delta": "1.00000",
"gamma": "0.00000",
"theta": "-0.08118",
"vega": "0.00000",
"rho": "0.00514"
},
{
"contractID": "IBM250124P00187500",
"symbol": "IBM",
"expiration": "2025-01-24",
"strike": "187.50",
"type": "put",
"last": "0.00",
"mark": "0.01",
"bid": "0.00",
"bid_size": "0",
"ask": "1.27",
"ask_size": "33",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "1.23733",
"delta": "-0.00229",
"gamma": "0.00049",
"theta": "-0.19001",
"vega": "0.00084",
"rho": "-0.00001"
},
{
"contractID": "IBM250124C00190000",
"symbol": "IBM",
"expiration": "2025-01-24",
"strike": "190.00",
"type": "call",
"last": "33.81",
"mark": "34.67",
"bid": "34.15",
"bid_size": "60",
"ask": "35.20",
"ask_size": "59",
"volume": "0",
"open_interest": "1",
"date": "2025-01-24",
"implied_volatility": "1.24230",
"delta": "1.00000",
"gamma": "0.00000",
"theta": "-0.08226",
"vega": "0.00000",
"rho": "0.00520"
},
{
"contractID": "IBM250124P00190000",
"symbol": "IBM",
"expiration": "2025-01-24",
"strike": "190.00",
"type": "put",
"last": "0.00",
"mark": "0.01",
"bid": "0.00",
"bid_size": "0",
"ask": "1.15",
"ask_size": "141",
"volume": "0",
"open_interest": "4",
"date": "2025-01-24",
"implied_volatility": "1.15471",
"delta": "-0.00244",
"gamma": "0.00056",
"theta": "-0.18800",
"vega": "0.00089",
"rho": "-0.00002"
},
{
"contractID": "IBM250124C00192500",
"symbol": "IBM",
"expiration": "2025-01-24",
"strike": "192.50",
"type": "call",
"last": "31.32",
"mark": "32.25",
"bid": "31.65",
"bid_size": "71",
"ask": "32.85",
"ask_size": "72",
"volume": "0",
"open_interest": "1",
"date": "2025-01-24",
"implied_volatility": "1.15306",
"delta": "1.00000",
"gamma": "0.00000",
"theta": "-0.08334",
"vega": "0.00000",
"rho": "0.00527"
},
{
"contractID": "IBM250124P00192500",
"symbol": "IBM",
"expiration": "2025-01-24",
"strike": "192.50",
"type": "put",
"last": "0.00",
"mark": "0.01",
"bid": "0.00",
"bid_size": "0",
"ask": "0.75",
"ask_size": "167",
"volume": "0",
"open_interest": "16",
"date": "2025-01-24",
"implied_volatility": "1.07270",
"delta": "-0.00261",
"gamma": "0.00064",
"theta": "-0.18578",
"vega": "0.00095",
"rho": "-0.00002"
},
{
"contractID": "IBM250124C00195000",
"symbol": "IBM",
"expiration": "2025-01-24",
"strike": "195.00",
"type": "call",
"last": "29.08",
"mark": "29.23",
"bid": "28.35",
"bid_size": "73",
"ask": "30.10",
"ask_size": "46",
"volume": "4",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "1.06381",
"delta": "1.00000",
"gamma": "0.00000",
"theta": "-0.08442",
"vega": "0.00000",
"rho": "0.00534"
},
{
"contractID": "IBM250124P00195000",
"symbol": "IBM",
"expiration": "2025-01-24",
"strike": "195.00",
"type": "put",
"last": "0.00",
"mark": "0.01",
"bid": "0.00",
"bid_size": "0",
"ask": "0.20",
"ask_size": "185",
"volume": "0",
"open_interest": "18",
"date": "2025-01-24",
"implied_volatility": "0.99145",
"delta": "-0.00281",
"gamma": "0.00074",
"theta": "-0.18364",
"vega": "0.00102",
"rho": "-0.00002"
},
{
"contractID": "IBM250124C00197500",
"symbol": "IBM",
"expiration": "2025-01-24",
"strike": "197.50",
"type": "call",
"last": "0.00",
"mark": "26.83",
"bid": "25.85",
"bid_size": "70",
"ask": "27.80",
"ask_size": "78",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.97457",
"delta": "1.00000",
"gamma": "0.00000",
"theta": "-0.08551",
"vega": "0.00000",
"rho": "0.00541"
},
{
"contractID": "IBM250124P00197500",
"symbol": "IBM",
"expiration": "2025-01-24",
"strike": "197.50",
"type": "put",
"last": "0.00",
"mark": "0.01",
"bid": "0.00",
"bid_size": "0",
"ask": "0.07",
"ask_size": "161",
"volume": "0",
"open_interest": "16",
"date": "2025-01-24",
"implied_volatility": "0.91051",
"delta": "-0.00304",
"gamma": "0.00087",
"theta": "-0.18095",
"vega": "0.00109",
"rho": "-0.00002"
},
{
"contractID": "IBM250124C00200000",
"symbol": "IBM",
"expiration": "2025-01-24",
"strike": "200.00",
"type": "call",
"last": "24.80",
"mark": "24.15",
"bid": "23.30",
"bid_size": "72",
"ask": "25.00",
"ask_size": "15",
"volume": "0",
"open_interest": "2",
"date": "2025-01-24",
"implied_volatility": "0.88532",
"delta": "1.00000",
"gamma": "0.00000",
"theta": "-0.08659",
"vega": "0.00000",
"rho": "0.00548"
},
{
"contractID": "IBM250124P00200000",
"symbol": "IBM",
"expiration": "2025-01-24",
"strike": "200.00",
"type": "put",
"last": "0.04",
"mark": "0.01",
"bid": "0.00",
"bid_size": "0",
"ask": "0.47",
"ask_size": "190",
"volume": "3",
"open_interest": "60",
"date": "2025-01-24",
"implied_volatility": "0.83018",
"delta": "-0.00332",
"gamma": "0.00103",
"theta": "-0.17828",
"vega": "0.00118",
"rho": "-0.00002"
},
{
"contractID": "IBM250124C00202500",
"symbol": "IBM",
"expiration": "2025-01-24",
"strike": "202.50",
"type": "call",
"last": "23.80",
"mark": "21.57",
"bid": "20.65",
"bid_size": "72",
"ask": "22.50",
"ask_size": "14",
"volume": "1",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.79607",
"delta": "1.00000",
"gamma": "0.00000",
"theta": "-0.08767",
"vega": "0.00000",
"rho": "0.00555"
},
{
"contractID": "IBM250124P00202500",
"symbol": "IBM",
"expiration": "2025-01-24",
"strike": "202.50",
"type": "put",
"last": "0.00",
"mark": "0.01",
"bid": "0.00",
"bid_size": "0",
"ask": "0.01",
"ask_size": "1",
"volume": "0",
"open_interest": "290",
"date": "2025-01-24",
"implied_volatility": "0.75015",
"delta": "-0.00364",
"gamma": "0.00123",
"theta": "-0.17520",
"vega": "0.00128",
"rho": "-0.00002"
},
{
"contractID": "IBM250124C00205000",
"symbol": "IBM",
"expiration": "2025-01-24",
"strike": "205.00",
"type": "call",
"last": "21.30",
"mark": "19.45",
"bid": "18.90",
"bid_size": "72",
"ask": "20.00",
"ask_size": "15",
"volume": "1",
"open_interest": "3",
"date": "2025-01-24",
"implied_volatility": "0.70683",
"delta": "1.00000",
"gamma": "0.00000",
"theta": "-0.08875",
"vega": "0.00000",
"rho": "0.00562"
},
{
"contractID": "IBM250124P00205000",
"symbol": "IBM",
"expiration": "2025-01-24",
"strike": "205.00",
"type": "put",
"last": "0.00",
"mark": "0.01",
"bid": "0.00",
"bid_size": "0",
"ask": "0.21",
"ask_size": "8",
"volume": "0",
"open_interest": "242",
"date": "2025-01-24",
"implied_volatility": "0.67043",
"delta": "-0.00404",
"gamma": "0.00152",
"theta": "-0.17185",
"vega": "0.00141",
"rho": "-0.00003"
},
{
"contractID": "IBM250124C00207500",
"symbol": "IBM",
"expiration": "2025-01-24",
"strike": "207.50",
"type": "call",
"last": "0.00",
"mark": "16.77",
"bid": "16.05",
"bid_size": "95",
"ask": "17.50",
"ask_size": "12",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.61758",
"delta": "1.00000",
"gamma": "0.00000",
"theta": "-0.08984",
"vega": "0.00000",
"rho": "0.00568"
},
{
"contractID": "IBM250124P00207500",
"symbol": "IBM",
"expiration": "2025-01-24",
"strike": "207.50",
"type": "put",
"last": "0.00",
"mark": "0.01",
"bid": "0.00",
"bid_size": "0",
"ask": "0.12",
"ask_size": "164",
"volume": "0",
"open_interest": "16",
"date": "2025-01-24",
"implied_volatility": "0.59085",
"delta": "-0.00455",
"gamma": "0.00191",
"theta": "-0.16806",
"vega": "0.00156",
"rho": "-0.00003"
},
{
"contractID": "IBM250124C00210000",
"symbol": "IBM",
"expiration": "2025-01-24",
"strike": "210.00",
"type": "call",
"last": "16.46",
"mark": "14.50",
"bid": "13.95",
"bid_size": "72",
"ask": "15.05",
"ask_size": "15",
"volume": "2",
"open_interest": "17",
"date": "2025-01-24",
"implied_volatility": "0.52834",
"delta": "1.00000",
"gamma": "0.00000",
"theta": "-0.09092",
"vega": "0.00000",
"rho": "0.00575"
},
{
"contractID": "IBM250124P00210000",
"symbol": "IBM",
"expiration": "2025-01-24",
"strike": "210.00",
"type": "put",
"last": "0.01",
"mark": "0.01",
"bid": "0.00",
"bid_size": "0",
"ask": "0.01",
"ask_size": "3",
"volume": "12",
"open_interest": "1879",
"date": "2025-01-24",
"implied_volatility": "0.51128",
"delta": "-0.00519",
"gamma": "0.00249",
"theta": "-0.16373",
"vega": "0.00176",
"rho": "-0.00003"
},
{
"contractID": "IBM250124C00212500",
"symbol": "IBM",
"expiration": "2025-01-24",
"strike": "212.50",
"type": "call",
"last": "13.15",
"mark": "11.90",
"bid": "11.30",
"bid_size": "72",
"ask": "12.50",
"ask_size": "14",
"volume": "3",
"open_interest": "29",
"date": "2025-01-24",
"implied_volatility": "0.43909",
"delta": "1.00000",
"gamma": "0.00000",
"theta": "-0.09200",
"vega": "0.00000",
"rho": "0.00582"
},
{
"contractID": "IBM250124P00212500",
"symbol": "IBM",
"expiration": "2025-01-24",
"strike": "212.50",
"type": "put",
"last": "0.01",
"mark": "0.01",
"bid": "0.00",
"bid_size": "0",
"ask": "0.10",
"ask_size": "165",
"volume": "1",
"open_interest": "60",
"date": "2025-01-24",
"implied_volatility": "0.43156",
"delta": "-0.00608",
"gamma": "0.00339",
"theta": "-0.15880",
"vega": "0.00202",
"rho": "-0.00004"
},
{
"contractID": "IBM250124C00215000",
"symbol": "IBM",
"expiration": "2025-01-24",
"strike": "215.00",
"type": "call",
"last": "9.87",
"mark": "9.47",
"bid": "8.95",
"bid_size": "187",
"ask": "10.00",
"ask_size": "15",
"volume": "8",
"open_interest": "105",
"date": "2025-01-24",
"implied_volatility": "0.34984",
"delta": "1.00000",
"gamma": "0.00000",
"theta": "-0.09308",
"vega": "0.00000",
"rho": "0.00589"
},
{
"contractID": "IBM250124P00215000",
"symbol": "IBM",
"expiration": "2025-01-24",
"strike": "215.00",
"type": "put",
"last": "0.02",
"mark": "0.01",
"bid": "0.00",
"bid_size": "0",
"ask": "0.01",
"ask_size": "1",
"volume": "32",
"open_interest": "300",
"date": "2025-01-24",
"implied_volatility": "0.35123",
"delta": "-0.00734",
"gamma": "0.00492",
"theta": "-0.15253",
"vega": "0.00239",
"rho": "-0.00005"
},
{
"contractID": "IBM250124C00217500",
"symbol": "IBM",
"expiration": "2025-01-24",
"strike": "217.50",
"type": "call",
"last": "6.49",
"mark": "7.58",
"bid": "6.85",
"bid_size": "12",
"ask": "8.30",
"ask_size": "72",
"volume": "5",
"open_interest": "340",
"date": "2025-01-24",
"implied_volatility": "0.48567",
"delta": "0.90591",
"gamma": "0.02937",
"theta": "-1.83519",
"vega": "0.01975",
"rho": "0.00537"
},
{
"contractID": "IBM250124P00217500",
"symbol": "IBM",
"expiration": "2025-01-24",
"strike": "217.50",
"type": "put",
"last": "0.04",
"mark": "0.01",
"bid": "0.00",
"bid_size": "0",
"ask": "0.01",
"ask_size": "3",
"volume": "10",
"open_interest": "1090",
"date": "2025-01-24",
"implied_volatility": "0.26983",
"delta": "-0.00931",
"gamma": "0.00789",
"theta": "-0.14422",
"vega": "0.00295",
"rho": "-0.00006"
},
{
"contractID": "IBM250124C00220000",
"symbol": "IBM",
"expiration": "2025-01-24",
"strike": "220.00",
"type": "call",
"last": "4.53",
"mark": "4.90",
"bid": "4.05",
"bid_size": "156",
"ask": "5.75",
"ask_size": "72",
"volume": "48",
"open_interest": "616",
"date": "2025-01-24",
"implied_volatility": "0.26205",
"delta": "0.94398",
"gamma": "0.03661",
"theta": "-0.72493",
"vega": "0.01328",
"rho": "0.00568"
},
{
"contractID": "IBM250124P00220000",
"symbol": "IBM",
"expiration": "2025-01-24",
"strike": "220.00",
"type": "put",
"last": "0.01",
"mark": "0.01",
"bid": "0.00",
"bid_size": "0",
"ask": "0.01",
"ask_size": "8",
"volume": "56",
"open_interest": "854",
"date": "2025-01-24",
"implied_volatility": "0.18675",
"delta": "-0.01304",
"gamma": "0.01527",
"theta": "-0.13331",
"vega": "0.00395",
"rho": "-0.00008"
},
{
"contractID": "IBM250124C00222500",
"symbol": "IBM",
"expiration": "2025-01-24",
"strike": "222.50",
"type": "call",
"last": "1.98",
"mark": "2.12",
"bid": "1.86",
"bid_size": "11",
"ask": "2.38",
"ask_size": "12",
"volume": "164",
"open_interest": "584",
"date": "2025-01-24",
"implied_volatility": "0.08211",
"delta": "1.00000",
"gamma": "0.00000",
"theta": "-0.09633",
"vega": "0.00000",
"rho": "0.00610"
},
{
"contractID": "IBM250124P00222500",
"symbol": "IBM",
"expiration": "2025-01-24",
"strike": "222.50",
"type": "put",
"last": "0.01",
"mark": "0.01",
"bid": "0.00",
"bid_size": "0",
"ask": "0.01",
"ask_size": "10",
"volume": "301",
"open_interest": "407",
"date": "2025-01-24",
"implied_volatility": "0.09956",
"delta": "-0.02281",
"gamma": "0.04619",
"theta": "-0.11346",
"vega": "0.00637",
"rho": "-0.00014"
},
{
"contractID": "IBM250124C00225000",
"symbol": "IBM",
"expiration": "2025-01-24",
"strike": "225.00",
"type": "call",
"last": "0.05",
"mark": "0.01",
"bid": "0.00",
"bid_size": "0",
"ask": "0.06",
"ask_size": "1",
"volume": "413",
"open_interest": "1804",
"date": "2025-01-24",
"implied_volatility": "0.01312",
"delta": "0.13105",
"gamma": "1.37744",
"theta": "-0.07271",
"vega": "0.02503",
"rho": "0.00081"
},
{
"contractID": "IBM250124P00225000",
"symbol": "IBM",
"expiration": "2025-01-24",
"strike": "225.00",
"type": "put",
"last": "0.50",
"mark": "0.47",
"bid": "0.25",
"bid_size": "1",
"ask": "0.69",
"ask_size": "13",
"volume": "279",
"open_interest": "273",
"date": "2025-01-24",
"implied_volatility": "0.08035",
"delta": "-0.57187",
"gamma": "0.41510",
"theta": "-0.62127",
"vega": "0.04618",
"rho": "-0.00353"
},
{
"contractID": "IBM250124C00227500",
"symbol": "IBM",
"expiration": "2025-01-24",
"strike": "227.50",
"type": "call",
"last": "0.01",
"mark": "0.01",
"bid": "0.00",
"bid_size": "0",
"ask": "0.01",
"ask_size": "17",
"volume": "1375",
"open_interest": "732",
"date": "2025-01-24",
"implied_volatility": "0.11068",
"delta": "0.02080",
"gamma": "0.03844",
"theta": "-0.12101",
"vega": "0.00589",
"rho": "0.00013"
},
{
"contractID": "IBM250124P00227500",
"symbol": "IBM",
"expiration": "2025-01-24",
"strike": "227.50",
"type": "put",
"last": "1.85",
"mark": "2.84",
"bid": "2.48",
"bid_size": "16",
"ask": "3.20",
"ask_size": "36",
"volume": "148",
"open_interest": "47",
"date": "2025-01-24",
"implied_volatility": "0.20535",
"delta": "-0.86311",
"gamma": "0.09072",
"theta": "-0.88134",
"vega": "0.02579",
"rho": "-0.00539"
},
{
"contractID": "IBM250124C00230000",
"symbol": "IBM",
"expiration": "2025-01-24",
"strike": "230.00",
"type": "call",
"last": "0.01",
"mark": "0.01",
"bid": "0.00",
"bid_size": "0",
"ask": "0.01",
"ask_size": "872",
"volume": "5428",
"open_interest": "6833",
"date": "2025-01-24",
"implied_volatility": "0.19391",
"delta": "0.01267",
"gamma": "0.01435",
"theta": "-0.13752",
"vega": "0.00385",
"rho": "0.00008"
},
{
"contractID": "IBM250124P00230000",
"symbol": "IBM",
"expiration": "2025-01-24",
"strike": "230.00",
"type": "put",
"last": "4.05",
"mark": "6.10",
"bid": "5.00",
"bid_size": "14",
"ask": "7.20",
"ask_size": "71",
"volume": "8",
"open_interest": "38",
"date": "2025-01-24",
"implied_volatility": "0.58582",
"delta": "-0.76626",
"gamma": "0.04445",
"theta": "-3.77715",
"vega": "0.03605",
"rho": "-0.00489"
},
{
"contractID": "IBM250124C00232500",
"symbol": "IBM",
"expiration": "2025-01-24",
"strike": "232.50",
"type": "call",
"last": "0.03",
"mark": "0.01",
"bid": "0.00",
"bid_size": "0",
"ask": "0.01",
"ask_size": "8",
"volume": "71",
"open_interest": "314",
"date": "2025-01-24",
"implied_volatility": "0.27181",
"delta": "0.00934",
"gamma": "0.00785",
"theta": "-0.14748",
"vega": "0.00295",
"rho": "0.00006"
},
{
"contractID": "IBM250124P00232500",
"symbol": "IBM",
"expiration": "2025-01-24",
"strike": "232.50",
"type": "put",
"last": "0.00",
"mark": "7.88",
"bid": "7.50",
"bid_size": "15",
"ask": "8.25",
"ask_size": "44",
"volume": "0",
"open_interest": "1",
"date": "2025-01-24",
"implied_volatility": "0.46159",
"delta": "-0.91574",
"gamma": "0.02846",
"theta": "-1.43980",
"vega": "0.01819",
"rho": "-0.00586"
},
{
"contractID": "IBM250124C00235000",
"symbol": "IBM",
"expiration": "2025-01-24",
"strike": "235.00",
"type": "call",
"last": "0.01",
"mark": "0.01",
"bid": "0.00",
"bid_size": "0",
"ask": "0.01",
"ask_size": "5",
"volume": "28",
"open_interest": "323",
"date": "2025-01-24",
"implied_volatility": "0.34635",
"delta": "0.00751",
"gamma": "0.00508",
"theta": "-0.15484",
"vega": "0.00244",
"rho": "0.00005"
},
{
"contractID": "IBM250124P00235000",
"symbol": "IBM",
"expiration": "2025-01-24",
"strike": "235.00",
"type": "put",
"last": "0.00",
"mark": "10.72",
"bid": "10.00",
"bid_size": "8",
"ask": "11.45",
"ask_size": "72",
"volume": "0",
"open_interest": "5",
"date": "2025-01-24",
"implied_volatility": "0.73475",
"delta": "-0.87108",
"gamma": "0.02433",
"theta": "-3.22914",
"vega": "0.02475",
"rho": "-0.00566"
},
{
"contractID": "IBM250124C00237500",
"symbol": "IBM",
"expiration": "2025-01-24",
"strike": "237.50",
"type": "call",
"last": "0.01",
"mark": "0.01",
"bid": "0.00",
"bid_size": "0",
"ask": "0.01",
"ask_size": "8",
"volume": "35",
"open_interest": "224",
"date": "2025-01-24",
"implied_volatility": "0.41830",
"delta": "0.00632",
"gamma": "0.00362",
"theta": "-0.16057",
"vega": "0.00210",
"rho": "0.00004"
},
{
"contractID": "IBM250124P00237500",
"symbol": "IBM",
"expiration": "2025-01-24",
"strike": "237.50",
"type": "put",
"last": "0.00",
"mark": "13.57",
"bid": "12.50",
"bid_size": "7",
"ask": "14.65",
"ask_size": "72",
"volume": "0",
"open_interest": "3",
"date": "2025-01-24",
"implied_volatility": "0.99237",
"delta": "-0.84844",
"gamma": "0.02011",
"theta": "-4.91455",
"vega": "0.02762",
"rho": "-0.00560"
},
{
"contractID": "IBM250124C00240000",
"symbol": "IBM",
"expiration": "2025-01-24",
"strike": "240.00",
"type": "call",
"last": "0.01",
"mark": "0.01",
"bid": "0.00",
"bid_size": "0",
"ask": "0.01",
"ask_size": "30",
"volume": "6",
"open_interest": "448",
"date": "2025-01-24",
"implied_volatility": "0.48827",
"delta": "0.00550",
"gamma": "0.00274",
"theta": "-0.16558",
"vega": "0.00185",
"rho": "0.00003"
},
{
"contractID": "IBM250124P00240000",
"symbol": "IBM",
"expiration": "2025-01-24",
"strike": "240.00",
"type": "put",
"last": "0.00",
"mark": "15.47",
"bid": "14.45",
"bid_size": "72",
"ask": "16.50",
"ask_size": "72",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.83323",
"delta": "-0.92998",
"gamma": "0.01370",
"theta": "-2.30566",
"vega": "0.01580",
"rho": "-0.00615"
},
{
"contractID": "IBM250124C00242500",
"symbol": "IBM",
"expiration": "2025-01-24",
"strike": "242.50",
"type": "call",
"last": "0.01",
"mark": "0.01",
"bid": "0.00",
"bid_size": "0",
"ask": "1.15",
"ask_size": "23",
"volume": "0",
"open_interest": "21",
"date": "2025-01-24",
"implied_volatility": "0.55640",
"delta": "0.00489",
"gamma": "0.00216",
"theta": "-0.16975",
"vega": "0.00167",
"rho": "0.00003"
},
{
"contractID": "IBM250124P00242500",
"symbol": "IBM",
"expiration": "2025-01-24",
"strike": "242.50",
"type": "put",
"last": "0.00",
"mark": "18.00",
"bid": "16.30",
"bid_size": "72",
"ask": "19.70",
"ask_size": "72",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.95335",
"delta": "-0.93209",
"gamma": "0.01169",
"theta": "-2.58687",
"vega": "0.01543",
"rho": "-0.00623"
},
{
"contractID": "IBM250124C00245000",
"symbol": "IBM",
"expiration": "2025-01-24",
"strike": "245.00",
"type": "call",
"last": "0.01",
"mark": "0.01",
"bid": "0.00",
"bid_size": "0",
"ask": "0.02",
"ask_size": "7",
"volume": "4",
"open_interest": "63",
"date": "2025-01-24",
"implied_volatility": "0.62287",
"delta": "0.00440",
"gamma": "0.00176",
"theta": "-0.17315",
"vega": "0.00152",
"rho": "0.00003"
},
{
"contractID": "IBM250124P00245000",
"symbol": "IBM",
"expiration": "2025-01-24",
"strike": "245.00",
"type": "put",
"last": "0.00",
"mark": "20.80",
"bid": "20.00",
"bid_size": "15",
"ask": "21.60",
"ask_size": "76",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "1.22529",
"delta": "-0.90452",
"gamma": "0.01177",
"theta": "-4.36666",
"vega": "0.01996",
"rho": "-0.00614"
},
{
"contractID": "IBM250124C00247500",
"symbol": "IBM",
"expiration": "2025-01-24",
"strike": "247.50",
"type": "call",
"last": "0.00",
"mark": "0.01",
"bid": "0.00",
"bid_size": "0",
"ask": "1.27",
"ask_size": "20",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.68811",
"delta": "0.00403",
"gamma": "0.00147",
"theta": "-0.17658",
"vega": "0.00140",
"rho": "0.00002"
},
{
"contractID": "IBM250124P00247500",
"symbol": "IBM",
"expiration": "2025-01-24",
"strike": "247.50",
"type": "put",
"last": "0.00",
"mark": "23.18",
"bid": "22.50",
"bid_size": "16",
"ask": "23.85",
"ask_size": "72",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "1.26401",
"delta": "-0.92207",
"gamma": "0.00980",
"theta": "-3.85612",
"vega": "0.01715",
"rho": "-0.00631"
},
{
"contractID": "IBM250124C00250000",
"symbol": "IBM",
"expiration": "2025-01-24",
"strike": "250.00",
"type": "call",
"last": "0.04",
"mark": "0.01",
"bid": "0.00",
"bid_size": "0",
"ask": "0.01",
"ask_size": "2",
"volume": "0",
"open_interest": "141",
"date": "2025-01-24",
"implied_volatility": "0.75198",
"delta": "0.00372",
"gamma": "0.00125",
"theta": "-0.17950",
"vega": "0.00131",
"rho": "0.00002"
},
{
"contractID": "IBM250124P00250000",
"symbol": "IBM",
"expiration": "2025-01-24",
"strike": "250.00",
"type": "put",
"last": "0.00",
"mark": "25.12",
"bid": "24.45",
"bid_size": "74",
"ask": "25.80",
"ask_size": "49",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.89960",
"delta": "-1.00000",
"gamma": "0.00000",
"theta": "0.10824",
"vega": "0.00000",
"rho": "-0.00685"
},
{
"contractID": "IBM250124C00252500",
"symbol": "IBM",
"expiration": "2025-01-24",
"strike": "252.50",
"type": "call",
"last": "0.00",
"mark": "0.01",
"bid": "0.00",
"bid_size": "0",
"ask": "1.27",
"ask_size": "20",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.81463",
"delta": "0.00346",
"gamma": "0.00108",
"theta": "-0.18211",
"vega": "0.00122",
"rho": "0.00002"
},
{
"contractID": "IBM250124P00252500",
"symbol": "IBM",
"expiration": "2025-01-24",
"strike": "252.50",
"type": "put",
"last": "0.00",
"mark": "27.83",
"bid": "26.80",
"bid_size": "76",
"ask": "28.85",
"ask_size": "72",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "1.16615",
"delta": "-0.96934",
"gamma": "0.00505",
"theta": "-1.62829",
"vega": "0.00815",
"rho": "-0.00673"
},
{
"contractID": "IBM250124C00255000",
"symbol": "IBM",
"expiration": "2025-01-24",
"strike": "255.00",
"type": "call",
"last": "0.04",
"mark": "0.01",
"bid": "0.00",
"bid_size": "0",
"ask": "1.20",
"ask_size": "20",
"volume": "0",
"open_interest": "41",
"date": "2025-01-24",
"implied_volatility": "0.87621",
"delta": "0.00324",
"gamma": "0.00095",
"theta": "-0.18457",
"vega": "0.00115",
"rho": "0.00002"
},
{
"contractID": "IBM250124P00255000",
"symbol": "IBM",
"expiration": "2025-01-24",
"strike": "255.00",
"type": "put",
"last": "0.00",
"mark": "30.55",
"bid": "29.85",
"bid_size": "49",
"ask": "31.25",
"ask_size": "70",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "1.46080",
"delta": "-0.94617",
"gamma": "0.00636",
"theta": "-3.32550",
"vega": "0.01287",
"rho": "-0.00666"
},
{
"contractID": "IBM250124C00257500",
"symbol": "IBM",
"expiration": "2025-01-24",
"strike": "257.50",
"type": "call",
"last": "0.00",
"mark": "0.01",
"bid": "0.00",
"bid_size": "0",
"ask": "1.27",
"ask_size": "2",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.93673",
"delta": "0.00304",
"gamma": "0.00084",
"theta": "-0.18680",
"vega": "0.00109",
"rho": "0.00002"
},
{
"contractID": "IBM250124P00257500",
"symbol": "IBM",
"expiration": "2025-01-24",
"strike": "257.50",
"type": "put",
"last": "0.00",
"mark": "33.05",
"bid": "32.35",
"bid_size": "61",
"ask": "33.75",
"ask_size": "70",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "1.54937",
"delta": "-0.94873",
"gamma": "0.00577",
"theta": "-3.39427",
"vega": "0.01238",
"rho": "-0.00675"
},
{
"contractID": "IBM250124C00260000",
"symbol": "IBM",
"expiration": "2025-01-24",
"strike": "260.00",
"type": "call",
"last": "0.01",
"mark": "0.01",
"bid": "0.00",
"bid_size": "0",
"ask": "0.05",
"ask_size": "30",
"volume": "0",
"open_interest": "182",
"date": "2025-01-24",
"implied_volatility": "0.99618",
"delta": "0.00288",
"gamma": "0.00075",
"theta": "-0.18873",
"vega": "0.00104",
"rho": "0.00002"
},
{
"contractID": "IBM250124P00260000",
"symbol": "IBM",
"expiration": "2025-01-24",
"strike": "260.00",
"type": "put",
"last": "0.00",
"mark": "35.52",
"bid": "34.80",
"bid_size": "56",
"ask": "36.25",
"ask_size": "70",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "1.61034",
"delta": "-0.95374",
"gamma": "0.00511",
"theta": "-3.24287",
"vega": "0.01140",
"rho": "-0.00685"
},
{
"contractID": "IBM250124C00265000",
"symbol": "IBM",
"expiration": "2025-01-24",
"strike": "265.00",
"type": "call",
"last": "0.00",
"mark": "0.01",
"bid": "0.00",
"bid_size": "0",
"ask": "1.26",
"ask_size": "11",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "1.11249",
"delta": "0.00260",
"gamma": "0.00061",
"theta": "-0.19246",
"vega": "0.00095",
"rho": "0.00002"
},
{
"contractID": "IBM250124P00265000",
"symbol": "IBM",
"expiration": "2025-01-24",
"strike": "265.00",
"type": "put",
"last": "0.00",
"mark": "40.42",
"bid": "39.80",
"bid_size": "59",
"ask": "41.05",
"ask_size": "72",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "1.67421",
"delta": "-0.96654",
"gamma": "0.00378",
"theta": "-2.56558",
"vega": "0.00876",
"rho": "-0.00706"
},
{
"contractID": "IBM250124C00270000",
"symbol": "IBM",
"expiration": "2025-01-24",
"strike": "270.00",
"type": "call",
"last": "0.72",
"mark": "0.01",
"bid": "0.00",
"bid_size": "0",
"ask": "0.18",
"ask_size": "32",
"volume": "0",
"open_interest": "2",
"date": "2025-01-24",
"implied_volatility": "1.22544",
"delta": "0.00238",
"gamma": "0.00052",
"theta": "-0.19582",
"vega": "0.00087",
"rho": "0.00001"
},
{
"contractID": "IBM250124P00270000",
"symbol": "IBM",
"expiration": "2025-01-24",
"strike": "270.00",
"type": "put",
"last": "0.00",
"mark": "45.15",
"bid": "44.45",
"bid_size": "74",
"ask": "45.85",
"ask_size": "59",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "1.61357",
"delta": "-1.00000",
"gamma": "0.00000",
"theta": "0.11690",
"vega": "0.00000",
"rho": "-0.00740"
},
{
"contractID": "IBM250124C00275000",
"symbol": "IBM",
"expiration": "2025-01-24",
"strike": "275.00",
"type": "call",
"last": "0.00",
"mark": "0.01",
"bid": "0.00",
"bid_size": "0",
"ask": "1.67",
"ask_size": "6",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "1.33520",
"delta": "0.00220",
"gamma": "0.00044",
"theta": "-0.19872",
"vega": "0.00081",
"rho": "0.00001"
},
{
"contractID": "IBM250124P00275000",
"symbol": "IBM",
"expiration": "2025-01-24",
"strike": "275.00",
"type": "put",
"last": "0.00",
"mark": "50.27",
"bid": "49.40",
"bid_size": "72",
"ask": "51.15",
"ask_size": "72",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "1.73031",
"delta": "-0.98533",
"gamma": "0.00182",
"theta": "-1.26275",
"vega": "0.00437",
"rho": "-0.00745"
},
{
"contractID": "IBM250124C00280000",
"symbol": "IBM",
"expiration": "2025-01-24",
"strike": "280.00",
"type": "call",
"last": "0.00",
"mark": "0.01",
"bid": "0.00",
"bid_size": "0",
"ask": "2.13",
"ask_size": "4",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "1.44221",
"delta": "0.00206",
"gamma": "0.00038",
"theta": "-0.20153",
"vega": "0.00076",
"rho": "0.00001"
},
{
"contractID": "IBM250124P00280000",
"symbol": "IBM",
"expiration": "2025-01-24",
"strike": "280.00",
"type": "put",
"last": "0.00",
"mark": "55.25",
"bid": "54.45",
"bid_size": "70",
"ask": "56.05",
"ask_size": "99",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "1.81110",
"delta": "-0.98832",
"gamma": "0.00143",
"theta": "-1.06605",
"vega": "0.00359",
"rho": "-0.00760"
},
{
"contractID": "IBM250124C00285000",
"symbol": "IBM",
"expiration": "2025-01-24",
"strike": "285.00",
"type": "call",
"last": "0.00",
"mark": "0.01",
"bid": "0.00",
"bid_size": "0",
"ask": "2.13",
"ask_size": "4",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "1.54647",
"delta": "0.00193",
"gamma": "0.00034",
"theta": "-0.20404",
"vega": "0.00072",
"rho": "0.00001"
},
{
"contractID": "IBM250124P00285000",
"symbol": "IBM",
"expiration": "2025-01-24",
"strike": "285.00",
"type": "put",
"last": "0.00",
"mark": "60.35",
"bid": "59.50",
"bid_size": "74",
"ask": "61.20",
"ask_size": "78",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "2.15606",
"delta": "-0.97958",
"gamma": "0.00194",
"theta": "-2.16053",
"vega": "0.00580",
"rho": "-0.00769"
},
{
"contractID": "IBM250124C00290000",
"symbol": "IBM",
"expiration": "2025-01-24",
"strike": "290.00",
"type": "call",
"last": "0.00",
"mark": "0.01",
"bid": "0.00",
"bid_size": "0",
"ask": "2.13",
"ask_size": "3",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "1.64815",
"delta": "0.00182",
"gamma": "0.00030",
"theta": "-0.20627",
"vega": "0.00069",
"rho": "0.00001"
},
{
"contractID": "IBM250124P00290000",
"symbol": "IBM",
"expiration": "2025-01-24",
"strike": "290.00",
"type": "put",
"last": "0.00",
"mark": "65.47",
"bid": "64.65",
"bid_size": "72",
"ask": "66.30",
"ask_size": "94",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "2.47053",
"delta": "-0.97153",
"gamma": "0.00224",
"theta": "-3.33294",
"vega": "0.00766",
"rho": "-0.00778"
},
{
"contractID": "IBM250124C00295000",
"symbol": "IBM",
"expiration": "2025-01-24",
"strike": "295.00",
"type": "call",
"last": "0.00",
"mark": "0.01",
"bid": "0.00",
"bid_size": "0",
"ask": "2.13",
"ask_size": "3",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "1.74753",
"delta": "0.00173",
"gamma": "0.00027",
"theta": "-0.20844",
"vega": "0.00065",
"rho": "0.00001"
},
{
"contractID": "IBM250124P00295000",
"symbol": "IBM",
"expiration": "2025-01-24",
"strike": "295.00",
"type": "put",
"last": "0.00",
"mark": "70.28",
"bid": "69.65",
"bid_size": "72",
"ask": "70.90",
"ask_size": "70",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "2.26627",
"delta": "-0.98715",
"gamma": "0.00124",
"theta": "-1.48638",
"vega": "0.00390",
"rho": "-0.00801"
},
{
"contractID": "IBM250124C00300000",
"symbol": "IBM",
"expiration": "2025-01-24",
"strike": "300.00",
"type": "call",
"last": "0.00",
"mark": "0.01",
"bid": "0.00",
"bid_size": "0",
"ask": "2.13",
"ask_size": "3",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "1.84464",
"delta": "0.00165",
"gamma": "0.00024",
"theta": "-0.21042",
"vega": "0.00062",
"rho": "0.00001"
},
{
"contractID": "IBM250124P00300000",
"symbol": "IBM",
"expiration": "2025-01-24",
"strike": "300.00",
"type": "put",
"last": "0.00",
"mark": "75.25",
"bid": "74.40",
"bid_size": "74",
"ask": "76.10",
"ask_size": "72",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "2.29889",
"delta": "-0.99028",
"gamma": "0.00096",
"theta": "-1.15439",
"vega": "0.00306",
"rho": "-0.00816"
},
{
"contractID": "IBM250124C00305000",
"symbol": "IBM",
"expiration": "2025-01-24",
"strike": "305.00",
"type": "call",
"last": "0.00",
"mark": "0.01",
"bid": "0.00",
"bid_size": "0",
"ask": "2.13",
"ask_size": "4",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "1.93960",
"delta": "0.00157",
"gamma": "0.00022",
"theta": "-0.21227",
"vega": "0.00060",
"rho": "0.00001"
},
{
"contractID": "IBM250124P00305000",
"symbol": "IBM",
"expiration": "2025-01-24",
"strike": "305.00",
"type": "put",
"last": "0.00",
"mark": "80.18",
"bid": "79.45",
"bid_size": "70",
"ask": "80.90",
"ask_size": "63",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "2.02451",
"delta": "-0.99764",
"gamma": "0.00031",
"theta": "-0.18885",
"vega": "0.00087",
"rho": "-0.00834"
},
{
"contractID": "IBM250131C00120000",
"symbol": "IBM",
"expiration": "2025-01-31",
"strike": "120.00",
"type": "call",
"last": "97.05",
"mark": "104.72",
"bid": "104.10",
"bid_size": "94",
"ask": "105.35",
"ask_size": "59",
"volume": "0",
"open_interest": "3",
"date": "2025-01-24",
"implied_volatility": "0.93530",
"delta": "1.00000",
"gamma": "0.00000",
"theta": "-0.05192",
"vega": "0.00000",
"rho": "0.02299"
},
{
"contractID": "IBM250131P00120000",
"symbol": "IBM",
"expiration": "2025-01-31",
"strike": "120.00",
"type": "put",
"last": "0.00",
"mark": "0.01",
"bid": "0.00",
"bid_size": "0",
"ask": "0.23",
"ask_size": "73",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "1.47879",
"delta": "-0.00076",
"gamma": "0.00006",
"theta": "-0.03124",
"vega": "0.00081",
"rho": "-0.00003"
},
{
"contractID": "IBM250131C00125000",
"symbol": "IBM",
"expiration": "2025-01-31",
"strike": "125.00",
"type": "call",
"last": "98.95",
"mark": "99.92",
"bid": "98.85",
"bid_size": "95",
"ask": "101.00",
"ask_size": "72",
"volume": "0",
"open_interest": "5",
"date": "2025-01-24",
"implied_volatility": "1.44769",
"delta": "0.99878",
"gamma": "0.00009",
"theta": "-0.10127",
"vega": "0.00125",
"rho": "0.02390"
},
{
"contractID": "IBM250131P00125000",
"symbol": "IBM",
"expiration": "2025-01-31",
"strike": "125.00",
"type": "put",
"last": "0.00",
"mark": "0.01",
"bid": "0.00",
"bid_size": "0",
"ask": "0.61",
"ask_size": "71",
"volume": "0",
"open_interest": "1",
"date": "2025-01-24",
"implied_volatility": "1.38809",
"delta": "-0.00081",
"gamma": "0.00006",
"theta": "-0.03105",
"vega": "0.00086",
"rho": "-0.00004"
},
{
"contractID": "IBM250131C00130000",
"symbol": "IBM",
"expiration": "2025-01-31",
"strike": "130.00",
"type": "call",
"last": "0.00",
"mark": "94.60",
"bid": "93.80",
"bid_size": "95",
"ask": "95.40",
"ask_size": "70",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.84605",
"delta": "1.00000",
"gamma": "0.00000",
"theta": "-0.05624",
"vega": "0.00000",
"rho": "0.02491"
},
{
"contractID": "IBM250131P00130000",
"symbol": "IBM",
"expiration": "2025-01-31",
"strike": "130.00",
"type": "put",
"last": "0.00",
"mark": "0.01",
"bid": "0.00",
"bid_size": "0",
"ask": "0.23",
"ask_size": "115",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "1.30090",
"delta": "-0.00086",
"gamma": "0.00007",
"theta": "-0.03087",
"vega": "0.00091",
"rho": "-0.00004"
},
{
"contractID": "IBM250131C00135000",
"symbol": "IBM",
"expiration": "2025-01-31",
"strike": "135.00",
"type": "call",
"last": "0.00",
"mark": "90.08",
"bid": "89.15",
"bid_size": "65",
"ask": "91.00",
"ask_size": "72",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "1.64113",
"delta": "0.99089",
"gamma": "0.00048",
"theta": "-0.38475",
"vega": "0.00765",
"rho": "0.02544"
},
{
"contractID": "IBM250131P00135000",
"symbol": "IBM",
"expiration": "2025-01-31",
"strike": "135.00",
"type": "put",
"last": "0.00",
"mark": "0.01",
"bid": "0.00",
"bid_size": "0",
"ask": "0.44",
"ask_size": "132",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "1.21675",
"delta": "-0.00092",
"gamma": "0.00008",
"theta": "-0.03065",
"vega": "0.00097",
"rho": "-0.00004"
},
{
"contractID": "IBM250131C00140000",
"symbol": "IBM",
"expiration": "2025-01-31",
"strike": "140.00",
"type": "call",
"last": "0.00",
"mark": "84.80",
"bid": "83.90",
"bid_size": "70",
"ask": "85.70",
"ask_size": "70",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.75681",
"delta": "1.00000",
"gamma": "0.00000",
"theta": "-0.06057",
"vega": "0.00000",
"rho": "0.02683"
},
{
"contractID": "IBM250131P00140000",
"symbol": "IBM",
"expiration": "2025-01-31",
"strike": "140.00",
"type": "put",
"last": "0.00",
"mark": "0.01",
"bid": "0.00",
"bid_size": "0",
"ask": "0.23",
"ask_size": "116",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "1.13535",
"delta": "-0.00098",
"gamma": "0.00009",
"theta": "-0.03039",
"vega": "0.00103",
"rho": "-0.00004"
},
{
"contractID": "IBM250131C00145000",
"symbol": "IBM",
"expiration": "2025-01-31",
"strike": "145.00",
"type": "call",
"last": "0.00",
"mark": "80.10",
"bid": "79.05",
"bid_size": "70",
"ask": "81.15",
"ask_size": "70",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "1.44663",
"delta": "0.98908",
"gamma": "0.00064",
"theta": "-0.39956",
"vega": "0.00896",
"rho": "0.02728"
},
{
"contractID": "IBM250131P00145000",
"symbol": "IBM",
"expiration": "2025-01-31",
"strike": "145.00",
"type": "put",
"last": "0.00",
"mark": "0.01",
"bid": "0.00",
"bid_size": "0",
"ask": "0.23",
"ask_size": "117",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "1.05670",
"delta": "-0.00105",
"gamma": "0.00011",
"theta": "-0.03014",
"vega": "0.00110",
"rho": "-0.00005"
},
{
"contractID": "IBM250131C00150000",
"symbol": "IBM",
"expiration": "2025-01-31",
"strike": "150.00",
"type": "call",
"last": "0.00",
"mark": "74.72",
"bid": "74.00",
"bid_size": "72",
"ask": "75.45",
"ask_size": "63",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.66756",
"delta": "1.00000",
"gamma": "0.00000",
"theta": "-0.06490",
"vega": "0.00000",
"rho": "0.02874"
},
{
"contractID": "IBM250131P00150000",
"symbol": "IBM",
"expiration": "2025-01-31",
"strike": "150.00",
"type": "put",
"last": "0.00",
"mark": "0.01",
"bid": "0.00",
"bid_size": "0",
"ask": "0.23",
"ask_size": "120",
"volume": "0",
"open_interest": "1",
"date": "2025-01-24",
"implied_volatility": "0.98048",
"delta": "-0.00113",
"gamma": "0.00012",
"theta": "-0.02987",
"vega": "0.00117",
"rho": "-0.00005"
},
{
"contractID": "IBM250131C00155000",
"symbol": "IBM",
"expiration": "2025-01-31",
"strike": "155.00",
"type": "call",
"last": "0.00",
"mark": "70.10",
"bid": "69.20",
"bid_size": "66",
"ask": "71.00",
"ask_size": "74",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "1.24130",
"delta": "0.98789",
"gamma": "0.00081",
"theta": "-0.38302",
"vega": "0.00980",
"rho": "0.02915"
},
{
"contractID": "IBM250131P00155000",
"symbol": "IBM",
"expiration": "2025-01-31",
"strike": "155.00",
"type": "put",
"last": "0.00",
"mark": "0.01",
"bid": "0.00",
"bid_size": "0",
"ask": "1.02",
"ask_size": "72",
"volume": "0",
"open_interest": "4",
"date": "2025-01-24",
"implied_volatility": "0.90655",
"delta": "-0.00122",
"gamma": "0.00014",
"theta": "-0.02959",
"vega": "0.00126",
"rho": "-0.00005"
},
{
"contractID": "IBM250131C00160000",
"symbol": "IBM",
"expiration": "2025-01-31",
"strike": "160.00",
"type": "call",
"last": "60.05",
"mark": "65.10",
"bid": "64.15",
"bid_size": "63",
"ask": "66.05",
"ask_size": "72",
"volume": "0",
"open_interest": "1",
"date": "2025-01-24",
"implied_volatility": "1.14328",
"delta": "0.98720",
"gamma": "0.00093",
"theta": "-0.37448",
"vega": "0.01029",
"rho": "0.03008"
},
{
"contractID": "IBM250131P00160000",
"symbol": "IBM",
"expiration": "2025-01-31",
"strike": "160.00",
"type": "put",
"last": "0.00",
"mark": "0.01",
"bid": "0.00",
"bid_size": "0",
"ask": "0.75",
"ask_size": "71",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.83460",
"delta": "-0.00132",
"gamma": "0.00017",
"theta": "-0.02926",
"vega": "0.00135",
"rho": "-0.00006"
},
{
"contractID": "IBM250131C00165000",
"symbol": "IBM",
"expiration": "2025-01-31",
"strike": "165.00",
"type": "call",
"last": "55.05",
"mark": "59.88",
"bid": "59.15",
"bid_size": "62",
"ask": "60.60",
"ask_size": "63",
"volume": "0",
"open_interest": "1",
"date": "2025-01-24",
"implied_volatility": "0.53369",
"delta": "1.00000",
"gamma": "0.00000",
"theta": "-0.07139",
"vega": "0.00000",
"rho": "0.03162"
},
{
"contractID": "IBM250131P00165000",
"symbol": "IBM",
"expiration": "2025-01-31",
"strike": "165.00",
"type": "put",
"last": "0.00",
"mark": "0.01",
"bid": "0.00",
"bid_size": "0",
"ask": "0.90",
"ask_size": "71",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.76463",
"delta": "-0.00143",
"gamma": "0.00020",
"theta": "-0.02893",
"vega": "0.00146",
"rho": "-0.00006"
},
{
"contractID": "IBM250131C00170000",
"symbol": "IBM",
"expiration": "2025-01-31",
"strike": "170.00",
"type": "call",
"last": "0.00",
"mark": "54.73",
"bid": "53.85",
"bid_size": "72",
"ask": "55.60",
"ask_size": "66",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.48907",
"delta": "1.00000",
"gamma": "0.00000",
"theta": "-0.07355",
"vega": "0.00000",
"rho": "0.03258"
},
{
"contractID": "IBM250131P00170000",
"symbol": "IBM",
"expiration": "2025-01-31",
"strike": "170.00",
"type": "put",
"last": "0.00",
"mark": "0.01",
"bid": "0.00",
"bid_size": "0",
"ask": "0.05",
"ask_size": "30",
"volume": "0",
"open_interest": "82",
"date": "2025-01-24",
"implied_volatility": "0.69649",
"delta": "-0.00157",
"gamma": "0.00023",
"theta": "-0.02860",
"vega": "0.00158",
"rho": "-0.00007"
},
{
"contractID": "IBM250131C00175000",
"symbol": "IBM",
"expiration": "2025-01-31",
"strike": "175.00",
"type": "call",
"last": "0.00",
"mark": "49.72",
"bid": "48.80",
"bid_size": "72",
"ask": "50.65",
"ask_size": "51",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.44445",
"delta": "1.00000",
"gamma": "0.00000",
"theta": "-0.07571",
"vega": "0.00000",
"rho": "0.03353"
},
{
"contractID": "IBM250131P00175000",
"symbol": "IBM",
"expiration": "2025-01-31",
"strike": "175.00",
"type": "put",
"last": "0.02",
"mark": "0.13",
"bid": "0.01",
"bid_size": "21",
"ask": "0.25",
"ask_size": "172",
"volume": "57",
"open_interest": "26",
"date": "2025-01-24",
"implied_volatility": "0.84359",
"delta": "-0.01358",
"gamma": "0.00132",
"theta": "-0.23668",
"vega": "0.01082",
"rho": "-0.00061"
},
{
"contractID": "IBM250131C00180000",
"symbol": "IBM",
"expiration": "2025-01-31",
"strike": "180.00",
"type": "call",
"last": "0.00",
"mark": "44.75",
"bid": "43.75",
"bid_size": "70",
"ask": "45.75",
"ask_size": "58",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.39982",
"delta": "1.00000",
"gamma": "0.00000",
"theta": "-0.07788",
"vega": "0.00000",
"rho": "0.03449"
},
{
"contractID": "IBM250131P00180000",
"symbol": "IBM",
"expiration": "2025-01-31",
"strike": "180.00",
"type": "put",
"last": "0.04",
"mark": "0.05",
"bid": "0.02",
"bid_size": "77",
"ask": "0.08",
"ask_size": "20",
"volume": "7",
"open_interest": "6",
"date": "2025-01-24",
"implied_volatility": "0.66997",
"delta": "-0.00713",
"gamma": "0.00095",
"theta": "-0.10694",
"vega": "0.00616",
"rho": "-0.00032"
},
{
"contractID": "IBM250131C00185000",
"symbol": "IBM",
"expiration": "2025-01-31",
"strike": "185.00",
"type": "call",
"last": "40.60",
"mark": "39.92",
"bid": "38.95",
"bid_size": "72",
"ask": "40.90",
"ask_size": "71",
"volume": "4",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.35520",
"delta": "1.00000",
"gamma": "0.00000",
"theta": "-0.08004",
"vega": "0.00000",
"rho": "0.03545"
},
{
"contractID": "IBM250131P00185000",
"symbol": "IBM",
"expiration": "2025-01-31",
"strike": "185.00",
"type": "put",
"last": "0.08",
"mark": "0.16",
"bid": "0.03",
"bid_size": "144",
"ask": "0.30",
"ask_size": "211",
"volume": "23",
"open_interest": "19",
"date": "2025-01-24",
"implied_volatility": "0.70046",
"delta": "-0.01942",
"gamma": "0.00217",
"theta": "-0.26654",
"vega": "0.01470",
"rho": "-0.00087"
},
{
"contractID": "IBM250131C00190000",
"symbol": "IBM",
"expiration": "2025-01-31",
"strike": "190.00",
"type": "call",
"last": "0.00",
"mark": "35.08",
"bid": "34.15",
"bid_size": "76",
"ask": "36.00",
"ask_size": "63",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.59253",
"delta": "0.98217",
"gamma": "0.00238",
"theta": "-0.29159",
"vega": "0.01367",
"rho": "0.03562"
},
{
"contractID": "IBM250131P00190000",
"symbol": "IBM",
"expiration": "2025-01-31",
"strike": "190.00",
"type": "put",
"last": "0.14",
"mark": "0.16",
"bid": "0.07",
"bid_size": "137",
"ask": "0.25",
"ask_size": "181",
"volume": "1",
"open_interest": "163",
"date": "2025-01-24",
"implied_volatility": "0.61768",
"delta": "-0.02176",
"gamma": "0.00270",
"theta": "-0.25853",
"vega": "0.01619",
"rho": "-0.00097"
},
{
"contractID": "IBM250131C00192500",
"symbol": "IBM",
"expiration": "2025-01-31",
"strike": "192.50",
"type": "call",
"last": "0.00",
"mark": "32.60",
"bid": "32.05",
"bid_size": "35",
"ask": "33.15",
"ask_size": "12",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.56479",
"delta": "0.97897",
"gamma": "0.00287",
"theta": "-0.31278",
"vega": "0.01573",
"rho": "0.03595"
},
{
"contractID": "IBM250131P00192500",
"symbol": "IBM",
"expiration": "2025-01-31",
"strike": "192.50",
"type": "put",
"last": "0.20",
"mark": "0.20",
"bid": "0.11",
"bid_size": "106",
"ask": "0.30",
"ask_size": "125",
"volume": "8",
"open_interest": "14",
"date": "2025-01-24",
"implied_volatility": "0.59863",
"delta": "-0.02727",
"gamma": "0.00337",
"theta": "-0.30262",
"vega": "0.01957",
"rho": "-0.00121"
},
{
"contractID": "IBM250131C00195000",
"symbol": "IBM",
"expiration": "2025-01-31",
"strike": "195.00",
"type": "call",
"last": "0.00",
"mark": "30.27",
"bid": "29.55",
"bid_size": "37",
"ask": "31.00",
"ask_size": "40",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.60244",
"delta": "0.96048",
"gamma": "0.00455",
"theta": "-0.49765",
"vega": "0.02657",
"rho": "0.03560"
},
{
"contractID": "IBM250131P00195000",
"symbol": "IBM",
"expiration": "2025-01-31",
"strike": "195.00",
"type": "put",
"last": "0.25",
"mark": "0.33",
"bid": "0.31",
"bid_size": "20",
"ask": "0.36",
"ask_size": "94",
"volume": "37",
"open_interest": "745",
"date": "2025-01-24",
"implied_volatility": "0.61052",
"delta": "-0.04145",
"gamma": "0.00467",
"theta": "-0.43533",
"vega": "0.02761",
"rho": "-0.00185"
},
{
"contractID": "IBM250131C00197500",
"symbol": "IBM",
"expiration": "2025-01-31",
"strike": "197.50",
"type": "call",
"last": "0.00",
"mark": "28.00",
"bid": "27.40",
"bid_size": "12",
"ask": "28.60",
"ask_size": "27",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.62729",
"delta": "0.93863",
"gamma": "0.00621",
"theta": "-0.69650",
"vega": "0.03774",
"rho": "0.03510"
},
{
"contractID": "IBM250131P00197500",
"symbol": "IBM",
"expiration": "2025-01-31",
"strike": "197.50",
"type": "put",
"last": "0.35",
"mark": "0.41",
"bid": "0.35",
"bid_size": "63",
"ask": "0.46",
"ask_size": "40",
"volume": "2",
"open_interest": "68",
"date": "2025-01-24",
"implied_volatility": "0.59162",
"delta": "-0.05140",
"gamma": "0.00572",
"theta": "-0.50111",
"vega": "0.03282",
"rho": "-0.00229"
},
{
"contractID": "IBM250131C00200000",
"symbol": "IBM",
"expiration": "2025-01-31",
"strike": "200.00",
"type": "call",
"last": "26.48",
"mark": "25.38",
"bid": "24.70",
"bid_size": "41",
"ask": "26.05",
"ask_size": "13",
"volume": "2",
"open_interest": "69",
"date": "2025-01-24",
"implied_volatility": "0.54665",
"delta": "0.94441",
"gamma": "0.00659",
"theta": "-0.57865",
"vega": "0.03492",
"rho": "0.03585"
},
{
"contractID": "IBM250131P00200000",
"symbol": "IBM",
"expiration": "2025-01-31",
"strike": "200.00",
"type": "put",
"last": "0.60",
"mark": "0.41",
"bid": "0.16",
"bid_size": "260",
"ask": "0.65",
"ask_size": "82",
"volume": "102",
"open_interest": "674",
"date": "2025-01-24",
"implied_volatility": "0.54543",
"delta": "-0.05521",
"gamma": "0.00657",
"theta": "-0.48837",
"vega": "0.03473",
"rho": "-0.00246"
},
{
"contractID": "IBM250131C00202500",
"symbol": "IBM",
"expiration": "2025-01-31",
"strike": "202.50",
"type": "call",
"last": "16.38",
"mark": "23.15",
"bid": "22.80",
"bid_size": "12",
"ask": "23.50",
"ask_size": "12",
"volume": "0",
"open_interest": "5",
"date": "2025-01-24",
"implied_volatility": "0.56372",
"delta": "0.91742",
"gamma": "0.00868",
"theta": "-0.77599",
"vega": "0.04741",
"rho": "0.03511"
},
{
"contractID": "IBM250131P00202500",
"symbol": "IBM",
"expiration": "2025-01-31",
"strike": "202.50",
"type": "put",
"last": "0.78",
"mark": "0.78",
"bid": "0.69",
"bid_size": "55",
"ask": "0.87",
"ask_size": "6",
"volume": "69",
"open_interest": "119",
"date": "2025-01-24",
"implied_volatility": "0.58369",
"delta": "-0.08961",
"gamma": "0.00891",
"theta": "-0.75781",
"vega": "0.05039",
"rho": "-0.00401"
},
{
"contractID": "IBM250131C00205000",
"symbol": "IBM",
"expiration": "2025-01-31",
"strike": "205.00",
"type": "call",
"last": "21.25",
"mark": "20.92",
"bid": "19.95",
"bid_size": "59",
"ask": "21.90",
"ask_size": "60",
"volume": "0",
"open_interest": "19",
"date": "2025-01-24",
"implied_volatility": "0.56281",
"delta": "0.89114",
"gamma": "0.01065",
"theta": "-0.93024",
"vega": "0.05810",
"rho": "0.03441"
},
{
"contractID": "IBM250131P00205000",
"symbol": "IBM",
"expiration": "2025-01-31",
"strike": "205.00",
"type": "put",
"last": "1.03",
"mark": "1.15",
"bid": "0.96",
"bid_size": "48",
"ask": "1.34",
"ask_size": "40",
"volume": "90",
"open_interest": "235",
"date": "2025-01-24",
"implied_volatility": "0.59589",
"delta": "-0.12128",
"gamma": "0.01086",
"theta": "-0.96242",
"vega": "0.06274",
"rho": "-0.00545"
},
{
"contractID": "IBM250131C00207500",
"symbol": "IBM",
"expiration": "2025-01-31",
"strike": "207.50",
"type": "call",
"last": "19.95",
"mark": "18.67",
"bid": "18.45",
"bid_size": "50",
"ask": "18.90",
"ask_size": "20",
"volume": "0",
"open_interest": "58",
"date": "2025-01-24",
"implied_volatility": "0.54756",
"delta": "0.86540",
"gamma": "0.01271",
"theta": "-1.03910",
"vega": "0.06745",
"rho": "0.03373"
},
{
"contractID": "IBM250131P00207500",
"symbol": "IBM",
"expiration": "2025-01-31",
"strike": "207.50",
"type": "put",
"last": "1.49",
"mark": "1.41",
"bid": "1.24",
"bid_size": "12",
"ask": "1.57",
"ask_size": "40",
"volume": "26",
"open_interest": "72",
"date": "2025-01-24",
"implied_volatility": "0.57805",
"delta": "-0.14669",
"gamma": "0.01276",
"theta": "-1.06279",
"vega": "0.07151",
"rho": "-0.00659"
},
{
"contractID": "IBM250131C00210000",
"symbol": "IBM",
"expiration": "2025-01-31",
"strike": "210.00",
"type": "call",
"last": "17.76",
"mark": "16.62",
"bid": "16.40",
"bid_size": "51",
"ask": "16.85",
"ask_size": "30",
"volume": "1",
"open_interest": "37",
"date": "2025-01-24",
"implied_volatility": "0.55000",
"delta": "0.82719",
"gamma": "0.01493",
"theta": "-1.21486",
"vega": "0.07961",
"rho": "0.03247"
},
{
"contractID": "IBM250131P00210000",
"symbol": "IBM",
"expiration": "2025-01-31",
"strike": "210.00",
"type": "put",
"last": "1.89",
"mark": "1.82",
"bid": "1.71",
"bid_size": "12",
"ask": "1.94",
"ask_size": "1",
"volume": "129",
"open_interest": "2712",
"date": "2025-01-24",
"implied_volatility": "0.57165",
"delta": "-0.18132",
"gamma": "0.01481",
"theta": "-1.20461",
"vega": "0.08206",
"rho": "-0.00817"
},
{
"contractID": "IBM250131C00212500",
"symbol": "IBM",
"expiration": "2025-01-31",
"strike": "212.50",
"type": "call",
"last": "16.21",
"mark": "14.82",
"bid": "14.40",
"bid_size": "50",
"ask": "15.25",
"ask_size": "50",
"volume": "3",
"open_interest": "23",
"date": "2025-01-24",
"implied_volatility": "0.56753",
"delta": "0.77810",
"gamma": "0.01684",
"theta": "-1.43994",
"vega": "0.09263",
"rho": "0.03070"
},
{
"contractID": "IBM250131P00212500",
"symbol": "IBM",
"expiration": "2025-01-31",
"strike": "212.50",
"type": "put",
"last": "2.58",
"mark": "2.40",
"bid": "2.30",
"bid_size": "1",
"ask": "2.50",
"ask_size": "31",
"volume": "80",
"open_interest": "127",
"date": "2025-01-24",
"implied_volatility": "0.57363",
"delta": "-0.22407",
"gamma": "0.01676",
"theta": "-1.37022",
"vega": "0.09315",
"rho": "-0.01012"
},
{
"contractID": "IBM250131C00215000",
"symbol": "IBM",
"expiration": "2025-01-31",
"strike": "215.00",
"type": "call",
"last": "12.77",
"mark": "12.78",
"bid": "12.00",
"bid_size": "386",
"ask": "13.55",
"ask_size": "75",
"volume": "22",
"open_interest": "139",
"date": "2025-01-24",
"implied_volatility": "0.54619",
"delta": "0.73829",
"gamma": "0.01914",
"theta": "-1.50913",
"vega": "0.10132",
"rho": "0.02938"
},
{
"contractID": "IBM250131P00215000",
"symbol": "IBM",
"expiration": "2025-01-31",
"strike": "215.00",
"type": "put",
"last": "3.24",
"mark": "3.02",
"bid": "2.89",
"bid_size": "40",
"ask": "3.15",
"ask_size": "1",
"volume": "116",
"open_interest": "389",
"date": "2025-01-24",
"implied_volatility": "0.56768",
"delta": "-0.26867",
"gamma": "0.01866",
"theta": "-1.49224",
"vega": "0.10268",
"rho": "-0.01216"
},
{
"contractID": "IBM250131C00217500",
"symbol": "IBM",
"expiration": "2025-01-31",
"strike": "217.50",
"type": "call",
"last": "11.29",
"mark": "10.90",
"bid": "10.40",
"bid_size": "113",
"ask": "11.40",
"ask_size": "20",
"volume": "3",
"open_interest": "37",
"date": "2025-01-24",
"implied_volatility": "0.53110",
"delta": "0.69037",
"gamma": "0.02133",
"theta": "-1.58244",
"vega": "0.10977",
"rho": "0.02767"
},
{
"contractID": "IBM250131P00217500",
"symbol": "IBM",
"expiration": "2025-01-31",
"strike": "217.50",
"type": "put",
"last": "4.11",
"mark": "3.90",
"bid": "3.75",
"bid_size": "20",
"ask": "4.05",
"ask_size": "30",
"volume": "77",
"open_interest": "121",
"date": "2025-01-24",
"implied_volatility": "0.57454",
"delta": "-0.32092",
"gamma": "0.02002",
"theta": "-1.63670",
"vega": "0.11146",
"rho": "-0.01458"
},
{
"contractID": "IBM250131C00220000",
"symbol": "IBM",
"expiration": "2025-01-31",
"strike": "220.00",
"type": "call",
"last": "9.45",
"mark": "9.97",
"bid": "9.25",
"bid_size": "161",
"ask": "10.70",
"ask_size": "198",
"volume": "67",
"open_interest": "230",
"date": "2025-01-24",
"implied_volatility": "0.58689",
"delta": "0.62416",
"gamma": "0.02077",
"theta": "-1.86399",
"vega": "0.11813",
"rho": "0.02500"
},
{
"contractID": "IBM250131P00220000",
"symbol": "IBM",
"expiration": "2025-01-31",
"strike": "220.00",
"type": "put",
"last": "5.06",
"mark": "4.85",
"bid": "4.70",
"bid_size": "27",
"ask": "5.00",
"ask_size": "2",
"volume": "77",
"open_interest": "357",
"date": "2025-01-24",
"implied_volatility": "0.57531",
"delta": "-0.37404",
"gamma": "0.02116",
"theta": "-1.73068",
"vega": "0.11795",
"rho": "-0.01706"
},
{
"contractID": "IBM250131C00222500",
"symbol": "IBM",
"expiration": "2025-01-31",
"strike": "222.50",
"type": "call",
"last": "8.29",
"mark": "8.45",
"bid": "8.10",
"bid_size": "2",
"ask": "8.80",
"ask_size": "1",
"volume": "33",
"open_interest": "224",
"date": "2025-01-24",
"implied_volatility": "0.57820",
"delta": "0.57097",
"gamma": "0.02181",
"theta": "-1.89442",
"vega": "0.12223",
"rho": "0.02300"
},
{
"contractID": "IBM250131P00222500",
"symbol": "IBM",
"expiration": "2025-01-31",
"strike": "222.50",
"type": "put",
"last": "6.19",
"mark": "5.88",
"bid": "5.65",
"bid_size": "41",
"ask": "6.10",
"ask_size": "28",
"volume": "51",
"open_interest": "291",
"date": "2025-01-24",
"implied_volatility": "0.57119",
"delta": "-0.42855",
"gamma": "0.02207",
"theta": "-1.77550",
"vega": "0.12220",
"rho": "-0.01960"
},
{
"contractID": "IBM250131C00225000",
"symbol": "IBM",
"expiration": "2025-01-31",
"strike": "225.00",
"type": "call",
"last": "7.01",
"mark": "7.03",
"bid": "6.90",
"bid_size": "26",
"ask": "7.15",
"ask_size": "19",
"volume": "245",
"open_interest": "412",
"date": "2025-01-24",
"implied_volatility": "0.56677",
"delta": "0.51535",
"gamma": "0.02259",
"theta": "-1.88095",
"vega": "0.12410",
"rho": "0.02087"
},
{
"contractID": "IBM250131P00225000",
"symbol": "IBM",
"expiration": "2025-01-31",
"strike": "225.00",
"type": "put",
"last": "7.51",
"mark": "7.22",
"bid": "6.95",
"bid_size": "21",
"ask": "7.50",
"ask_size": "22",
"volume": "104",
"open_interest": "404",
"date": "2025-01-24",
"implied_volatility": "0.58095",
"delta": "-0.48425",
"gamma": "0.02204",
"theta": "-1.82936",
"vega": "0.12410",
"rho": "-0.02226"
},
{
"contractID": "IBM250131C00227500",
"symbol": "IBM",
"expiration": "2025-01-31",
"strike": "227.50",
"type": "call",
"last": "5.84",
"mark": "5.90",
"bid": "5.75",
"bid_size": "31",
"ask": "6.05",
"ask_size": "30",
"volume": "157",
"open_interest": "125",
"date": "2025-01-24",
"implied_volatility": "0.56738",
"delta": "0.45934",
"gamma": "0.02247",
"theta": "-1.86977",
"vega": "0.12355",
"rho": "0.01867"
},
{
"contractID": "IBM250131P00227500",
"symbol": "IBM",
"expiration": "2025-01-31",
"strike": "227.50",
"type": "put",
"last": "9.00",
"mark": "8.50",
"bid": "8.20",
"bid_size": "50",
"ask": "8.80",
"ask_size": "50",
"volume": "53",
"open_interest": "48",
"date": "2025-01-24",
"implied_volatility": "0.57470",
"delta": "-0.53974",
"gamma": "0.02219",
"theta": "-1.79539",
"vega": "0.12358",
"rho": "-0.02490"
},
{
"contractID": "IBM250131C00230000",
"symbol": "IBM",
"expiration": "2025-01-31",
"strike": "230.00",
"type": "call",
"last": "4.95",
"mark": "4.88",
"bid": "4.75",
"bid_size": "30",
"ask": "5.00",
"ask_size": "50",
"volume": "299",
"open_interest": "460",
"date": "2025-01-24",
"implied_volatility": "0.56601",
"delta": "0.40441",
"gamma": "0.02199",
"theta": "-1.81710",
"vega": "0.12061",
"rho": "0.01650"
},
{
"contractID": "IBM250131P00230000",
"symbol": "IBM",
"expiration": "2025-01-31",
"strike": "230.00",
"type": "put",
"last": "9.95",
"mark": "9.97",
"bid": "9.70",
"bid_size": "13",
"ask": "10.25",
"ask_size": "56",
"volume": "30",
"open_interest": "69",
"date": "2025-01-24",
"implied_volatility": "0.57271",
"delta": "-0.59414",
"gamma": "0.02175",
"theta": "-1.74042",
"vega": "0.12072",
"rho": "-0.02753"
},
{
"contractID": "IBM250131C00232500",
"symbol": "IBM",
"expiration": "2025-01-31",
"strike": "232.50",
"type": "call",
"last": "3.97",
"mark": "3.95",
"bid": "3.80",
"bid_size": "45",
"ask": "4.10",
"ask_size": "132",
"volume": "61",
"open_interest": "57",
"date": "2025-01-24",
"implied_volatility": "0.56082",
"delta": "0.35045",
"gamma": "0.02122",
"theta": "-1.71920",
"vega": "0.11536",
"rho": "0.01435"
},
{
"contractID": "IBM250131P00232500",
"symbol": "IBM",
"expiration": "2025-01-31",
"strike": "232.50",
"type": "put",
"last": "10.75",
"mark": "11.78",
"bid": "11.25",
"bid_size": "46",
"ask": "12.30",
"ask_size": "97",
"volume": "2",
"open_interest": "26",
"date": "2025-01-24",
"implied_volatility": "0.58872",
"delta": "-0.64138",
"gamma": "0.02039",
"theta": "-1.71774",
"vega": "0.11631",
"rho": "-0.02991"
},
{
"contractID": "IBM250131C00235000",
"symbol": "IBM",
"expiration": "2025-01-31",
"strike": "235.00",
"type": "call",
"last": "3.21",
"mark": "3.20",
"bid": "3.10",
"bid_size": "40",
"ask": "3.30",
"ask_size": "65",
"volume": "309",
"open_interest": "281",
"date": "2025-01-24",
"implied_volatility": "0.56037",
"delta": "0.30073",
"gamma": "0.01995",
"theta": "-1.61098",
"vega": "0.10836",
"rho": "0.01235"
},
{
"contractID": "IBM250131P00235000",
"symbol": "IBM",
"expiration": "2025-01-31",
"strike": "235.00",
"type": "put",
"last": "0.00",
"mark": "13.65",
"bid": "13.15",
"bid_size": "37",
"ask": "14.15",
"ask_size": "50",
"volume": "0",
"open_interest": "25",
"date": "2025-01-24",
"implied_volatility": "0.60092",
"delta": "-0.68497",
"gamma": "0.01899",
"theta": "-1.66007",
"vega": "0.11059",
"rho": "-0.03215"
},
{
"contractID": "IBM250131C00237500",
"symbol": "IBM",
"expiration": "2025-01-31",
"strike": "237.50",
"type": "call",
"last": "2.55",
"mark": "2.54",
"bid": "2.29",
"bid_size": "225",
"ask": "2.79",
"ask_size": "287",
"volume": "114",
"open_interest": "73",
"date": "2025-01-24",
"implied_volatility": "0.55732",
"delta": "0.25376",
"gamma": "0.01846",
"theta": "-1.47241",
"vega": "0.09971",
"rho": "0.01045"
},
{
"contractID": "IBM250131P00237500",
"symbol": "IBM",
"expiration": "2025-01-31",
"strike": "237.50",
"type": "put",
"last": "15.35",
"mark": "15.07",
"bid": "14.70",
"bid_size": "50",
"ask": "15.45",
"ask_size": "51",
"volume": "2",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.56006",
"delta": "-0.74508",
"gamma": "0.01841",
"theta": "-1.38039",
"vega": "0.09995",
"rho": "-0.03501"
},
{
"contractID": "IBM250131C00240000",
"symbol": "IBM",
"expiration": "2025-01-31",
"strike": "240.00",
"type": "call",
"last": "2.16",
"mark": "1.98",
"bid": "1.88",
"bid_size": "56",
"ask": "2.09",
"ask_size": "31",
"volume": "266",
"open_interest": "1005",
"date": "2025-01-24",
"implied_volatility": "0.55336",
"delta": "0.21051",
"gamma": "0.01675",
"theta": "-1.31587",
"vega": "0.08985",
"rho": "0.00870"
},
{
"contractID": "IBM250131P00240000",
"symbol": "IBM",
"expiration": "2025-01-31",
"strike": "240.00",
"type": "put",
"last": "0.00",
"mark": "17.40",
"bid": "16.60",
"bid_size": "62",
"ask": "18.20",
"ask_size": "80",
"volume": "0",
"open_interest": "7",
"date": "2025-01-24",
"implied_volatility": "0.59863",
"delta": "-0.76967",
"gamma": "0.01631",
"theta": "-1.39407",
"vega": "0.09461",
"rho": "-0.03652"
},
{
"contractID": "IBM250131C00242500",
"symbol": "IBM",
"expiration": "2025-01-31",
"strike": "242.50",
"type": "call",
"last": "1.56",
"mark": "1.63",
"bid": "1.43",
"bid_size": "59",
"ask": "1.83",
"ask_size": "304",
"volume": "51",
"open_interest": "116",
"date": "2025-01-24",
"implied_volatility": "0.56296",
"delta": "0.17813",
"gamma": "0.01487",
"theta": "-1.20773",
"vega": "0.08115",
"rho": "0.00737"
},
{
"contractID": "IBM250131P00242500",
"symbol": "IBM",
"expiration": "2025-01-31",
"strike": "242.50",
"type": "put",
"last": "0.00",
"mark": "19.43",
"bid": "19.05",
"bid_size": "13",
"ask": "19.80",
"ask_size": "40",
"volume": "0",
"open_interest": "6",
"date": "2025-01-24",
"implied_volatility": "0.59909",
"delta": "-0.80567",
"gamma": "0.01475",
"theta": "-1.25099",
"vega": "0.08565",
"rho": "-0.03846"
},
{
"contractID": "IBM250131C00245000",
"symbol": "IBM",
"expiration": "2025-01-31",
"strike": "245.00",
"type": "call",
"last": "1.27",
"mark": "1.15",
"bid": "1.00",
"bid_size": "314",
"ask": "1.30",
"ask_size": "40",
"volume": "380",
"open_interest": "633",
"date": "2025-01-24",
"implied_volatility": "0.54558",
"delta": "0.13783",
"gamma": "0.01297",
"theta": "-0.98812",
"vega": "0.06856",
"rho": "0.00572"
},
{
"contractID": "IBM250131P00245000",
"symbol": "IBM",
"expiration": "2025-01-31",
"strike": "245.00",
"type": "put",
"last": "0.00",
"mark": "21.58",
"bid": "20.85",
"bid_size": "51",
"ask": "22.30",
"ask_size": "55",
"volume": "0",
"open_interest": "3",
"date": "2025-01-24",
"implied_volatility": "0.60488",
"delta": "-0.83533",
"gamma": "0.01317",
"theta": "-1.12647",
"vega": "0.07718",
"rho": "-0.04015"
},
{
"contractID": "IBM250131C00247500",
"symbol": "IBM",
"expiration": "2025-01-31",
"strike": "247.50",
"type": "call",
"last": "0.97",
"mark": "0.89",
"bid": "0.76",
"bid_size": "215",
"ask": "1.02",
"ask_size": "105",
"volume": "63",
"open_interest": "77",
"date": "2025-01-24",
"implied_volatility": "0.54756",
"delta": "0.11128",
"gamma": "0.01112",
"theta": "-0.85306",
"vega": "0.05902",
"rho": "0.00463"
},
{
"contractID": "IBM250131P00247500",
"symbol": "IBM",
"expiration": "2025-01-31",
"strike": "247.50",
"type": "put",
"last": "0.00",
"mark": "24.00",
"bid": "23.35",
"bid_size": "14",
"ask": "24.65",
"ask_size": "54",
"volume": "0",
"open_interest": "2",
"date": "2025-01-24",
"implied_volatility": "0.64040",
"delta": "-0.84873",
"gamma": "0.01176",
"theta": "-1.12568",
"vega": "0.07299",
"rho": "-0.04119"
},
{
"contractID": "IBM250131C00250000",
"symbol": "IBM",
"expiration": "2025-01-31",
"strike": "250.00",
"type": "call",
"last": "0.73",
"mark": "0.71",
"bid": "0.63",
"bid_size": "62",
"ask": "0.79",
"ask_size": "86",
"volume": "79",
"open_interest": "1022",
"date": "2025-01-24",
"implied_volatility": "0.55488",
"delta": "0.09119",
"gamma": "0.00949",
"theta": "-0.74708",
"vega": "0.05105",
"rho": "0.00380"
},
{
"contractID": "IBM250131P00250000",
"symbol": "IBM",
"expiration": "2025-01-31",
"strike": "250.00",
"type": "put",
"last": "0.00",
"mark": "26.02",
"bid": "25.50",
"bid_size": "12",
"ask": "26.55",
"ask_size": "16",
"volume": "0",
"open_interest": "2",
"date": "2025-01-24",
"implied_volatility": "0.61189",
"delta": "-0.88526",
"gamma": "0.01017",
"theta": "-0.86499",
"vega": "0.06033",
"rho": "-0.04316"
},
{
"contractID": "IBM250131C00252500",
"symbol": "IBM",
"expiration": "2025-01-31",
"strike": "252.50",
"type": "call",
"last": "0.59",
"mark": "0.55",
"bid": "0.49",
"bid_size": "12",
"ask": "0.61",
"ask_size": "59",
"volume": "1",
"open_interest": "140",
"date": "2025-01-24",
"implied_volatility": "0.55854",
"delta": "0.07313",
"gamma": "0.00799",
"theta": "-0.63634",
"vega": "0.04323",
"rho": "0.00305"
},
{
"contractID": "IBM250131P00252500",
"symbol": "IBM",
"expiration": "2025-01-31",
"strike": "252.50",
"type": "put",
"last": "0.00",
"mark": "28.33",
"bid": "27.80",
"bid_size": "12",
"ask": "28.85",
"ask_size": "14",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.61860",
"delta": "-0.90387",
"gamma": "0.00885",
"theta": "-0.75580",
"vega": "0.05308",
"rho": "-0.04440"
},
{
"contractID": "IBM250131C00255000",
"symbol": "IBM",
"expiration": "2025-01-31",
"strike": "255.00",
"type": "call",
"last": "0.45",
"mark": "0.44",
"bid": "0.40",
"bid_size": "1",
"ask": "0.48",
"ask_size": "88",
"volume": "15",
"open_interest": "184",
"date": "2025-01-24",
"implied_volatility": "0.56647",
"delta": "0.05973",
"gamma": "0.00673",
"theta": "-0.55138",
"vega": "0.03695",
"rho": "0.00249"
},
{
"contractID": "IBM250131P00255000",
"symbol": "IBM",
"expiration": "2025-01-31",
"strike": "255.00",
"type": "put",
"last": "0.00",
"mark": "30.67",
"bid": "30.15",
"bid_size": "34",
"ask": "31.20",
"ask_size": "13",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.62439",
"delta": "-0.91998",
"gamma": "0.00765",
"theta": "-0.65072",
"vega": "0.04629",
"rho": "-0.04554"
},
{
"contractID": "IBM250131C00257500",
"symbol": "IBM",
"expiration": "2025-01-31",
"strike": "257.50",
"type": "call",
"last": "0.33",
"mark": "0.27",
"bid": "0.16",
"bid_size": "248",
"ask": "0.38",
"ask_size": "131",
"volume": "147",
"open_interest": "54",
"date": "2025-01-24",
"implied_volatility": "0.54619",
"delta": "0.04035",
"gamma": "0.00510",
"theta": "-0.38851",
"vega": "0.02702",
"rho": "0.00169"
},
{
"contractID": "IBM250131P00257500",
"symbol": "IBM",
"expiration": "2025-01-31",
"strike": "257.50",
"type": "put",
"last": "0.00",
"mark": "32.97",
"bid": "32.30",
"bid_size": "55",
"ask": "33.65",
"ask_size": "12",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.61250",
"delta": "-0.93930",
"gamma": "0.00630",
"theta": "-0.49191",
"vega": "0.03742",
"rho": "-0.04682"
},
{
"contractID": "IBM250131C00260000",
"symbol": "IBM",
"expiration": "2025-01-31",
"strike": "260.00",
"type": "call",
"last": "0.29",
"mark": "0.33",
"bid": "0.20",
"bid_size": "136",
"ask": "0.45",
"ask_size": "542",
"volume": "3",
"open_interest": "52",
"date": "2025-01-24",
"implied_volatility": "0.59924",
"delta": "0.04443",
"gamma": "0.00503",
"theta": "-0.46047",
"vega": "0.02921",
"rho": "0.00185"
},
{
"contractID": "IBM250131P00260000",
"symbol": "IBM",
"expiration": "2025-01-31",
"strike": "260.00",
"type": "put",
"last": "0.00",
"mark": "35.42",
"bid": "34.75",
"bid_size": "45",
"ask": "36.10",
"ask_size": "29",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.63262",
"delta": "-0.94599",
"gamma": "0.00557",
"theta": "-0.45560",
"vega": "0.03414",
"rho": "-0.04758"
},
{
"contractID": "IBM250131C00262500",
"symbol": "IBM",
"expiration": "2025-01-31",
"strike": "262.50",
"type": "call",
"last": "0.20",
"mark": "0.17",
"bid": "0.11",
"bid_size": "149",
"ask": "0.24",
"ask_size": "198",
"volume": "20",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.56281",
"delta": "0.02621",
"gamma": "0.00347",
"theta": "-0.28027",
"vega": "0.01893",
"rho": "0.00110"
},
{
"contractID": "IBM250131P00262500",
"symbol": "IBM",
"expiration": "2025-01-31",
"strike": "262.50",
"type": "put",
"last": "0.00",
"mark": "37.85",
"bid": "37.20",
"bid_size": "46",
"ask": "38.50",
"ask_size": "12",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.64375",
"delta": "-0.95403",
"gamma": "0.00481",
"theta": "-0.39461",
"vega": "0.03002",
"rho": "-0.04839"
},
{
"contractID": "IBM250131C00265000",
"symbol": "IBM",
"expiration": "2025-01-31",
"strike": "265.00",
"type": "call",
"last": "0.32",
"mark": "0.18",
"bid": "0.08",
"bid_size": "112",
"ask": "0.29",
"ask_size": "494",
"volume": "0",
"open_interest": "40",
"date": "2025-01-24",
"implied_volatility": "0.59665",
"delta": "0.02621",
"gamma": "0.00327",
"theta": "-0.29688",
"vega": "0.01893",
"rho": "0.00110"
},
{
"contractID": "IBM250131P00265000",
"symbol": "IBM",
"expiration": "2025-01-31",
"strike": "265.00",
"type": "put",
"last": "0.00",
"mark": "40.35",
"bid": "39.70",
"bid_size": "47",
"ask": "41.00",
"ask_size": "29",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.67576",
"delta": "-0.95565",
"gamma": "0.00445",
"theta": "-0.40330",
"vega": "0.02916",
"rho": "-0.04894"
},
{
"contractID": "IBM250131C00267500",
"symbol": "IBM",
"expiration": "2025-01-31",
"strike": "267.50",
"type": "call",
"last": "0.00",
"mark": "0.20",
"bid": "0.07",
"bid_size": "140",
"ask": "0.32",
"ask_size": "587",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.63552",
"delta": "0.02727",
"gamma": "0.00318",
"theta": "-0.32673",
"vega": "0.01956",
"rho": "0.00114"
},
{
"contractID": "IBM250131P00267500",
"symbol": "IBM",
"expiration": "2025-01-31",
"strike": "267.50",
"type": "put",
"last": "0.00",
"mark": "42.90",
"bid": "42.10",
"bid_size": "64",
"ask": "43.70",
"ask_size": "70",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.72424",
"delta": "-0.95308",
"gamma": "0.00435",
"theta": "-0.46480",
"vega": "0.03051",
"rho": "-0.04932"
},
{
"contractID": "IBM250131C00270000",
"symbol": "IBM",
"expiration": "2025-01-31",
"strike": "270.00",
"type": "call",
"last": "0.09",
"mark": "0.07",
"bid": "0.05",
"bid_size": "42",
"ask": "0.09",
"ask_size": "5",
"volume": "27",
"open_interest": "3",
"date": "2025-01-24",
"implied_volatility": "0.57104",
"delta": "0.01170",
"gamma": "0.00172",
"theta": "-0.14276",
"vega": "0.00951",
"rho": "0.00049"
},
{
"contractID": "IBM250131P00270000",
"symbol": "IBM",
"expiration": "2025-01-31",
"strike": "270.00",
"type": "put",
"last": "0.00",
"mark": "45.15",
"bid": "44.25",
"bid_size": "97",
"ask": "46.05",
"ask_size": "62",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.64939",
"delta": "-0.97632",
"gamma": "0.00276",
"theta": "-0.17976",
"vega": "0.01739",
"rho": "-0.05075"
},
{
"contractID": "IBM250131C00275000",
"symbol": "IBM",
"expiration": "2025-01-31",
"strike": "275.00",
"type": "call",
"last": "0.07",
"mark": "0.01",
"bid": "0.00",
"bid_size": "0",
"ask": "0.30",
"ask_size": "216",
"volume": "4",
"open_interest": "1",
"date": "2025-01-24",
"implied_volatility": "0.50305",
"delta": "0.00221",
"gamma": "0.00044",
"theta": "-0.02855",
"vega": "0.00216",
"rho": "0.00009"
},
{
"contractID": "IBM250131P00275000",
"symbol": "IBM",
"expiration": "2025-01-31",
"strike": "275.00",
"type": "put",
"last": "0.00",
"mark": "50.23",
"bid": "49.60",
"bid_size": "74",
"ask": "50.85",
"ask_size": "43",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.74832",
"delta": "-0.97029",
"gamma": "0.00290",
"theta": "-0.29369",
"vega": "0.02101",
"rho": "-0.05146"
},
{
"contractID": "IBM250131C00280000",
"symbol": "IBM",
"expiration": "2025-01-31",
"strike": "280.00",
"type": "call",
"last": "0.05",
"mark": "0.01",
"bid": "0.00",
"bid_size": "0",
"ask": "0.23",
"ask_size": "229",
"volume": "23",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.54345",
"delta": "0.00206",
"gamma": "0.00038",
"theta": "-0.02891",
"vega": "0.00203",
"rho": "0.00009"
},
{
"contractID": "IBM250131P00280000",
"symbol": "IBM",
"expiration": "2025-01-31",
"strike": "280.00",
"type": "put",
"last": "0.00",
"mark": "55.20",
"bid": "54.45",
"bid_size": "83",
"ask": "55.95",
"ask_size": "65",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.78963",
"delta": "-0.97416",
"gamma": "0.00244",
"theta": "-0.26641",
"vega": "0.01871",
"rho": "-0.05258"
},
{
"contractID": "IBM250131C00285000",
"symbol": "IBM",
"expiration": "2025-01-31",
"strike": "285.00",
"type": "call",
"last": "0.05",
"mark": "0.01",
"bid": "0.00",
"bid_size": "0",
"ask": "0.26",
"ask_size": "287",
"volume": "11",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.58293",
"delta": "0.00193",
"gamma": "0.00034",
"theta": "-0.02929",
"vega": "0.00192",
"rho": "0.00008"
},
{
"contractID": "IBM250131P00285000",
"symbol": "IBM",
"expiration": "2025-01-31",
"strike": "285.00",
"type": "put",
"last": "0.00",
"mark": "60.53",
"bid": "59.70",
"bid_size": "94",
"ask": "61.35",
"ask_size": "96",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.98048",
"delta": "-0.95288",
"gamma": "0.00322",
"theta": "-0.66370",
"vega": "0.03062",
"rho": "-0.05269"
},
{
"contractID": "IBM250131C00290000",
"symbol": "IBM",
"expiration": "2025-01-31",
"strike": "290.00",
"type": "call",
"last": "0.00",
"mark": "0.01",
"bid": "0.00",
"bid_size": "0",
"ask": "0.28",
"ask_size": "284",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.62134",
"delta": "0.00182",
"gamma": "0.00030",
"theta": "-0.02959",
"vega": "0.00182",
"rho": "0.00008"
},
{
"contractID": "IBM250131P00290000",
"symbol": "IBM",
"expiration": "2025-01-31",
"strike": "290.00",
"type": "put",
"last": "0.00",
"mark": "65.35",
"bid": "64.25",
"bid_size": "100",
"ask": "66.45",
"ask_size": "72",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.97088",
"delta": "-0.96568",
"gamma": "0.00252",
"theta": "-0.47692",
"vega": "0.02367",
"rho": "-0.05417"
},
{
"contractID": "IBM250131C00295000",
"symbol": "IBM",
"expiration": "2025-01-31",
"strike": "295.00",
"type": "call",
"last": "0.08",
"mark": "0.01",
"bid": "0.00",
"bid_size": "0",
"ask": "1.25",
"ask_size": "86",
"volume": "0",
"open_interest": "2",
"date": "2025-01-24",
"implied_volatility": "0.65899",
"delta": "0.00173",
"gamma": "0.00027",
"theta": "-0.02993",
"vega": "0.00173",
"rho": "0.00007"
},
{
"contractID": "IBM250131P00295000",
"symbol": "IBM",
"expiration": "2025-01-31",
"strike": "295.00",
"type": "put",
"last": "0.00",
"mark": "70.72",
"bid": "69.65",
"bid_size": "80",
"ask": "71.80",
"ask_size": "74",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "1.15578",
"delta": "-0.94659",
"gamma": "0.00302",
"theta": "-0.89676",
"vega": "0.03383",
"rho": "-0.05437"
},
{
"contractID": "IBM250131C00300000",
"symbol": "IBM",
"expiration": "2025-01-31",
"strike": "300.00",
"type": "call",
"last": "0.00",
"mark": "0.01",
"bid": "0.00",
"bid_size": "0",
"ask": "0.57",
"ask_size": "85",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.69558",
"delta": "0.00165",
"gamma": "0.00025",
"theta": "-0.03015",
"vega": "0.00165",
"rho": "0.00007"
},
{
"contractID": "IBM250131P00300000",
"symbol": "IBM",
"expiration": "2025-01-31",
"strike": "300.00",
"type": "put",
"last": "0.00",
"mark": "75.35",
"bid": "74.40",
"bid_size": "94",
"ask": "76.30",
"ask_size": "70",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "1.07850",
"delta": "-0.96798",
"gamma": "0.00214",
"theta": "-0.50179",
"vega": "0.02236",
"rho": "-0.05618"
},
{
"contractID": "IBM250131C00305000",
"symbol": "IBM",
"expiration": "2025-01-31",
"strike": "305.00",
"type": "call",
"last": "0.00",
"mark": "0.01",
"bid": "0.00",
"bid_size": "0",
"ask": "0.43",
"ask_size": "143",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.73155",
"delta": "0.00157",
"gamma": "0.00022",
"theta": "-0.03044",
"vega": "0.00159",
"rho": "0.00007"
},
{
"contractID": "IBM250131P00305000",
"symbol": "IBM",
"expiration": "2025-01-31",
"strike": "305.00",
"type": "put",
"last": "0.00",
"mark": "80.22",
"bid": "79.40",
"bid_size": "72",
"ask": "81.05",
"ask_size": "72",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "1.06340",
"delta": "-0.97684",
"gamma": "0.00166",
"theta": "-0.34321",
"vega": "0.01706",
"rho": "-0.05750"
},
{
"contractID": "IBM250207C00120000",
"symbol": "IBM",
"expiration": "2025-02-07",
"strike": "120.00",
"type": "call",
"last": "0.00",
"mark": "104.67",
"bid": "103.85",
"bid_size": "71",
"ask": "105.50",
"ask_size": "57",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.49883",
"delta": "1.00000",
"gamma": "0.00000",
"theta": "-0.05187",
"vega": "0.00000",
"rho": "0.04595"
},
{
"contractID": "IBM250207P00120000",
"symbol": "IBM",
"expiration": "2025-02-07",
"strike": "120.00",
"type": "put",
"last": "0.00",
"mark": "0.01",
"bid": "0.00",
"bid_size": "0",
"ask": "0.17",
"ask_size": "71",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "1.04709",
"delta": "-0.00076",
"gamma": "0.00006",
"theta": "-0.01560",
"vega": "0.00115",
"rho": "-0.00007"
},
{
"contractID": "IBM250207C00125000",
"symbol": "IBM",
"expiration": "2025-02-07",
"strike": "125.00",
"type": "call",
"last": "0.00",
"mark": "99.78",
"bid": "98.95",
"bid_size": "70",
"ask": "100.60",
"ask_size": "58",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.47503",
"delta": "1.00000",
"gamma": "0.00000",
"theta": "-0.05404",
"vega": "0.00000",
"rho": "0.04787"
},
{
"contractID": "IBM250207P00125000",
"symbol": "IBM",
"expiration": "2025-02-07",
"strike": "125.00",
"type": "put",
"last": "0.00",
"mark": "0.01",
"bid": "0.00",
"bid_size": "0",
"ask": "0.18",
"ask_size": "132",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.98292",
"delta": "-0.00081",
"gamma": "0.00006",
"theta": "-0.01550",
"vega": "0.00122",
"rho": "-0.00007"
},
{
"contractID": "IBM250207C00130000",
"symbol": "IBM",
"expiration": "2025-02-07",
"strike": "130.00",
"type": "call",
"last": "0.00",
"mark": "95.10",
"bid": "94.00",
"bid_size": "70",
"ask": "96.20",
"ask_size": "70",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "1.13749",
"delta": "0.99502",
"gamma": "0.00029",
"theta": "-0.14972",
"vega": "0.00634",
"rho": "0.04932"
},
{
"contractID": "IBM250207P00130000",
"symbol": "IBM",
"expiration": "2025-02-07",
"strike": "130.00",
"type": "put",
"last": "0.00",
"mark": "0.01",
"bid": "0.00",
"bid_size": "0",
"ask": "0.19",
"ask_size": "124",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.92118",
"delta": "-0.00086",
"gamma": "0.00007",
"theta": "-0.01539",
"vega": "0.00129",
"rho": "-0.00008"
},
{
"contractID": "IBM250207C00135000",
"symbol": "IBM",
"expiration": "2025-02-07",
"strike": "135.00",
"type": "call",
"last": "0.00",
"mark": "89.88",
"bid": "88.85",
"bid_size": "70",
"ask": "90.90",
"ask_size": "70",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.42743",
"delta": "1.00000",
"gamma": "0.00000",
"theta": "-0.05836",
"vega": "0.00000",
"rho": "0.05169"
},
{
"contractID": "IBM250207P00135000",
"symbol": "IBM",
"expiration": "2025-02-07",
"strike": "135.00",
"type": "put",
"last": "0.00",
"mark": "0.01",
"bid": "0.00",
"bid_size": "0",
"ask": "0.19",
"ask_size": "120",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.86158",
"delta": "-0.00092",
"gamma": "0.00008",
"theta": "-0.01526",
"vega": "0.00137",
"rho": "-0.00008"
},
{
"contractID": "IBM250207C00140000",
"symbol": "IBM",
"expiration": "2025-02-07",
"strike": "140.00",
"type": "call",
"last": "0.00",
"mark": "84.95",
"bid": "84.00",
"bid_size": "70",
"ask": "85.90",
"ask_size": "70",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.40363",
"delta": "1.00000",
"gamma": "0.00000",
"theta": "-0.06052",
"vega": "0.00000",
"rho": "0.05361"
},
{
"contractID": "IBM250207P00140000",
"symbol": "IBM",
"expiration": "2025-02-07",
"strike": "140.00",
"type": "put",
"last": "0.00",
"mark": "0.01",
"bid": "0.00",
"bid_size": "0",
"ask": "0.20",
"ask_size": "121",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.80411",
"delta": "-0.00098",
"gamma": "0.00009",
"theta": "-0.01515",
"vega": "0.00145",
"rho": "-0.00009"
},
{
"contractID": "IBM250207C00145000",
"symbol": "IBM",
"expiration": "2025-02-07",
"strike": "145.00",
"type": "call",
"last": "0.00",
"mark": "79.90",
"bid": "78.90",
"bid_size": "71",
"ask": "80.90",
"ask_size": "71",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.37983",
"delta": "1.00000",
"gamma": "0.00000",
"theta": "-0.06268",
"vega": "0.00000",
"rho": "0.05552"
},
{
"contractID": "IBM250207P00145000",
"symbol": "IBM",
"expiration": "2025-02-07",
"strike": "145.00",
"type": "put",
"last": "0.00",
"mark": "0.01",
"bid": "0.00",
"bid_size": "0",
"ask": "0.20",
"ask_size": "111",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.74847",
"delta": "-0.00105",
"gamma": "0.00011",
"theta": "-0.01501",
"vega": "0.00155",
"rho": "-0.00009"
},
{
"contractID": "IBM250207C00150000",
"symbol": "IBM",
"expiration": "2025-02-07",
"strike": "150.00",
"type": "call",
"last": "0.00",
"mark": "74.83",
"bid": "73.95",
"bid_size": "71",
"ask": "75.70",
"ask_size": "69",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.35603",
"delta": "1.00000",
"gamma": "0.00000",
"theta": "-0.06484",
"vega": "0.00000",
"rho": "0.05744"
},
{
"contractID": "IBM250207P00150000",
"symbol": "IBM",
"expiration": "2025-02-07",
"strike": "150.00",
"type": "put",
"last": "0.00",
"mark": "0.01",
"bid": "0.00",
"bid_size": "0",
"ask": "0.05",
"ask_size": "11",
"volume": "0",
"open_interest": "70",
"date": "2025-01-24",
"implied_volatility": "0.69466",
"delta": "-0.00113",
"gamma": "0.00012",
"theta": "-0.01489",
"vega": "0.00166",
"rho": "-0.00010"
},
{
"contractID": "IBM250207C00155000",
"symbol": "IBM",
"expiration": "2025-02-07",
"strike": "155.00",
"type": "call",
"last": "0.00",
"mark": "69.90",
"bid": "68.95",
"bid_size": "71",
"ask": "70.85",
"ask_size": "72",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.33223",
"delta": "1.00000",
"gamma": "0.00000",
"theta": "-0.06700",
"vega": "0.00000",
"rho": "0.05935"
},
{
"contractID": "IBM250207P00155000",
"symbol": "IBM",
"expiration": "2025-02-07",
"strike": "155.00",
"type": "put",
"last": "0.00",
"mark": "0.01",
"bid": "0.00",
"bid_size": "0",
"ask": "1.08",
"ask_size": "71",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.64238",
"delta": "-0.00122",
"gamma": "0.00014",
"theta": "-0.01474",
"vega": "0.00178",
"rho": "-0.00011"
},
{
"contractID": "IBM250207C00160000",
"symbol": "IBM",
"expiration": "2025-02-07",
"strike": "160.00",
"type": "call",
"last": "0.00",
"mark": "65.15",
"bid": "64.10",
"bid_size": "70",
"ask": "66.20",
"ask_size": "80",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.73994",
"delta": "0.99246",
"gamma": "0.00064",
"theta": "-0.15677",
"vega": "0.00916",
"rho": "0.06059"
},
{
"contractID": "IBM250207P00160000",
"symbol": "IBM",
"expiration": "2025-02-07",
"strike": "160.00",
"type": "put",
"last": "0.00",
"mark": "0.01",
"bid": "0.00",
"bid_size": "0",
"ask": "0.23",
"ask_size": "36",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.59146",
"delta": "-0.00132",
"gamma": "0.00017",
"theta": "-0.01457",
"vega": "0.00191",
"rho": "-0.00012"
},
{
"contractID": "IBM250207C00165000",
"symbol": "IBM",
"expiration": "2025-02-07",
"strike": "165.00",
"type": "call",
"last": "55.30",
"mark": "60.42",
"bid": "59.45",
"bid_size": "46",
"ask": "61.40",
"ask_size": "77",
"volume": "0",
"open_interest": "23",
"date": "2025-01-24",
"implied_volatility": "0.83521",
"delta": "0.97630",
"gamma": "0.00152",
"theta": "-0.33678",
"vega": "0.02461",
"rho": "0.06101"
},
{
"contractID": "IBM250207P00165000",
"symbol": "IBM",
"expiration": "2025-02-07",
"strike": "165.00",
"type": "put",
"last": "0.00",
"mark": "0.01",
"bid": "0.00",
"bid_size": "0",
"ask": "0.24",
"ask_size": "75",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.54208",
"delta": "-0.00143",
"gamma": "0.00020",
"theta": "-0.01441",
"vega": "0.00206",
"rho": "-0.00013"
},
{
"contractID": "IBM250207C00170000",
"symbol": "IBM",
"expiration": "2025-02-07",
"strike": "170.00",
"type": "call",
"last": "55.14",
"mark": "55.17",
"bid": "53.95",
"bid_size": "76",
"ask": "56.40",
"ask_size": "74",
"volume": "0",
"open_interest": "1",
"date": "2025-01-24",
"implied_volatility": "0.62454",
"delta": "0.99084",
"gamma": "0.00090",
"theta": "-0.16103",
"vega": "0.01087",
"rho": "0.06427"
},
{
"contractID": "IBM250207P00170000",
"symbol": "IBM",
"expiration": "2025-02-07",
"strike": "170.00",
"type": "put",
"last": "0.08",
"mark": "0.01",
"bid": "0.00",
"bid_size": "0",
"ask": "0.23",
"ask_size": "77",
"volume": "10",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.49375",
"delta": "-0.00156",
"gamma": "0.00023",
"theta": "-0.01420",
"vega": "0.00223",
"rho": "-0.00014"
},
{
"contractID": "IBM250207C00175000",
"symbol": "IBM",
"expiration": "2025-02-07",
"strike": "175.00",
"type": "call",
"last": "0.00",
"mark": "50.08",
"bid": "49.30",
"bid_size": "66",
"ask": "50.85",
"ask_size": "43",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.23704",
"delta": "1.00000",
"gamma": "0.00000",
"theta": "-0.07565",
"vega": "0.00000",
"rho": "0.06701"
},
{
"contractID": "IBM250207P00175000",
"symbol": "IBM",
"expiration": "2025-02-07",
"strike": "175.00",
"type": "put",
"last": "0.05",
"mark": "0.01",
"bid": "0.00",
"bid_size": "0",
"ask": "0.06",
"ask_size": "1",
"volume": "413",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.44665",
"delta": "-0.00172",
"gamma": "0.00028",
"theta": "-0.01399",
"vega": "0.00243",
"rho": "-0.00015"
},
{
"contractID": "IBM250207C00180000",
"symbol": "IBM",
"expiration": "2025-02-07",
"strike": "180.00",
"type": "call",
"last": "0.00",
"mark": "45.12",
"bid": "44.50",
"bid_size": "53",
"ask": "45.75",
"ask_size": "34",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.43171",
"delta": "0.99643",
"gamma": "0.00056",
"theta": "-0.10394",
"vega": "0.00471",
"rho": "0.06861"
},
{
"contractID": "IBM250207P00180000",
"symbol": "IBM",
"expiration": "2025-02-07",
"strike": "180.00",
"type": "put",
"last": "0.00",
"mark": "0.08",
"bid": "0.01",
"bid_size": "139",
"ask": "0.15",
"ask_size": "44",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.50442",
"delta": "-0.01028",
"gamma": "0.00123",
"theta": "-0.07800",
"vega": "0.01202",
"rho": "-0.00092"
},
{
"contractID": "IBM250207C00185000",
"symbol": "IBM",
"expiration": "2025-02-07",
"strike": "185.00",
"type": "call",
"last": "0.00",
"mark": "40.27",
"bid": "39.65",
"bid_size": "31",
"ask": "40.90",
"ask_size": "34",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.49848",
"delta": "0.98039",
"gamma": "0.00217",
"theta": "-0.21424",
"vega": "0.02097",
"rho": "0.06909"
},
{
"contractID": "IBM250207P00185000",
"symbol": "IBM",
"expiration": "2025-02-07",
"strike": "185.00",
"type": "put",
"last": "0.27",
"mark": "0.23",
"bid": "0.05",
"bid_size": "159",
"ask": "0.42",
"ask_size": "142",
"volume": "2",
"open_interest": "76",
"date": "2025-01-24",
"implied_volatility": "0.52714",
"delta": "-0.02528",
"gamma": "0.00254",
"theta": "-0.17593",
"vega": "0.02598",
"rho": "-0.00227"
},
{
"contractID": "IBM250207C00190000",
"symbol": "IBM",
"expiration": "2025-02-07",
"strike": "190.00",
"type": "call",
"last": "0.00",
"mark": "35.45",
"bid": "35.00",
"bid_size": "10",
"ask": "35.90",
"ask_size": "17",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.49863",
"delta": "0.96312",
"gamma": "0.00367",
"theta": "-0.30922",
"vega": "0.03551",
"rho": "0.06945"
},
{
"contractID": "IBM250207P00190000",
"symbol": "IBM",
"expiration": "2025-02-07",
"strike": "190.00",
"type": "put",
"last": "0.22",
"mark": "0.35",
"bid": "0.14",
"bid_size": "224",
"ask": "0.57",
"ask_size": "209",
"volume": "8",
"open_interest": "2",
"date": "2025-01-24",
"implied_volatility": "0.50290",
"delta": "-0.03805",
"gamma": "0.00374",
"theta": "-0.23496",
"vega": "0.03643",
"rho": "-0.00342"
},
{
"contractID": "IBM250207C00195000",
"symbol": "IBM",
"expiration": "2025-02-07",
"strike": "195.00",
"type": "call",
"last": "24.55",
"mark": "30.30",
"bid": "29.45",
"bid_size": "71",
"ask": "31.15",
"ask_size": "19",
"volume": "0",
"open_interest": "6",
"date": "2025-01-24",
"implied_volatility": "0.38720",
"delta": "0.97351",
"gamma": "0.00360",
"theta": "-0.21795",
"vega": "0.02700",
"rho": "0.07232"
},
{
"contractID": "IBM250207P00195000",
"symbol": "IBM",
"expiration": "2025-02-07",
"strike": "195.00",
"type": "put",
"last": "0.50",
"mark": "0.47",
"bid": "0.35",
"bid_size": "92",
"ask": "0.60",
"ask_size": "48",
"volume": "19",
"open_interest": "17",
"date": "2025-01-24",
"implied_volatility": "0.46632",
"delta": "-0.05251",
"gamma": "0.00522",
"theta": "-0.28165",
"vega": "0.04721",
"rho": "-0.00471"
},
{
"contractID": "IBM250207C00200000",
"symbol": "IBM",
"expiration": "2025-02-07",
"strike": "200.00",
"type": "call",
"last": "26.10",
"mark": "25.65",
"bid": "24.85",
"bid_size": "72",
"ask": "26.45",
"ask_size": "13",
"volume": "0",
"open_interest": "6",
"date": "2025-01-24",
"implied_volatility": "0.40869",
"delta": "0.93589",
"gamma": "0.00697",
"theta": "-0.37422",
"vega": "0.05523",
"rho": "0.07086"
},
{
"contractID": "IBM250207P00200000",
"symbol": "IBM",
"expiration": "2025-02-07",
"strike": "200.00",
"type": "put",
"last": "1.02",
"mark": "0.90",
"bid": "0.75",
"bid_size": "107",
"ask": "1.04",
"ask_size": "64",
"volume": "42",
"open_interest": "295",
"date": "2025-01-24",
"implied_volatility": "0.46860",
"delta": "-0.09050",
"gamma": "0.00790",
"theta": "-0.42933",
"vega": "0.07179",
"rho": "-0.00815"
},
{
"contractID": "IBM250207C00202500",
"symbol": "IBM",
"expiration": "2025-02-07",
"strike": "202.50",
"type": "call",
"last": "0.00",
"mark": "23.60",
"bid": "23.25",
"bid_size": "55",
"ask": "23.95",
"ask_size": "10",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.43994",
"delta": "0.89882",
"gamma": "0.00914",
"theta": "-0.52420",
"vega": "0.07793",
"rho": "0.06845"
},
{
"contractID": "IBM250207P00202500",
"symbol": "IBM",
"expiration": "2025-02-07",
"strike": "202.50",
"type": "put",
"last": "1.20",
"mark": "1.33",
"bid": "1.17",
"bid_size": "101",
"ask": "1.50",
"ask_size": "65",
"volume": "1",
"open_interest": "9",
"date": "2025-01-24",
"implied_volatility": "0.48369",
"delta": "-0.12146",
"gamma": "0.00947",
"theta": "-0.54765",
"vega": "0.08882",
"rho": "-0.01098"
},
{
"contractID": "IBM250207C00205000",
"symbol": "IBM",
"expiration": "2025-02-07",
"strike": "205.00",
"type": "call",
"last": "23.05",
"mark": "21.52",
"bid": "21.20",
"bid_size": "53",
"ask": "21.85",
"ask_size": "15",
"volume": "1",
"open_interest": "12",
"date": "2025-01-24",
"implied_volatility": "0.44909",
"delta": "0.86675",
"gamma": "0.01088",
"theta": "-0.62966",
"vega": "0.09474",
"rho": "0.06648"
},
{
"contractID": "IBM250207P00205000",
"symbol": "IBM",
"expiration": "2025-02-07",
"strike": "205.00",
"type": "put",
"last": "1.69",
"mark": "1.62",
"bid": "1.55",
"bid_size": "44",
"ask": "1.70",
"ask_size": "31",
"volume": "41",
"open_interest": "112",
"date": "2025-01-24",
"implied_volatility": "0.47363",
"delta": "-0.14497",
"gamma": "0.01093",
"theta": "-0.60465",
"vega": "0.10033",
"rho": "-0.01312"
},
{
"contractID": "IBM250207C00207500",
"symbol": "IBM",
"expiration": "2025-02-07",
"strike": "207.50",
"type": "call",
"last": "20.95",
"mark": "19.90",
"bid": "19.30",
"bid_size": "50",
"ask": "20.50",
"ask_size": "52",
"volume": "1",
"open_interest": "5",
"date": "2025-01-24",
"implied_volatility": "0.48888",
"delta": "0.81637",
"gamma": "0.01234",
"theta": "-0.81633",
"vega": "0.11698",
"rho": "0.06276"
},
{
"contractID": "IBM250207P00207500",
"symbol": "IBM",
"expiration": "2025-02-07",
"strike": "207.50",
"type": "put",
"last": "2.18",
"mark": "2.09",
"bid": "2.01",
"bid_size": "21",
"ask": "2.18",
"ask_size": "30",
"volume": "18",
"open_interest": "19",
"date": "2025-01-24",
"implied_volatility": "0.47455",
"delta": "-0.17723",
"gamma": "0.01244",
"theta": "-0.68954",
"vega": "0.11440",
"rho": "-0.01608"
},
{
"contractID": "IBM250207C00210000",
"symbol": "IBM",
"expiration": "2025-02-07",
"strike": "210.00",
"type": "call",
"last": "18.50",
"mark": "17.33",
"bid": "16.85",
"bid_size": "115",
"ask": "17.80",
"ask_size": "6",
"volume": "11",
"open_interest": "40",
"date": "2025-01-24",
"implied_volatility": "0.43766",
"delta": "0.80422",
"gamma": "0.01434",
"theta": "-0.76499",
"vega": "0.12168",
"rho": "0.06270"
},
{
"contractID": "IBM250207P00210000",
"symbol": "IBM",
"expiration": "2025-02-07",
"strike": "210.00",
"type": "put",
"last": "2.53",
"mark": "2.59",
"bid": "2.42",
"bid_size": "159",
"ask": "2.76",
"ask_size": "1",
"volume": "33",
"open_interest": "122",
"date": "2025-01-24",
"implied_volatility": "0.47043",
"delta": "-0.21091",
"gamma": "0.01395",
"theta": "-0.75843",
"vega": "0.12721",
"rho": "-0.01918"
},
{
"contractID": "IBM250207C00212500",
"symbol": "IBM",
"expiration": "2025-02-07",
"strike": "212.50",
"type": "call",
"last": "17.17",
"mark": "15.72",
"bid": "15.50",
"bid_size": "51",
"ask": "15.95",
"ask_size": "10",
"volume": "4",
"open_interest": "1",
"date": "2025-01-24",
"implied_volatility": "0.45839",
"delta": "0.75496",
"gamma": "0.01558",
"theta": "-0.89378",
"vega": "0.13842",
"rho": "0.05907"
},
{
"contractID": "IBM250207P00212500",
"symbol": "IBM",
"expiration": "2025-02-07",
"strike": "212.50",
"type": "put",
"last": "3.35",
"mark": "3.28",
"bid": "3.20",
"bid_size": "12",
"ask": "3.35",
"ask_size": "1",
"volume": "24",
"open_interest": "17",
"date": "2025-01-24",
"implied_volatility": "0.47363",
"delta": "-0.25114",
"gamma": "0.01528",
"theta": "-0.84002",
"vega": "0.14024",
"rho": "-0.02291"
},
{
"contractID": "IBM250207C00215000",
"symbol": "IBM",
"expiration": "2025-02-07",
"strike": "215.00",
"type": "call",
"last": "13.92",
"mark": "13.68",
"bid": "13.15",
"bid_size": "182",
"ask": "14.20",
"ask_size": "10",
"volume": "1",
"open_interest": "64",
"date": "2025-01-24",
"implied_volatility": "0.43933",
"delta": "0.71916",
"gamma": "0.01743",
"theta": "-0.91407",
"vega": "0.14842",
"rho": "0.05676"
},
{
"contractID": "IBM250207P00215000",
"symbol": "IBM",
"expiration": "2025-02-07",
"strike": "215.00",
"type": "put",
"last": "4.17",
"mark": "4.05",
"bid": "3.95",
"bid_size": "32",
"ask": "4.15",
"ask_size": "35",
"volume": "77",
"open_interest": "360",
"date": "2025-01-24",
"implied_volatility": "0.47439",
"delta": "-0.29319",
"gamma": "0.01647",
"theta": "-0.90644",
"vega": "0.15148",
"rho": "-0.02683"
},
{
"contractID": "IBM250207C00217500",
"symbol": "IBM",
"expiration": "2025-02-07",
"strike": "217.50",
"type": "call",
"last": "13.60",
"mark": "12.23",
"bid": "11.90",
"bid_size": "50",
"ask": "12.55",
"ask_size": "7",
"volume": "1",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.45244",
"delta": "0.66844",
"gamma": "0.01821",
"theta": "-1.00192",
"vega": "0.15974",
"rho": "0.05295"
},
{
"contractID": "IBM250207P00217500",
"symbol": "IBM",
"expiration": "2025-02-07",
"strike": "217.50",
"type": "put",
"last": "5.05",
"mark": "4.92",
"bid": "4.85",
"bid_size": "13",
"ask": "5.00",
"ask_size": "1",
"volume": "10",
"open_interest": "1",
"date": "2025-01-24",
"implied_volatility": "0.47439",
"delta": "-0.33737",
"gamma": "0.01749",
"theta": "-0.95965",
"vega": "0.16084",
"rho": "-0.03098"
},
{
"contractID": "IBM250207C00220000",
"symbol": "IBM",
"expiration": "2025-02-07",
"strike": "220.00",
"type": "call",
"last": "10.50",
"mark": "11.30",
"bid": "10.75",
"bid_size": "20",
"ask": "11.85",
"ask_size": "165",
"volume": "81",
"open_interest": "2475",
"date": "2025-01-24",
"implied_volatility": "0.48796",
"delta": "0.61448",
"gamma": "0.01780",
"theta": "-1.12583",
"vega": "0.16836",
"rho": "0.04865"
},
{
"contractID": "IBM250207P00220000",
"symbol": "IBM",
"expiration": "2025-02-07",
"strike": "220.00",
"type": "put",
"last": "5.95",
"mark": "5.95",
"bid": "5.85",
"bid_size": "7",
"ask": "6.05",
"ask_size": "41",
"volume": "43",
"open_interest": "2855",
"date": "2025-01-24",
"implied_volatility": "0.47699",
"delta": "-0.38379",
"gamma": "0.01819",
"theta": "-1.00550",
"vega": "0.16814",
"rho": "-0.03537"
},
{
"contractID": "IBM250207C00222500",
"symbol": "IBM",
"expiration": "2025-02-07",
"strike": "222.50",
"type": "call",
"last": "9.32",
"mark": "9.38",
"bid": "9.10",
"bid_size": "50",
"ask": "9.65",
"ask_size": "10",
"volume": "8",
"open_interest": "32",
"date": "2025-01-24",
"implied_volatility": "0.45686",
"delta": "0.57073",
"gamma": "0.01952",
"theta": "-1.08104",
"vega": "0.17287",
"rho": "0.04561"
},
{
"contractID": "IBM250207P00222500",
"symbol": "IBM",
"expiration": "2025-02-07",
"strike": "222.50",
"type": "put",
"last": "7.31",
"mark": "7.05",
"bid": "6.95",
"bid_size": "8",
"ask": "7.15",
"ask_size": "1",
"volume": "1",
"open_interest": "24",
"date": "2025-01-24",
"implied_volatility": "0.47653",
"delta": "-0.43068",
"gamma": "0.01873",
"theta": "-1.02957",
"vega": "0.17298",
"rho": "-0.03984"
},
{
"contractID": "IBM250207C00225000",
"symbol": "IBM",
"expiration": "2025-02-07",
"strike": "225.00",
"type": "call",
"last": "8.25",
"mark": "8.62",
"bid": "8.10",
"bid_size": "42",
"ask": "9.15",
"ask_size": "148",
"volume": "65",
"open_interest": "685",
"date": "2025-01-24",
"implied_volatility": "0.48613",
"delta": "0.52221",
"gamma": "0.01861",
"theta": "-1.15842",
"vega": "0.17537",
"rho": "0.04172"
},
{
"contractID": "IBM250207P00225000",
"symbol": "IBM",
"expiration": "2025-02-07",
"strike": "225.00",
"type": "put",
"last": "8.60",
"mark": "8.03",
"bid": "7.65",
"bid_size": "84",
"ask": "8.40",
"ask_size": "1",
"volume": "106",
"open_interest": "152",
"date": "2025-01-24",
"implied_volatility": "0.46250",
"delta": "-0.47854",
"gamma": "0.01956",
"theta": "-1.00736",
"vega": "0.17539",
"rho": "-0.04434"
},
{
"contractID": "IBM250207C00227500",
"symbol": "IBM",
"expiration": "2025-02-07",
"strike": "227.50",
"type": "call",
"last": "6.81",
"mark": "7.05",
"bid": "6.90",
"bid_size": "50",
"ask": "7.20",
"ask_size": "10",
"volume": "26",
"open_interest": "48",
"date": "2025-01-24",
"implied_volatility": "0.46235",
"delta": "0.47280",
"gamma": "0.01955",
"theta": "-1.09911",
"vega": "0.17523",
"rho": "0.03806"
},
{
"contractID": "IBM250207P00227500",
"symbol": "IBM",
"expiration": "2025-02-07",
"strike": "227.50",
"type": "put",
"last": "9.80",
"mark": "9.23",
"bid": "8.65",
"bid_size": "104",
"ask": "9.80",
"ask_size": "1",
"volume": "29",
"open_interest": "5",
"date": "2025-01-24",
"implied_volatility": "0.45412",
"delta": "-0.52834",
"gamma": "0.01990",
"theta": "-0.98170",
"vega": "0.17520",
"rho": "-0.04910"
},
{
"contractID": "IBM250207C00230000",
"symbol": "IBM",
"expiration": "2025-02-07",
"strike": "230.00",
"type": "call",
"last": "5.96",
"mark": "5.95",
"bid": "5.75",
"bid_size": "97",
"ask": "6.15",
"ask_size": "5",
"volume": "44",
"open_interest": "627",
"date": "2025-01-24",
"implied_volatility": "0.45839",
"delta": "0.42413",
"gamma": "0.01941",
"theta": "-1.06919",
"vega": "0.17245",
"rho": "0.03429"
},
{
"contractID": "IBM250207P00230000",
"symbol": "IBM",
"expiration": "2025-02-07",
"strike": "230.00",
"type": "put",
"last": "10.95",
"mark": "11.12",
"bid": "11.00",
"bid_size": "6",
"ask": "11.25",
"ask_size": "1",
"volume": "27",
"open_interest": "83",
"date": "2025-01-24",
"implied_volatility": "0.47866",
"delta": "-0.57117",
"gamma": "0.01863",
"theta": "-1.01805",
"vega": "0.17284",
"rho": "-0.05351"
},
{
"contractID": "IBM250207C00232500",
"symbol": "IBM",
"expiration": "2025-02-07",
"strike": "232.50",
"type": "call",
"last": "5.12",
"mark": "5.12",
"bid": "4.95",
"bid_size": "50",
"ask": "5.30",
"ask_size": "40",
"volume": "12",
"open_interest": "18",
"date": "2025-01-24",
"implied_volatility": "0.46342",
"delta": "0.37927",
"gamma": "0.01865",
"theta": "-1.04678",
"vega": "0.16753",
"rho": "0.03074"
},
{
"contractID": "IBM250207P00232500",
"symbol": "IBM",
"expiration": "2025-02-07",
"strike": "232.50",
"type": "put",
"last": "0.00",
"mark": "12.05",
"bid": "11.15",
"bid_size": "129",
"ask": "12.95",
"ask_size": "41",
"volume": "0",
"open_interest": "7",
"date": "2025-01-24",
"implied_volatility": "0.44040",
"delta": "-0.62858",
"gamma": "0.01950",
"theta": "-0.88910",
"vega": "0.16644",
"rho": "-0.05882"
},
{
"contractID": "IBM250207C00235000",
"symbol": "IBM",
"expiration": "2025-02-07",
"strike": "235.00",
"type": "call",
"last": "4.25",
"mark": "4.28",
"bid": "4.15",
"bid_size": "51",
"ask": "4.40",
"ask_size": "10",
"volume": "47",
"open_interest": "324",
"date": "2025-01-24",
"implied_volatility": "0.46144",
"delta": "0.33452",
"gamma": "0.01792",
"theta": "-0.99497",
"vega": "0.16030",
"rho": "0.02720"
},
{
"contractID": "IBM250207P00235000",
"symbol": "IBM",
"expiration": "2025-02-07",
"strike": "235.00",
"type": "put",
"last": "0.00",
"mark": "14.55",
"bid": "14.15",
"bid_size": "31",
"ask": "14.95",
"ask_size": "52",
"volume": "0",
"open_interest": "7",
"date": "2025-01-24",
"implied_volatility": "0.48994",
"delta": "-0.65438",
"gamma": "0.01709",
"theta": "-0.96670",
"vega": "0.16232",
"rho": "-0.06200"
},
{
"contractID": "IBM250207C00237500",
"symbol": "IBM",
"expiration": "2025-02-07",
"strike": "237.50",
"type": "call",
"last": "4.11",
"mark": "3.60",
"bid": "3.50",
"bid_size": "10",
"ask": "3.70",
"ask_size": "26",
"volume": "12",
"open_interest": "38",
"date": "2025-01-24",
"implied_volatility": "0.46296",
"delta": "0.29375",
"gamma": "0.01689",
"theta": "-0.94200",
"vega": "0.15161",
"rho": "0.02395"
},
{
"contractID": "IBM250207P00237500",
"symbol": "IBM",
"expiration": "2025-02-07",
"strike": "237.50",
"type": "put",
"last": "15.29",
"mark": "16.02",
"bid": "14.85",
"bid_size": "95",
"ask": "17.20",
"ask_size": "58",
"volume": "1",
"open_interest": "1",
"date": "2025-01-24",
"implied_volatility": "0.47043",
"delta": "-0.70278",
"gamma": "0.01672",
"theta": "-0.85943",
"vega": "0.15243",
"rho": "-0.06674"
},
{
"contractID": "IBM250207C00240000",
"symbol": "IBM",
"expiration": "2025-02-07",
"strike": "240.00",
"type": "call",
"last": "2.98",
"mark": "3.00",
"bid": "2.89",
"bid_size": "30",
"ask": "3.10",
"ask_size": "78",
"volume": "43",
"open_interest": "353",
"date": "2025-01-24",
"implied_volatility": "0.46372",
"delta": "0.25568",
"gamma": "0.01575",
"theta": "-0.87938",
"vega": "0.14157",
"rho": "0.02090"
},
{
"contractID": "IBM250207P00240000",
"symbol": "IBM",
"expiration": "2025-02-07",
"strike": "240.00",
"type": "put",
"last": "0.00",
"mark": "18.25",
"bid": "17.60",
"bid_size": "40",
"ask": "18.90",
"ask_size": "30",
"volume": "0",
"open_interest": "43",
"date": "2025-01-24",
"implied_volatility": "0.49497",
"delta": "-0.72885",
"gamma": "0.01521",
"theta": "-0.86243",
"vega": "0.14588",
"rho": "-0.06984"
},
{
"contractID": "IBM250207C00242500",
"symbol": "IBM",
"expiration": "2025-02-07",
"strike": "242.50",
"type": "call",
"last": "2.44",
"mark": "2.42",
"bid": "2.25",
"bid_size": "50",
"ask": "2.60",
"ask_size": "89",
"volume": "8",
"open_interest": "21",
"date": "2025-01-24",
"implied_volatility": "0.45961",
"delta": "0.21813",
"gamma": "0.01456",
"theta": "-0.79738",
"vega": "0.12972",
"rho": "0.01788"
},
{
"contractID": "IBM250207P00242500",
"symbol": "IBM",
"expiration": "2025-02-07",
"strike": "242.50",
"type": "put",
"last": "0.00",
"mark": "20.30",
"bid": "19.15",
"bid_size": "73",
"ask": "21.45",
"ask_size": "41",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.50320",
"delta": "-0.75895",
"gamma": "0.01407",
"theta": "-0.81727",
"vega": "0.13719",
"rho": "-0.07323"
},
{
"contractID": "IBM250207C00245000",
"symbol": "IBM",
"expiration": "2025-02-07",
"strike": "245.00",
"type": "call",
"last": "2.04",
"mark": "2.04",
"bid": "1.99",
"bid_size": "18",
"ask": "2.09",
"ask_size": "13",
"volume": "82",
"open_interest": "453",
"date": "2025-01-24",
"implied_volatility": "0.46494",
"delta": "0.18910",
"gamma": "0.01322",
"theta": "-0.73953",
"vega": "0.11913",
"rho": "0.01552"
},
{
"contractID": "IBM250207P00245000",
"symbol": "IBM",
"expiration": "2025-02-07",
"strike": "245.00",
"type": "put",
"last": "0.00",
"mark": "21.85",
"bid": "20.95",
"bid_size": "74",
"ask": "22.75",
"ask_size": "30",
"volume": "0",
"open_interest": "30",
"date": "2025-01-24",
"implied_volatility": "0.46632",
"delta": "-0.81012",
"gamma": "0.01321",
"theta": "-0.63764",
"vega": "0.11943",
"rho": "-0.07823"
},
{
"contractID": "IBM250207C00247500",
"symbol": "IBM",
"expiration": "2025-02-07",
"strike": "247.50",
"type": "call",
"last": "1.77",
"mark": "1.71",
"bid": "1.52",
"bid_size": "58",
"ask": "1.90",
"ask_size": "161",
"volume": "0",
"open_interest": "210",
"date": "2025-01-24",
"implied_volatility": "0.46952",
"delta": "0.16302",
"gamma": "0.01191",
"theta": "-0.67880",
"vega": "0.10843",
"rho": "0.01340"
},
{
"contractID": "IBM250207P00247500",
"symbol": "IBM",
"expiration": "2025-02-07",
"strike": "247.50",
"type": "put",
"last": "23.00",
"mark": "24.30",
"bid": "23.10",
"bid_size": "72",
"ask": "25.50",
"ask_size": "45",
"volume": "1",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.49650",
"delta": "-0.82216",
"gamma": "0.01191",
"theta": "-0.65150",
"vega": "0.11465",
"rho": "-0.08021"
},
{
"contractID": "IBM250207C00250000",
"symbol": "IBM",
"expiration": "2025-02-07",
"strike": "250.00",
"type": "call",
"last": "1.29",
"mark": "1.35",
"bid": "1.29",
"bid_size": "51",
"ask": "1.42",
"ask_size": "52",
"volume": "194",
"open_interest": "308",
"date": "2025-01-24",
"implied_volatility": "0.46571",
"delta": "0.13542",
"gamma": "0.01061",
"theta": "-0.59415",
"vega": "0.09579",
"rho": "0.01116"
},
{
"contractID": "IBM250207P00250000",
"symbol": "IBM",
"expiration": "2025-02-07",
"strike": "250.00",
"type": "put",
"last": "0.00",
"mark": "26.73",
"bid": "25.75",
"bid_size": "46",
"ask": "27.70",
"ask_size": "41",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.52348",
"delta": "-0.83370",
"gamma": "0.01083",
"theta": "-0.65683",
"vega": "0.10984",
"rho": "-0.08214"
},
{
"contractID": "IBM250207C00255000",
"symbol": "IBM",
"expiration": "2025-02-07",
"strike": "255.00",
"type": "call",
"last": "0.88",
"mark": "0.80",
"bid": "0.66",
"bid_size": "254",
"ask": "0.94",
"ask_size": "31",
"volume": "5",
"open_interest": "178",
"date": "2025-01-24",
"implied_volatility": "0.45671",
"delta": "0.08916",
"gamma": "0.00802",
"theta": "-0.43101",
"vega": "0.07100",
"rho": "0.00738"
},
{
"contractID": "IBM250207P00255000",
"symbol": "IBM",
"expiration": "2025-02-07",
"strike": "255.00",
"type": "put",
"last": "0.00",
"mark": "31.33",
"bid": "30.45",
"bid_size": "28",
"ask": "32.20",
"ask_size": "13",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.54680",
"delta": "-0.86607",
"gamma": "0.00897",
"theta": "-0.57976",
"vega": "0.09507",
"rho": "-0.08669"
},
{
"contractID": "IBM250207C00260000",
"symbol": "IBM",
"expiration": "2025-02-07",
"strike": "260.00",
"type": "call",
"last": "0.71",
"mark": "0.55",
"bid": "0.47",
"bid_size": "55",
"ask": "0.63",
"ask_size": "68",
"volume": "6",
"open_interest": "48",
"date": "2025-01-24",
"implied_volatility": "0.46753",
"delta": "0.06366",
"gamma": "0.00606",
"theta": "-0.34070",
"vega": "0.05492",
"rho": "0.00528"
},
{
"contractID": "IBM250207P00260000",
"symbol": "IBM",
"expiration": "2025-02-07",
"strike": "260.00",
"type": "put",
"last": "0.00",
"mark": "36.08",
"bid": "35.25",
"bid_size": "25",
"ask": "36.90",
"ask_size": "13",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.57653",
"delta": "-0.88824",
"gamma": "0.00749",
"theta": "-0.52722",
"vega": "0.08373",
"rho": "-0.09043"
},
{
"contractID": "IBM250207C00265000",
"symbol": "IBM",
"expiration": "2025-02-07",
"strike": "265.00",
"type": "call",
"last": "0.39",
"mark": "0.40",
"bid": "0.36",
"bid_size": "13",
"ask": "0.44",
"ask_size": "118",
"volume": "17",
"open_interest": "184",
"date": "2025-01-24",
"implied_volatility": "0.48308",
"delta": "0.04706",
"gamma": "0.00462",
"theta": "-0.27683",
"vega": "0.04326",
"rho": "0.00390"
},
{
"contractID": "IBM250207P00265000",
"symbol": "IBM",
"expiration": "2025-02-07",
"strike": "265.00",
"type": "put",
"last": "0.00",
"mark": "40.70",
"bid": "39.70",
"bid_size": "70",
"ask": "41.70",
"ask_size": "10",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.57973",
"delta": "-0.91584",
"gamma": "0.00605",
"theta": "-0.40712",
"vega": "0.06800",
"rho": "-0.09458"
},
{
"contractID": "IBM250207C00270000",
"symbol": "IBM",
"expiration": "2025-02-07",
"strike": "270.00",
"type": "call",
"last": "0.21",
"mark": "0.23",
"bid": "0.16",
"bid_size": "124",
"ask": "0.30",
"ask_size": "107",
"volume": "12",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.47805",
"delta": "0.02923",
"gamma": "0.00316",
"theta": "-0.18542",
"vega": "0.02931",
"rho": "0.00243"
},
{
"contractID": "IBM250207P00270000",
"symbol": "IBM",
"expiration": "2025-02-07",
"strike": "270.00",
"type": "put",
"last": "0.00",
"mark": "45.45",
"bid": "44.25",
"bid_size": "76",
"ask": "46.65",
"ask_size": "6",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.58842",
"delta": "-0.93547",
"gamma": "0.00487",
"theta": "-0.31506",
"vega": "0.05551",
"rho": "-0.09809"
},
{
"contractID": "IBM250207C00275000",
"symbol": "IBM",
"expiration": "2025-02-07",
"strike": "275.00",
"type": "call",
"last": "0.15",
"mark": "0.16",
"bid": "0.14",
"bid_size": "46",
"ask": "0.18",
"ask_size": "43",
"volume": "28",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.48933",
"delta": "0.02078",
"gamma": "0.00232",
"theta": "-0.14239",
"vega": "0.02202",
"rho": "0.00173"
},
{
"contractID": "IBM250207P00275000",
"symbol": "IBM",
"expiration": "2025-02-07",
"strike": "275.00",
"type": "put",
"last": "0.00",
"mark": "50.58",
"bid": "49.60",
"bid_size": "72",
"ask": "51.55",
"ask_size": "6",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.65869",
"delta": "-0.93124",
"gamma": "0.00457",
"theta": "-0.38810",
"vega": "0.05831",
"rho": "-0.09970"
},
{
"contractID": "IBM250207C00280000",
"symbol": "IBM",
"expiration": "2025-02-07",
"strike": "280.00",
"type": "call",
"last": "0.00",
"mark": "0.01",
"bid": "0.00",
"bid_size": "0",
"ask": "1.32",
"ask_size": "130",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.38293",
"delta": "0.00206",
"gamma": "0.00039",
"theta": "-0.01453",
"vega": "0.00287",
"rho": "0.00017"
},
{
"contractID": "IBM250207P00280000",
"symbol": "IBM",
"expiration": "2025-02-07",
"strike": "280.00",
"type": "put",
"last": "0.00",
"mark": "55.60",
"bid": "54.65",
"bid_size": "74",
"ask": "56.55",
"ask_size": "10",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.70853",
"delta": "-0.93333",
"gamma": "0.00415",
"theta": "-0.41093",
"vega": "0.05693",
"rho": "-0.10180"
},
{
"contractID": "IBM250207C00285000",
"symbol": "IBM",
"expiration": "2025-02-07",
"strike": "285.00",
"type": "call",
"last": "0.00",
"mark": "0.01",
"bid": "0.00",
"bid_size": "0",
"ask": "0.75",
"ask_size": "85",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.41083",
"delta": "0.00194",
"gamma": "0.00034",
"theta": "-0.01471",
"vega": "0.00271",
"rho": "0.00016"
},
{
"contractID": "IBM250207P00285000",
"symbol": "IBM",
"expiration": "2025-02-07",
"strike": "285.00",
"type": "put",
"last": "0.00",
"mark": "60.22",
"bid": "58.90",
"bid_size": "72",
"ask": "61.55",
"ask_size": "2",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.67378",
"delta": "-0.95724",
"gamma": "0.00307",
"theta": "-0.23246",
"vega": "0.04004",
"rho": "-0.10564"
},
{
"contractID": "IBM250207C00290000",
"symbol": "IBM",
"expiration": "2025-02-07",
"strike": "290.00",
"type": "call",
"last": "0.35",
"mark": "0.01",
"bid": "0.00",
"bid_size": "0",
"ask": "0.75",
"ask_size": "85",
"volume": "0",
"open_interest": "1",
"date": "2025-01-24",
"implied_volatility": "0.43811",
"delta": "0.00183",
"gamma": "0.00030",
"theta": "-0.01489",
"vega": "0.00258",
"rho": "0.00015"
},
{
"contractID": "IBM250207P00290000",
"symbol": "IBM",
"expiration": "2025-02-07",
"strike": "290.00",
"type": "put",
"last": "0.00",
"mark": "65.57",
"bid": "64.60",
"bid_size": "72",
"ask": "66.55",
"ask_size": "2",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.79176",
"delta": "-0.93992",
"gamma": "0.00342",
"theta": "-0.42199",
"vega": "0.05250",
"rho": "-0.10619"
},
{
"contractID": "IBM250207C00295000",
"symbol": "IBM",
"expiration": "2025-02-07",
"strike": "295.00",
"type": "call",
"last": "0.00",
"mark": "0.01",
"bid": "0.00",
"bid_size": "0",
"ask": "0.89",
"ask_size": "85",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.46464",
"delta": "0.00173",
"gamma": "0.00027",
"theta": "-0.01502",
"vega": "0.00245",
"rho": "0.00015"
},
{
"contractID": "IBM250207P00295000",
"symbol": "IBM",
"expiration": "2025-02-07",
"strike": "295.00",
"type": "put",
"last": "0.00",
"mark": "70.57",
"bid": "69.55",
"bid_size": "70",
"ask": "71.60",
"ask_size": "4",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.83445",
"delta": "-0.94192",
"gamma": "0.00316",
"theta": "-0.43390",
"vega": "0.05113",
"rho": "-0.10828"
},
{
"contractID": "IBM250207C00300000",
"symbol": "IBM",
"expiration": "2025-02-07",
"strike": "300.00",
"type": "call",
"last": "0.00",
"mark": "0.01",
"bid": "0.00",
"bid_size": "0",
"ask": "0.64",
"ask_size": "87",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.49055",
"delta": "0.00165",
"gamma": "0.00025",
"theta": "-0.01514",
"vega": "0.00234",
"rho": "0.00014"
},
{
"contractID": "IBM250207P00300000",
"symbol": "IBM",
"expiration": "2025-02-07",
"strike": "300.00",
"type": "put",
"last": "0.00",
"mark": "75.88",
"bid": "74.60",
"bid_size": "78",
"ask": "77.15",
"ask_size": "72",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.93292",
"delta": "-0.93042",
"gamma": "0.00325",
"theta": "-0.59212",
"vega": "0.05884",
"rho": "-0.10933"
},
{
"contractID": "IBM250207C00305000",
"symbol": "IBM",
"expiration": "2025-02-07",
"strike": "305.00",
"type": "call",
"last": "0.00",
"mark": "0.01",
"bid": "0.00",
"bid_size": "0",
"ask": "1.05",
"ask_size": "85",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.51601",
"delta": "0.00158",
"gamma": "0.00022",
"theta": "-0.01529",
"vega": "0.00225",
"rho": "0.00013"
},
{
"contractID": "IBM250207P00305000",
"symbol": "IBM",
"expiration": "2025-02-07",
"strike": "305.00",
"type": "put",
"last": "0.00",
"mark": "80.55",
"bid": "79.40",
"bid_size": "70",
"ask": "81.70",
"ask_size": "4",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.91234",
"delta": "-0.94618",
"gamma": "0.00272",
"theta": "-0.44558",
"vega": "0.04814",
"rho": "-0.11248"
},
{
"contractID": "IBM250214C00120000",
"symbol": "IBM",
"expiration": "2025-02-14",
"strike": "120.00",
"type": "call",
"last": "0.00",
"mark": "104.85",
"bid": "103.80",
"bid_size": "72",
"ask": "105.90",
"ask_size": "71",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.34011",
"delta": "1.00000",
"gamma": "0.00000",
"theta": "-0.05183",
"vega": "0.00000",
"rho": "0.06887"
},
{
"contractID": "IBM250214P00120000",
"symbol": "IBM",
"expiration": "2025-02-14",
"strike": "120.00",
"type": "put",
"last": "0.00",
"mark": "0.01",
"bid": "0.00",
"bid_size": "0",
"ask": "0.46",
"ask_size": "71",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.85594",
"delta": "-0.00076",
"gamma": "0.00006",
"theta": "-0.01037",
"vega": "0.00140",
"rho": "-0.00010"
},
{
"contractID": "IBM250214C00125000",
"symbol": "IBM",
"expiration": "2025-02-14",
"strike": "125.00",
"type": "call",
"last": "0.00",
"mark": "99.88",
"bid": "98.85",
"bid_size": "71",
"ask": "100.90",
"ask_size": "72",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.32388",
"delta": "1.00000",
"gamma": "0.00000",
"theta": "-0.05399",
"vega": "0.00000",
"rho": "0.07174"
},
{
"contractID": "IBM250214P00125000",
"symbol": "IBM",
"expiration": "2025-02-14",
"strike": "125.00",
"type": "put",
"last": "0.00",
"mark": "0.01",
"bid": "0.00",
"bid_size": "0",
"ask": "0.47",
"ask_size": "127",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.80365",
"delta": "-0.00081",
"gamma": "0.00006",
"theta": "-0.01031",
"vega": "0.00149",
"rho": "-0.00011"
},
{
"contractID": "IBM250214C00130000",
"symbol": "IBM",
"expiration": "2025-02-14",
"strike": "130.00",
"type": "call",
"last": "0.00",
"mark": "94.82",
"bid": "93.80",
"bid_size": "70",
"ask": "95.85",
"ask_size": "70",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.30766",
"delta": "1.00000",
"gamma": "0.00000",
"theta": "-0.05615",
"vega": "0.00000",
"rho": "0.07461"
},
{
"contractID": "IBM250214P00130000",
"symbol": "IBM",
"expiration": "2025-02-14",
"strike": "130.00",
"type": "put",
"last": "0.00",
"mark": "0.01",
"bid": "0.00",
"bid_size": "0",
"ask": "1.29",
"ask_size": "71",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.75320",
"delta": "-0.00086",
"gamma": "0.00007",
"theta": "-0.01023",
"vega": "0.00158",
"rho": "-0.00012"
},
{
"contractID": "IBM250214C00135000",
"symbol": "IBM",
"expiration": "2025-02-14",
"strike": "135.00",
"type": "call",
"last": "0.00",
"mark": "89.93",
"bid": "88.95",
"bid_size": "70",
"ask": "90.90",
"ask_size": "70",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.29143",
"delta": "1.00000",
"gamma": "0.00000",
"theta": "-0.05831",
"vega": "0.00000",
"rho": "0.07748"
},
{
"contractID": "IBM250214P00135000",
"symbol": "IBM",
"expiration": "2025-02-14",
"strike": "135.00",
"type": "put",
"last": "0.00",
"mark": "0.01",
"bid": "0.00",
"bid_size": "0",
"ask": "1.28",
"ask_size": "71",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.70457",
"delta": "-0.00091",
"gamma": "0.00008",
"theta": "-0.01015",
"vega": "0.00167",
"rho": "-0.00012"
},
{
"contractID": "IBM250214C00140000",
"symbol": "IBM",
"expiration": "2025-02-14",
"strike": "140.00",
"type": "call",
"last": "0.00",
"mark": "84.78",
"bid": "83.80",
"bid_size": "71",
"ask": "85.75",
"ask_size": "73",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.27520",
"delta": "1.00000",
"gamma": "0.00000",
"theta": "-0.06047",
"vega": "0.00000",
"rho": "0.08035"
},
{
"contractID": "IBM250214P00140000",
"symbol": "IBM",
"expiration": "2025-02-14",
"strike": "140.00",
"type": "put",
"last": "0.00",
"mark": "0.01",
"bid": "0.00",
"bid_size": "0",
"ask": "1.28",
"ask_size": "71",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.65762",
"delta": "-0.00098",
"gamma": "0.00009",
"theta": "-0.01006",
"vega": "0.00178",
"rho": "-0.00013"
},
{
"contractID": "IBM250214C00145000",
"symbol": "IBM",
"expiration": "2025-02-14",
"strike": "145.00",
"type": "call",
"last": "72.67",
"mark": "79.90",
"bid": "78.90",
"bid_size": "74",
"ask": "80.90",
"ask_size": "71",
"volume": "0",
"open_interest": "1",
"date": "2025-01-24",
"implied_volatility": "0.25898",
"delta": "1.00000",
"gamma": "0.00000",
"theta": "-0.06263",
"vega": "0.00000",
"rho": "0.08322"
},
{
"contractID": "IBM250214P00145000",
"symbol": "IBM",
"expiration": "2025-02-14",
"strike": "145.00",
"type": "put",
"last": "0.00",
"mark": "0.01",
"bid": "0.00",
"bid_size": "0",
"ask": "0.50",
"ask_size": "135",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.61220",
"delta": "-0.00105",
"gamma": "0.00011",
"theta": "-0.00997",
"vega": "0.00189",
"rho": "-0.00014"
},
{
"contractID": "IBM250214C00150000",
"symbol": "IBM",
"expiration": "2025-02-14",
"strike": "150.00",
"type": "call",
"last": "0.00",
"mark": "74.90",
"bid": "74.00",
"bid_size": "70",
"ask": "75.80",
"ask_size": "72",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.24275",
"delta": "1.00000",
"gamma": "0.00000",
"theta": "-0.06479",
"vega": "0.00000",
"rho": "0.08609"
},
{
"contractID": "IBM250214P00150000",
"symbol": "IBM",
"expiration": "2025-02-14",
"strike": "150.00",
"type": "put",
"last": "0.00",
"mark": "0.01",
"bid": "0.00",
"bid_size": "0",
"ask": "0.52",
"ask_size": "71",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.56829",
"delta": "-0.00113",
"gamma": "0.00012",
"theta": "-0.00990",
"vega": "0.00203",
"rho": "-0.00015"
},
{
"contractID": "IBM250214C00155000",
"symbol": "IBM",
"expiration": "2025-02-14",
"strike": "155.00",
"type": "call",
"last": "0.00",
"mark": "70.38",
"bid": "69.00",
"bid_size": "72",
"ask": "71.75",
"ask_size": "93",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.73262",
"delta": "0.98671",
"gamma": "0.00086",
"theta": "-0.18268",
"vega": "0.01839",
"rho": "0.08713"
},
{
"contractID": "IBM250214P00155000",
"symbol": "IBM",
"expiration": "2025-02-14",
"strike": "155.00",
"type": "put",
"last": "0.00",
"mark": "0.01",
"bid": "0.00",
"bid_size": "0",
"ask": "1.30",
"ask_size": "71",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.52561",
"delta": "-0.00122",
"gamma": "0.00014",
"theta": "-0.00980",
"vega": "0.00217",
"rho": "-0.00016"
},
{
"contractID": "IBM250214C00160000",
"symbol": "IBM",
"expiration": "2025-02-14",
"strike": "160.00",
"type": "call",
"last": "0.00",
"mark": "64.50",
"bid": "63.25",
"bid_size": "72",
"ask": "65.75",
"ask_size": "74",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.21030",
"delta": "1.00000",
"gamma": "0.00000",
"theta": "-0.06911",
"vega": "0.00000",
"rho": "0.09183"
},
{
"contractID": "IBM250214P00160000",
"symbol": "IBM",
"expiration": "2025-02-14",
"strike": "160.00",
"type": "put",
"last": "0.00",
"mark": "0.01",
"bid": "0.00",
"bid_size": "0",
"ask": "0.36",
"ask_size": "70",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.48400",
"delta": "-0.00131",
"gamma": "0.00017",
"theta": "-0.00967",
"vega": "0.00233",
"rho": "-0.00018"
},
{
"contractID": "IBM250214C00165000",
"symbol": "IBM",
"expiration": "2025-02-14",
"strike": "165.00",
"type": "call",
"last": "52.56",
"mark": "59.85",
"bid": "58.95",
"bid_size": "70",
"ask": "60.75",
"ask_size": "66",
"volume": "0",
"open_interest": "1",
"date": "2025-01-24",
"implied_volatility": "0.19407",
"delta": "1.00000",
"gamma": "0.00000",
"theta": "-0.07127",
"vega": "0.00000",
"rho": "0.09470"
},
{
"contractID": "IBM250214P00165000",
"symbol": "IBM",
"expiration": "2025-02-14",
"strike": "165.00",
"type": "put",
"last": "0.00",
"mark": "0.01",
"bid": "0.00",
"bid_size": "0",
"ask": "0.36",
"ask_size": "57",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.44360",
"delta": "-0.00143",
"gamma": "0.00019",
"theta": "-0.00955",
"vega": "0.00251",
"rho": "-0.00019"
},
{
"contractID": "IBM250214C00170000",
"symbol": "IBM",
"expiration": "2025-02-14",
"strike": "170.00",
"type": "call",
"last": "0.00",
"mark": "54.80",
"bid": "53.90",
"bid_size": "72",
"ask": "55.70",
"ask_size": "44",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.17784",
"delta": "1.00000",
"gamma": "0.00000",
"theta": "-0.07343",
"vega": "0.00000",
"rho": "0.09756"
},
{
"contractID": "IBM250214P00170000",
"symbol": "IBM",
"expiration": "2025-02-14",
"strike": "170.00",
"type": "put",
"last": "0.00",
"mark": "0.39",
"bid": "0.02",
"bid_size": "18",
"ask": "0.75",
"ask_size": "71",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.64024",
"delta": "-0.02791",
"gamma": "0.00186",
"theta": "-0.18936",
"vega": "0.03455",
"rho": "-0.00383"
},
{
"contractID": "IBM250214C00175000",
"symbol": "IBM",
"expiration": "2025-02-14",
"strike": "175.00",
"type": "call",
"last": "0.00",
"mark": "49.80",
"bid": "48.70",
"bid_size": "72",
"ask": "50.90",
"ask_size": "70",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.16162",
"delta": "1.00000",
"gamma": "0.00000",
"theta": "-0.07559",
"vega": "0.00000",
"rho": "0.10043"
},
{
"contractID": "IBM250214P00175000",
"symbol": "IBM",
"expiration": "2025-02-14",
"strike": "175.00",
"type": "put",
"last": "0.00",
"mark": "0.21",
"bid": "0.04",
"bid_size": "25",
"ask": "0.39",
"ask_size": "22",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.52622",
"delta": "-0.01937",
"gamma": "0.00166",
"theta": "-0.11423",
"vega": "0.02541",
"rho": "-0.00263"
},
{
"contractID": "IBM250214C00180000",
"symbol": "IBM",
"expiration": "2025-02-14",
"strike": "180.00",
"type": "call",
"last": "0.00",
"mark": "45.15",
"bid": "44.35",
"bid_size": "72",
"ask": "45.95",
"ask_size": "60",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.14539",
"delta": "1.00000",
"gamma": "0.00000",
"theta": "-0.07775",
"vega": "0.00000",
"rho": "0.10330"
},
{
"contractID": "IBM250214P00180000",
"symbol": "IBM",
"expiration": "2025-02-14",
"strike": "180.00",
"type": "put",
"last": "0.00",
"mark": "0.22",
"bid": "0.02",
"bid_size": "135",
"ask": "0.42",
"ask_size": "13",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.47897",
"delta": "-0.02202",
"gamma": "0.00203",
"theta": "-0.11566",
"vega": "0.02832",
"rho": "-0.00297"
},
{
"contractID": "IBM250214C00185000",
"symbol": "IBM",
"expiration": "2025-02-14",
"strike": "185.00",
"type": "call",
"last": "0.00",
"mark": "40.22",
"bid": "39.80",
"bid_size": "17",
"ask": "40.65",
"ask_size": "11",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.12916",
"delta": "1.00000",
"gamma": "0.00000",
"theta": "-0.07991",
"vega": "0.00000",
"rho": "0.10617"
},
{
"contractID": "IBM250214P00185000",
"symbol": "IBM",
"expiration": "2025-02-14",
"strike": "185.00",
"type": "put",
"last": "0.00",
"mark": "0.44",
"bid": "0.06",
"bid_size": "310",
"ask": "0.81",
"ask_size": "155",
"volume": "0",
"open_interest": "9",
"date": "2025-01-24",
"implied_volatility": "0.48567",
"delta": "-0.03986",
"gamma": "0.00328",
"theta": "-0.19150",
"vega": "0.04634",
"rho": "-0.00541"
},
{
"contractID": "IBM250214C00190000",
"symbol": "IBM",
"expiration": "2025-02-14",
"strike": "190.00",
"type": "call",
"last": "30.02",
"mark": "35.58",
"bid": "34.95",
"bid_size": "11",
"ask": "36.20",
"ask_size": "41",
"volume": "0",
"open_interest": "2",
"date": "2025-01-24",
"implied_volatility": "0.40229",
"delta": "0.96539",
"gamma": "0.00353",
"theta": "-0.22288",
"vega": "0.04128",
"rho": "0.10439"
},
{
"contractID": "IBM250214P00190000",
"symbol": "IBM",
"expiration": "2025-02-14",
"strike": "190.00",
"type": "put",
"last": "0.53",
"mark": "0.58",
"bid": "0.37",
"bid_size": "101",
"ask": "0.79",
"ask_size": "40",
"volume": "2",
"open_interest": "13",
"date": "2025-01-24",
"implied_volatility": "0.45686",
"delta": "-0.05345",
"gamma": "0.00441",
"theta": "-0.22737",
"vega": "0.05864",
"rho": "-0.00725"
},
{
"contractID": "IBM250214C00195000",
"symbol": "IBM",
"expiration": "2025-02-14",
"strike": "195.00",
"type": "call",
"last": "0.00",
"mark": "30.40",
"bid": "29.55",
"bid_size": "72",
"ask": "31.25",
"ask_size": "11",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.29650",
"delta": "0.98078",
"gamma": "0.00293",
"theta": "-0.14733",
"vega": "0.02524",
"rho": "0.10936"
},
{
"contractID": "IBM250214P00195000",
"symbol": "IBM",
"expiration": "2025-02-14",
"strike": "195.00",
"type": "put",
"last": "0.74",
"mark": "0.78",
"bid": "0.62",
"bid_size": "137",
"ask": "0.93",
"ask_size": "37",
"volume": "1",
"open_interest": "683",
"date": "2025-01-24",
"implied_volatility": "0.42927",
"delta": "-0.07258",
"gamma": "0.00596",
"theta": "-0.27031",
"vega": "0.07444",
"rho": "-0.00984"
},
{
"contractID": "IBM250214C00200000",
"symbol": "IBM",
"expiration": "2025-02-14",
"strike": "200.00",
"type": "call",
"last": "26.25",
"mark": "26.02",
"bid": "25.15",
"bid_size": "74",
"ask": "26.90",
"ask_size": "38",
"volume": "0",
"open_interest": "1",
"date": "2025-01-24",
"implied_volatility": "0.36327",
"delta": "0.92127",
"gamma": "0.00750",
"theta": "-0.32843",
"vega": "0.07920",
"rho": "0.10418"
},
{
"contractID": "IBM250214P00200000",
"symbol": "IBM",
"expiration": "2025-02-14",
"strike": "200.00",
"type": "put",
"last": "1.25",
"mark": "1.27",
"bid": "1.10",
"bid_size": "109",
"ask": "1.45",
"ask_size": "12",
"volume": "12",
"open_interest": "95",
"date": "2025-01-24",
"implied_volatility": "0.42363",
"delta": "-0.11016",
"gamma": "0.00824",
"theta": "-0.36239",
"vega": "0.10149",
"rho": "-0.01498"
},
{
"contractID": "IBM250214C00205000",
"symbol": "IBM",
"expiration": "2025-02-14",
"strike": "205.00",
"type": "call",
"last": "18.35",
"mark": "21.82",
"bid": "21.15",
"bid_size": "47",
"ask": "22.50",
"ask_size": "62",
"volume": "0",
"open_interest": "3",
"date": "2025-01-24",
"implied_volatility": "0.38004",
"delta": "0.86090",
"gamma": "0.01081",
"theta": "-0.46900",
"vega": "0.11949",
"rho": "0.09879"
},
{
"contractID": "IBM250214P00205000",
"symbol": "IBM",
"expiration": "2025-02-14",
"strike": "205.00",
"type": "put",
"last": "2.23",
"mark": "2.17",
"bid": "2.06",
"bid_size": "10",
"ask": "2.28",
"ask_size": "51",
"volume": "20",
"open_interest": "116",
"date": "2025-01-24",
"implied_volatility": "0.43171",
"delta": "-0.16697",
"gamma": "0.01075",
"theta": "-0.48885",
"vega": "0.13488",
"rho": "-0.02284"
},
{
"contractID": "IBM250214C00210000",
"symbol": "IBM",
"expiration": "2025-02-14",
"strike": "210.00",
"type": "call",
"last": "19.15",
"mark": "17.68",
"bid": "17.10",
"bid_size": "60",
"ask": "18.25",
"ask_size": "50",
"volume": "0",
"open_interest": "1",
"date": "2025-01-24",
"implied_volatility": "0.37165",
"delta": "0.79856",
"gamma": "0.01403",
"theta": "-0.55976",
"vega": "0.15161",
"rho": "0.09311"
},
{
"contractID": "IBM250214P00210000",
"symbol": "IBM",
"expiration": "2025-02-14",
"strike": "210.00",
"type": "put",
"last": "3.34",
"mark": "3.30",
"bid": "3.20",
"bid_size": "41",
"ask": "3.40",
"ask_size": "40",
"volume": "36",
"open_interest": "62",
"date": "2025-01-24",
"implied_volatility": "0.43125",
"delta": "-0.23142",
"gamma": "0.01310",
"theta": "-0.59179",
"vega": "0.16429",
"rho": "-0.03183"
},
{
"contractID": "IBM250214C00215000",
"symbol": "IBM",
"expiration": "2025-02-14",
"strike": "215.00",
"type": "call",
"last": "15.28",
"mark": "14.15",
"bid": "13.95",
"bid_size": "41",
"ask": "14.35",
"ask_size": "11",
"volume": "1",
"open_interest": "45",
"date": "2025-01-24",
"implied_volatility": "0.37775",
"delta": "0.71387",
"gamma": "0.01670",
"theta": "-0.66546",
"vega": "0.18341",
"rho": "0.08419"
},
{
"contractID": "IBM250214P00215000",
"symbol": "IBM",
"expiration": "2025-02-14",
"strike": "215.00",
"type": "put",
"last": "5.03",
"mark": "5.28",
"bid": "4.80",
"bid_size": "7",
"ask": "5.75",
"ask_size": "186",
"volume": "28",
"open_interest": "41",
"date": "2025-01-24",
"implied_volatility": "0.45580",
"delta": "-0.31379",
"gamma": "0.01443",
"theta": "-0.72466",
"vega": "0.19123",
"rho": "-0.04362"
},
{
"contractID": "IBM250214C00220000",
"symbol": "IBM",
"expiration": "2025-02-14",
"strike": "220.00",
"type": "call",
"last": "11.85",
"mark": "11.03",
"bid": "10.80",
"bid_size": "50",
"ask": "11.25",
"ask_size": "12",
"volume": "20",
"open_interest": "36",
"date": "2025-01-24",
"implied_volatility": "0.38004",
"delta": "0.62160",
"gamma": "0.01856",
"theta": "-0.73292",
"vega": "0.20504",
"rho": "0.07405"
},
{
"contractID": "IBM250214P00220000",
"symbol": "IBM",
"expiration": "2025-02-14",
"strike": "220.00",
"type": "put",
"last": "6.93",
"mark": "6.83",
"bid": "6.40",
"bid_size": "181",
"ask": "7.25",
"ask_size": "50",
"volume": "5",
"open_interest": "30",
"date": "2025-01-24",
"implied_volatility": "0.43583",
"delta": "-0.38876",
"gamma": "0.01631",
"theta": "-0.74207",
"vega": "0.20670",
"rho": "-0.05421"
},
{
"contractID": "IBM250214C00225000",
"symbol": "IBM",
"expiration": "2025-02-14",
"strike": "225.00",
"type": "call",
"last": "9.00",
"mark": "8.47",
"bid": "8.10",
"bid_size": "56",
"ask": "8.85",
"ask_size": "50",
"volume": "2",
"open_interest": "44",
"date": "2025-01-24",
"implied_volatility": "0.38583",
"delta": "0.52535",
"gamma": "0.01914",
"theta": "-0.76730",
"vega": "0.21468",
"rho": "0.06307"
},
{
"contractID": "IBM250214P00225000",
"symbol": "IBM",
"expiration": "2025-02-14",
"strike": "225.00",
"type": "put",
"last": "0.00",
"mark": "9.02",
"bid": "8.45",
"bid_size": "199",
"ask": "9.60",
"ask_size": "30",
"volume": "0",
"open_interest": "34",
"date": "2025-01-24",
"implied_volatility": "0.42821",
"delta": "-0.47331",
"gamma": "0.01724",
"theta": "-0.74874",
"vega": "0.21463",
"rho": "-0.06641"
},
{
"contractID": "IBM250214C00230000",
"symbol": "IBM",
"expiration": "2025-02-14",
"strike": "230.00",
"type": "call",
"last": "6.18",
"mark": "6.38",
"bid": "6.10",
"bid_size": "58",
"ask": "6.65",
"ask_size": "50",
"volume": "27",
"open_interest": "216",
"date": "2025-01-24",
"implied_volatility": "0.39101",
"delta": "0.43236",
"gamma": "0.01865",
"theta": "-0.75977",
"vega": "0.21202",
"rho": "0.05225"
},
{
"contractID": "IBM250214P00230000",
"symbol": "IBM",
"expiration": "2025-02-14",
"strike": "230.00",
"type": "put",
"last": "0.00",
"mark": "12.07",
"bid": "11.40",
"bid_size": "177",
"ask": "12.75",
"ask_size": "51",
"volume": "0",
"open_interest": "50",
"date": "2025-01-24",
"implied_volatility": "0.44101",
"delta": "-0.55557",
"gamma": "0.01661",
"theta": "-0.75713",
"vega": "0.21302",
"rho": "-0.07880"
},
{
"contractID": "IBM250214C00235000",
"symbol": "IBM",
"expiration": "2025-02-14",
"strike": "235.00",
"type": "call",
"last": "4.47",
"mark": "4.38",
"bid": "4.05",
"bid_size": "188",
"ask": "4.70",
"ask_size": "140",
"volume": "21",
"open_interest": "63",
"date": "2025-01-24",
"implied_volatility": "0.37882",
"delta": "0.33888",
"gamma": "0.01792",
"theta": "-0.68070",
"vega": "0.19732",
"rho": "0.04131"
},
{
"contractID": "IBM250214P00235000",
"symbol": "IBM",
"expiration": "2025-02-14",
"strike": "235.00",
"type": "put",
"last": "0.00",
"mark": "15.62",
"bid": "14.75",
"bid_size": "94",
"ask": "16.50",
"ask_size": "84",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.45961",
"delta": "-0.62733",
"gamma": "0.01527",
"theta": "-0.74724",
"vega": "0.20406",
"rho": "-0.09012"
},
{
"contractID": "IBM250214C00240000",
"symbol": "IBM",
"expiration": "2025-02-14",
"strike": "240.00",
"type": "call",
"last": "3.10",
"mark": "3.67",
"bid": "3.05",
"bid_size": "54",
"ask": "4.30",
"ask_size": "297",
"volume": "35",
"open_interest": "111",
"date": "2025-01-24",
"implied_volatility": "0.41372",
"delta": "0.27941",
"gamma": "0.01507",
"theta": "-0.67756",
"vega": "0.18133",
"rho": "0.03403"
},
{
"contractID": "IBM250214P00240000",
"symbol": "IBM",
"expiration": "2025-02-14",
"strike": "240.00",
"type": "put",
"last": "0.00",
"mark": "19.65",
"bid": "18.60",
"bid_size": "75",
"ask": "20.70",
"ask_size": "83",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.48750",
"delta": "-0.68430",
"gamma": "0.01353",
"theta": "-0.73717",
"vega": "0.19173",
"rho": "-0.09981"
},
{
"contractID": "IBM250214C00245000",
"symbol": "IBM",
"expiration": "2025-02-14",
"strike": "245.00",
"type": "call",
"last": "2.13",
"mark": "2.21",
"bid": "2.10",
"bid_size": "20",
"ask": "2.31",
"ask_size": "12",
"volume": "1",
"open_interest": "82",
"date": "2025-01-24",
"implied_volatility": "0.38873",
"delta": "0.19780",
"gamma": "0.01327",
"theta": "-0.52488",
"vega": "0.14996",
"rho": "0.02431"
},
{
"contractID": "IBM250214P00245000",
"symbol": "IBM",
"expiration": "2025-02-14",
"strike": "245.00",
"type": "put",
"last": "0.00",
"mark": "23.35",
"bid": "22.00",
"bid_size": "72",
"ask": "24.70",
"ask_size": "71",
"volume": "0",
"open_interest": "30",
"date": "2025-01-24",
"implied_volatility": "0.48415",
"delta": "-0.74583",
"gamma": "0.01228",
"theta": "-0.64455",
"vega": "0.17285",
"rho": "-0.10990"
},
{
"contractID": "IBM250214C00250000",
"symbol": "IBM",
"expiration": "2025-02-14",
"strike": "250.00",
"type": "call",
"last": "1.54",
"mark": "1.41",
"bid": "1.20",
"bid_size": "130",
"ask": "1.61",
"ask_size": "40",
"volume": "7",
"open_interest": "109",
"date": "2025-01-24",
"implied_volatility": "0.38324",
"delta": "0.13945",
"gamma": "0.01074",
"theta": "-0.41162",
"vega": "0.11970",
"rho": "0.01723"
},
{
"contractID": "IBM250214P00250000",
"symbol": "IBM",
"expiration": "2025-02-14",
"strike": "250.00",
"type": "put",
"last": "0.00",
"mark": "27.85",
"bid": "26.70",
"bid_size": "73",
"ask": "29.00",
"ask_size": "93",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.51509",
"delta": "-0.78172",
"gamma": "0.01061",
"theta": "-0.62332",
"vega": "0.15894",
"rho": "-0.11713"
},
{
"contractID": "IBM250214C00255000",
"symbol": "IBM",
"expiration": "2025-02-14",
"strike": "255.00",
"type": "call",
"last": "1.02",
"mark": "1.01",
"bid": "0.90",
"bid_size": "98",
"ask": "1.11",
"ask_size": "50",
"volume": "3",
"open_interest": "25",
"date": "2025-01-24",
"implied_volatility": "0.39376",
"delta": "0.10365",
"gamma": "0.00848",
"theta": "-0.34203",
"vega": "0.09713",
"rho": "0.01282"
},
{
"contractID": "IBM250214P00255000",
"symbol": "IBM",
"expiration": "2025-02-14",
"strike": "255.00",
"type": "put",
"last": "0.00",
"mark": "32.45",
"bid": "31.80",
"bid_size": "33",
"ask": "33.10",
"ask_size": "13",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.54497",
"delta": "-0.81054",
"gamma": "0.00922",
"theta": "-0.59884",
"vega": "0.14607",
"rho": "-0.12350"
},
{
"contractID": "IBM250214C00260000",
"symbol": "IBM",
"expiration": "2025-02-14",
"strike": "260.00",
"type": "call",
"last": "0.69",
"mark": "0.71",
"bid": "0.51",
"bid_size": "78",
"ask": "0.91",
"ask_size": "199",
"volume": "2",
"open_interest": "1",
"date": "2025-01-24",
"implied_volatility": "0.40214",
"delta": "0.07578",
"gamma": "0.00658",
"theta": "-0.27593",
"vega": "0.07693",
"rho": "0.00939"
},
{
"contractID": "IBM250214P00260000",
"symbol": "IBM",
"expiration": "2025-02-14",
"strike": "260.00",
"type": "put",
"last": "0.00",
"mark": "37.10",
"bid": "36.45",
"bid_size": "55",
"ask": "37.75",
"ask_size": "12",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.57241",
"delta": "-0.83465",
"gamma": "0.00805",
"theta": "-0.56944",
"vega": "0.13403",
"rho": "-0.12930"
},
{
"contractID": "IBM250214C00265000",
"symbol": "IBM",
"expiration": "2025-02-14",
"strike": "265.00",
"type": "call",
"last": "0.50",
"mark": "0.39",
"bid": "0.27",
"bid_size": "143",
"ask": "0.51",
"ask_size": "14",
"volume": "0",
"open_interest": "30",
"date": "2025-01-24",
"implied_volatility": "0.39086",
"delta": "0.04635",
"gamma": "0.00461",
"theta": "-0.18211",
"vega": "0.05234",
"rho": "0.00577"
},
{
"contractID": "IBM250214P00265000",
"symbol": "IBM",
"expiration": "2025-02-14",
"strike": "265.00",
"type": "put",
"last": "0.00",
"mark": "42.38",
"bid": "41.40",
"bid_size": "34",
"ask": "43.35",
"ask_size": "74",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.64314",
"delta": "-0.83477",
"gamma": "0.00716",
"theta": "-0.64919",
"vega": "0.13397",
"rho": "-0.13235"
},
{
"contractID": "IBM250214C00270000",
"symbol": "IBM",
"expiration": "2025-02-14",
"strike": "270.00",
"type": "call",
"last": "0.52",
"mark": "0.33",
"bid": "0.30",
"bid_size": "3",
"ask": "0.37",
"ask_size": "67",
"volume": "0",
"open_interest": "3",
"date": "2025-01-24",
"implied_volatility": "0.41372",
"delta": "0.03824",
"gamma": "0.00372",
"theta": "-0.16464",
"vega": "0.04480",
"rho": "0.00476"
},
{
"contractID": "IBM250214P00270000",
"symbol": "IBM",
"expiration": "2025-02-14",
"strike": "270.00",
"type": "put",
"last": "0.00",
"mark": "46.92",
"bid": "46.15",
"bid_size": "39",
"ask": "47.70",
"ask_size": "68",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.65473",
"delta": "-0.85819",
"gamma": "0.00636",
"theta": "-0.58499",
"vega": "0.12107",
"rho": "-0.13799"
},
{
"contractID": "IBM250214C00275000",
"symbol": "IBM",
"expiration": "2025-02-14",
"strike": "275.00",
"type": "call",
"last": "0.00",
"mark": "0.26",
"bid": "0.09",
"bid_size": "33",
"ask": "0.43",
"ask_size": "143",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.42958",
"delta": "0.03002",
"gamma": "0.00294",
"theta": "-0.13987",
"vega": "0.03671",
"rho": "0.00373"
},
{
"contractID": "IBM250214P00275000",
"symbol": "IBM",
"expiration": "2025-02-14",
"strike": "275.00",
"type": "put",
"last": "0.00",
"mark": "51.72",
"bid": "50.90",
"bid_size": "70",
"ask": "52.55",
"ask_size": "71",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.68277",
"delta": "-0.87153",
"gamma": "0.00570",
"theta": "-0.56409",
"vega": "0.11314",
"rho": "-0.14248"
},
{
"contractID": "IBM250214C00280000",
"symbol": "IBM",
"expiration": "2025-02-14",
"strike": "280.00",
"type": "call",
"last": "0.00",
"mark": "0.21",
"bid": "0.05",
"bid_size": "23",
"ask": "0.37",
"ask_size": "108",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.44589",
"delta": "0.02406",
"gamma": "0.00235",
"theta": "-0.12051",
"vega": "0.03052",
"rho": "0.00299"
},
{
"contractID": "IBM250214P00280000",
"symbol": "IBM",
"expiration": "2025-02-14",
"strike": "280.00",
"type": "put",
"last": "0.00",
"mark": "56.75",
"bid": "55.90",
"bid_size": "54",
"ask": "57.60",
"ask_size": "72",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.72866",
"delta": "-0.87589",
"gamma": "0.00521",
"theta": "-0.58955",
"vega": "0.11045",
"rho": "-0.14594"
},
{
"contractID": "IBM250214C00285000",
"symbol": "IBM",
"expiration": "2025-02-14",
"strike": "285.00",
"type": "call",
"last": "0.00",
"mark": "0.01",
"bid": "0.00",
"bid_size": "0",
"ask": "1.32",
"ask_size": "83",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.33446",
"delta": "0.00195",
"gamma": "0.00034",
"theta": "-0.00989",
"vega": "0.00334",
"rho": "0.00025"
},
{
"contractID": "IBM250214P00285000",
"symbol": "IBM",
"expiration": "2025-02-14",
"strike": "285.00",
"type": "put",
"last": "0.00",
"mark": "61.52",
"bid": "60.55",
"bid_size": "72",
"ask": "62.50",
"ask_size": "72",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.74878",
"delta": "-0.88828",
"gamma": "0.00471",
"theta": "-0.55404",
"vega": "0.10252",
"rho": "-0.15028"
},
{
"contractID": "IBM250214C00290000",
"symbol": "IBM",
"expiration": "2025-02-14",
"strike": "290.00",
"type": "call",
"last": "0.00",
"mark": "0.01",
"bid": "0.00",
"bid_size": "0",
"ask": "0.75",
"ask_size": "83",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.35656",
"delta": "0.00183",
"gamma": "0.00030",
"theta": "-0.00995",
"vega": "0.00316",
"rho": "0.00023"
},
{
"contractID": "IBM250214P00290000",
"symbol": "IBM",
"expiration": "2025-02-14",
"strike": "290.00",
"type": "put",
"last": "0.00",
"mark": "66.95",
"bid": "65.80",
"bid_size": "49",
"ask": "68.10",
"ask_size": "72",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.83003",
"delta": "-0.87841",
"gamma": "0.00451",
"theta": "-0.67079",
"vega": "0.10887",
"rho": "-0.15213"
},
{
"contractID": "IBM250214C00295000",
"symbol": "IBM",
"expiration": "2025-02-14",
"strike": "295.00",
"type": "call",
"last": "0.00",
"mark": "0.01",
"bid": "0.00",
"bid_size": "0",
"ask": "0.94",
"ask_size": "81",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.37836",
"delta": "0.00174",
"gamma": "0.00027",
"theta": "-0.01007",
"vega": "0.00301",
"rho": "0.00022"
},
{
"contractID": "IBM250214P00295000",
"symbol": "IBM",
"expiration": "2025-02-14",
"strike": "295.00",
"type": "put",
"last": "0.00",
"mark": "71.57",
"bid": "70.60",
"bid_size": "62",
"ask": "72.55",
"ask_size": "74",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.83292",
"delta": "-0.89397",
"gamma": "0.00408",
"theta": "-0.59675",
"vega": "0.09874",
"rho": "-0.15680"
},
{
"contractID": "IBM250214C00300000",
"symbol": "IBM",
"expiration": "2025-02-14",
"strike": "300.00",
"type": "call",
"last": "0.00",
"mark": "0.01",
"bid": "0.00",
"bid_size": "0",
"ask": "0.68",
"ask_size": "81",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.39955",
"delta": "0.00166",
"gamma": "0.00025",
"theta": "-0.01016",
"vega": "0.00288",
"rho": "0.00021"
},
{
"contractID": "IBM250214P00300000",
"symbol": "IBM",
"expiration": "2025-02-14",
"strike": "300.00",
"type": "put",
"last": "0.00",
"mark": "76.70",
"bid": "75.80",
"bid_size": "48",
"ask": "77.60",
"ask_size": "72",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.88414",
"delta": "-0.89305",
"gamma": "0.00387",
"theta": "-0.64328",
"vega": "0.09936",
"rho": "-0.15963"
},
{
"contractID": "IBM250214C00305000",
"symbol": "IBM",
"expiration": "2025-02-14",
"strike": "305.00",
"type": "call",
"last": "0.00",
"mark": "0.01",
"bid": "0.00",
"bid_size": "0",
"ask": "0.63",
"ask_size": "85",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.42028",
"delta": "0.00158",
"gamma": "0.00023",
"theta": "-0.01024",
"vega": "0.00276",
"rho": "0.00020"
},
{
"contractID": "IBM250214P00305000",
"symbol": "IBM",
"expiration": "2025-02-14",
"strike": "305.00",
"type": "put",
"last": "0.00",
"mark": "81.35",
"bid": "80.30",
"bid_size": "72",
"ask": "82.40",
"ask_size": "72",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.88414",
"delta": "-0.90673",
"gamma": "0.00350",
"theta": "-0.56735",
"vega": "0.08991",
"rho": "-0.16408"
},
{
"contractID": "IBM250221C00130000",
"symbol": "IBM",
"expiration": "2025-02-21",
"strike": "130.00",
"type": "call",
"last": "0.00",
"mark": "94.88",
"bid": "93.95",
"bid_size": "70",
"ask": "95.80",
"ask_size": "70",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.23339",
"delta": "1.00000",
"gamma": "0.00000",
"theta": "-0.05610",
"vega": "0.00000",
"rho": "0.09940"
},
{
"contractID": "IBM250221P00130000",
"symbol": "IBM",
"expiration": "2025-02-21",
"strike": "130.00",
"type": "put",
"last": "0.00",
"mark": "0.01",
"bid": "0.00",
"bid_size": "0",
"ask": "0.56",
"ask_size": "71",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.65320",
"delta": "-0.00086",
"gamma": "0.00007",
"theta": "-0.00765",
"vega": "0.00182",
"rho": "-0.00016"
},
{
"contractID": "IBM250221C00135000",
"symbol": "IBM",
"expiration": "2025-02-21",
"strike": "135.00",
"type": "call",
"last": "93.76",
"mark": "89.72",
"bid": "88.85",
"bid_size": "71",
"ask": "90.60",
"ask_size": "58",
"volume": "0",
"open_interest": "3",
"date": "2025-01-24",
"implied_volatility": "0.22108",
"delta": "1.00000",
"gamma": "0.00000",
"theta": "-0.05826",
"vega": "0.00000",
"rho": "0.10322"
},
{
"contractID": "IBM250221P00135000",
"symbol": "IBM",
"expiration": "2025-02-21",
"strike": "135.00",
"type": "put",
"last": "0.00",
"mark": "0.01",
"bid": "0.00",
"bid_size": "0",
"ask": "0.60",
"ask_size": "71",
"volume": "0",
"open_interest": "11",
"date": "2025-01-24",
"implied_volatility": "0.61113",
"delta": "-0.00091",
"gamma": "0.00008",
"theta": "-0.00759",
"vega": "0.00193",
"rho": "-0.00017"
},
{
"contractID": "IBM250221C00140000",
"symbol": "IBM",
"expiration": "2025-02-21",
"strike": "140.00",
"type": "call",
"last": "0.00",
"mark": "84.72",
"bid": "83.80",
"bid_size": "71",
"ask": "85.65",
"ask_size": "71",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.20877",
"delta": "1.00000",
"gamma": "0.00000",
"theta": "-0.06042",
"vega": "0.00000",
"rho": "0.10704"
},
{
"contractID": "IBM250221P00140000",
"symbol": "IBM",
"expiration": "2025-02-21",
"strike": "140.00",
"type": "put",
"last": "0.00",
"mark": "0.01",
"bid": "0.00",
"bid_size": "0",
"ask": "0.64",
"ask_size": "71",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.57043",
"delta": "-0.00098",
"gamma": "0.00009",
"theta": "-0.00752",
"vega": "0.00205",
"rho": "-0.00018"
},
{
"contractID": "IBM250221C00145000",
"symbol": "IBM",
"expiration": "2025-02-21",
"strike": "145.00",
"type": "call",
"last": "0.00",
"mark": "79.85",
"bid": "78.75",
"bid_size": "70",
"ask": "80.95",
"ask_size": "70",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.19646",
"delta": "1.00000",
"gamma": "0.00000",
"theta": "-0.06258",
"vega": "0.00000",
"rho": "0.11086"
},
{
"contractID": "IBM250221P00145000",
"symbol": "IBM",
"expiration": "2025-02-21",
"strike": "145.00",
"type": "put",
"last": "0.00",
"mark": "0.01",
"bid": "0.00",
"bid_size": "0",
"ask": "0.39",
"ask_size": "151",
"volume": "0",
"open_interest": "5",
"date": "2025-01-24",
"implied_volatility": "0.53110",
"delta": "-0.00105",
"gamma": "0.00011",
"theta": "-0.00745",
"vega": "0.00218",
"rho": "-0.00019"
},
{
"contractID": "IBM250221C00150000",
"symbol": "IBM",
"expiration": "2025-02-21",
"strike": "150.00",
"type": "call",
"last": "75.96",
"mark": "74.97",
"bid": "74.05",
"bid_size": "72",
"ask": "75.90",
"ask_size": "71",
"volume": "10",
"open_interest": "1",
"date": "2025-01-24",
"implied_volatility": "0.18415",
"delta": "1.00000",
"gamma": "0.00000",
"theta": "-0.06473",
"vega": "0.00000",
"rho": "0.11469"
},
{
"contractID": "IBM250221P00150000",
"symbol": "IBM",
"expiration": "2025-02-21",
"strike": "150.00",
"type": "put",
"last": "0.04",
"mark": "0.03",
"bid": "0.01",
"bid_size": "14",
"ask": "0.06",
"ask_size": "4",
"volume": "195",
"open_interest": "19",
"date": "2025-01-24",
"implied_volatility": "0.54680",
"delta": "-0.00281",
"gamma": "0.00025",
"theta": "-0.01886",
"vega": "0.00537",
"rho": "-0.00051"
},
{
"contractID": "IBM250221C00155000",
"symbol": "IBM",
"expiration": "2025-02-21",
"strike": "155.00",
"type": "call",
"last": "0.00",
"mark": "70.12",
"bid": "69.30",
"bid_size": "72",
"ask": "70.95",
"ask_size": "72",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.17184",
"delta": "1.00000",
"gamma": "0.00000",
"theta": "-0.06689",
"vega": "0.00000",
"rho": "0.11851"
},
{
"contractID": "IBM250221P00155000",
"symbol": "IBM",
"expiration": "2025-02-21",
"strike": "155.00",
"type": "put",
"last": "0.00",
"mark": "0.01",
"bid": "0.00",
"bid_size": "0",
"ask": "0.25",
"ask_size": "61",
"volume": "0",
"open_interest": "3",
"date": "2025-01-24",
"implied_volatility": "0.45610",
"delta": "-0.00121",
"gamma": "0.00014",
"theta": "-0.00731",
"vega": "0.00250",
"rho": "-0.00022"
},
{
"contractID": "IBM250221C00160000",
"symbol": "IBM",
"expiration": "2025-02-21",
"strike": "160.00",
"type": "call",
"last": "0.00",
"mark": "65.08",
"bid": "64.40",
"bid_size": "64",
"ask": "65.75",
"ask_size": "70",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.15953",
"delta": "1.00000",
"gamma": "0.00000",
"theta": "-0.06905",
"vega": "0.00000",
"rho": "0.12233"
},
{
"contractID": "IBM250221P00160000",
"symbol": "IBM",
"expiration": "2025-02-21",
"strike": "160.00",
"type": "put",
"last": "0.05",
"mark": "0.01",
"bid": "0.00",
"bid_size": "0",
"ask": "0.08",
"ask_size": "9",
"volume": "815",
"open_interest": "19",
"date": "2025-01-24",
"implied_volatility": "0.42013",
"delta": "-0.00131",
"gamma": "0.00016",
"theta": "-0.00722",
"vega": "0.00269",
"rho": "-0.00023"
},
{
"contractID": "IBM250221C00165000",
"symbol": "IBM",
"expiration": "2025-02-21",
"strike": "165.00",
"type": "call",
"last": "0.00",
"mark": "60.05",
"bid": "59.30",
"bid_size": "72",
"ask": "60.80",
"ask_size": "74",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.14723",
"delta": "1.00000",
"gamma": "0.00000",
"theta": "-0.07121",
"vega": "0.00000",
"rho": "0.12616"
},
{
"contractID": "IBM250221P00165000",
"symbol": "IBM",
"expiration": "2025-02-21",
"strike": "165.00",
"type": "put",
"last": "0.14",
"mark": "0.12",
"bid": "0.07",
"bid_size": "32",
"ask": "0.17",
"ask_size": "91",
"volume": "3",
"open_interest": "11",
"date": "2025-01-24",
"implied_volatility": "0.50580",
"delta": "-0.01069",
"gamma": "0.00090",
"theta": "-0.05687",
"vega": "0.01758",
"rho": "-0.00193"
},
{
"contractID": "IBM250221C00170000",
"symbol": "IBM",
"expiration": "2025-02-21",
"strike": "170.00",
"type": "call",
"last": "56.20",
"mark": "55.28",
"bid": "54.45",
"bid_size": "51",
"ask": "56.10",
"ask_size": "72",
"volume": "0",
"open_interest": "6",
"date": "2025-01-24",
"implied_volatility": "0.13492",
"delta": "1.00000",
"gamma": "0.00000",
"theta": "-0.07337",
"vega": "0.00000",
"rho": "0.12998"
},
{
"contractID": "IBM250221P00170000",
"symbol": "IBM",
"expiration": "2025-02-21",
"strike": "170.00",
"type": "put",
"last": "0.14",
"mark": "0.20",
"bid": "0.05",
"bid_size": "207",
"ask": "0.36",
"ask_size": "195",
"volume": "1",
"open_interest": "20",
"date": "2025-01-24",
"implied_volatility": "0.49817",
"delta": "-0.01708",
"gamma": "0.00136",
"theta": "-0.08384",
"vega": "0.02636",
"rho": "-0.00310"
},
{
"contractID": "IBM250221C00175000",
"symbol": "IBM",
"expiration": "2025-02-21",
"strike": "175.00",
"type": "call",
"last": "51.69",
"mark": "49.80",
"bid": "48.75",
"bid_size": "72",
"ask": "50.85",
"ask_size": "58",
"volume": "1",
"open_interest": "12",
"date": "2025-01-24",
"implied_volatility": "0.12261",
"delta": "1.00000",
"gamma": "0.00000",
"theta": "-0.07552",
"vega": "0.00000",
"rho": "0.13380"
},
{
"contractID": "IBM250221P00175000",
"symbol": "IBM",
"expiration": "2025-02-21",
"strike": "175.00",
"type": "put",
"last": "0.00",
"mark": "0.21",
"bid": "0.09",
"bid_size": "180",
"ask": "0.32",
"ask_size": "127",
"volume": "0",
"open_interest": "25",
"date": "2025-01-24",
"implied_volatility": "0.45702",
"delta": "-0.01932",
"gamma": "0.00165",
"theta": "-0.08524",
"vega": "0.02928",
"rho": "-0.00349"
},
{
"contractID": "IBM250221C00180000",
"symbol": "IBM",
"expiration": "2025-02-21",
"strike": "180.00",
"type": "call",
"last": "40.91",
"mark": "45.38",
"bid": "44.80",
"bid_size": "10",
"ask": "45.95",
"ask_size": "50",
"volume": "0",
"open_interest": "27",
"date": "2025-01-24",
"implied_volatility": "0.11030",
"delta": "1.00000",
"gamma": "0.00000",
"theta": "-0.07768",
"vega": "0.00000",
"rho": "0.13762"
},
{
"contractID": "IBM250221P00180000",
"symbol": "IBM",
"expiration": "2025-02-21",
"strike": "180.00",
"type": "put",
"last": "0.35",
"mark": "0.34",
"bid": "0.13",
"bid_size": "290",
"ask": "0.54",
"ask_size": "475",
"volume": "2",
"open_interest": "163",
"date": "2025-01-24",
"implied_volatility": "0.44818",
"delta": "-0.03010",
"gamma": "0.00245",
"theta": "-0.12102",
"vega": "0.04248",
"rho": "-0.00545"
},
{
"contractID": "IBM250221C00185000",
"symbol": "IBM",
"expiration": "2025-02-21",
"strike": "185.00",
"type": "call",
"last": "39.89",
"mark": "40.02",
"bid": "39.05",
"bid_size": "72",
"ask": "41.00",
"ask_size": "44",
"volume": "0",
"open_interest": "1",
"date": "2025-01-24",
"implied_volatility": "0.09799",
"delta": "1.00000",
"gamma": "0.00000",
"theta": "-0.07984",
"vega": "0.00000",
"rho": "0.14145"
},
{
"contractID": "IBM250221P00185000",
"symbol": "IBM",
"expiration": "2025-02-21",
"strike": "185.00",
"type": "put",
"last": "0.40",
"mark": "0.52",
"bid": "0.33",
"bid_size": "133",
"ask": "0.70",
"ask_size": "603",
"volume": "28",
"open_interest": "188",
"date": "2025-01-24",
"implied_volatility": "0.43644",
"delta": "-0.04458",
"gamma": "0.00346",
"theta": "-0.16204",
"vega": "0.05857",
"rho": "-0.00809"
},
{
"contractID": "IBM250221C00190000",
"symbol": "IBM",
"expiration": "2025-02-21",
"strike": "190.00",
"type": "call",
"last": "37.02",
"mark": "34.95",
"bid": "34.15",
"bid_size": "72",
"ask": "35.75",
"ask_size": "12",
"volume": "1",
"open_interest": "4",
"date": "2025-01-24",
"implied_volatility": "0.08568",
"delta": "1.00000",
"gamma": "0.00000",
"theta": "-0.08200",
"vega": "0.00000",
"rho": "0.14527"
},
{
"contractID": "IBM250221P00190000",
"symbol": "IBM",
"expiration": "2025-02-21",
"strike": "190.00",
"type": "put",
"last": "0.58",
"mark": "0.57",
"bid": "0.42",
"bid_size": "217",
"ask": "0.72",
"ask_size": "6",
"volume": "9",
"open_interest": "292",
"date": "2025-01-24",
"implied_volatility": "0.39574",
"delta": "-0.05266",
"gamma": "0.00436",
"theta": "-0.16724",
"vega": "0.06692",
"rho": "-0.00952"
},
{
"contractID": "IBM250221C00195000",
"symbol": "IBM",
"expiration": "2025-02-21",
"strike": "195.00",
"type": "call",
"last": "30.80",
"mark": "30.52",
"bid": "29.75",
"bid_size": "76",
"ask": "31.30",
"ask_size": "14",
"volume": "0",
"open_interest": "39",
"date": "2025-01-24",
"implied_volatility": "0.24163",
"delta": "0.98638",
"gamma": "0.00232",
"theta": "-0.11697",
"vega": "0.02170",
"rho": "0.14669"
},
{
"contractID": "IBM250221P00195000",
"symbol": "IBM",
"expiration": "2025-02-21",
"strike": "195.00",
"type": "put",
"last": "0.93",
"mark": "1.00",
"bid": "0.92",
"bid_size": "52",
"ask": "1.07",
"ask_size": "45",
"volume": "34",
"open_interest": "3561",
"date": "2025-01-24",
"implied_volatility": "0.39757",
"delta": "-0.08430",
"gamma": "0.00625",
"theta": "-0.24087",
"vega": "0.09629",
"rho": "-0.01530"
},
{
"contractID": "IBM250221C00200000",
"symbol": "IBM",
"expiration": "2025-02-21",
"strike": "200.00",
"type": "call",
"last": "27.08",
"mark": "26.00",
"bid": "25.05",
"bid_size": "361",
"ask": "26.95",
"ask_size": "111",
"volume": "7",
"open_interest": "126",
"date": "2025-01-24",
"implied_volatility": "0.29452",
"delta": "0.93505",
"gamma": "0.00691",
"theta": "-0.23122",
"vega": "0.07890",
"rho": "0.14130"
},
{
"contractID": "IBM250221P00200000",
"symbol": "IBM",
"expiration": "2025-02-21",
"strike": "200.00",
"type": "put",
"last": "1.47",
"mark": "1.42",
"bid": "1.28",
"bid_size": "173",
"ask": "1.56",
"ask_size": "30",
"volume": "165",
"open_interest": "6303",
"date": "2025-01-24",
"implied_volatility": "0.38126",
"delta": "-0.11678",
"gamma": "0.00827",
"theta": "-0.29163",
"vega": "0.12218",
"rho": "-0.02123"
},
{
"contractID": "IBM250221C00202500",
"symbol": "IBM",
"expiration": "2025-02-21",
"strike": "202.50",
"type": "call",
"last": "23.35",
"mark": "23.83",
"bid": "23.05",
"bid_size": "93",
"ask": "24.60",
"ask_size": "50",
"volume": "0",
"open_interest": "4",
"date": "2025-01-24",
"implied_volatility": "0.30473",
"delta": "0.90647",
"gamma": "0.00881",
"theta": "-0.28454",
"vega": "0.10403",
"rho": "0.13804"
},
{
"contractID": "IBM250221P00202500",
"symbol": "IBM",
"expiration": "2025-02-21",
"strike": "202.50",
"type": "put",
"last": "1.60",
"mark": "1.90",
"bid": "1.81",
"bid_size": "13",
"ask": "1.99",
"ask_size": "31",
"volume": "8",
"open_interest": "164",
"date": "2025-01-24",
"implied_volatility": "0.38842",
"delta": "-0.14554",
"gamma": "0.00945",
"theta": "-0.34518",
"vega": "0.14227",
"rho": "-0.02656"
},
{
"contractID": "IBM250221C00205000",
"symbol": "IBM",
"expiration": "2025-02-21",
"strike": "205.00",
"type": "call",
"last": "21.15",
"mark": "21.70",
"bid": "20.95",
"bid_size": "429",
"ask": "22.45",
"ask_size": "102",
"volume": "0",
"open_interest": "635",
"date": "2025-01-24",
"implied_volatility": "0.30915",
"delta": "0.87665",
"gamma": "0.01060",
"theta": "-0.33182",
"vega": "0.12699",
"rho": "0.13453"
},
{
"contractID": "IBM250221P00205000",
"symbol": "IBM",
"expiration": "2025-02-21",
"strike": "205.00",
"type": "put",
"last": "2.26",
"mark": "2.28",
"bid": "2.14",
"bid_size": "41",
"ask": "2.42",
"ask_size": "35",
"volume": "28",
"open_interest": "803",
"date": "2025-01-24",
"implied_volatility": "0.38309",
"delta": "-0.17021",
"gamma": "0.01062",
"theta": "-0.37616",
"vega": "0.15768",
"rho": "-0.03110"
},
{
"contractID": "IBM250221C00207500",
"symbol": "IBM",
"expiration": "2025-02-21",
"strike": "207.50",
"type": "call",
"last": "19.30",
"mark": "19.75",
"bid": "18.85",
"bid_size": "85",
"ask": "20.65",
"ask_size": "57",
"volume": "0",
"open_interest": "9",
"date": "2025-01-24",
"implied_volatility": "0.31891",
"delta": "0.83852",
"gamma": "0.01233",
"theta": "-0.38987",
"vega": "0.15241",
"rho": "0.12945"
},
{
"contractID": "IBM250221P00207500",
"symbol": "IBM",
"expiration": "2025-02-21",
"strike": "207.50",
"type": "put",
"last": "2.98",
"mark": "2.81",
"bid": "2.71",
"bid_size": "17",
"ask": "2.91",
"ask_size": "2",
"volume": "85",
"open_interest": "62",
"date": "2025-01-24",
"implied_volatility": "0.38278",
"delta": "-0.20054",
"gamma": "0.01177",
"theta": "-0.41487",
"vega": "0.17460",
"rho": "-0.03674"
},
{
"contractID": "IBM250221C00210000",
"symbol": "IBM",
"expiration": "2025-02-21",
"strike": "210.00",
"type": "call",
"last": "18.00",
"mark": "17.75",
"bid": "17.30",
"bid_size": "307",
"ask": "18.20",
"ask_size": "12",
"volume": "5",
"open_interest": "285",
"date": "2025-01-24",
"implied_volatility": "0.31815",
"delta": "0.80362",
"gamma": "0.01398",
"theta": "-0.42803",
"vega": "0.17240",
"rho": "0.12497"
},
{
"contractID": "IBM250221P00210000",
"symbol": "IBM",
"expiration": "2025-02-21",
"strike": "210.00",
"type": "put",
"last": "3.45",
"mark": "3.50",
"bid": "3.40",
"bid_size": "53",
"ask": "3.60",
"ask_size": "41",
"volume": "409",
"open_interest": "961",
"date": "2025-01-24",
"implied_volatility": "0.38629",
"delta": "-0.23543",
"gamma": "0.01279",
"theta": "-0.45779",
"vega": "0.19153",
"rho": "-0.04328"
},
{
"contractID": "IBM250221C00212500",
"symbol": "IBM",
"expiration": "2025-02-21",
"strike": "212.50",
"type": "call",
"last": "16.75",
"mark": "15.93",
"bid": "15.65",
"bid_size": "57",
"ask": "16.20",
"ask_size": "12",
"volume": "0",
"open_interest": "1",
"date": "2025-01-24",
"implied_volatility": "0.32165",
"delta": "0.76221",
"gamma": "0.01544",
"theta": "-0.47104",
"vega": "0.19258",
"rho": "0.11922"
},
{
"contractID": "IBM250221P00212500",
"symbol": "IBM",
"expiration": "2025-02-21",
"strike": "212.50",
"type": "put",
"last": "4.15",
"mark": "4.38",
"bid": "4.15",
"bid_size": "61",
"ask": "4.60",
"ask_size": "132",
"volume": "2",
"open_interest": "30",
"date": "2025-01-24",
"implied_volatility": "0.39421",
"delta": "-0.27413",
"gamma": "0.01357",
"theta": "-0.50439",
"vega": "0.20743",
"rho": "-0.05063"
},
{
"contractID": "IBM250221C00215000",
"symbol": "IBM",
"expiration": "2025-02-21",
"strike": "215.00",
"type": "call",
"last": "14.17",
"mark": "14.22",
"bid": "14.00",
"bid_size": "32",
"ask": "14.45",
"ask_size": "3",
"volume": "2",
"open_interest": "1104",
"date": "2025-01-24",
"implied_volatility": "0.32470",
"delta": "0.71821",
"gamma": "0.01670",
"theta": "-0.50869",
"vega": "0.21024",
"rho": "0.11295"
},
{
"contractID": "IBM250221P00215000",
"symbol": "IBM",
"expiration": "2025-02-21",
"strike": "215.00",
"type": "put",
"last": "5.37",
"mark": "5.12",
"bid": "5.00",
"bid_size": "42",
"ask": "5.25",
"ask_size": "40",
"volume": "318",
"open_interest": "1326",
"date": "2025-01-24",
"implied_volatility": "0.39025",
"delta": "-0.30954",
"gamma": "0.01451",
"theta": "-0.52602",
"vega": "0.21952",
"rho": "-0.05731"
},
{
"contractID": "IBM250221C00217500",
"symbol": "IBM",
"expiration": "2025-02-21",
"strike": "217.50",
"type": "call",
"last": "12.80",
"mark": "12.40",
"bid": "11.75",
"bid_size": "231",
"ask": "13.05",
"ask_size": "30",
"volume": "33",
"open_interest": "30",
"date": "2025-01-24",
"implied_volatility": "0.31723",
"delta": "0.67633",
"gamma": "0.01819",
"theta": "-0.52304",
"vega": "0.22372",
"rho": "0.10712"
},
{
"contractID": "IBM250221P00217500",
"symbol": "IBM",
"expiration": "2025-02-21",
"strike": "217.50",
"type": "put",
"last": "6.20",
"mark": "6.05",
"bid": "5.95",
"bid_size": "33",
"ask": "6.15",
"ask_size": "42",
"volume": "46",
"open_interest": "37",
"date": "2025-01-24",
"implied_volatility": "0.39086",
"delta": "-0.34836",
"gamma": "0.01519",
"theta": "-0.54998",
"vega": "0.23022",
"rho": "-0.06472"
},
{
"contractID": "IBM250221C00220000",
"symbol": "IBM",
"expiration": "2025-02-21",
"strike": "220.00",
"type": "call",
"last": "11.10",
"mark": "11.60",
"bid": "11.00",
"bid_size": "57",
"ask": "12.20",
"ask_size": "379",
"volume": "56",
"open_interest": "530",
"date": "2025-01-24",
"implied_volatility": "0.34879",
"delta": "0.62024",
"gamma": "0.01753",
"theta": "-0.59419",
"vega": "0.23702",
"rho": "0.09806"
},
{
"contractID": "IBM250221P00220000",
"symbol": "IBM",
"expiration": "2025-02-21",
"strike": "220.00",
"type": "put",
"last": "7.51",
"mark": "7.08",
"bid": "6.90",
"bid_size": "3",
"ask": "7.25",
"ask_size": "40",
"volume": "120",
"open_interest": "984",
"date": "2025-01-24",
"implied_volatility": "0.39116",
"delta": "-0.38819",
"gamma": "0.01573",
"theta": "-0.56740",
"vega": "0.23857",
"rho": "-0.07237"
},
{
"contractID": "IBM250221C00222500",
"symbol": "IBM",
"expiration": "2025-02-21",
"strike": "222.50",
"type": "call",
"last": "9.80",
"mark": "10.10",
"bid": "9.65",
"bid_size": "55",
"ask": "10.55",
"ask_size": "127",
"volume": "48",
"open_interest": "68",
"date": "2025-01-24",
"implied_volatility": "0.34452",
"delta": "0.57546",
"gamma": "0.01826",
"theta": "-0.59940",
"vega": "0.24394",
"rho": "0.09149"
},
{
"contractID": "IBM250221P00222500",
"symbol": "IBM",
"expiration": "2025-02-21",
"strike": "222.50",
"type": "put",
"last": "8.50",
"mark": "8.28",
"bid": "7.70",
"bid_size": "177",
"ask": "8.85",
"ask_size": "165",
"volume": "541",
"open_interest": "101",
"date": "2025-01-24",
"implied_volatility": "0.39437",
"delta": "-0.42890",
"gamma": "0.01599",
"theta": "-0.58297",
"vega": "0.24444",
"rho": "-0.08032"
},
{
"contractID": "IBM250221C00225000",
"symbol": "IBM",
"expiration": "2025-02-21",
"strike": "225.00",
"type": "call",
"last": "8.76",
"mark": "8.85",
"bid": "8.50",
"bid_size": "41",
"ask": "9.20",
"ask_size": "106",
"volume": "108",
"open_interest": "3631",
"date": "2025-01-24",
"implied_volatility": "0.34574",
"delta": "0.52921",
"gamma": "0.01848",
"theta": "-0.60593",
"vega": "0.24773",
"rho": "0.08447"
},
{
"contractID": "IBM250221P00225000",
"symbol": "IBM",
"expiration": "2025-02-21",
"strike": "225.00",
"type": "put",
"last": "9.64",
"mark": "9.68",
"bid": "9.55",
"bid_size": "1",
"ask": "9.80",
"ask_size": "41",
"volume": "370",
"open_interest": "2406",
"date": "2025-01-24",
"implied_volatility": "0.40123",
"delta": "-0.46913",
"gamma": "0.01592",
"theta": "-0.59778",
"vega": "0.24765",
"rho": "-0.08833"
},
{
"contractID": "IBM250221C00227500",
"symbol": "IBM",
"expiration": "2025-02-21",
"strike": "227.50",
"type": "call",
"last": "7.40",
"mark": "7.68",
"bid": "7.30",
"bid_size": "54",
"ask": "8.05",
"ask_size": "104",
"volume": "25",
"open_interest": "33",
"date": "2025-01-24",
"implied_volatility": "0.34559",
"delta": "0.48318",
"gamma": "0.01852",
"theta": "-0.60271",
"vega": "0.24817",
"rho": "0.07743"
},
{
"contractID": "IBM250221P00227500",
"symbol": "IBM",
"expiration": "2025-02-21",
"strike": "227.50",
"type": "put",
"last": "10.50",
"mark": "10.72",
"bid": "10.25",
"bid_size": "182",
"ask": "11.20",
"ask_size": "30",
"volume": "28",
"open_interest": "16",
"date": "2025-01-24",
"implied_volatility": "0.38964",
"delta": "-0.51033",
"gamma": "0.01644",
"theta": "-0.57630",
"vega": "0.24831",
"rho": "-0.09623"
},
{
"contractID": "IBM250221C00230000",
"symbol": "IBM",
"expiration": "2025-02-21",
"strike": "230.00",
"type": "call",
"last": "6.57",
"mark": "6.57",
"bid": "6.35",
"bid_size": "64",
"ask": "6.80",
"ask_size": "182",
"volume": "73",
"open_interest": "4687",
"date": "2025-01-24",
"implied_volatility": "0.34330",
"delta": "0.43722",
"gamma": "0.01843",
"theta": "-0.58861",
"vega": "0.24531",
"rho": "0.07036"
},
{
"contractID": "IBM250221P00230000",
"symbol": "IBM",
"expiration": "2025-02-21",
"strike": "230.00",
"type": "put",
"last": "13.00",
"mark": "12.57",
"bid": "12.45",
"bid_size": "10",
"ask": "12.70",
"ask_size": "31",
"volume": "6",
"open_interest": "874",
"date": "2025-01-24",
"implied_volatility": "0.40671",
"delta": "-0.54665",
"gamma": "0.01565",
"theta": "-0.59531",
"vega": "0.24669",
"rho": "-0.10391"
},
{
"contractID": "IBM250221C00232500",
"symbol": "IBM",
"expiration": "2025-02-21",
"strike": "232.50",
"type": "call",
"last": "5.64",
"mark": "5.62",
"bid": "5.40",
"bid_size": "40",
"ask": "5.85",
"ask_size": "67",
"volume": "8",
"open_interest": "31",
"date": "2025-01-24",
"implied_volatility": "0.34299",
"delta": "0.39279",
"gamma": "0.01800",
"theta": "-0.57093",
"vega": "0.23937",
"rho": "0.06342"
},
{
"contractID": "IBM250221P00232500",
"symbol": "IBM",
"expiration": "2025-02-21",
"strike": "232.50",
"type": "put",
"last": "13.25",
"mark": "13.68",
"bid": "12.70",
"bid_size": "270",
"ask": "14.65",
"ask_size": "50",
"volume": "4",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.38994",
"delta": "-0.58982",
"gamma": "0.01601",
"theta": "-0.55191",
"vega": "0.24207",
"rho": "-0.11221"
},
{
"contractID": "IBM250221C00235000",
"symbol": "IBM",
"expiration": "2025-02-21",
"strike": "235.00",
"type": "call",
"last": "4.65",
"mark": "4.72",
"bid": "4.60",
"bid_size": "40",
"ask": "4.85",
"ask_size": "64",
"volume": "31",
"open_interest": "1227",
"date": "2025-01-24",
"implied_volatility": "0.34025",
"delta": "0.34882",
"gamma": "0.01746",
"theta": "-0.54273",
"vega": "0.23034",
"rho": "0.05653"
},
{
"contractID": "IBM250221P00235000",
"symbol": "IBM",
"expiration": "2025-02-21",
"strike": "235.00",
"type": "put",
"last": "0.00",
"mark": "16.00",
"bid": "14.85",
"bid_size": "242",
"ask": "17.15",
"ask_size": "205",
"volume": "0",
"open_interest": "441",
"date": "2025-01-24",
"implied_volatility": "0.41952",
"delta": "-0.61609",
"gamma": "0.01462",
"theta": "-0.58334",
"vega": "0.23780",
"rho": "-0.11852"
},
{
"contractID": "IBM250221C00237500",
"symbol": "IBM",
"expiration": "2025-02-21",
"strike": "237.50",
"type": "call",
"last": "4.00",
"mark": "3.97",
"bid": "3.85",
"bid_size": "41",
"ask": "4.10",
"ask_size": "24",
"volume": "89",
"open_interest": "18",
"date": "2025-01-24",
"implied_volatility": "0.33964",
"delta": "0.30788",
"gamma": "0.01663",
"theta": "-0.51306",
"vega": "0.21900",
"rho": "0.05005"
},
{
"contractID": "IBM250221P00237500",
"symbol": "IBM",
"expiration": "2025-02-21",
"strike": "237.50",
"type": "put",
"last": "0.00",
"mark": "17.80",
"bid": "17.60",
"bid_size": "10",
"ask": "18.00",
"ask_size": "42",
"volume": "0",
"open_interest": "1",
"date": "2025-01-24",
"implied_volatility": "0.42455",
"delta": "-0.64815",
"gamma": "0.01404",
"theta": "-0.56858",
"vega": "0.23106",
"rho": "-0.12543"
},
{
"contractID": "IBM250221C00240000",
"symbol": "IBM",
"expiration": "2025-02-21",
"strike": "240.00",
"type": "call",
"last": "3.40",
"mark": "3.38",
"bid": "3.25",
"bid_size": "75",
"ask": "3.50",
"ask_size": "197",
"volume": "293",
"open_interest": "1569",
"date": "2025-01-24",
"implied_volatility": "0.34208",
"delta": "0.27155",
"gamma": "0.01557",
"theta": "-0.48530",
"vega": "0.20646",
"rho": "0.04424"
},
{
"contractID": "IBM250221P00240000",
"symbol": "IBM",
"expiration": "2025-02-21",
"strike": "240.00",
"type": "put",
"last": "18.76",
"mark": "19.55",
"bid": "18.60",
"bid_size": "200",
"ask": "20.50",
"ask_size": "130",
"volume": "108",
"open_interest": "448",
"date": "2025-01-24",
"implied_volatility": "0.42409",
"delta": "-0.68083",
"gamma": "0.01353",
"theta": "-0.54006",
"vega": "0.22242",
"rho": "-0.13240"
},
{
"contractID": "IBM250221C00242500",
"symbol": "IBM",
"expiration": "2025-02-21",
"strike": "242.50",
"type": "call",
"last": "2.70",
"mark": "2.85",
"bid": "2.66",
"bid_size": "361",
"ask": "3.05",
"ask_size": "258",
"volume": "14",
"open_interest": "33",
"date": "2025-01-24",
"implied_volatility": "0.34360",
"delta": "0.23764",
"gamma": "0.01445",
"theta": "-0.45305",
"vega": "0.19252",
"rho": "0.03879"
},
{
"contractID": "IBM250221P00242500",
"symbol": "IBM",
"expiration": "2025-02-21",
"strike": "242.50",
"type": "put",
"last": "0.00",
"mark": "21.45",
"bid": "20.90",
"bid_size": "48",
"ask": "22.00",
"ask_size": "30",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.42714",
"delta": "-0.71001",
"gamma": "0.01287",
"theta": "-0.51495",
"vega": "0.21313",
"rho": "-0.13889"
},
{
"contractID": "IBM250221C00245000",
"symbol": "IBM",
"expiration": "2025-02-21",
"strike": "245.00",
"type": "call",
"last": "2.23",
"mark": "2.37",
"bid": "2.20",
"bid_size": "58",
"ask": "2.54",
"ask_size": "233",
"volume": "21",
"open_interest": "2159",
"date": "2025-01-24",
"implied_volatility": "0.34376",
"delta": "0.20575",
"gamma": "0.01330",
"theta": "-0.41622",
"vega": "0.17729",
"rho": "0.03366"
},
{
"contractID": "IBM250221P00245000",
"symbol": "IBM",
"expiration": "2025-02-21",
"strike": "245.00",
"type": "put",
"last": "0.00",
"mark": "24.05",
"bid": "22.70",
"bid_size": "73",
"ask": "25.40",
"ask_size": "73",
"volume": "0",
"open_interest": "21",
"date": "2025-01-24",
"implied_volatility": "0.46113",
"delta": "-0.72034",
"gamma": "0.01172",
"theta": "-0.54905",
"vega": "0.20947",
"rho": "-0.14267"
},
{
"contractID": "IBM250221C00247500",
"symbol": "IBM",
"expiration": "2025-02-21",
"strike": "247.50",
"type": "call",
"last": "2.26",
"mark": "2.06",
"bid": "1.90",
"bid_size": "30",
"ask": "2.22",
"ask_size": "325",
"volume": "16",
"open_interest": "275",
"date": "2025-01-24",
"implied_volatility": "0.35016",
"delta": "0.18163",
"gamma": "0.01210",
"theta": "-0.39177",
"vega": "0.16430",
"rho": "0.02974"
},
{
"contractID": "IBM250221P00247500",
"symbol": "IBM",
"expiration": "2025-02-21",
"strike": "247.50",
"type": "put",
"last": "0.00",
"mark": "25.50",
"bid": "24.90",
"bid_size": "72",
"ask": "26.10",
"ask_size": "40",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.43690",
"delta": "-0.76023",
"gamma": "0.01142",
"theta": "-0.46585",
"vega": "0.19346",
"rho": "-0.15066"
},
{
"contractID": "IBM250221C00250000",
"symbol": "IBM",
"expiration": "2025-02-21",
"strike": "250.00",
"type": "call",
"last": "1.57",
"mark": "1.70",
"bid": "1.54",
"bid_size": "53",
"ask": "1.86",
"ask_size": "431",
"volume": "94",
"open_interest": "5852",
"date": "2025-01-24",
"implied_volatility": "0.35031",
"delta": "0.15569",
"gamma": "0.01096",
"theta": "-0.35418",
"vega": "0.14880",
"rho": "0.02554"
},
{
"contractID": "IBM250221P00250000",
"symbol": "IBM",
"expiration": "2025-02-21",
"strike": "250.00",
"type": "put",
"last": "0.00",
"mark": "28.40",
"bid": "27.20",
"bid_size": "59",
"ask": "29.60",
"ask_size": "73",
"volume": "0",
"open_interest": "4",
"date": "2025-01-24",
"implied_volatility": "0.48400",
"delta": "-0.75828",
"gamma": "0.01036",
"theta": "-0.52687",
"vega": "0.19431",
"rho": "-0.15255"
},
{
"contractID": "IBM250221C00255000",
"symbol": "IBM",
"expiration": "2025-02-21",
"strike": "255.00",
"type": "call",
"last": "1.18",
"mark": "1.14",
"bid": "1.02",
"bid_size": "723",
"ask": "1.26",
"ask_size": "237",
"volume": "25",
"open_interest": "409",
"date": "2025-01-24",
"implied_volatility": "0.35062",
"delta": "0.11213",
"gamma": "0.00873",
"theta": "-0.28167",
"vega": "0.11870",
"rho": "0.01846"
},
{
"contractID": "IBM250221P00255000",
"symbol": "IBM",
"expiration": "2025-02-21",
"strike": "255.00",
"type": "put",
"last": "0.00",
"mark": "32.83",
"bid": "31.70",
"bid_size": "62",
"ask": "33.95",
"ask_size": "72",
"volume": "0",
"open_interest": "2",
"date": "2025-01-24",
"implied_volatility": "0.50397",
"delta": "-0.79088",
"gamma": "0.00916",
"theta": "-0.49678",
"vega": "0.17900",
"rho": "-0.16157"
},
{
"contractID": "IBM250221C00260000",
"symbol": "IBM",
"expiration": "2025-02-21",
"strike": "260.00",
"type": "call",
"last": "0.80",
"mark": "0.74",
"bid": "0.63",
"bid_size": "871",
"ask": "0.85",
"ask_size": "108",
"volume": "33",
"open_interest": "520",
"date": "2025-01-24",
"implied_volatility": "0.35001",
"delta": "0.07811",
"gamma": "0.00670",
"theta": "-0.21467",
"vega": "0.09091",
"rho": "0.01290"
},
{
"contractID": "IBM250221P00260000",
"symbol": "IBM",
"expiration": "2025-02-21",
"strike": "260.00",
"type": "put",
"last": "0.00",
"mark": "37.20",
"bid": "36.60",
"bid_size": "35",
"ask": "37.80",
"ask_size": "13",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.51372",
"delta": "-0.82327",
"gamma": "0.00811",
"theta": "-0.44452",
"vega": "0.16150",
"rho": "-0.17051"
},
{
"contractID": "IBM250221C00265000",
"symbol": "IBM",
"expiration": "2025-02-21",
"strike": "265.00",
"type": "call",
"last": "0.60",
"mark": "0.57",
"bid": "0.52",
"bid_size": "85",
"ask": "0.62",
"ask_size": "129",
"volume": "221",
"open_interest": "627",
"date": "2025-01-24",
"implied_volatility": "0.36373",
"delta": "0.06060",
"gamma": "0.00530",
"theta": "-0.18287",
"vega": "0.07475",
"rho": "0.01001"
},
{
"contractID": "IBM250221P00265000",
"symbol": "IBM",
"expiration": "2025-02-21",
"strike": "265.00",
"type": "put",
"last": "0.00",
"mark": "41.92",
"bid": "41.35",
"bid_size": "37",
"ask": "42.50",
"ask_size": "12",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.53933",
"delta": "-0.84241",
"gamma": "0.00717",
"theta": "-0.42711",
"vega": "0.14999",
"rho": "-0.17743"
},
{
"contractID": "IBM250221C00270000",
"symbol": "IBM",
"expiration": "2025-02-21",
"strike": "270.00",
"type": "call",
"last": "0.41",
"mark": "0.40",
"bid": "0.28",
"bid_size": "601",
"ask": "0.51",
"ask_size": "289",
"volume": "8",
"open_interest": "315",
"date": "2025-01-24",
"implied_volatility": "0.36967",
"delta": "0.04403",
"gamma": "0.00405",
"theta": "-0.14383",
"vega": "0.05799",
"rho": "0.00729"
},
{
"contractID": "IBM250221P00270000",
"symbol": "IBM",
"expiration": "2025-02-21",
"strike": "270.00",
"type": "put",
"last": "0.00",
"mark": "46.90",
"bid": "46.25",
"bid_size": "36",
"ask": "47.55",
"ask_size": "40",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.57957",
"delta": "-0.85092",
"gamma": "0.00643",
"theta": "-0.44303",
"vega": "0.14458",
"rho": "-0.18272"
},
{
"contractID": "IBM250221C00275000",
"symbol": "IBM",
"expiration": "2025-02-21",
"strike": "275.00",
"type": "call",
"last": "0.37",
"mark": "0.60",
"bid": "0.22",
"bid_size": "164",
"ask": "0.99",
"ask_size": "589",
"volume": "0",
"open_interest": "36",
"date": "2025-01-24",
"implied_volatility": "0.43171",
"delta": "0.05501",
"gamma": "0.00414",
"theta": "-0.20001",
"vega": "0.06927",
"rho": "0.00903"
},
{
"contractID": "IBM250221P00275000",
"symbol": "IBM",
"expiration": "2025-02-21",
"strike": "275.00",
"type": "put",
"last": "0.00",
"mark": "51.67",
"bid": "50.90",
"bid_size": "69",
"ask": "52.45",
"ask_size": "50",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.60290",
"delta": "-0.86513",
"gamma": "0.00578",
"theta": "-0.42428",
"vega": "0.13509",
"rho": "-0.18883"
},
{
"contractID": "IBM250221C00280000",
"symbol": "IBM",
"expiration": "2025-02-21",
"strike": "280.00",
"type": "call",
"last": "0.50",
"mark": "0.55",
"bid": "0.11",
"bid_size": "147",
"ask": "0.99",
"ask_size": "514",
"volume": "1",
"open_interest": "26",
"date": "2025-01-24",
"implied_volatility": "0.45427",
"delta": "0.04887",
"gamma": "0.00358",
"theta": "-0.19123",
"vega": "0.06306",
"rho": "0.00801"
},
{
"contractID": "IBM250221P00280000",
"symbol": "IBM",
"expiration": "2025-02-21",
"strike": "280.00",
"type": "put",
"last": "0.00",
"mark": "57.08",
"bid": "56.10",
"bid_size": "27",
"ask": "58.05",
"ask_size": "72",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.67134",
"delta": "-0.85771",
"gamma": "0.00538",
"theta": "-0.50491",
"vega": "0.14012",
"rho": "-0.19170"
},
{
"contractID": "IBM250221C00285000",
"symbol": "IBM",
"expiration": "2025-02-21",
"strike": "285.00",
"type": "call",
"last": "0.40",
"mark": "0.60",
"bid": "0.08",
"bid_size": "77",
"ask": "1.11",
"ask_size": "570",
"volume": "0",
"open_interest": "31",
"date": "2025-01-24",
"implied_volatility": "0.49147",
"delta": "0.04940",
"gamma": "0.00334",
"theta": "-0.20829",
"vega": "0.06360",
"rho": "0.00806"
},
{
"contractID": "IBM250221P00285000",
"symbol": "IBM",
"expiration": "2025-02-21",
"strike": "285.00",
"type": "put",
"last": "0.00",
"mark": "61.52",
"bid": "60.90",
"bid_size": "51",
"ask": "62.15",
"ask_size": "53",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.66616",
"delta": "-0.88016",
"gamma": "0.00482",
"theta": "-0.42798",
"vega": "0.12444",
"rho": "-0.19898"
},
{
"contractID": "IBM250221C00290000",
"symbol": "IBM",
"expiration": "2025-02-21",
"strike": "290.00",
"type": "call",
"last": "0.02",
"mark": "0.38",
"bid": "0.01",
"bid_size": "60",
"ask": "0.75",
"ask_size": "306",
"volume": "0",
"open_interest": "9",
"date": "2025-01-24",
"implied_volatility": "0.47927",
"delta": "0.03384",
"gamma": "0.00252",
"theta": "-0.14932",
"vega": "0.04680",
"rho": "0.00554"
},
{
"contractID": "IBM250221P00290000",
"symbol": "IBM",
"expiration": "2025-02-21",
"strike": "290.00",
"type": "put",
"last": "0.00",
"mark": "66.53",
"bid": "65.95",
"bid_size": "39",
"ask": "67.10",
"ask_size": "42",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.70259",
"delta": "-0.88383",
"gamma": "0.00447",
"theta": "-0.44260",
"vega": "0.12173",
"rho": "-0.20345"
},
{
"contractID": "IBM250221C00295000",
"symbol": "IBM",
"expiration": "2025-02-21",
"strike": "295.00",
"type": "call",
"last": "0.75",
"mark": "0.01",
"bid": "0.00",
"bid_size": "0",
"ask": "0.95",
"ask_size": "90",
"volume": "0",
"open_interest": "16",
"date": "2025-01-24",
"implied_volatility": "0.32668",
"delta": "0.00174",
"gamma": "0.00027",
"theta": "-0.00758",
"vega": "0.00348",
"rho": "0.00029"
},
{
"contractID": "IBM250221P00295000",
"symbol": "IBM",
"expiration": "2025-02-21",
"strike": "295.00",
"type": "put",
"last": "0.00",
"mark": "71.45",
"bid": "70.80",
"bid_size": "73",
"ask": "72.10",
"ask_size": "64",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.73049",
"delta": "-0.88983",
"gamma": "0.00414",
"theta": "-0.44048",
"vega": "0.11720",
"rho": "-0.20826"
},
{
"contractID": "IBM250221C00300000",
"symbol": "IBM",
"expiration": "2025-02-21",
"strike": "300.00",
"type": "call",
"last": "0.22",
"mark": "0.01",
"bid": "0.00",
"bid_size": "0",
"ask": "0.73",
"ask_size": "171",
"volume": "0",
"open_interest": "28",
"date": "2025-01-24",
"implied_volatility": "0.34513",
"delta": "0.00166",
"gamma": "0.00025",
"theta": "-0.00766",
"vega": "0.00333",
"rho": "0.00028"
},
{
"contractID": "IBM250221P00300000",
"symbol": "IBM",
"expiration": "2025-02-21",
"strike": "300.00",
"type": "put",
"last": "0.00",
"mark": "76.45",
"bid": "75.60",
"bid_size": "72",
"ask": "77.30",
"ask_size": "72",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.76402",
"delta": "-0.89292",
"gamma": "0.00388",
"theta": "-0.45184",
"vega": "0.11484",
"rho": "-0.21263"
},
{
"contractID": "IBM250221C00305000",
"symbol": "IBM",
"expiration": "2025-02-21",
"strike": "305.00",
"type": "call",
"last": "0.35",
"mark": "0.01",
"bid": "0.00",
"bid_size": "0",
"ask": "0.67",
"ask_size": "168",
"volume": "0",
"open_interest": "2",
"date": "2025-01-24",
"implied_volatility": "0.36312",
"delta": "0.00159",
"gamma": "0.00023",
"theta": "-0.00772",
"vega": "0.00320",
"rho": "0.00027"
},
{
"contractID": "IBM250221P00305000",
"symbol": "IBM",
"expiration": "2025-02-21",
"strike": "305.00",
"type": "put",
"last": "0.00",
"mark": "81.40",
"bid": "80.75",
"bid_size": "49",
"ask": "82.05",
"ask_size": "56",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.79222",
"delta": "-0.89718",
"gamma": "0.00363",
"theta": "-0.45321",
"vega": "0.11151",
"rho": "-0.21716"
},
{
"contractID": "IBM250221C00310000",
"symbol": "IBM",
"expiration": "2025-02-21",
"strike": "310.00",
"type": "call",
"last": "0.00",
"mark": "0.01",
"bid": "0.00",
"bid_size": "0",
"ask": "0.63",
"ask_size": "139",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.38065",
"delta": "0.00152",
"gamma": "0.00021",
"theta": "-0.00777",
"vega": "0.00307",
"rho": "0.00025"
},
{
"contractID": "IBM250221P00310000",
"symbol": "IBM",
"expiration": "2025-02-21",
"strike": "310.00",
"type": "put",
"last": "0.00",
"mark": "86.45",
"bid": "85.80",
"bid_size": "50",
"ask": "87.10",
"ask_size": "72",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.82865",
"delta": "-0.89813",
"gamma": "0.00345",
"theta": "-0.47335",
"vega": "0.11076",
"rho": "-0.22120"
},
{
"contractID": "IBM250221C00315000",
"symbol": "IBM",
"expiration": "2025-02-21",
"strike": "315.00",
"type": "call",
"last": "0.11",
"mark": "0.01",
"bid": "0.00",
"bid_size": "0",
"ask": "1.32",
"ask_size": "96",
"volume": "0",
"open_interest": "39",
"date": "2025-01-24",
"implied_volatility": "0.39787",
"delta": "0.00146",
"gamma": "0.00019",
"theta": "-0.00782",
"vega": "0.00296",
"rho": "0.00024"
},
{
"contractID": "IBM250221P00315000",
"symbol": "IBM",
"expiration": "2025-02-21",
"strike": "315.00",
"type": "put",
"last": "0.00",
"mark": "91.55",
"bid": "90.75",
"bid_size": "72",
"ask": "92.35",
"ask_size": "79",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.86890",
"delta": "-0.89755",
"gamma": "0.00330",
"theta": "-0.50285",
"vega": "0.11122",
"rho": "-0.22501"
},
{
"contractID": "IBM250221C00320000",
"symbol": "IBM",
"expiration": "2025-02-21",
"strike": "320.00",
"type": "call",
"last": "0.00",
"mark": "0.01",
"bid": "0.00",
"bid_size": "0",
"ask": "0.97",
"ask_size": "84",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.41479",
"delta": "0.00141",
"gamma": "0.00018",
"theta": "-0.00788",
"vega": "0.00287",
"rho": "0.00024"
},
{
"contractID": "IBM250221P00320000",
"symbol": "IBM",
"expiration": "2025-02-21",
"strike": "320.00",
"type": "put",
"last": "0.00",
"mark": "96.75",
"bid": "95.65",
"bid_size": "70",
"ask": "97.85",
"ask_size": "72",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.91737",
"delta": "-0.89428",
"gamma": "0.00320",
"theta": "-0.55136",
"vega": "0.11378",
"rho": "-0.22844"
},
{
"contractID": "IBM250221C00325000",
"symbol": "IBM",
"expiration": "2025-02-21",
"strike": "325.00",
"type": "call",
"last": "0.00",
"mark": "0.01",
"bid": "0.00",
"bid_size": "0",
"ask": "0.55",
"ask_size": "141",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.43125",
"delta": "0.00136",
"gamma": "0.00017",
"theta": "-0.00792",
"vega": "0.00277",
"rho": "0.00023"
},
{
"contractID": "IBM250221P00325000",
"symbol": "IBM",
"expiration": "2025-02-21",
"strike": "325.00",
"type": "put",
"last": "0.00",
"mark": "101.33",
"bid": "100.70",
"bid_size": "48",
"ask": "101.95",
"ask_size": "54",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.90853",
"delta": "-0.90756",
"gamma": "0.00293",
"theta": "-0.47853",
"vega": "0.10314",
"rho": "-0.23424"
},
{
"contractID": "IBM250221C00330000",
"symbol": "IBM",
"expiration": "2025-02-21",
"strike": "330.00",
"type": "call",
"last": "0.00",
"mark": "0.01",
"bid": "0.00",
"bid_size": "0",
"ask": "0.73",
"ask_size": "84",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.44741",
"delta": "0.00131",
"gamma": "0.00015",
"theta": "-0.00795",
"vega": "0.00269",
"rho": "0.00022"
},
{
"contractID": "IBM250221P00330000",
"symbol": "IBM",
"expiration": "2025-02-21",
"strike": "330.00",
"type": "put",
"last": "0.00",
"mark": "106.47",
"bid": "105.60",
"bid_size": "72",
"ask": "107.35",
"ask_size": "72",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.95106",
"delta": "-0.90541",
"gamma": "0.00285",
"theta": "-0.51603",
"vega": "0.10490",
"rho": "-0.23781"
},
{
"contractID": "IBM250228C00120000",
"symbol": "IBM",
"expiration": "2025-02-28",
"strike": "120.00",
"type": "call",
"last": "0.00",
"mark": "104.53",
"bid": "103.50",
"bid_size": "75",
"ask": "105.55",
"ask_size": "72",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.20784",
"delta": "1.00000",
"gamma": "0.00000",
"theta": "-0.05174",
"vega": "0.00000",
"rho": "0.11459"
},
{
"contractID": "IBM250228P00120000",
"symbol": "IBM",
"expiration": "2025-02-28",
"strike": "120.00",
"type": "put",
"last": "0.00",
"mark": "0.01",
"bid": "0.00",
"bid_size": "0",
"ask": "1.31",
"ask_size": "71",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.66463",
"delta": "-0.00075",
"gamma": "0.00006",
"theta": "-0.00619",
"vega": "0.00181",
"rho": "-0.00017"
},
{
"contractID": "IBM250228C00125000",
"symbol": "IBM",
"expiration": "2025-02-28",
"strike": "125.00",
"type": "call",
"last": "0.00",
"mark": "99.97",
"bid": "99.40",
"bid_size": "50",
"ask": "100.55",
"ask_size": "66",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.19793",
"delta": "1.00000",
"gamma": "0.00000",
"theta": "-0.05390",
"vega": "0.00000",
"rho": "0.11937"
},
{
"contractID": "IBM250228P00125000",
"symbol": "IBM",
"expiration": "2025-02-28",
"strike": "125.00",
"type": "put",
"last": "0.00",
"mark": "0.01",
"bid": "0.00",
"bid_size": "0",
"ask": "0.43",
"ask_size": "76",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.62409",
"delta": "-0.00080",
"gamma": "0.00006",
"theta": "-0.00615",
"vega": "0.00191",
"rho": "-0.00018"
},
{
"contractID": "IBM250228C00130000",
"symbol": "IBM",
"expiration": "2025-02-28",
"strike": "130.00",
"type": "call",
"last": "0.00",
"mark": "95.03",
"bid": "94.40",
"bid_size": "52",
"ask": "95.65",
"ask_size": "75",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.18801",
"delta": "1.00000",
"gamma": "0.00000",
"theta": "-0.05606",
"vega": "0.00000",
"rho": "0.12414"
},
{
"contractID": "IBM250228P00130000",
"symbol": "IBM",
"expiration": "2025-02-28",
"strike": "130.00",
"type": "put",
"last": "0.00",
"mark": "0.01",
"bid": "0.00",
"bid_size": "0",
"ask": "1.31",
"ask_size": "71",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.58506",
"delta": "-0.00085",
"gamma": "0.00007",
"theta": "-0.00610",
"vega": "0.00203",
"rho": "-0.00019"
},
{
"contractID": "IBM250228C00135000",
"symbol": "IBM",
"expiration": "2025-02-28",
"strike": "135.00",
"type": "call",
"last": "0.00",
"mark": "90.00",
"bid": "89.40",
"bid_size": "52",
"ask": "90.60",
"ask_size": "68",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.17810",
"delta": "1.00000",
"gamma": "0.00000",
"theta": "-0.05821",
"vega": "0.00000",
"rho": "0.12892"
},
{
"contractID": "IBM250228P00135000",
"symbol": "IBM",
"expiration": "2025-02-28",
"strike": "135.00",
"type": "put",
"last": "0.00",
"mark": "0.01",
"bid": "0.00",
"bid_size": "0",
"ask": "1.32",
"ask_size": "71",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.54741",
"delta": "-0.00091",
"gamma": "0.00008",
"theta": "-0.00605",
"vega": "0.00215",
"rho": "-0.00021"
},
{
"contractID": "IBM250228C00140000",
"symbol": "IBM",
"expiration": "2025-02-28",
"strike": "140.00",
"type": "call",
"last": "0.00",
"mark": "85.00",
"bid": "84.40",
"bid_size": "54",
"ask": "85.60",
"ask_size": "66",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.16818",
"delta": "1.00000",
"gamma": "0.00000",
"theta": "-0.06037",
"vega": "0.00000",
"rho": "0.13369"
},
{
"contractID": "IBM250228P00140000",
"symbol": "IBM",
"expiration": "2025-02-28",
"strike": "140.00",
"type": "put",
"last": "0.00",
"mark": "0.01",
"bid": "0.00",
"bid_size": "0",
"ask": "1.33",
"ask_size": "71",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.51113",
"delta": "-0.00098",
"gamma": "0.00009",
"theta": "-0.00601",
"vega": "0.00229",
"rho": "-0.00022"
},
{
"contractID": "IBM250228C00145000",
"symbol": "IBM",
"expiration": "2025-02-28",
"strike": "145.00",
"type": "call",
"last": "0.00",
"mark": "80.00",
"bid": "79.40",
"bid_size": "51",
"ask": "80.60",
"ask_size": "75",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.15826",
"delta": "1.00000",
"gamma": "0.00000",
"theta": "-0.06252",
"vega": "0.00000",
"rho": "0.13846"
},
{
"contractID": "IBM250228P00145000",
"symbol": "IBM",
"expiration": "2025-02-28",
"strike": "145.00",
"type": "put",
"last": "0.00",
"mark": "0.01",
"bid": "0.00",
"bid_size": "0",
"ask": "1.34",
"ask_size": "71",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.47592",
"delta": "-0.00105",
"gamma": "0.00011",
"theta": "-0.00595",
"vega": "0.00244",
"rho": "-0.00023"
},
{
"contractID": "IBM250228C00150000",
"symbol": "IBM",
"expiration": "2025-02-28",
"strike": "150.00",
"type": "call",
"last": "0.00",
"mark": "75.03",
"bid": "74.40",
"bid_size": "52",
"ask": "75.65",
"ask_size": "66",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.14835",
"delta": "1.00000",
"gamma": "0.00000",
"theta": "-0.06468",
"vega": "0.00000",
"rho": "0.14324"
},
{
"contractID": "IBM250228P00150000",
"symbol": "IBM",
"expiration": "2025-02-28",
"strike": "150.00",
"type": "put",
"last": "0.00",
"mark": "0.01",
"bid": "0.00",
"bid_size": "0",
"ask": "1.36",
"ask_size": "71",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.44177",
"delta": "-0.00112",
"gamma": "0.00012",
"theta": "-0.00588",
"vega": "0.00260",
"rho": "-0.00025"
},
{
"contractID": "IBM250228C00155000",
"symbol": "IBM",
"expiration": "2025-02-28",
"strike": "155.00",
"type": "call",
"last": "0.00",
"mark": "69.55",
"bid": "68.50",
"bid_size": "96",
"ask": "70.60",
"ask_size": "60",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.13843",
"delta": "1.00000",
"gamma": "0.00000",
"theta": "-0.06684",
"vega": "0.00000",
"rho": "0.14801"
},
{
"contractID": "IBM250228P00155000",
"symbol": "IBM",
"expiration": "2025-02-28",
"strike": "155.00",
"type": "put",
"last": "0.00",
"mark": "0.01",
"bid": "0.00",
"bid_size": "0",
"ask": "1.36",
"ask_size": "71",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.40885",
"delta": "-0.00121",
"gamma": "0.00014",
"theta": "-0.00584",
"vega": "0.00280",
"rho": "-0.00027"
},
{
"contractID": "IBM250228C00160000",
"symbol": "IBM",
"expiration": "2025-02-28",
"strike": "160.00",
"type": "call",
"last": "0.00",
"mark": "65.08",
"bid": "64.50",
"bid_size": "46",
"ask": "65.65",
"ask_size": "73",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.12851",
"delta": "1.00000",
"gamma": "0.00000",
"theta": "-0.06899",
"vega": "0.00000",
"rho": "0.15279"
},
{
"contractID": "IBM250228P00160000",
"symbol": "IBM",
"expiration": "2025-02-28",
"strike": "160.00",
"type": "put",
"last": "0.00",
"mark": "0.01",
"bid": "0.00",
"bid_size": "0",
"ask": "1.40",
"ask_size": "72",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.37668",
"delta": "-0.00131",
"gamma": "0.00016",
"theta": "-0.00576",
"vega": "0.00300",
"rho": "-0.00029"
},
{
"contractID": "IBM250228C00165000",
"symbol": "IBM",
"expiration": "2025-02-28",
"strike": "165.00",
"type": "call",
"last": "0.00",
"mark": "60.02",
"bid": "59.40",
"bid_size": "59",
"ask": "60.65",
"ask_size": "49",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.11860",
"delta": "1.00000",
"gamma": "0.00000",
"theta": "-0.07115",
"vega": "0.00000",
"rho": "0.15756"
},
{
"contractID": "IBM250228P00165000",
"symbol": "IBM",
"expiration": "2025-02-28",
"strike": "165.00",
"type": "put",
"last": "0.00",
"mark": "0.01",
"bid": "0.00",
"bid_size": "0",
"ask": "1.40",
"ask_size": "71",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.34528",
"delta": "-0.00142",
"gamma": "0.00019",
"theta": "-0.00567",
"vega": "0.00323",
"rho": "-0.00032"
},
{
"contractID": "IBM250228C00170000",
"symbol": "IBM",
"expiration": "2025-02-28",
"strike": "170.00",
"type": "call",
"last": "0.00",
"mark": "55.15",
"bid": "54.50",
"bid_size": "58",
"ask": "55.80",
"ask_size": "65",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.10868",
"delta": "1.00000",
"gamma": "0.00000",
"theta": "-0.07331",
"vega": "0.00000",
"rho": "0.16234"
},
{
"contractID": "IBM250228P00170000",
"symbol": "IBM",
"expiration": "2025-02-28",
"strike": "170.00",
"type": "put",
"last": "0.00",
"mark": "0.39",
"bid": "0.02",
"bid_size": "35",
"ask": "0.75",
"ask_size": "71",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.49833",
"delta": "-0.02776",
"gamma": "0.00184",
"theta": "-0.11252",
"vega": "0.04441",
"rho": "-0.00636"
},
{
"contractID": "IBM250228C00175000",
"symbol": "IBM",
"expiration": "2025-02-28",
"strike": "175.00",
"type": "call",
"last": "0.00",
"mark": "49.80",
"bid": "48.75",
"bid_size": "72",
"ask": "50.85",
"ask_size": "55",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.09877",
"delta": "1.00000",
"gamma": "0.00000",
"theta": "-0.07546",
"vega": "0.00000",
"rho": "0.16711"
},
{
"contractID": "IBM250228P00175000",
"symbol": "IBM",
"expiration": "2025-02-28",
"strike": "175.00",
"type": "put",
"last": "0.00",
"mark": "0.76",
"bid": "0.02",
"bid_size": "87",
"ask": "1.50",
"ask_size": "71",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.51814",
"delta": "-0.04777",
"gamma": "0.00276",
"theta": "-0.18205",
"vega": "0.06922",
"rho": "-0.01103"
},
{
"contractID": "IBM250228C00180000",
"symbol": "IBM",
"expiration": "2025-02-28",
"strike": "180.00",
"type": "call",
"last": "0.00",
"mark": "44.92",
"bid": "43.90",
"bid_size": "91",
"ask": "45.95",
"ask_size": "56",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.08885",
"delta": "1.00000",
"gamma": "0.00000",
"theta": "-0.07762",
"vega": "0.00000",
"rho": "0.17189"
},
{
"contractID": "IBM250228P00180000",
"symbol": "IBM",
"expiration": "2025-02-28",
"strike": "180.00",
"type": "put",
"last": "0.00",
"mark": "0.36",
"bid": "0.04",
"bid_size": "161",
"ask": "0.69",
"ask_size": "29",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.40626",
"delta": "-0.03126",
"gamma": "0.00249",
"theta": "-0.10061",
"vega": "0.04901",
"rho": "-0.00708"
},
{
"contractID": "IBM250228C00185000",
"symbol": "IBM",
"expiration": "2025-02-28",
"strike": "185.00",
"type": "call",
"last": "0.00",
"mark": "40.50",
"bid": "39.95",
"bid_size": "12",
"ask": "41.05",
"ask_size": "46",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.07893",
"delta": "1.00000",
"gamma": "0.00000",
"theta": "-0.07977",
"vega": "0.00000",
"rho": "0.17666"
},
{
"contractID": "IBM250228P00185000",
"symbol": "IBM",
"expiration": "2025-02-28",
"strike": "185.00",
"type": "put",
"last": "0.00",
"mark": "0.50",
"bid": "0.01",
"bid_size": "456",
"ask": "0.99",
"ask_size": "146",
"volume": "0",
"open_interest": "9",
"date": "2025-01-24",
"implied_volatility": "0.38857",
"delta": "-0.04326",
"gamma": "0.00339",
"theta": "-0.12508",
"vega": "0.06392",
"rho": "-0.00980"
},
{
"contractID": "IBM250228C00190000",
"symbol": "IBM",
"expiration": "2025-02-28",
"strike": "190.00",
"type": "call",
"last": "0.00",
"mark": "35.48",
"bid": "34.75",
"bid_size": "71",
"ask": "36.20",
"ask_size": "25",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.06902",
"delta": "1.00000",
"gamma": "0.00000",
"theta": "-0.08193",
"vega": "0.00000",
"rho": "0.18144"
},
{
"contractID": "IBM250228P00190000",
"symbol": "IBM",
"expiration": "2025-02-28",
"strike": "190.00",
"type": "put",
"last": "0.83",
"mark": "0.75",
"bid": "0.65",
"bid_size": "41",
"ask": "0.85",
"ask_size": "20",
"volume": "14",
"open_interest": "27",
"date": "2025-01-24",
"implied_volatility": "0.37775",
"delta": "-0.06279",
"gamma": "0.00469",
"theta": "-0.16280",
"vega": "0.08592",
"rho": "-0.01425"
},
{
"contractID": "IBM250228C00195000",
"symbol": "IBM",
"expiration": "2025-02-28",
"strike": "195.00",
"type": "call",
"last": "0.00",
"mark": "31.05",
"bid": "30.50",
"bid_size": "11",
"ask": "31.60",
"ask_size": "50",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.29513",
"delta": "0.95024",
"gamma": "0.00500",
"theta": "-0.18911",
"vega": "0.07152",
"rho": "0.17506"
},
{
"contractID": "IBM250228P00195000",
"symbol": "IBM",
"expiration": "2025-02-28",
"strike": "195.00",
"type": "put",
"last": "0.00",
"mark": "1.25",
"bid": "1.03",
"bid_size": "74",
"ask": "1.48",
"ask_size": "127",
"volume": "0",
"open_interest": "26",
"date": "2025-01-24",
"implied_volatility": "0.37927",
"delta": "-0.09596",
"gamma": "0.00645",
"theta": "-0.22453",
"vega": "0.11853",
"rho": "-0.02188"
},
{
"contractID": "IBM250228C00200000",
"symbol": "IBM",
"expiration": "2025-02-28",
"strike": "200.00",
"type": "call",
"last": "26.00",
"mark": "26.10",
"bid": "25.60",
"bid_size": "56",
"ask": "26.60",
"ask_size": "12",
"volume": "0",
"open_interest": "4",
"date": "2025-01-24",
"implied_volatility": "0.25717",
"delta": "0.94060",
"gamma": "0.00660",
"theta": "-0.19059",
"vega": "0.08228",
"rho": "0.17773"
},
{
"contractID": "IBM250228P00200000",
"symbol": "IBM",
"expiration": "2025-02-28",
"strike": "200.00",
"type": "put",
"last": "1.75",
"mark": "1.74",
"bid": "1.64",
"bid_size": "9",
"ask": "1.84",
"ask_size": "40",
"volume": "9",
"open_interest": "62",
"date": "2025-01-24",
"implied_volatility": "0.36525",
"delta": "-0.12992",
"gamma": "0.00832",
"theta": "-0.26694",
"vega": "0.14720",
"rho": "-0.02967"
},
{
"contractID": "IBM250228C00205000",
"symbol": "IBM",
"expiration": "2025-02-28",
"strike": "205.00",
"type": "call",
"last": "0.00",
"mark": "21.55",
"bid": "20.80",
"bid_size": "72",
"ask": "22.30",
"ask_size": "12",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.25428",
"delta": "0.89672",
"gamma": "0.01015",
"theta": "-0.24379",
"vega": "0.12508",
"rho": "0.17263"
},
{
"contractID": "IBM250228P00205000",
"symbol": "IBM",
"expiration": "2025-02-28",
"strike": "205.00",
"type": "put",
"last": "2.39",
"mark": "2.56",
"bid": "2.39",
"bid_size": "40",
"ask": "2.72",
"ask_size": "8",
"volume": "103",
"open_interest": "53",
"date": "2025-01-24",
"implied_volatility": "0.36022",
"delta": "-0.17890",
"gamma": "0.01042",
"theta": "-0.32325",
"vega": "0.18196",
"rho": "-0.04102"
},
{
"contractID": "IBM250228C00210000",
"symbol": "IBM",
"expiration": "2025-02-28",
"strike": "210.00",
"type": "call",
"last": "17.32",
"mark": "18.10",
"bid": "17.70",
"bid_size": "53",
"ask": "18.50",
"ask_size": "50",
"volume": "0",
"open_interest": "3",
"date": "2025-01-24",
"implied_volatility": "0.29559",
"delta": "0.79819",
"gamma": "0.01368",
"theta": "-0.37186",
"vega": "0.19594",
"rho": "0.15470"
},
{
"contractID": "IBM250228P00210000",
"symbol": "IBM",
"expiration": "2025-02-28",
"strike": "210.00",
"type": "put",
"last": "3.66",
"mark": "3.77",
"bid": "3.65",
"bid_size": "3",
"ask": "3.90",
"ask_size": "3",
"volume": "18",
"open_interest": "31",
"date": "2025-01-24",
"implied_volatility": "0.36022",
"delta": "-0.24086",
"gamma": "0.01242",
"theta": "-0.38219",
"vega": "0.21683",
"rho": "-0.05553"
},
{
"contractID": "IBM250228C00215000",
"symbol": "IBM",
"expiration": "2025-02-28",
"strike": "215.00",
"type": "call",
"last": "12.85",
"mark": "13.90",
"bid": "12.85",
"bid_size": "379",
"ask": "14.95",
"ask_size": "40",
"volume": "0",
"open_interest": "2",
"date": "2025-01-24",
"implied_volatility": "0.27135",
"delta": "0.73299",
"gamma": "0.01741",
"theta": "-0.38917",
"vega": "0.22888",
"rho": "0.14467"
},
{
"contractID": "IBM250228P00215000",
"symbol": "IBM",
"expiration": "2025-02-28",
"strike": "215.00",
"type": "put",
"last": "5.55",
"mark": "5.58",
"bid": "5.25",
"bid_size": "7",
"ask": "5.90",
"ask_size": "50",
"volume": "170",
"open_interest": "22",
"date": "2025-01-24",
"implied_volatility": "0.37028",
"delta": "-0.31480",
"gamma": "0.01378",
"theta": "-0.44427",
"vega": "0.24722",
"rho": "-0.07321"
},
{
"contractID": "IBM250228C00220000",
"symbol": "IBM",
"expiration": "2025-02-28",
"strike": "220.00",
"type": "call",
"last": "12.15",
"mark": "11.35",
"bid": "10.85",
"bid_size": "334",
"ask": "11.85",
"ask_size": "40",
"volume": "1",
"open_interest": "15",
"date": "2025-01-24",
"implied_volatility": "0.29848",
"delta": "0.62728",
"gamma": "0.01821",
"theta": "-0.46618",
"vega": "0.26346",
"rho": "0.12433"
},
{
"contractID": "IBM250228P00220000",
"symbol": "IBM",
"expiration": "2025-02-28",
"strike": "220.00",
"type": "put",
"last": "7.63",
"mark": "7.28",
"bid": "6.65",
"bid_size": "185",
"ask": "7.90",
"ask_size": "50",
"volume": "16",
"open_interest": "17",
"date": "2025-01-24",
"implied_volatility": "0.36037",
"delta": "-0.38728",
"gamma": "0.01526",
"theta": "-0.46002",
"vega": "0.26655",
"rho": "-0.09046"
},
{
"contractID": "IBM250228C00225000",
"symbol": "IBM",
"expiration": "2025-02-28",
"strike": "225.00",
"type": "call",
"last": "9.90",
"mark": "8.78",
"bid": "8.15",
"bid_size": "395",
"ask": "9.40",
"ask_size": "50",
"volume": "30",
"open_interest": "48",
"date": "2025-01-24",
"implied_volatility": "0.30336",
"delta": "0.53256",
"gamma": "0.01883",
"theta": "-0.48586",
"vega": "0.27679",
"rho": "0.10638"
},
{
"contractID": "IBM250228P00225000",
"symbol": "IBM",
"expiration": "2025-02-28",
"strike": "225.00",
"type": "put",
"last": "9.92",
"mark": "9.55",
"bid": "8.95",
"bid_size": "153",
"ask": "10.15",
"ask_size": "50",
"volume": "12",
"open_interest": "9",
"date": "2025-01-24",
"implied_volatility": "0.35763",
"delta": "-0.46620",
"gamma": "0.01597",
"theta": "-0.46650",
"vega": "0.27671",
"rho": "-0.10965"
},
{
"contractID": "IBM250228C00230000",
"symbol": "IBM",
"expiration": "2025-02-28",
"strike": "230.00",
"type": "call",
"last": "6.70",
"mark": "6.40",
"bid": "5.80",
"bid_size": "547",
"ask": "7.00",
"ask_size": "57",
"volume": "2",
"open_interest": "28",
"date": "2025-01-24",
"implied_volatility": "0.29803",
"delta": "0.43776",
"gamma": "0.01900",
"theta": "-0.46614",
"vega": "0.27432",
"rho": "0.08823"
},
{
"contractID": "IBM250228P00230000",
"symbol": "IBM",
"expiration": "2025-02-28",
"strike": "230.00",
"type": "put",
"last": "12.82",
"mark": "12.78",
"bid": "12.50",
"bid_size": "50",
"ask": "13.05",
"ask_size": "50",
"volume": "10",
"open_interest": "1",
"date": "2025-01-24",
"implied_volatility": "0.37546",
"delta": "-0.54096",
"gamma": "0.01518",
"theta": "-0.48264",
"vega": "0.27625",
"rho": "-0.12886"
},
{
"contractID": "IBM250228C00235000",
"symbol": "IBM",
"expiration": "2025-02-28",
"strike": "235.00",
"type": "call",
"last": "5.10",
"mark": "5.03",
"bid": "4.85",
"bid_size": "51",
"ask": "5.20",
"ask_size": "51",
"volume": "14",
"open_interest": "123",
"date": "2025-01-24",
"implied_volatility": "0.31388",
"delta": "0.35747",
"gamma": "0.01708",
"theta": "-0.45781",
"vega": "0.25979",
"rho": "0.07223"
},
{
"contractID": "IBM250228P00235000",
"symbol": "IBM",
"expiration": "2025-02-28",
"strike": "235.00",
"type": "put",
"last": "0.00",
"mark": "16.20",
"bid": "15.40",
"bid_size": "95",
"ask": "17.00",
"ask_size": "82",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.38751",
"delta": "-0.60842",
"gamma": "0.01424",
"theta": "-0.47405",
"vega": "0.26739",
"rho": "-0.14668"
},
{
"contractID": "IBM250228C00240000",
"symbol": "IBM",
"expiration": "2025-02-28",
"strike": "240.00",
"type": "call",
"last": "3.97",
"mark": "3.23",
"bid": "2.70",
"bid_size": "548",
"ask": "3.75",
"ask_size": "3",
"volume": "2",
"open_interest": "84",
"date": "2025-01-24",
"implied_volatility": "0.29742",
"delta": "0.26787",
"gamma": "0.01591",
"theta": "-0.38021",
"vega": "0.22925",
"rho": "0.05464"
},
{
"contractID": "IBM250228P00240000",
"symbol": "IBM",
"expiration": "2025-02-28",
"strike": "240.00",
"type": "put",
"last": "0.00",
"mark": "19.88",
"bid": "19.60",
"bid_size": "10",
"ask": "20.15",
"ask_size": "40",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.39818",
"delta": "-0.66833",
"gamma": "0.01309",
"theta": "-0.45080",
"vega": "0.25261",
"rho": "-0.16313"
},
{
"contractID": "IBM250228C00245000",
"symbol": "IBM",
"expiration": "2025-02-28",
"strike": "245.00",
"type": "call",
"last": "2.55",
"mark": "2.92",
"bid": "2.45",
"bid_size": "50",
"ask": "3.40",
"ask_size": "260",
"volume": "18",
"open_interest": "79",
"date": "2025-01-24",
"implied_volatility": "0.33248",
"delta": "0.22845",
"gamma": "0.01307",
"theta": "-0.38603",
"vega": "0.21057",
"rho": "0.04645"
},
{
"contractID": "IBM250228P00245000",
"symbol": "IBM",
"expiration": "2025-02-28",
"strike": "245.00",
"type": "put",
"last": "0.00",
"mark": "23.55",
"bid": "22.50",
"bid_size": "80",
"ask": "24.60",
"ask_size": "40",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.39772",
"delta": "-0.72687",
"gamma": "0.01201",
"theta": "-0.39913",
"vega": "0.23149",
"rho": "-0.17927"
},
{
"contractID": "IBM250228C00250000",
"symbol": "IBM",
"expiration": "2025-02-28",
"strike": "250.00",
"type": "call",
"last": "1.90",
"mark": "1.79",
"bid": "1.68",
"bid_size": "60",
"ask": "1.90",
"ask_size": "1",
"volume": "31",
"open_interest": "48",
"date": "2025-01-24",
"implied_volatility": "0.31693",
"delta": "0.16078",
"gamma": "0.01106",
"theta": "-0.29567",
"vega": "0.16991",
"rho": "0.03294"
},
{
"contractID": "IBM250228P00250000",
"symbol": "IBM",
"expiration": "2025-02-28",
"strike": "250.00",
"type": "put",
"last": "0.00",
"mark": "28.18",
"bid": "27.80",
"bid_size": "40",
"ask": "28.55",
"ask_size": "40",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.43034",
"delta": "-0.75789",
"gamma": "0.01043",
"theta": "-0.40194",
"vega": "0.21744",
"rho": "-0.19039"
},
{
"contractID": "IBM250228C00255000",
"symbol": "IBM",
"expiration": "2025-02-28",
"strike": "255.00",
"type": "call",
"last": "1.50",
"mark": "1.35",
"bid": "1.08",
"bid_size": "177",
"ask": "1.63",
"ask_size": "153",
"volume": "0",
"open_interest": "9",
"date": "2025-01-24",
"implied_volatility": "0.32729",
"delta": "0.12464",
"gamma": "0.00902",
"theta": "-0.25561",
"vega": "0.14301",
"rho": "0.02557"
},
{
"contractID": "IBM250228P00255000",
"symbol": "IBM",
"expiration": "2025-02-28",
"strike": "255.00",
"type": "put",
"last": "0.00",
"mark": "33.20",
"bid": "32.30",
"bid_size": "40",
"ask": "34.10",
"ask_size": "74",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.47729",
"delta": "-0.77364",
"gamma": "0.00906",
"theta": "-0.43168",
"vega": "0.20949",
"rho": "-0.19860"
},
{
"contractID": "IBM250228C00260000",
"symbol": "IBM",
"expiration": "2025-02-28",
"strike": "260.00",
"type": "call",
"last": "1.07",
"mark": "0.69",
"bid": "0.36",
"bid_size": "421",
"ask": "1.01",
"ask_size": "11",
"volume": "0",
"open_interest": "9",
"date": "2025-01-24",
"implied_volatility": "0.30672",
"delta": "0.07487",
"gamma": "0.00662",
"theta": "-0.16438",
"vega": "0.09841",
"rho": "0.01548"
},
{
"contractID": "IBM250228P00260000",
"symbol": "IBM",
"expiration": "2025-02-28",
"strike": "260.00",
"type": "put",
"last": "0.00",
"mark": "37.25",
"bid": "36.55",
"bid_size": "53",
"ask": "37.95",
"ask_size": "27",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.47226",
"delta": "-0.81413",
"gamma": "0.00814",
"theta": "-0.36353",
"vega": "0.18636",
"rho": "-0.21121"
},
{
"contractID": "IBM250228C00265000",
"symbol": "IBM",
"expiration": "2025-02-28",
"strike": "265.00",
"type": "call",
"last": "0.87",
"mark": "0.75",
"bid": "0.56",
"bid_size": "8",
"ask": "0.93",
"ask_size": "34",
"volume": "0",
"open_interest": "1",
"date": "2025-01-24",
"implied_volatility": "0.34391",
"delta": "0.07317",
"gamma": "0.00580",
"theta": "-0.18019",
"vega": "0.09669",
"rho": "0.01505"
},
{
"contractID": "IBM250228P00265000",
"symbol": "IBM",
"expiration": "2025-02-28",
"strike": "265.00",
"type": "put",
"last": "0.00",
"mark": "41.95",
"bid": "41.30",
"bid_size": "55",
"ask": "42.60",
"ask_size": "13",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.49543",
"delta": "-0.83363",
"gamma": "0.00724",
"theta": "-0.34949",
"vega": "0.17373",
"rho": "-0.21992"
},
{
"contractID": "IBM250228C00270000",
"symbol": "IBM",
"expiration": "2025-02-28",
"strike": "270.00",
"type": "call",
"last": "0.64",
"mark": "0.56",
"bid": "0.36",
"bid_size": "26",
"ask": "0.76",
"ask_size": "43",
"volume": "0",
"open_interest": "1",
"date": "2025-01-24",
"implied_volatility": "0.35168",
"delta": "0.05595",
"gamma": "0.00461",
"theta": "-0.14913",
"vega": "0.07849",
"rho": "0.01152"
},
{
"contractID": "IBM250228P00270000",
"symbol": "IBM",
"expiration": "2025-02-28",
"strike": "270.00",
"type": "put",
"last": "0.00",
"mark": "47.35",
"bid": "46.35",
"bid_size": "22",
"ask": "48.35",
"ask_size": "92",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.55656",
"delta": "-0.82965",
"gamma": "0.00654",
"theta": "-0.41062",
"vega": "0.17639",
"rho": "-0.22424"
},
{
"contractID": "IBM250228C00275000",
"symbol": "IBM",
"expiration": "2025-02-28",
"strike": "275.00",
"type": "call",
"last": "0.00",
"mark": "0.70",
"bid": "0.01",
"bid_size": "307",
"ask": "1.39",
"ask_size": "71",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.39726",
"delta": "0.06139",
"gamma": "0.00439",
"theta": "-0.18055",
"vega": "0.08442",
"rho": "0.01256"
},
{
"contractID": "IBM250228P00275000",
"symbol": "IBM",
"expiration": "2025-02-28",
"strike": "275.00",
"type": "put",
"last": "0.00",
"mark": "51.80",
"bid": "51.25",
"bid_size": "33",
"ask": "52.35",
"ask_size": "32",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.56067",
"delta": "-0.85319",
"gamma": "0.00589",
"theta": "-0.36226",
"vega": "0.15999",
"rho": "-0.23359"
},
{
"contractID": "IBM250228C00280000",
"symbol": "IBM",
"expiration": "2025-02-28",
"strike": "280.00",
"type": "call",
"last": "0.00",
"mark": "0.01",
"bid": "0.00",
"bid_size": "0",
"ask": "1.58",
"ask_size": "72",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.23980",
"delta": "0.00209",
"gamma": "0.00040",
"theta": "-0.00595",
"vega": "0.00460",
"rho": "0.00044"
},
{
"contractID": "IBM250228P00280000",
"symbol": "IBM",
"expiration": "2025-02-28",
"strike": "280.00",
"type": "put",
"last": "0.00",
"mark": "56.60",
"bid": "55.95",
"bid_size": "44",
"ask": "57.25",
"ask_size": "40",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.58278",
"delta": "-0.86510",
"gamma": "0.00535",
"theta": "-0.35034",
"vega": "0.15107",
"rho": "-0.24076"
},
{
"contractID": "IBM250228C00285000",
"symbol": "IBM",
"expiration": "2025-02-28",
"strike": "285.00",
"type": "call",
"last": "0.00",
"mark": "0.01",
"bid": "0.00",
"bid_size": "0",
"ask": "1.52",
"ask_size": "71",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.25733",
"delta": "0.00195",
"gamma": "0.00035",
"theta": "-0.00598",
"vega": "0.00432",
"rho": "0.00041"
},
{
"contractID": "IBM250228P00285000",
"symbol": "IBM",
"expiration": "2025-02-28",
"strike": "285.00",
"type": "put",
"last": "0.00",
"mark": "61.50",
"bid": "60.80",
"bid_size": "70",
"ask": "62.20",
"ask_size": "52",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.60960",
"delta": "-0.87298",
"gamma": "0.00491",
"theta": "-0.34902",
"vega": "0.14491",
"rho": "-0.24715"
},
{
"contractID": "IBM250228C00290000",
"symbol": "IBM",
"expiration": "2025-02-28",
"strike": "290.00",
"type": "call",
"last": "0.00",
"mark": "0.01",
"bid": "0.00",
"bid_size": "0",
"ask": "1.46",
"ask_size": "71",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.27455",
"delta": "0.00184",
"gamma": "0.00031",
"theta": "-0.00604",
"vega": "0.00409",
"rho": "0.00039"
},
{
"contractID": "IBM250228P00290000",
"symbol": "IBM",
"expiration": "2025-02-28",
"strike": "290.00",
"type": "put",
"last": "0.00",
"mark": "66.47",
"bid": "65.80",
"bid_size": "65",
"ask": "67.15",
"ask_size": "50",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.63994",
"delta": "-0.87801",
"gamma": "0.00454",
"theta": "-0.35582",
"vega": "0.14087",
"rho": "-0.25300"
},
{
"contractID": "IBM250228C00295000",
"symbol": "IBM",
"expiration": "2025-02-28",
"strike": "295.00",
"type": "call",
"last": "0.00",
"mark": "0.01",
"bid": "0.00",
"bid_size": "0",
"ask": "1.43",
"ask_size": "71",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.29147",
"delta": "0.00175",
"gamma": "0.00028",
"theta": "-0.00611",
"vega": "0.00391",
"rho": "0.00037"
},
{
"contractID": "IBM250228P00295000",
"symbol": "IBM",
"expiration": "2025-02-28",
"strike": "295.00",
"type": "put",
"last": "0.00",
"mark": "71.38",
"bid": "70.75",
"bid_size": "69",
"ask": "72.00",
"ask_size": "35",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.66494",
"delta": "-0.88429",
"gamma": "0.00421",
"theta": "-0.35354",
"vega": "0.13571",
"rho": "-0.25907"
},
{
"contractID": "IBM250228C00300000",
"symbol": "IBM",
"expiration": "2025-02-28",
"strike": "300.00",
"type": "call",
"last": "0.00",
"mark": "0.01",
"bid": "0.00",
"bid_size": "0",
"ask": "1.41",
"ask_size": "72",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.30793",
"delta": "0.00167",
"gamma": "0.00025",
"theta": "-0.00616",
"vega": "0.00374",
"rho": "0.00035"
},
{
"contractID": "IBM250228P00300000",
"symbol": "IBM",
"expiration": "2025-02-28",
"strike": "300.00",
"type": "put",
"last": "0.00",
"mark": "76.80",
"bid": "75.75",
"bid_size": "53",
"ask": "77.85",
"ask_size": "72",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.72606",
"delta": "-0.87546",
"gamma": "0.00406",
"theta": "-0.42264",
"vega": "0.14293",
"rho": "-0.26236"
},
{
"contractID": "IBM250228C00305000",
"symbol": "IBM",
"expiration": "2025-02-28",
"strike": "305.00",
"type": "call",
"last": "0.00",
"mark": "0.01",
"bid": "0.00",
"bid_size": "0",
"ask": "1.28",
"ask_size": "71",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.32394",
"delta": "0.00159",
"gamma": "0.00023",
"theta": "-0.00620",
"vega": "0.00358",
"rho": "0.00033"
},
{
"contractID": "IBM250228P00305000",
"symbol": "IBM",
"expiration": "2025-02-28",
"strike": "305.00",
"type": "put",
"last": "0.00",
"mark": "81.72",
"bid": "80.80",
"bid_size": "57",
"ask": "82.65",
"ask_size": "96",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.75061",
"delta": "-0.88071",
"gamma": "0.00381",
"theta": "-0.42162",
"vega": "0.13867",
"rho": "-0.26821"
},
{
"contractID": "IBM250307C00155000",
"symbol": "IBM",
"expiration": "2025-03-07",
"strike": "155.00",
"type": "call",
"last": "0.00",
"mark": "69.78",
"bid": "68.15",
"bid_size": "95",
"ask": "71.40",
"ask_size": "70",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.11590",
"delta": "1.00000",
"gamma": "0.00000",
"theta": "-0.06678",
"vega": "0.00000",
"rho": "0.17747"
},
{
"contractID": "IBM250307P00155000",
"symbol": "IBM",
"expiration": "2025-03-07",
"strike": "155.00",
"type": "put",
"last": "0.00",
"mark": "0.01",
"bid": "0.00",
"bid_size": "0",
"ask": "2.18",
"ask_size": "72",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.37394",
"delta": "-0.00121",
"gamma": "0.00014",
"theta": "-0.00484",
"vega": "0.00305",
"rho": "-0.00032"
},
{
"contractID": "IBM250307C00160000",
"symbol": "IBM",
"expiration": "2025-03-07",
"strike": "160.00",
"type": "call",
"last": "0.00",
"mark": "64.93",
"bid": "63.20",
"bid_size": "75",
"ask": "66.65",
"ask_size": "75",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.10759",
"delta": "1.00000",
"gamma": "0.00000",
"theta": "-0.06894",
"vega": "0.00000",
"rho": "0.18319"
},
{
"contractID": "IBM250307P00160000",
"symbol": "IBM",
"expiration": "2025-03-07",
"strike": "160.00",
"type": "put",
"last": "0.00",
"mark": "0.01",
"bid": "0.00",
"bid_size": "0",
"ask": "2.21",
"ask_size": "72",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.34452",
"delta": "-0.00130",
"gamma": "0.00016",
"theta": "-0.00477",
"vega": "0.00327",
"rho": "-0.00035"
},
{
"contractID": "IBM250307C00165000",
"symbol": "IBM",
"expiration": "2025-03-07",
"strike": "165.00",
"type": "call",
"last": "0.00",
"mark": "59.83",
"bid": "58.30",
"bid_size": "94",
"ask": "61.35",
"ask_size": "98",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.09929",
"delta": "1.00000",
"gamma": "0.00000",
"theta": "-0.07109",
"vega": "0.00000",
"rho": "0.18892"
},
{
"contractID": "IBM250307P00165000",
"symbol": "IBM",
"expiration": "2025-03-07",
"strike": "165.00",
"type": "put",
"last": "0.00",
"mark": "0.01",
"bid": "0.00",
"bid_size": "0",
"ask": "2.25",
"ask_size": "71",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.31601",
"delta": "-0.00142",
"gamma": "0.00019",
"theta": "-0.00471",
"vega": "0.00353",
"rho": "-0.00038"
},
{
"contractID": "IBM250307C00170000",
"symbol": "IBM",
"expiration": "2025-03-07",
"strike": "170.00",
"type": "call",
"last": "0.00",
"mark": "54.97",
"bid": "53.40",
"bid_size": "72",
"ask": "56.55",
"ask_size": "93",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.09099",
"delta": "1.00000",
"gamma": "0.00000",
"theta": "-0.07324",
"vega": "0.00000",
"rho": "0.19464"
},
{
"contractID": "IBM250307P00170000",
"symbol": "IBM",
"expiration": "2025-03-07",
"strike": "170.00",
"type": "put",
"last": "0.00",
"mark": "0.01",
"bid": "0.00",
"bid_size": "0",
"ask": "2.28",
"ask_size": "71",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.28827",
"delta": "-0.00155",
"gamma": "0.00023",
"theta": "-0.00465",
"vega": "0.00384",
"rho": "-0.00041"
},
{
"contractID": "IBM250307C00175000",
"symbol": "IBM",
"expiration": "2025-03-07",
"strike": "175.00",
"type": "call",
"last": "0.00",
"mark": "49.95",
"bid": "48.35",
"bid_size": "74",
"ask": "51.55",
"ask_size": "96",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.08269",
"delta": "1.00000",
"gamma": "0.00000",
"theta": "-0.07540",
"vega": "0.00000",
"rho": "0.20037"
},
{
"contractID": "IBM250307P00175000",
"symbol": "IBM",
"expiration": "2025-03-07",
"strike": "175.00",
"type": "put",
"last": "0.00",
"mark": "0.01",
"bid": "0.00",
"bid_size": "0",
"ask": "2.32",
"ask_size": "71",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.26098",
"delta": "-0.00170",
"gamma": "0.00027",
"theta": "-0.00456",
"vega": "0.00417",
"rho": "-0.00045"
},
{
"contractID": "IBM250307C00180000",
"symbol": "IBM",
"expiration": "2025-03-07",
"strike": "180.00",
"type": "call",
"last": "0.00",
"mark": "45.60",
"bid": "44.45",
"bid_size": "72",
"ask": "46.75",
"ask_size": "72",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.07439",
"delta": "1.00000",
"gamma": "0.00000",
"theta": "-0.07755",
"vega": "0.00000",
"rho": "0.20609"
},
{
"contractID": "IBM250307P00180000",
"symbol": "IBM",
"expiration": "2025-03-07",
"strike": "180.00",
"type": "put",
"last": "0.00",
"mark": "0.01",
"bid": "0.00",
"bid_size": "0",
"ask": "2.48",
"ask_size": "71",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.23446",
"delta": "-0.00188",
"gamma": "0.00034",
"theta": "-0.00448",
"vega": "0.00458",
"rho": "-0.00050"
},
{
"contractID": "IBM250307C00185000",
"symbol": "IBM",
"expiration": "2025-03-07",
"strike": "185.00",
"type": "call",
"last": "0.00",
"mark": "40.00",
"bid": "38.55",
"bid_size": "74",
"ask": "41.45",
"ask_size": "72",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.06608",
"delta": "1.00000",
"gamma": "0.00000",
"theta": "-0.07971",
"vega": "0.00000",
"rho": "0.21182"
},
{
"contractID": "IBM250307P00185000",
"symbol": "IBM",
"expiration": "2025-03-07",
"strike": "185.00",
"type": "put",
"last": "0.00",
"mark": "0.01",
"bid": "0.00",
"bid_size": "0",
"ask": "2.59",
"ask_size": "71",
"volume": "0",
"open_interest": "8",
"date": "2025-01-24",
"implied_volatility": "0.20839",
"delta": "-0.00210",
"gamma": "0.00042",
"theta": "-0.00437",
"vega": "0.00506",
"rho": "-0.00056"
},
{
"contractID": "IBM250307C00190000",
"symbol": "IBM",
"expiration": "2025-03-07",
"strike": "190.00",
"type": "call",
"last": "0.00",
"mark": "35.70",
"bid": "35.20",
"bid_size": "11",
"ask": "36.20",
"ask_size": "14",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.05778",
"delta": "1.00000",
"gamma": "0.00000",
"theta": "-0.08186",
"vega": "0.00000",
"rho": "0.21754"
},
{
"contractID": "IBM250307P00190000",
"symbol": "IBM",
"expiration": "2025-03-07",
"strike": "190.00",
"type": "put",
"last": "0.00",
"mark": "0.91",
"bid": "0.79",
"bid_size": "19",
"ask": "1.03",
"ask_size": "40",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.36235",
"delta": "-0.07074",
"gamma": "0.00490",
"theta": "-0.15524",
"vega": "0.10322",
"rho": "-0.01935"
},
{
"contractID": "IBM250307C00195000",
"symbol": "IBM",
"expiration": "2025-03-07",
"strike": "195.00",
"type": "call",
"last": "0.00",
"mark": "31.20",
"bid": "30.60",
"bid_size": "12",
"ask": "31.80",
"ask_size": "33",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.26922",
"delta": "0.95129",
"gamma": "0.00492",
"theta": "-0.16919",
"vega": "0.07703",
"rho": "0.21017"
},
{
"contractID": "IBM250307P00195000",
"symbol": "IBM",
"expiration": "2025-03-07",
"strike": "195.00",
"type": "put",
"last": "1.30",
"mark": "1.32",
"bid": "1.23",
"bid_size": "28",
"ask": "1.42",
"ask_size": "45",
"volume": "3",
"open_interest": "1",
"date": "2025-01-24",
"implied_volatility": "0.35306",
"delta": "-0.09871",
"gamma": "0.00646",
"theta": "-0.19319",
"vega": "0.13257",
"rho": "-0.02705"
},
{
"contractID": "IBM250307C00200000",
"symbol": "IBM",
"expiration": "2025-03-07",
"strike": "200.00",
"type": "call",
"last": "0.00",
"mark": "26.27",
"bid": "25.35",
"bid_size": "72",
"ask": "27.20",
"ask_size": "51",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.23660",
"delta": "0.94047",
"gamma": "0.00656",
"theta": "-0.17299",
"vega": "0.09029",
"rho": "0.21305"
},
{
"contractID": "IBM250307P00200000",
"symbol": "IBM",
"expiration": "2025-03-07",
"strike": "200.00",
"type": "put",
"last": "1.54",
"mark": "1.92",
"bid": "1.77",
"bid_size": "141",
"ask": "2.06",
"ask_size": "50",
"volume": "2",
"open_interest": "2",
"date": "2025-01-24",
"implied_volatility": "0.34604",
"delta": "-0.13633",
"gamma": "0.00828",
"theta": "-0.23653",
"vega": "0.16668",
"rho": "-0.03747"
},
{
"contractID": "IBM250307C00205000",
"symbol": "IBM",
"expiration": "2025-03-07",
"strike": "205.00",
"type": "call",
"last": "0.00",
"mark": "22.07",
"bid": "21.25",
"bid_size": "72",
"ask": "22.90",
"ask_size": "50",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.25748",
"delta": "0.87623",
"gamma": "0.01041",
"theta": "-0.25015",
"vega": "0.15589",
"rho": "0.20126"
},
{
"contractID": "IBM250307P00205000",
"symbol": "IBM",
"expiration": "2025-03-07",
"strike": "205.00",
"type": "put",
"last": "2.90",
"mark": "2.85",
"bid": "2.74",
"bid_size": "11",
"ask": "2.95",
"ask_size": "50",
"volume": "26",
"open_interest": "2",
"date": "2025-01-24",
"implied_volatility": "0.34498",
"delta": "-0.18701",
"gamma": "0.01021",
"theta": "-0.28773",
"vega": "0.20492",
"rho": "-0.05165"
},
{
"contractID": "IBM250307C00210000",
"symbol": "IBM",
"expiration": "2025-03-07",
"strike": "210.00",
"type": "call",
"last": "19.27",
"mark": "18.55",
"bid": "18.05",
"bid_size": "54",
"ask": "19.05",
"ask_size": "50",
"volume": "0",
"open_interest": "2",
"date": "2025-01-24",
"implied_volatility": "0.28446",
"delta": "0.78978",
"gamma": "0.01329",
"theta": "-0.34066",
"vega": "0.21991",
"rho": "0.18295"
},
{
"contractID": "IBM250307P00210000",
"symbol": "IBM",
"expiration": "2025-03-07",
"strike": "210.00",
"type": "put",
"last": "4.00",
"mark": "4.57",
"bid": "3.80",
"bid_size": "82",
"ask": "5.35",
"ask_size": "169",
"volume": "94",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.36403",
"delta": "-0.25668",
"gamma": "0.01161",
"theta": "-0.36170",
"vega": "0.24571",
"rho": "-0.07166"
},
{
"contractID": "IBM250307C00215000",
"symbol": "IBM",
"expiration": "2025-03-07",
"strike": "215.00",
"type": "call",
"last": "0.00",
"mark": "14.80",
"bid": "14.10",
"bid_size": "326",
"ask": "15.50",
"ask_size": "50",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.27821",
"delta": "0.71644",
"gamma": "0.01596",
"theta": "-0.37554",
"vega": "0.25827",
"rho": "0.16829"
},
{
"contractID": "IBM250307P00215000",
"symbol": "IBM",
"expiration": "2025-03-07",
"strike": "215.00",
"type": "put",
"last": "5.98",
"mark": "5.72",
"bid": "5.55",
"bid_size": "46",
"ask": "5.90",
"ask_size": "40",
"volume": "31",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.34559",
"delta": "-0.31514",
"gamma": "0.01348",
"theta": "-0.37371",
"vega": "0.27094",
"rho": "-0.08810"
},
{
"contractID": "IBM250307C00220000",
"symbol": "IBM",
"expiration": "2025-03-07",
"strike": "220.00",
"type": "call",
"last": "0.00",
"mark": "12.55",
"bid": "11.20",
"bid_size": "393",
"ask": "13.90",
"ask_size": "104",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.31022",
"delta": "0.61984",
"gamma": "0.01610",
"theta": "-0.44634",
"vega": "0.29039",
"rho": "0.14589"
},
{
"contractID": "IBM250307P00220000",
"symbol": "IBM",
"expiration": "2025-03-07",
"strike": "220.00",
"type": "put",
"last": "7.69",
"mark": "8.03",
"bid": "7.65",
"bid_size": "30",
"ask": "8.40",
"ask_size": "57",
"volume": "32",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.35732",
"delta": "-0.38982",
"gamma": "0.01408",
"theta": "-0.41279",
"vega": "0.29254",
"rho": "-0.11008"
},
{
"contractID": "IBM250307C00225000",
"symbol": "IBM",
"expiration": "2025-03-07",
"strike": "225.00",
"type": "call",
"last": "9.22",
"mark": "9.68",
"bid": "8.75",
"bid_size": "370",
"ask": "10.60",
"ask_size": "105",
"volume": "17",
"open_interest": "3",
"date": "2025-01-24",
"implied_volatility": "0.30367",
"delta": "0.53635",
"gamma": "0.01716",
"theta": "-0.44776",
"vega": "0.30295",
"rho": "0.12760"
},
{
"contractID": "IBM250307P00225000",
"symbol": "IBM",
"expiration": "2025-03-07",
"strike": "225.00",
"type": "put",
"last": "10.28",
"mark": "10.80",
"bid": "9.70",
"bid_size": "138",
"ask": "11.90",
"ask_size": "128",
"volume": "17",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.37089",
"delta": "-0.46198",
"gamma": "0.01404",
"theta": "-0.43841",
"vega": "0.30284",
"rho": "-0.13193"
},
{
"contractID": "IBM250307C00230000",
"symbol": "IBM",
"expiration": "2025-03-07",
"strike": "230.00",
"type": "call",
"last": "0.00",
"mark": "6.80",
"bid": "6.20",
"bid_size": "486",
"ask": "7.40",
"ask_size": "40",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.28278",
"delta": "0.44493",
"gamma": "0.01832",
"theta": "-0.41061",
"vega": "0.30131",
"rho": "0.10727"
},
{
"contractID": "IBM250307P00230000",
"symbol": "IBM",
"expiration": "2025-03-07",
"strike": "230.00",
"type": "put",
"last": "12.21",
"mark": "13.18",
"bid": "12.85",
"bid_size": "40",
"ask": "13.50",
"ask_size": "40",
"volume": "3",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.35961",
"delta": "-0.53412",
"gamma": "0.01449",
"theta": "-0.41593",
"vega": "0.30310",
"rho": "-0.15333"
},
{
"contractID": "IBM250307C00235000",
"symbol": "IBM",
"expiration": "2025-03-07",
"strike": "235.00",
"type": "call",
"last": "5.62",
"mark": "4.70",
"bid": "3.60",
"bid_size": "671",
"ask": "5.80",
"ask_size": "56",
"volume": "0",
"open_interest": "5",
"date": "2025-01-24",
"implied_volatility": "0.27272",
"delta": "0.35214",
"gamma": "0.01785",
"theta": "-0.36770",
"vega": "0.28308",
"rho": "0.08568"
},
{
"contractID": "IBM250307P00235000",
"symbol": "IBM",
"expiration": "2025-03-07",
"strike": "235.00",
"type": "put",
"last": "0.00",
"mark": "16.45",
"bid": "16.00",
"bid_size": "40",
"ask": "16.90",
"ask_size": "40",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.36662",
"delta": "-0.60047",
"gamma": "0.01381",
"theta": "-0.40361",
"vega": "0.29452",
"rho": "-0.17426"
},
{
"contractID": "IBM250307C00240000",
"symbol": "IBM",
"expiration": "2025-03-07",
"strike": "240.00",
"type": "call",
"last": "3.41",
"mark": "3.40",
"bid": "2.65",
"bid_size": "498",
"ask": "4.15",
"ask_size": "50",
"volume": "6",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.27623",
"delta": "0.27484",
"gamma": "0.01584",
"theta": "-0.33060",
"vega": "0.25437",
"rho": "0.06718"
},
{
"contractID": "IBM250307P00240000",
"symbol": "IBM",
"expiration": "2025-03-07",
"strike": "240.00",
"type": "put",
"last": "0.00",
"mark": "20.15",
"bid": "19.65",
"bid_size": "40",
"ask": "20.65",
"ask_size": "40",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.37821",
"delta": "-0.65800",
"gamma": "0.01273",
"theta": "-0.38744",
"vega": "0.28004",
"rho": "-0.19339"
},
{
"contractID": "IBM250307C00245000",
"symbol": "IBM",
"expiration": "2025-03-07",
"strike": "245.00",
"type": "call",
"last": "3.55",
"mark": "3.76",
"bid": "2.72",
"bid_size": "62",
"ask": "4.80",
"ask_size": "130",
"volume": "26",
"open_interest": "5",
"date": "2025-01-24",
"implied_volatility": "0.33690",
"delta": "0.25714",
"gamma": "0.01255",
"theta": "-0.38342",
"vega": "0.24593",
"rho": "0.06219"
},
{
"contractID": "IBM250307P00245000",
"symbol": "IBM",
"expiration": "2025-03-07",
"strike": "245.00",
"type": "put",
"last": "0.00",
"mark": "23.70",
"bid": "22.75",
"bid_size": "80",
"ask": "24.65",
"ask_size": "30",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.37485",
"delta": "-0.71699",
"gamma": "0.01184",
"theta": "-0.34022",
"vega": "0.25802",
"rho": "-0.21274"
},
{
"contractID": "IBM250307C00250000",
"symbol": "IBM",
"expiration": "2025-03-07",
"strike": "250.00",
"type": "call",
"last": "2.52",
"mark": "2.05",
"bid": "1.88",
"bid_size": "178",
"ask": "2.22",
"ask_size": "50",
"volume": "4",
"open_interest": "2",
"date": "2025-01-24",
"implied_volatility": "0.30138",
"delta": "0.17375",
"gamma": "0.01117",
"theta": "-0.27228",
"vega": "0.19568",
"rho": "0.04259"
},
{
"contractID": "IBM250307P00250000",
"symbol": "IBM",
"expiration": "2025-03-07",
"strike": "250.00",
"type": "put",
"last": "0.00",
"mark": "27.95",
"bid": "27.00",
"bid_size": "80",
"ask": "28.90",
"ask_size": "40",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.39010",
"delta": "-0.75776",
"gamma": "0.01050",
"theta": "-0.31801",
"vega": "0.23826",
"rho": "-0.22817"
},
{
"contractID": "IBM250307C00255000",
"symbol": "IBM",
"expiration": "2025-03-07",
"strike": "255.00",
"type": "call",
"last": "1.95",
"mark": "1.43",
"bid": "1.26",
"bid_size": "220",
"ask": "1.60",
"ask_size": "41",
"volume": "2",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.30245",
"delta": "0.12950",
"gamma": "0.00915",
"theta": "-0.22342",
"vega": "0.16088",
"rho": "0.03185"
},
{
"contractID": "IBM250307P00255000",
"symbol": "IBM",
"expiration": "2025-03-07",
"strike": "255.00",
"type": "put",
"last": "0.00",
"mark": "32.73",
"bid": "32.25",
"bid_size": "40",
"ask": "33.20",
"ask_size": "30",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.42272",
"delta": "-0.78013",
"gamma": "0.00918",
"theta": "-0.32449",
"vega": "0.22571",
"rho": "-0.23946"
},
{
"contractID": "IBM250307C00260000",
"symbol": "IBM",
"expiration": "2025-03-07",
"strike": "260.00",
"type": "call",
"last": "1.49",
"mark": "1.12",
"bid": "1.01",
"bid_size": "40",
"ask": "1.24",
"ask_size": "51",
"volume": "1",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.31388",
"delta": "0.10272",
"gamma": "0.00748",
"theta": "-0.19564",
"vega": "0.13647",
"rho": "0.02528"
},
{
"contractID": "IBM250307P00260000",
"symbol": "IBM",
"expiration": "2025-03-07",
"strike": "260.00",
"type": "put",
"last": "0.00",
"mark": "37.33",
"bid": "36.60",
"bid_size": "55",
"ask": "38.05",
"ask_size": "22",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.44375",
"delta": "-0.80456",
"gamma": "0.00816",
"theta": "-0.31147",
"vega": "0.21053",
"rho": "-0.25107"
},
{
"contractID": "IBM250307C00265000",
"symbol": "IBM",
"expiration": "2025-03-07",
"strike": "265.00",
"type": "call",
"last": "0.79",
"mark": "0.01",
"bid": "0.00",
"bid_size": "0",
"ask": "2.90",
"ask_size": "158",
"volume": "158",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.16708",
"delta": "0.00266",
"gamma": "0.00065",
"theta": "-0.00481",
"vega": "0.00627",
"rho": "0.00068"
},
{
"contractID": "IBM250307P00265000",
"symbol": "IBM",
"expiration": "2025-03-07",
"strike": "265.00",
"type": "put",
"last": "0.00",
"mark": "42.05",
"bid": "41.45",
"bid_size": "41",
"ask": "42.65",
"ask_size": "11",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.46723",
"delta": "-0.82312",
"gamma": "0.00728",
"theta": "-0.30345",
"vega": "0.19790",
"rho": "-0.26131"
},
{
"contractID": "IBM250307C00270000",
"symbol": "IBM",
"expiration": "2025-03-07",
"strike": "270.00",
"type": "call",
"last": "0.73",
"mark": "1.19",
"bid": "0.50",
"bid_size": "50",
"ask": "1.88",
"ask_size": "101",
"volume": "11",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.37882",
"delta": "0.09296",
"gamma": "0.00576",
"theta": "-0.21732",
"vega": "0.12684",
"rho": "0.02268"
},
{
"contractID": "IBM250307P00270000",
"symbol": "IBM",
"expiration": "2025-03-07",
"strike": "270.00",
"type": "put",
"last": "0.00",
"mark": "46.90",
"bid": "46.40",
"bid_size": "18",
"ask": "47.40",
"ask_size": "11",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.49467",
"delta": "-0.83602",
"gamma": "0.00655",
"theta": "-0.30355",
"vega": "0.18853",
"rho": "-0.27022"
},
{
"contractID": "IBM250307C00275000",
"symbol": "IBM",
"expiration": "2025-03-07",
"strike": "275.00",
"type": "call",
"last": "0.00",
"mark": "0.01",
"bid": "0.00",
"bid_size": "0",
"ask": "2.49",
"ask_size": "71",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.20153",
"delta": "0.00225",
"gamma": "0.00046",
"theta": "-0.00492",
"vega": "0.00537",
"rho": "0.00057"
},
{
"contractID": "IBM250307P00275000",
"symbol": "IBM",
"expiration": "2025-03-07",
"strike": "275.00",
"type": "put",
"last": "0.00",
"mark": "52.00",
"bid": "50.35",
"bid_size": "74",
"ask": "53.65",
"ask_size": "76",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.53400",
"delta": "-0.84005",
"gamma": "0.00597",
"theta": "-0.32615",
"vega": "0.18550",
"rho": "-0.27713"
},
{
"contractID": "IBM250307C00280000",
"symbol": "IBM",
"expiration": "2025-03-07",
"strike": "280.00",
"type": "call",
"last": "0.00",
"mark": "0.01",
"bid": "0.00",
"bid_size": "0",
"ask": "2.37",
"ask_size": "71",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.21815",
"delta": "0.00210",
"gamma": "0.00040",
"theta": "-0.00499",
"vega": "0.00505",
"rho": "0.00053"
},
{
"contractID": "IBM250307P00280000",
"symbol": "IBM",
"expiration": "2025-03-07",
"strike": "280.00",
"type": "put",
"last": "0.00",
"mark": "56.55",
"bid": "54.75",
"bid_size": "72",
"ask": "58.35",
"ask_size": "74",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.54131",
"delta": "-0.85923",
"gamma": "0.00541",
"theta": "-0.29259",
"vega": "0.17036",
"rho": "-0.28733"
},
{
"contractID": "IBM250307C00285000",
"symbol": "IBM",
"expiration": "2025-03-07",
"strike": "285.00",
"type": "call",
"last": "0.00",
"mark": "0.01",
"bid": "0.00",
"bid_size": "0",
"ask": "2.31",
"ask_size": "71",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.23416",
"delta": "0.00196",
"gamma": "0.00035",
"theta": "-0.00501",
"vega": "0.00474",
"rho": "0.00050"
},
{
"contractID": "IBM250307P00285000",
"symbol": "IBM",
"expiration": "2025-03-07",
"strike": "285.00",
"type": "put",
"last": "0.00",
"mark": "61.70",
"bid": "60.00",
"bid_size": "74",
"ask": "63.40",
"ask_size": "74",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.58156",
"delta": "-0.85968",
"gamma": "0.00503",
"theta": "-0.31917",
"vega": "0.16999",
"rho": "-0.29337"
},
{
"contractID": "IBM250307C00290000",
"symbol": "IBM",
"expiration": "2025-03-07",
"strike": "290.00",
"type": "call",
"last": "0.00",
"mark": "0.01",
"bid": "0.00",
"bid_size": "0",
"ask": "2.26",
"ask_size": "71",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.25001",
"delta": "0.00186",
"gamma": "0.00031",
"theta": "-0.00508",
"vega": "0.00452",
"rho": "0.00047"
},
{
"contractID": "IBM250307P00290000",
"symbol": "IBM",
"expiration": "2025-03-07",
"strike": "290.00",
"type": "put",
"last": "0.00",
"mark": "66.65",
"bid": "64.90",
"bid_size": "71",
"ask": "68.40",
"ask_size": "95",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.60915",
"delta": "-0.86543",
"gamma": "0.00466",
"theta": "-0.32418",
"vega": "0.16520",
"rho": "-0.30056"
},
{
"contractID": "IBM250307C00295000",
"symbol": "IBM",
"expiration": "2025-03-07",
"strike": "295.00",
"type": "call",
"last": "0.00",
"mark": "0.01",
"bid": "0.00",
"bid_size": "0",
"ask": "2.22",
"ask_size": "71",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.26525",
"delta": "0.00175",
"gamma": "0.00028",
"theta": "-0.00510",
"vega": "0.00428",
"rho": "0.00044"
},
{
"contractID": "IBM250307P00295000",
"symbol": "IBM",
"expiration": "2025-03-07",
"strike": "295.00",
"type": "put",
"last": "0.00",
"mark": "71.75",
"bid": "70.10",
"bid_size": "93",
"ask": "73.40",
"ask_size": "72",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.64482",
"delta": "-0.86657",
"gamma": "0.00438",
"theta": "-0.34478",
"vega": "0.16425",
"rho": "-0.30672"
},
{
"contractID": "IBM250307C00300000",
"symbol": "IBM",
"expiration": "2025-03-07",
"strike": "300.00",
"type": "call",
"last": "0.00",
"mark": "0.01",
"bid": "0.00",
"bid_size": "0",
"ask": "2.17",
"ask_size": "71",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.28034",
"delta": "0.00167",
"gamma": "0.00025",
"theta": "-0.00516",
"vega": "0.00410",
"rho": "0.00042"
},
{
"contractID": "IBM250307P00300000",
"symbol": "IBM",
"expiration": "2025-03-07",
"strike": "300.00",
"type": "put",
"last": "0.00",
"mark": "76.92",
"bid": "75.55",
"bid_size": "73",
"ask": "78.30",
"ask_size": "72",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.68430",
"delta": "-0.86556",
"gamma": "0.00415",
"theta": "-0.37334",
"vega": "0.16510",
"rho": "-0.31241"
},
{
"contractID": "IBM250321C00085000",
"symbol": "IBM",
"expiration": "2025-03-21",
"strike": "85.00",
"type": "call",
"last": "0.00",
"mark": "139.78",
"bid": "139.05",
"bid_size": "71",
"ask": "140.50",
"ask_size": "74",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.17511",
"delta": "1.00000",
"gamma": "0.00000",
"theta": "-0.03656",
"vega": "0.00000",
"rho": "0.12955"
},
{
"contractID": "IBM250321P00085000",
"symbol": "IBM",
"expiration": "2025-03-21",
"strike": "85.00",
"type": "put",
"last": "0.00",
"mark": "0.01",
"bid": "0.00",
"bid_size": "0",
"ask": "0.66",
"ask_size": "71",
"volume": "0",
"open_interest": "33",
"date": "2025-01-24",
"implied_volatility": "0.79725",
"delta": "-0.00050",
"gamma": "0.00003",
"theta": "-0.00400",
"vega": "0.00156",
"rho": "-0.00019"
},
{
"contractID": "IBM250321C00090000",
"symbol": "IBM",
"expiration": "2025-03-21",
"strike": "90.00",
"type": "call",
"last": "0.00",
"mark": "134.72",
"bid": "133.95",
"bid_size": "71",
"ask": "135.50",
"ask_size": "73",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.16885",
"delta": "1.00000",
"gamma": "0.00000",
"theta": "-0.03871",
"vega": "0.00000",
"rho": "0.13717"
},
{
"contractID": "IBM250321P00090000",
"symbol": "IBM",
"expiration": "2025-03-21",
"strike": "90.00",
"type": "put",
"last": "0.00",
"mark": "0.01",
"bid": "0.00",
"bid_size": "0",
"ask": "0.69",
"ask_size": "71",
"volume": "0",
"open_interest": "1",
"date": "2025-01-24",
"implied_volatility": "0.75259",
"delta": "-0.00053",
"gamma": "0.00003",
"theta": "-0.00398",
"vega": "0.00165",
"rho": "-0.00020"
},
{
"contractID": "IBM250321C00095000",
"symbol": "IBM",
"expiration": "2025-03-21",
"strike": "95.00",
"type": "call",
"last": "0.00",
"mark": "129.73",
"bid": "128.90",
"bid_size": "71",
"ask": "130.55",
"ask_size": "72",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.16258",
"delta": "1.00000",
"gamma": "0.00000",
"theta": "-0.04086",
"vega": "0.00000",
"rho": "0.14479"
},
{
"contractID": "IBM250321P00095000",
"symbol": "IBM",
"expiration": "2025-03-21",
"strike": "95.00",
"type": "put",
"last": "0.00",
"mark": "0.01",
"bid": "0.00",
"bid_size": "0",
"ask": "0.72",
"ask_size": "71",
"volume": "0",
"open_interest": "8",
"date": "2025-01-24",
"implied_volatility": "0.71036",
"delta": "-0.00056",
"gamma": "0.00003",
"theta": "-0.00396",
"vega": "0.00174",
"rho": "-0.00021"
},
{
"contractID": "IBM250321C00100000",
"symbol": "IBM",
"expiration": "2025-03-21",
"strike": "100.00",
"type": "call",
"last": "125.20",
"mark": "124.62",
"bid": "123.80",
"bid_size": "71",
"ask": "125.45",
"ask_size": "63",
"volume": "0",
"open_interest": "3",
"date": "2025-01-24",
"implied_volatility": "0.15632",
"delta": "1.00000",
"gamma": "0.00000",
"theta": "-0.04301",
"vega": "0.00000",
"rho": "0.15241"
},
{
"contractID": "IBM250321P00100000",
"symbol": "IBM",
"expiration": "2025-03-21",
"strike": "100.00",
"type": "put",
"last": "0.00",
"mark": "0.01",
"bid": "0.00",
"bid_size": "0",
"ask": "0.55",
"ask_size": "71",
"volume": "0",
"open_interest": "6",
"date": "2025-01-24",
"implied_volatility": "0.67027",
"delta": "-0.00059",
"gamma": "0.00004",
"theta": "-0.00394",
"vega": "0.00183",
"rho": "-0.00022"
},
{
"contractID": "IBM250321C00105000",
"symbol": "IBM",
"expiration": "2025-03-21",
"strike": "105.00",
"type": "call",
"last": "0.00",
"mark": "119.67",
"bid": "118.85",
"bid_size": "71",
"ask": "120.50",
"ask_size": "68",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.15006",
"delta": "1.00000",
"gamma": "0.00000",
"theta": "-0.04516",
"vega": "0.00000",
"rho": "0.16003"
},
{
"contractID": "IBM250321P00105000",
"symbol": "IBM",
"expiration": "2025-03-21",
"strike": "105.00",
"type": "put",
"last": "0.00",
"mark": "0.01",
"bid": "0.00",
"bid_size": "0",
"ask": "0.72",
"ask_size": "71",
"volume": "0",
"open_interest": "4",
"date": "2025-01-24",
"implied_volatility": "0.63201",
"delta": "-0.00063",
"gamma": "0.00004",
"theta": "-0.00392",
"vega": "0.00193",
"rho": "-0.00023"
},
{
"contractID": "IBM250321C00110000",
"symbol": "IBM",
"expiration": "2025-03-21",
"strike": "110.00",
"type": "call",
"last": "0.00",
"mark": "114.65",
"bid": "113.75",
"bid_size": "71",
"ask": "115.55",
"ask_size": "57",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.14380",
"delta": "1.00000",
"gamma": "0.00000",
"theta": "-0.04731",
"vega": "0.00000",
"rho": "0.16765"
},
{
"contractID": "IBM250321P00110000",
"symbol": "IBM",
"expiration": "2025-03-21",
"strike": "110.00",
"type": "put",
"last": "0.00",
"mark": "0.01",
"bid": "0.00",
"bid_size": "0",
"ask": "1.14",
"ask_size": "71",
"volume": "0",
"open_interest": "4",
"date": "2025-01-24",
"implied_volatility": "0.59558",
"delta": "-0.00067",
"gamma": "0.00004",
"theta": "-0.00389",
"vega": "0.00204",
"rho": "-0.00025"
},
{
"contractID": "IBM250321C00115000",
"symbol": "IBM",
"expiration": "2025-03-21",
"strike": "115.00",
"type": "call",
"last": "0.00",
"mark": "109.67",
"bid": "108.80",
"bid_size": "70",
"ask": "110.55",
"ask_size": "70",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.13753",
"delta": "1.00000",
"gamma": "0.00000",
"theta": "-0.04947",
"vega": "0.00000",
"rho": "0.17527"
},
{
"contractID": "IBM250321P00115000",
"symbol": "IBM",
"expiration": "2025-03-21",
"strike": "115.00",
"type": "put",
"last": "0.00",
"mark": "0.01",
"bid": "0.00",
"bid_size": "0",
"ask": "1.22",
"ask_size": "71",
"volume": "0",
"open_interest": "29",
"date": "2025-01-24",
"implied_volatility": "0.56082",
"delta": "-0.00071",
"gamma": "0.00005",
"theta": "-0.00387",
"vega": "0.00216",
"rho": "-0.00026"
},
{
"contractID": "IBM250321C00120000",
"symbol": "IBM",
"expiration": "2025-03-21",
"strike": "120.00",
"type": "call",
"last": "0.00",
"mark": "104.88",
"bid": "103.85",
"bid_size": "75",
"ask": "105.90",
"ask_size": "75",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.13127",
"delta": "1.00000",
"gamma": "0.00000",
"theta": "-0.05162",
"vega": "0.00000",
"rho": "0.18289"
},
{
"contractID": "IBM250321P00120000",
"symbol": "IBM",
"expiration": "2025-03-21",
"strike": "120.00",
"type": "put",
"last": "0.00",
"mark": "0.01",
"bid": "0.00",
"bid_size": "0",
"ask": "1.26",
"ask_size": "71",
"volume": "0",
"open_interest": "35",
"date": "2025-01-24",
"implied_volatility": "0.52744",
"delta": "-0.00075",
"gamma": "0.00006",
"theta": "-0.00384",
"vega": "0.00228",
"rho": "-0.00027"
},
{
"contractID": "IBM250321C00125000",
"symbol": "IBM",
"expiration": "2025-03-21",
"strike": "125.00",
"type": "call",
"last": "0.00",
"mark": "99.80",
"bid": "99.05",
"bid_size": "71",
"ask": "100.55",
"ask_size": "69",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.12501",
"delta": "1.00000",
"gamma": "0.00000",
"theta": "-0.05377",
"vega": "0.00000",
"rho": "0.19051"
},
{
"contractID": "IBM250321P00125000",
"symbol": "IBM",
"expiration": "2025-03-21",
"strike": "125.00",
"type": "put",
"last": "0.00",
"mark": "0.01",
"bid": "0.00",
"bid_size": "0",
"ask": "1.29",
"ask_size": "71",
"volume": "0",
"open_interest": "25",
"date": "2025-01-24",
"implied_volatility": "0.49543",
"delta": "-0.00080",
"gamma": "0.00006",
"theta": "-0.00382",
"vega": "0.00242",
"rho": "-0.00029"
},
{
"contractID": "IBM250321C00130000",
"symbol": "IBM",
"expiration": "2025-03-21",
"strike": "130.00",
"type": "call",
"last": "85.15",
"mark": "95.10",
"bid": "94.25",
"bid_size": "70",
"ask": "95.95",
"ask_size": "70",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.11874",
"delta": "1.00000",
"gamma": "0.00000",
"theta": "-0.05592",
"vega": "0.00000",
"rho": "0.19813"
},
{
"contractID": "IBM250321P00130000",
"symbol": "IBM",
"expiration": "2025-03-21",
"strike": "130.00",
"type": "put",
"last": "0.00",
"mark": "0.01",
"bid": "0.00",
"bid_size": "0",
"ask": "0.88",
"ask_size": "213",
"volume": "0",
"open_interest": "99",
"date": "2025-01-24",
"implied_volatility": "0.46449",
"delta": "-0.00085",
"gamma": "0.00007",
"theta": "-0.00378",
"vega": "0.00256",
"rho": "-0.00031"
},
{
"contractID": "IBM250321C00135000",
"symbol": "IBM",
"expiration": "2025-03-21",
"strike": "135.00",
"type": "call",
"last": "84.23",
"mark": "89.95",
"bid": "89.45",
"bid_size": "46",
"ask": "90.45",
"ask_size": "48",
"volume": "0",
"open_interest": "112",
"date": "2025-01-24",
"implied_volatility": "0.11248",
"delta": "1.00000",
"gamma": "0.00000",
"theta": "-0.05807",
"vega": "0.00000",
"rho": "0.20575"
},
{
"contractID": "IBM250321P00135000",
"symbol": "IBM",
"expiration": "2025-03-21",
"strike": "135.00",
"type": "put",
"last": "0.00",
"mark": "0.01",
"bid": "0.00",
"bid_size": "0",
"ask": "0.93",
"ask_size": "274",
"volume": "0",
"open_interest": "226",
"date": "2025-01-24",
"implied_volatility": "0.43476",
"delta": "-0.00091",
"gamma": "0.00008",
"theta": "-0.00375",
"vega": "0.00271",
"rho": "-0.00033"
},
{
"contractID": "IBM250321C00140000",
"symbol": "IBM",
"expiration": "2025-03-21",
"strike": "140.00",
"type": "call",
"last": "0.00",
"mark": "84.95",
"bid": "83.95",
"bid_size": "70",
"ask": "85.95",
"ask_size": "70",
"volume": "0",
"open_interest": "12",
"date": "2025-01-24",
"implied_volatility": "0.10622",
"delta": "1.00000",
"gamma": "0.00000",
"theta": "-0.06022",
"vega": "0.00000",
"rho": "0.21337"
},
{
"contractID": "IBM250321P00140000",
"symbol": "IBM",
"expiration": "2025-03-21",
"strike": "140.00",
"type": "put",
"last": "0.00",
"mark": "0.48",
"bid": "0.04",
"bid_size": "1",
"ask": "0.92",
"ask_size": "292",
"volume": "0",
"open_interest": "277",
"date": "2025-01-24",
"implied_volatility": "0.64284",
"delta": "-0.02102",
"gamma": "0.00089",
"theta": "-0.09092",
"vega": "0.04448",
"rho": "-0.00799"
},
{
"contractID": "IBM250321C00145000",
"symbol": "IBM",
"expiration": "2025-03-21",
"strike": "145.00",
"type": "call",
"last": "69.90",
"mark": "79.72",
"bid": "78.95",
"bid_size": "72",
"ask": "80.50",
"ask_size": "54",
"volume": "0",
"open_interest": "43",
"date": "2025-01-24",
"implied_volatility": "0.09996",
"delta": "1.00000",
"gamma": "0.00000",
"theta": "-0.06237",
"vega": "0.00000",
"rho": "0.22099"
},
{
"contractID": "IBM250321P00145000",
"symbol": "IBM",
"expiration": "2025-03-21",
"strike": "145.00",
"type": "put",
"last": "0.00",
"mark": "0.01",
"bid": "0.00",
"bid_size": "0",
"ask": "0.75",
"ask_size": "491",
"volume": "0",
"open_interest": "373",
"date": "2025-01-24",
"implied_volatility": "0.37821",
"delta": "-0.00104",
"gamma": "0.00010",
"theta": "-0.00368",
"vega": "0.00307",
"rho": "-0.00037"
},
{
"contractID": "IBM250321C00150000",
"symbol": "IBM",
"expiration": "2025-03-21",
"strike": "150.00",
"type": "call",
"last": "63.85",
"mark": "74.60",
"bid": "73.65",
"bid_size": "76",
"ask": "75.55",
"ask_size": "63",
"volume": "0",
"open_interest": "27",
"date": "2025-01-24",
"implied_volatility": "0.09369",
"delta": "1.00000",
"gamma": "0.00000",
"theta": "-0.06452",
"vega": "0.00000",
"rho": "0.22861"
},
{
"contractID": "IBM250321P00150000",
"symbol": "IBM",
"expiration": "2025-03-21",
"strike": "150.00",
"type": "put",
"last": "0.20",
"mark": "0.01",
"bid": "0.00",
"bid_size": "0",
"ask": "0.18",
"ask_size": "30",
"volume": "2",
"open_interest": "489",
"date": "2025-01-24",
"implied_volatility": "0.35123",
"delta": "-0.00111",
"gamma": "0.00012",
"theta": "-0.00364",
"vega": "0.00327",
"rho": "-0.00040"
},
{
"contractID": "IBM250321C00155000",
"symbol": "IBM",
"expiration": "2025-03-21",
"strike": "155.00",
"type": "call",
"last": "75.00",
"mark": "70.17",
"bid": "69.25",
"bid_size": "72",
"ask": "71.10",
"ask_size": "80",
"volume": "0",
"open_interest": "9",
"date": "2025-01-24",
"implied_volatility": "0.08743",
"delta": "1.00000",
"gamma": "0.00000",
"theta": "-0.06667",
"vega": "0.00000",
"rho": "0.23623"
},
{
"contractID": "IBM250321P00155000",
"symbol": "IBM",
"expiration": "2025-03-21",
"strike": "155.00",
"type": "put",
"last": "0.00",
"mark": "0.39",
"bid": "0.02",
"bid_size": "135",
"ask": "0.75",
"ask_size": "849",
"volume": "0",
"open_interest": "554",
"date": "2025-01-24",
"implied_volatility": "0.50458",
"delta": "-0.02203",
"gamma": "0.00118",
"theta": "-0.07376",
"vega": "0.04626",
"rho": "-0.00820"
},
{
"contractID": "IBM250321C00160000",
"symbol": "IBM",
"expiration": "2025-03-21",
"strike": "160.00",
"type": "call",
"last": "64.00",
"mark": "64.97",
"bid": "64.40",
"bid_size": "52",
"ask": "65.55",
"ask_size": "44",
"volume": "0",
"open_interest": "265",
"date": "2025-01-24",
"implied_volatility": "0.08117",
"delta": "1.00000",
"gamma": "0.00000",
"theta": "-0.06882",
"vega": "0.00000",
"rho": "0.24385"
},
{
"contractID": "IBM250321P00160000",
"symbol": "IBM",
"expiration": "2025-03-21",
"strike": "160.00",
"type": "put",
"last": "0.00",
"mark": "0.17",
"bid": "0.07",
"bid_size": "33",
"ask": "0.26",
"ask_size": "26",
"volume": "0",
"open_interest": "1323",
"date": "2025-01-24",
"implied_volatility": "0.41129",
"delta": "-0.01279",
"gamma": "0.00091",
"theta": "-0.03764",
"vega": "0.02906",
"rho": "-0.00467"
},
{
"contractID": "IBM250321C00165000",
"symbol": "IBM",
"expiration": "2025-03-21",
"strike": "165.00",
"type": "call",
"last": "56.51",
"mark": "59.80",
"bid": "59.00",
"bid_size": "74",
"ask": "60.60",
"ask_size": "44",
"volume": "0",
"open_interest": "539",
"date": "2025-01-24",
"implied_volatility": "0.07490",
"delta": "1.00000",
"gamma": "0.00000",
"theta": "-0.07097",
"vega": "0.00000",
"rho": "0.25147"
},
{
"contractID": "IBM250321P00165000",
"symbol": "IBM",
"expiration": "2025-03-21",
"strike": "165.00",
"type": "put",
"last": "0.00",
"mark": "0.30",
"bid": "0.20",
"bid_size": "6",
"ask": "0.41",
"ask_size": "834",
"volume": "0",
"open_interest": "497",
"date": "2025-01-24",
"implied_volatility": "0.41342",
"delta": "-0.02109",
"gamma": "0.00139",
"theta": "-0.05789",
"vega": "0.04459",
"rho": "-0.00773"
},
{
"contractID": "IBM250321C00170000",
"symbol": "IBM",
"expiration": "2025-03-21",
"strike": "170.00",
"type": "call",
"last": "57.21",
"mark": "54.83",
"bid": "53.95",
"bid_size": "72",
"ask": "55.70",
"ask_size": "44",
"volume": "0",
"open_interest": "195",
"date": "2025-01-24",
"implied_volatility": "0.06864",
"delta": "1.00000",
"gamma": "0.00000",
"theta": "-0.07312",
"vega": "0.00000",
"rho": "0.25909"
},
{
"contractID": "IBM250321P00170000",
"symbol": "IBM",
"expiration": "2025-03-21",
"strike": "170.00",
"type": "put",
"last": "0.28",
"mark": "0.24",
"bid": "0.10",
"bid_size": "443",
"ask": "0.38",
"ask_size": "522",
"volume": "3",
"open_interest": "458",
"date": "2025-01-24",
"implied_volatility": "0.36601",
"delta": "-0.01937",
"gamma": "0.00146",
"theta": "-0.04750",
"vega": "0.04149",
"rho": "-0.00705"
},
{
"contractID": "IBM250321C00175000",
"symbol": "IBM",
"expiration": "2025-03-21",
"strike": "175.00",
"type": "call",
"last": "41.69",
"mark": "49.92",
"bid": "49.05",
"bid_size": "72",
"ask": "50.80",
"ask_size": "35",
"volume": "0",
"open_interest": "531",
"date": "2025-01-24",
"implied_volatility": "0.06238",
"delta": "1.00000",
"gamma": "0.00000",
"theta": "-0.07527",
"vega": "0.00000",
"rho": "0.26672"
},
{
"contractID": "IBM250321P00175000",
"symbol": "IBM",
"expiration": "2025-03-21",
"strike": "175.00",
"type": "put",
"last": "0.00",
"mark": "0.44",
"bid": "0.30",
"bid_size": "167",
"ask": "0.59",
"ask_size": "659",
"volume": "0",
"open_interest": "311",
"date": "2025-01-24",
"implied_volatility": "0.37059",
"delta": "-0.03262",
"gamma": "0.00223",
"theta": "-0.07419",
"vega": "0.06422",
"rho": "-0.01193"
},
{
"contractID": "IBM250321C00180000",
"symbol": "IBM",
"expiration": "2025-03-21",
"strike": "180.00",
"type": "call",
"last": "45.62",
"mark": "45.05",
"bid": "44.20",
"bid_size": "226",
"ask": "45.90",
"ask_size": "22",
"volume": "2",
"open_interest": "744",
"date": "2025-01-24",
"implied_volatility": "0.05612",
"delta": "1.00000",
"gamma": "0.00000",
"theta": "-0.07742",
"vega": "0.00000",
"rho": "0.27434"
},
{
"contractID": "IBM250321P00180000",
"symbol": "IBM",
"expiration": "2025-03-21",
"strike": "180.00",
"type": "put",
"last": "0.50",
"mark": "0.56",
"bid": "0.44",
"bid_size": "183",
"ask": "0.67",
"ask_size": "327",
"volume": "16",
"open_interest": "536",
"date": "2025-01-24",
"implied_volatility": "0.35260",
"delta": "-0.04214",
"gamma": "0.00290",
"theta": "-0.08661",
"vega": "0.07915",
"rho": "-0.01539"
},
{
"contractID": "IBM250321C00185000",
"symbol": "IBM",
"expiration": "2025-03-21",
"strike": "185.00",
"type": "call",
"last": "42.05",
"mark": "40.27",
"bid": "39.40",
"bid_size": "209",
"ask": "41.15",
"ask_size": "14",
"volume": "1",
"open_interest": "1142",
"date": "2025-01-24",
"implied_volatility": "0.04985",
"delta": "1.00000",
"gamma": "0.00000",
"theta": "-0.07957",
"vega": "0.00000",
"rho": "0.28196"
},
{
"contractID": "IBM250321P00185000",
"symbol": "IBM",
"expiration": "2025-03-21",
"strike": "185.00",
"type": "put",
"last": "0.74",
"mark": "0.77",
"bid": "0.65",
"bid_size": "193",
"ask": "0.88",
"ask_size": "175",
"volume": "3",
"open_interest": "465",
"date": "2025-01-24",
"implied_volatility": "0.34010",
"delta": "-0.05715",
"gamma": "0.00383",
"theta": "-0.10600",
"vega": "0.10095",
"rho": "-0.02089"
},
{
"contractID": "IBM250321C00190000",
"symbol": "IBM",
"expiration": "2025-03-21",
"strike": "190.00",
"type": "call",
"last": "33.25",
"mark": "35.58",
"bid": "34.95",
"bid_size": "328",
"ask": "36.20",
"ask_size": "12",
"volume": "0",
"open_interest": "837",
"date": "2025-01-24",
"implied_volatility": "0.04359",
"delta": "1.00000",
"gamma": "0.00000",
"theta": "-0.08173",
"vega": "0.00000",
"rho": "0.28958"
},
{
"contractID": "IBM250321P00190000",
"symbol": "IBM",
"expiration": "2025-03-21",
"strike": "190.00",
"type": "put",
"last": "1.08",
"mark": "1.10",
"bid": "1.05",
"bid_size": "31",
"ask": "1.16",
"ask_size": "40",
"volume": "47",
"open_interest": "991",
"date": "2025-01-24",
"implied_volatility": "0.33141",
"delta": "-0.07902",
"gamma": "0.00505",
"theta": "-0.13190",
"vega": "0.12969",
"rho": "-0.02894"
},
{
"contractID": "IBM250321C00195000",
"symbol": "IBM",
"expiration": "2025-03-21",
"strike": "195.00",
"type": "call",
"last": "31.85",
"mark": "30.57",
"bid": "29.65",
"bid_size": "319",
"ask": "31.50",
"ask_size": "12",
"volume": "5",
"open_interest": "909",
"date": "2025-01-24",
"implied_volatility": "0.03733",
"delta": "1.00000",
"gamma": "0.00000",
"theta": "-0.08388",
"vega": "0.00000",
"rho": "0.29720"
},
{
"contractID": "IBM250321P00195000",
"symbol": "IBM",
"expiration": "2025-03-21",
"strike": "195.00",
"type": "put",
"last": "1.52",
"mark": "1.67",
"bid": "1.50",
"bid_size": "160",
"ask": "1.84",
"ask_size": "276",
"volume": "30",
"open_interest": "532",
"date": "2025-01-24",
"implied_volatility": "0.33019",
"delta": "-0.11207",
"gamma": "0.00655",
"theta": "-0.16893",
"vega": "0.16779",
"rho": "-0.04122"
},
{
"contractID": "IBM250321C00200000",
"symbol": "IBM",
"expiration": "2025-03-21",
"strike": "200.00",
"type": "call",
"last": "26.80",
"mark": "26.45",
"bid": "25.80",
"bid_size": "396",
"ask": "27.10",
"ask_size": "12",
"volume": "5",
"open_interest": "5115",
"date": "2025-01-24",
"implied_volatility": "0.19102",
"delta": "0.95434",
"gamma": "0.00570",
"theta": "-0.13401",
"vega": "0.08444",
"rho": "0.28857"
},
{
"contractID": "IBM250321P00200000",
"symbol": "IBM",
"expiration": "2025-03-21",
"strike": "200.00",
"type": "put",
"last": "2.36",
"mark": "2.33",
"bid": "2.23",
"bid_size": "6",
"ask": "2.43",
"ask_size": "107",
"volume": "52",
"open_interest": "1491",
"date": "2025-01-24",
"implied_volatility": "0.32318",
"delta": "-0.14936",
"gamma": "0.00817",
"theta": "-0.20006",
"vega": "0.20471",
"rho": "-0.05509"
},
{
"contractID": "IBM250321C00205000",
"symbol": "IBM",
"expiration": "2025-03-21",
"strike": "205.00",
"type": "call",
"last": "20.75",
"mark": "22.50",
"bid": "21.30",
"bid_size": "89",
"ask": "23.70",
"ask_size": "51",
"volume": "0",
"open_interest": "18",
"date": "2025-01-24",
"implied_volatility": "0.23080",
"delta": "0.87256",
"gamma": "0.01027",
"theta": "-0.21338",
"vega": "0.18372",
"rho": "0.26642"
},
{
"contractID": "IBM250321P00205000",
"symbol": "IBM",
"expiration": "2025-03-21",
"strike": "205.00",
"type": "put",
"last": "3.44",
"mark": "3.25",
"bid": "3.20",
"bid_size": "7",
"ask": "3.30",
"ask_size": "1",
"volume": "38",
"open_interest": "209",
"date": "2025-01-24",
"implied_volatility": "0.31861",
"delta": "-0.19643",
"gamma": "0.00987",
"theta": "-0.23266",
"vega": "0.24385",
"rho": "-0.07274"
},
{
"contractID": "IBM250321C00210000",
"symbol": "IBM",
"expiration": "2025-03-21",
"strike": "210.00",
"type": "call",
"last": "19.05",
"mark": "19.15",
"bid": "18.80",
"bid_size": "79",
"ask": "19.50",
"ask_size": "57",
"volume": "12",
"open_interest": "653",
"date": "2025-01-24",
"implied_volatility": "0.25946",
"delta": "0.78415",
"gamma": "0.01282",
"theta": "-0.28608",
"vega": "0.25787",
"rho": "0.24108"
},
{
"contractID": "IBM250321P00210000",
"symbol": "IBM",
"expiration": "2025-03-21",
"strike": "210.00",
"type": "put",
"last": "4.79",
"mark": "4.50",
"bid": "4.40",
"bid_size": "93",
"ask": "4.60",
"ask_size": "1",
"volume": "532",
"open_interest": "2082",
"date": "2025-01-24",
"implied_volatility": "0.31647",
"delta": "-0.25303",
"gamma": "0.01148",
"theta": "-0.26385",
"vega": "0.28160",
"rho": "-0.09418"
},
{
"contractID": "IBM250321C00215000",
"symbol": "IBM",
"expiration": "2025-03-21",
"strike": "215.00",
"type": "call",
"last": "15.50",
"mark": "15.62",
"bid": "15.15",
"bid_size": "398",
"ask": "16.10",
"ask_size": "51",
"volume": "22",
"open_interest": "83",
"date": "2025-01-24",
"implied_volatility": "0.26022",
"delta": "0.71002",
"gamma": "0.01494",
"theta": "-0.31795",
"vega": "0.30140",
"rho": "0.22092"
},
{
"contractID": "IBM250321P00215000",
"symbol": "IBM",
"expiration": "2025-03-21",
"strike": "215.00",
"type": "put",
"last": "6.20",
"mark": "6.28",
"bid": "6.10",
"bid_size": "4",
"ask": "6.45",
"ask_size": "1",
"volume": "30",
"open_interest": "1179",
"date": "2025-01-24",
"implied_volatility": "0.32120",
"delta": "-0.31918",
"gamma": "0.01263",
"theta": "-0.29547",
"vega": "0.31455",
"rho": "-0.11972"
},
{
"contractID": "IBM250321C00220000",
"symbol": "IBM",
"expiration": "2025-03-21",
"strike": "220.00",
"type": "call",
"last": "12.77",
"mark": "12.82",
"bid": "12.60",
"bid_size": "49",
"ask": "13.05",
"ask_size": "1",
"volume": "85",
"open_interest": "5544",
"date": "2025-01-24",
"implied_volatility": "0.27044",
"delta": "0.62530",
"gamma": "0.01592",
"theta": "-0.34951",
"vega": "0.33381",
"rho": "0.19599"
},
{
"contractID": "IBM250321P00220000",
"symbol": "IBM",
"expiration": "2025-03-21",
"strike": "220.00",
"type": "put",
"last": "8.30",
"mark": "8.25",
"bid": "8.10",
"bid_size": "50",
"ask": "8.40",
"ask_size": "1",
"volume": "61",
"open_interest": "2506",
"date": "2025-01-24",
"implied_volatility": "0.32059",
"delta": "-0.38684",
"gamma": "0.01356",
"theta": "-0.31092",
"vega": "0.33705",
"rho": "-0.14607"
},
{
"contractID": "IBM250321C00225000",
"symbol": "IBM",
"expiration": "2025-03-21",
"strike": "225.00",
"type": "call",
"last": "10.00",
"mark": "10.18",
"bid": "10.05",
"bid_size": "40",
"ask": "10.30",
"ask_size": "1",
"volume": "15",
"open_interest": "1461",
"date": "2025-01-24",
"implied_volatility": "0.27196",
"delta": "0.54272",
"gamma": "0.01656",
"theta": "-0.35797",
"vega": "0.34926",
"rho": "0.17156"
},
{
"contractID": "IBM250321P00225000",
"symbol": "IBM",
"expiration": "2025-03-21",
"strike": "225.00",
"type": "put",
"last": "10.95",
"mark": "10.45",
"bid": "10.00",
"bid_size": "413",
"ask": "10.90",
"ask_size": "1",
"volume": "92",
"open_interest": "1602",
"date": "2025-01-24",
"implied_volatility": "0.31662",
"delta": "-0.45684",
"gamma": "0.01423",
"theta": "-0.31135",
"vega": "0.34922",
"rho": "-0.17360"
},
{
"contractID": "IBM250321C00230000",
"symbol": "IBM",
"expiration": "2025-03-21",
"strike": "230.00",
"type": "call",
"last": "7.68",
"mark": "7.97",
"bid": "7.85",
"bid_size": "40",
"ask": "8.10",
"ask_size": "1",
"volume": "57",
"open_interest": "2602",
"date": "2025-01-24",
"implied_volatility": "0.27394",
"delta": "0.46114",
"gamma": "0.01646",
"theta": "-0.35356",
"vega": "0.34961",
"rho": "0.14682"
},
{
"contractID": "IBM250321P00230000",
"symbol": "IBM",
"expiration": "2025-03-21",
"strike": "230.00",
"type": "put",
"last": "13.85",
"mark": "13.43",
"bid": "12.80",
"bid_size": "193",
"ask": "14.05",
"ask_size": "1",
"volume": "22",
"open_interest": "1044",
"date": "2025-01-24",
"implied_volatility": "0.32486",
"delta": "-0.52547",
"gamma": "0.01392",
"theta": "-0.31417",
"vega": "0.35056",
"rho": "-0.20184"
},
{
"contractID": "IBM250321C00235000",
"symbol": "IBM",
"expiration": "2025-03-21",
"strike": "235.00",
"type": "call",
"last": "6.15",
"mark": "6.15",
"bid": "6.05",
"bid_size": "41",
"ask": "6.25",
"ask_size": "20",
"volume": "106",
"open_interest": "313",
"date": "2025-01-24",
"implied_volatility": "0.27608",
"delta": "0.38405",
"gamma": "0.01571",
"theta": "-0.33733",
"vega": "0.33634",
"rho": "0.12302"
},
{
"contractID": "IBM250321P00235000",
"symbol": "IBM",
"expiration": "2025-03-21",
"strike": "235.00",
"type": "put",
"last": "16.20",
"mark": "17.93",
"bid": "16.85",
"bid_size": "11",
"ask": "19.00",
"ask_size": "322",
"volume": "18",
"open_interest": "255",
"date": "2025-01-24",
"implied_volatility": "0.36784",
"delta": "-0.57528",
"gamma": "0.01210",
"theta": "-0.34983",
"vega": "0.34501",
"rho": "-0.22592"
},
{
"contractID": "IBM250321C00240000",
"symbol": "IBM",
"expiration": "2025-03-21",
"strike": "240.00",
"type": "call",
"last": "4.85",
"mark": "4.67",
"bid": "4.60",
"bid_size": "40",
"ask": "4.75",
"ask_size": "40",
"volume": "162",
"open_interest": "4110",
"date": "2025-01-24",
"implied_volatility": "0.27775",
"delta": "0.31351",
"gamma": "0.01450",
"theta": "-0.31105",
"vega": "0.31216",
"rho": "0.10096"
},
{
"contractID": "IBM250321P00240000",
"symbol": "IBM",
"expiration": "2025-03-21",
"strike": "240.00",
"type": "put",
"last": "20.70",
"mark": "20.55",
"bid": "19.70",
"bid_size": "148",
"ask": "21.40",
"ask_size": "144",
"volume": "4",
"open_interest": "862",
"date": "2025-01-24",
"implied_volatility": "0.34833",
"delta": "-0.64156",
"gamma": "0.01218",
"theta": "-0.30204",
"vega": "0.32893",
"rho": "-0.25280"
},
{
"contractID": "IBM250321C00245000",
"symbol": "IBM",
"expiration": "2025-03-21",
"strike": "245.00",
"type": "call",
"last": "3.53",
"mark": "3.53",
"bid": "3.45",
"bid_size": "44",
"ask": "3.60",
"ask_size": "71",
"volume": "27",
"open_interest": "199",
"date": "2025-01-24",
"implied_volatility": "0.28050",
"delta": "0.25214",
"gamma": "0.01292",
"theta": "-0.27995",
"vega": "0.28107",
"rho": "0.08155"
},
{
"contractID": "IBM250321P00245000",
"symbol": "IBM",
"expiration": "2025-03-21",
"strike": "245.00",
"type": "put",
"last": "24.30",
"mark": "24.70",
"bid": "24.35",
"bid_size": "10",
"ask": "25.05",
"ask_size": "40",
"volume": "213",
"open_interest": "69",
"date": "2025-01-24",
"implied_volatility": "0.36723",
"delta": "-0.68442",
"gamma": "0.01099",
"theta": "-0.29733",
"vega": "0.31304",
"rho": "-0.27395"
},
{
"contractID": "IBM250321C00250000",
"symbol": "IBM",
"expiration": "2025-03-21",
"strike": "250.00",
"type": "call",
"last": "2.65",
"mark": "2.63",
"bid": "2.54",
"bid_size": "67",
"ask": "2.72",
"ask_size": "32",
"volume": "303",
"open_interest": "12422",
"date": "2025-01-24",
"implied_volatility": "0.28278",
"delta": "0.19937",
"gamma": "0.01122",
"theta": "-0.24502",
"vega": "0.24605",
"rho": "0.06473"
},
{
"contractID": "IBM250321P00250000",
"symbol": "IBM",
"expiration": "2025-03-21",
"strike": "250.00",
"type": "put",
"last": "0.00",
"mark": "28.62",
"bid": "27.55",
"bid_size": "73",
"ask": "29.70",
"ask_size": "63",
"volume": "0",
"open_interest": "31",
"date": "2025-01-24",
"implied_volatility": "0.37287",
"delta": "-0.72873",
"gamma": "0.01009",
"theta": "-0.27129",
"vega": "0.29183",
"rho": "-0.29525"
},
{
"contractID": "IBM250321C00255000",
"symbol": "IBM",
"expiration": "2025-03-21",
"strike": "255.00",
"type": "call",
"last": "1.91",
"mark": "2.02",
"bid": "1.86",
"bid_size": "90",
"ask": "2.18",
"ask_size": "256",
"volume": "17",
"open_interest": "123",
"date": "2025-01-24",
"implied_volatility": "0.28888",
"delta": "0.15897",
"gamma": "0.00952",
"theta": "-0.21544",
"vega": "0.21334",
"rho": "0.05173"
},
{
"contractID": "IBM250321P00255000",
"symbol": "IBM",
"expiration": "2025-03-21",
"strike": "255.00",
"type": "put",
"last": "0.00",
"mark": "32.75",
"bid": "32.10",
"bid_size": "72",
"ask": "33.40",
"ask_size": "20",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.37973",
"delta": "-0.76683",
"gamma": "0.00915",
"theta": "-0.24459",
"vega": "0.26942",
"rho": "-0.31472"
},
{
"contractID": "IBM250321C00260000",
"symbol": "IBM",
"expiration": "2025-03-21",
"strike": "260.00",
"type": "call",
"last": "1.50",
"mark": "1.41",
"bid": "1.29",
"bid_size": "324",
"ask": "1.53",
"ask_size": "2",
"volume": "30",
"open_interest": "1230",
"date": "2025-01-24",
"implied_volatility": "0.28690",
"delta": "0.11916",
"gamma": "0.00788",
"theta": "-0.17487",
"vega": "0.17527",
"rho": "0.03893"
},
{
"contractID": "IBM250321P00260000",
"symbol": "IBM",
"expiration": "2025-03-21",
"strike": "260.00",
"type": "put",
"last": "0.00",
"mark": "37.60",
"bid": "37.25",
"bid_size": "11",
"ask": "37.95",
"ask_size": "11",
"volume": "0",
"open_interest": "2",
"date": "2025-01-24",
"implied_volatility": "0.40930",
"delta": "-0.78400",
"gamma": "0.00813",
"theta": "-0.25152",
"vega": "0.25798",
"rho": "-0.32809"
},
{
"contractID": "IBM250321C00265000",
"symbol": "IBM",
"expiration": "2025-03-21",
"strike": "265.00",
"type": "call",
"last": "1.18",
"mark": "1.03",
"bid": "0.92",
"bid_size": "242",
"ask": "1.14",
"ask_size": "51",
"volume": "10",
"open_interest": "553",
"date": "2025-01-24",
"implied_volatility": "0.28964",
"delta": "0.09096",
"gamma": "0.00642",
"theta": "-0.14445",
"vega": "0.14413",
"rho": "0.02979"
},
{
"contractID": "IBM250321P00265000",
"symbol": "IBM",
"expiration": "2025-03-21",
"strike": "265.00",
"type": "put",
"last": "0.00",
"mark": "42.28",
"bid": "41.85",
"bid_size": "10",
"ask": "42.70",
"ask_size": "12",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.43004",
"delta": "-0.80318",
"gamma": "0.00732",
"theta": "-0.24566",
"vega": "0.24414",
"rho": "-0.34188"
},
{
"contractID": "IBM250321C00270000",
"symbol": "IBM",
"expiration": "2025-03-21",
"strike": "270.00",
"type": "call",
"last": "0.82",
"mark": "0.77",
"bid": "0.57",
"bid_size": "644",
"ask": "0.97",
"ask_size": "222",
"volume": "23",
"open_interest": "1324",
"date": "2025-01-24",
"implied_volatility": "0.29422",
"delta": "0.07017",
"gamma": "0.00519",
"theta": "-0.12007",
"vega": "0.11845",
"rho": "0.02302"
},
{
"contractID": "IBM250321P00270000",
"symbol": "IBM",
"expiration": "2025-03-21",
"strike": "270.00",
"type": "put",
"last": "0.00",
"mark": "47.33",
"bid": "46.45",
"bid_size": "44",
"ask": "48.20",
"ask_size": "72",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.46418",
"delta": "-0.81063",
"gamma": "0.00663",
"theta": "-0.26132",
"vega": "0.23846",
"rho": "-0.35220"
},
{
"contractID": "IBM250321C00275000",
"symbol": "IBM",
"expiration": "2025-03-21",
"strike": "275.00",
"type": "call",
"last": "0.67",
"mark": "0.52",
"bid": "0.40",
"bid_size": "543",
"ask": "0.63",
"ask_size": "30",
"volume": "4",
"open_interest": "14",
"date": "2025-01-24",
"implied_volatility": "0.29284",
"delta": "0.05030",
"gamma": "0.00402",
"theta": "-0.09176",
"vega": "0.09125",
"rho": "0.01655"
},
{
"contractID": "IBM250321P00275000",
"symbol": "IBM",
"expiration": "2025-03-21",
"strike": "275.00",
"type": "put",
"last": "0.00",
"mark": "52.03",
"bid": "51.10",
"bid_size": "74",
"ask": "52.95",
"ask_size": "72",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.48186",
"delta": "-0.82596",
"gamma": "0.00605",
"theta": "-0.25226",
"vega": "0.22618",
"rho": "-0.36470"
},
{
"contractID": "IBM250321C00280000",
"symbol": "IBM",
"expiration": "2025-03-21",
"strike": "280.00",
"type": "call",
"last": "0.43",
"mark": "0.34",
"bid": "0.21",
"bid_size": "1232",
"ask": "0.47",
"ask_size": "88",
"volume": "14",
"open_interest": "8019",
"date": "2025-01-24",
"implied_volatility": "0.29071",
"delta": "0.03491",
"gamma": "0.00301",
"theta": "-0.06758",
"vega": "0.06790",
"rho": "0.01152"
},
{
"contractID": "IBM250321P00280000",
"symbol": "IBM",
"expiration": "2025-03-21",
"strike": "280.00",
"type": "put",
"last": "0.00",
"mark": "56.90",
"bid": "56.00",
"bid_size": "69",
"ask": "57.80",
"ask_size": "84",
"volume": "0",
"open_interest": "2",
"date": "2025-01-24",
"implied_volatility": "0.50549",
"delta": "-0.83558",
"gamma": "0.00556",
"theta": "-0.25329",
"vega": "0.21808",
"rho": "-0.37549"
},
{
"contractID": "IBM250321C00285000",
"symbol": "IBM",
"expiration": "2025-03-21",
"strike": "285.00",
"type": "call",
"last": "0.39",
"mark": "0.55",
"bid": "0.15",
"bid_size": "790",
"ask": "0.95",
"ask_size": "399",
"volume": "0",
"open_interest": "6",
"date": "2025-01-24",
"implied_volatility": "0.33796",
"delta": "0.04686",
"gamma": "0.00329",
"theta": "-0.09930",
"vega": "0.08623",
"rho": "0.01532"
},
{
"contractID": "IBM250321P00285000",
"symbol": "IBM",
"expiration": "2025-03-21",
"strike": "285.00",
"type": "put",
"last": "0.00",
"mark": "61.58",
"bid": "60.65",
"bid_size": "79",
"ask": "62.50",
"ask_size": "72",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.51860",
"delta": "-0.84939",
"gamma": "0.00512",
"theta": "-0.23858",
"vega": "0.20586",
"rho": "-0.38743"
},
{
"contractID": "IBM250321C00290000",
"symbol": "IBM",
"expiration": "2025-03-21",
"strike": "290.00",
"type": "call",
"last": "0.75",
"mark": "0.55",
"bid": "0.11",
"bid_size": "971",
"ask": "0.99",
"ask_size": "798",
"volume": "0",
"open_interest": "261",
"date": "2025-01-24",
"implied_volatility": "0.35809",
"delta": "0.04474",
"gamma": "0.00299",
"theta": "-0.10105",
"vega": "0.08307",
"rho": "0.01458"
},
{
"contractID": "IBM250321P00290000",
"symbol": "IBM",
"expiration": "2025-03-21",
"strike": "290.00",
"type": "put",
"last": "0.00",
"mark": "66.75",
"bid": "65.80",
"bid_size": "74",
"ask": "67.70",
"ask_size": "72",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.55427",
"delta": "-0.84940",
"gamma": "0.00479",
"theta": "-0.26025",
"vega": "0.20585",
"rho": "-0.39537"
},
{
"contractID": "IBM250321C00295000",
"symbol": "IBM",
"expiration": "2025-03-21",
"strike": "295.00",
"type": "call",
"last": "0.36",
"mark": "0.54",
"bid": "0.08",
"bid_size": "472",
"ask": "0.99",
"ask_size": "321",
"volume": "1",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.37623",
"delta": "0.04223",
"gamma": "0.00272",
"theta": "-0.10109",
"vega": "0.07929",
"rho": "0.01374"
},
{
"contractID": "IBM250321P00295000",
"symbol": "IBM",
"expiration": "2025-03-21",
"strike": "295.00",
"type": "put",
"last": "0.00",
"mark": "71.55",
"bid": "70.75",
"bid_size": "72",
"ask": "72.35",
"ask_size": "78",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.57089",
"delta": "-0.85855",
"gamma": "0.00446",
"theta": "-0.25264",
"vega": "0.19736",
"rho": "-0.40589"
},
{
"contractID": "IBM250321C00300000",
"symbol": "IBM",
"expiration": "2025-03-21",
"strike": "300.00",
"type": "call",
"last": "0.14",
"mark": "0.13",
"bid": "0.08",
"bid_size": "155",
"ask": "0.18",
"ask_size": "214",
"volume": "24",
"open_interest": "3593",
"date": "2025-01-24",
"implied_volatility": "0.31769",
"delta": "0.01378",
"gamma": "0.00126",
"theta": "-0.03338",
"vega": "0.03100",
"rho": "0.00455"
},
{
"contractID": "IBM250321P00300000",
"symbol": "IBM",
"expiration": "2025-03-21",
"strike": "300.00",
"type": "put",
"last": "0.00",
"mark": "76.78",
"bid": "75.85",
"bid_size": "51",
"ask": "77.70",
"ask_size": "70",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.60838",
"delta": "-0.85632",
"gamma": "0.00423",
"theta": "-0.27887",
"vega": "0.19946",
"rho": "-0.41314"
},
{
"contractID": "IBM250321C00305000",
"symbol": "IBM",
"expiration": "2025-03-21",
"strike": "305.00",
"type": "call",
"last": "0.12",
"mark": "0.10",
"bid": "0.07",
"bid_size": "50",
"ask": "0.12",
"ask_size": "113",
"volume": "7",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.32242",
"delta": "0.01072",
"gamma": "0.00100",
"theta": "-0.02720",
"vega": "0.02493",
"rho": "0.00354"
},
{
"contractID": "IBM250321P00305000",
"symbol": "IBM",
"expiration": "2025-03-21",
"strike": "305.00",
"type": "put",
"last": "0.00",
"mark": "81.55",
"bid": "80.35",
"bid_size": "72",
"ask": "82.75",
"ask_size": "72",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.62195",
"delta": "-0.86505",
"gamma": "0.00396",
"theta": "-0.26788",
"vega": "0.19113",
"rho": "-0.42347"
},
{
"contractID": "IBM250321C00310000",
"symbol": "IBM",
"expiration": "2025-03-21",
"strike": "310.00",
"type": "call",
"last": "0.49",
"mark": "0.20",
"bid": "0.01",
"bid_size": "240",
"ask": "0.39",
"ask_size": "434",
"volume": "0",
"open_interest": "40",
"date": "2025-01-24",
"implied_volatility": "0.36967",
"delta": "0.01782",
"gamma": "0.00135",
"theta": "-0.04820",
"vega": "0.03864",
"rho": "0.00584"
},
{
"contractID": "IBM250321P00310000",
"symbol": "IBM",
"expiration": "2025-03-21",
"strike": "310.00",
"type": "put",
"last": "0.00",
"mark": "86.32",
"bid": "85.60",
"bid_size": "76",
"ask": "87.05",
"ask_size": "66",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.63415",
"delta": "-0.87344",
"gamma": "0.00372",
"theta": "-0.25545",
"vega": "0.18283",
"rho": "-0.43369"
},
{
"contractID": "IBM250321C00315000",
"symbol": "IBM",
"expiration": "2025-03-21",
"strike": "315.00",
"type": "call",
"last": "0.00",
"mark": "0.01",
"bid": "0.00",
"bid_size": "0",
"ask": "0.19",
"ask_size": "21",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.27882",
"delta": "0.00147",
"gamma": "0.00020",
"theta": "-0.00398",
"vega": "0.00422",
"rho": "0.00049"
},
{
"contractID": "IBM250321P00315000",
"symbol": "IBM",
"expiration": "2025-03-21",
"strike": "315.00",
"type": "put",
"last": "0.00",
"mark": "91.80",
"bid": "90.65",
"bid_size": "76",
"ask": "92.95",
"ask_size": "70",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.68369",
"delta": "-0.86456",
"gamma": "0.00361",
"theta": "-0.30300",
"vega": "0.19160",
"rho": "-0.43903"
},
{
"contractID": "IBM250321C00320000",
"symbol": "IBM",
"expiration": "2025-03-21",
"strike": "320.00",
"type": "call",
"last": "0.24",
"mark": "0.01",
"bid": "0.00",
"bid_size": "0",
"ask": "0.39",
"ask_size": "712",
"volume": "0",
"open_interest": "534",
"date": "2025-01-24",
"implied_volatility": "0.29071",
"delta": "0.00141",
"gamma": "0.00018",
"theta": "-0.00399",
"vega": "0.00407",
"rho": "0.00047"
},
{
"contractID": "IBM250321P00320000",
"symbol": "IBM",
"expiration": "2025-03-21",
"strike": "320.00",
"type": "put",
"last": "0.00",
"mark": "96.12",
"bid": "95.25",
"bid_size": "74",
"ask": "97.00",
"ask_size": "63",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.66982",
"delta": "-0.88285",
"gamma": "0.00333",
"theta": "-0.25045",
"vega": "0.17317",
"rho": "-0.45197"
},
{
"contractID": "IBM250321C00325000",
"symbol": "IBM",
"expiration": "2025-03-21",
"strike": "325.00",
"type": "call",
"last": "0.00",
"mark": "0.01",
"bid": "0.00",
"bid_size": "0",
"ask": "1.00",
"ask_size": "77",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.30245",
"delta": "0.00137",
"gamma": "0.00017",
"theta": "-0.00402",
"vega": "0.00395",
"rho": "0.00046"
},
{
"contractID": "IBM250321P00325000",
"symbol": "IBM",
"expiration": "2025-03-21",
"strike": "325.00",
"type": "put",
"last": "0.00",
"mark": "101.50",
"bid": "100.40",
"bid_size": "78",
"ask": "102.60",
"ask_size": "72",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.71417",
"delta": "-0.87577",
"gamma": "0.00326",
"theta": "-0.29086",
"vega": "0.18048",
"rho": "-0.45778"
},
{
"contractID": "IBM250417C00095000",
"symbol": "IBM",
"expiration": "2025-04-17",
"strike": "95.00",
"type": "call",
"last": "0.00",
"mark": "129.82",
"bid": "128.60",
"bid_size": "70",
"ask": "131.05",
"ask_size": "70",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.11033",
"delta": "1.00000",
"gamma": "0.00000",
"theta": "-0.04073",
"vega": "0.00000",
"rho": "0.21391"
},
{
"contractID": "IBM250417P00095000",
"symbol": "IBM",
"expiration": "2025-04-17",
"strike": "95.00",
"type": "put",
"last": "0.00",
"mark": "0.01",
"bid": "0.00",
"bid_size": "0",
"ask": "1.32",
"ask_size": "71",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.58552",
"delta": "-0.00056",
"gamma": "0.00003",
"theta": "-0.00265",
"vega": "0.00211",
"rho": "-0.00031"
},
{
"contractID": "IBM250417C00100000",
"symbol": "IBM",
"expiration": "2025-04-17",
"strike": "100.00",
"type": "call",
"last": "0.00",
"mark": "124.70",
"bid": "123.85",
"bid_size": "70",
"ask": "125.55",
"ask_size": "72",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.10608",
"delta": "1.00000",
"gamma": "0.00000",
"theta": "-0.04288",
"vega": "0.00000",
"rho": "0.22517"
},
{
"contractID": "IBM250417P00100000",
"symbol": "IBM",
"expiration": "2025-04-17",
"strike": "100.00",
"type": "put",
"last": "0.00",
"mark": "0.01",
"bid": "0.00",
"bid_size": "0",
"ask": "1.32",
"ask_size": "71",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.55259",
"delta": "-0.00059",
"gamma": "0.00004",
"theta": "-0.00264",
"vega": "0.00222",
"rho": "-0.00032"
},
{
"contractID": "IBM250417C00105000",
"symbol": "IBM",
"expiration": "2025-04-17",
"strike": "105.00",
"type": "call",
"last": "0.00",
"mark": "119.62",
"bid": "118.80",
"bid_size": "70",
"ask": "120.45",
"ask_size": "56",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.10183",
"delta": "1.00000",
"gamma": "0.00000",
"theta": "-0.04502",
"vega": "0.00000",
"rho": "0.23643"
},
{
"contractID": "IBM250417P00105000",
"symbol": "IBM",
"expiration": "2025-04-17",
"strike": "105.00",
"type": "put",
"last": "0.00",
"mark": "0.01",
"bid": "0.00",
"bid_size": "0",
"ask": "1.29",
"ask_size": "71",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.52119",
"delta": "-0.00063",
"gamma": "0.00004",
"theta": "-0.00262",
"vega": "0.00234",
"rho": "-0.00034"
},
{
"contractID": "IBM250417C00110000",
"symbol": "IBM",
"expiration": "2025-04-17",
"strike": "110.00",
"type": "call",
"last": "0.00",
"mark": "114.78",
"bid": "114.00",
"bid_size": "75",
"ask": "115.55",
"ask_size": "72",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.09758",
"delta": "1.00000",
"gamma": "0.00000",
"theta": "-0.04716",
"vega": "0.00000",
"rho": "0.24769"
},
{
"contractID": "IBM250417P00110000",
"symbol": "IBM",
"expiration": "2025-04-17",
"strike": "110.00",
"type": "put",
"last": "0.00",
"mark": "0.01",
"bid": "0.00",
"bid_size": "0",
"ask": "1.25",
"ask_size": "71",
"volume": "0",
"open_interest": "1",
"date": "2025-01-24",
"implied_volatility": "0.49131",
"delta": "-0.00066",
"gamma": "0.00004",
"theta": "-0.00261",
"vega": "0.00248",
"rho": "-0.00036"
},
{
"contractID": "IBM250417C00115000",
"symbol": "IBM",
"expiration": "2025-04-17",
"strike": "115.00",
"type": "call",
"last": "0.00",
"mark": "109.60",
"bid": "108.70",
"bid_size": "72",
"ask": "110.50",
"ask_size": "64",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.09333",
"delta": "1.00000",
"gamma": "0.00000",
"theta": "-0.04931",
"vega": "0.00000",
"rho": "0.25894"
},
{
"contractID": "IBM250417P00115000",
"symbol": "IBM",
"expiration": "2025-04-17",
"strike": "115.00",
"type": "put",
"last": "0.00",
"mark": "0.01",
"bid": "0.00",
"bid_size": "0",
"ask": "1.35",
"ask_size": "71",
"volume": "0",
"open_interest": "1",
"date": "2025-01-24",
"implied_volatility": "0.46266",
"delta": "-0.00070",
"gamma": "0.00005",
"theta": "-0.00259",
"vega": "0.00261",
"rho": "-0.00038"
},
{
"contractID": "IBM250417C00120000",
"symbol": "IBM",
"expiration": "2025-04-17",
"strike": "120.00",
"type": "call",
"last": "0.00",
"mark": "104.83",
"bid": "103.65",
"bid_size": "75",
"ask": "106.00",
"ask_size": "71",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.08908",
"delta": "1.00000",
"gamma": "0.00000",
"theta": "-0.05145",
"vega": "0.00000",
"rho": "0.27020"
},
{
"contractID": "IBM250417P00120000",
"symbol": "IBM",
"expiration": "2025-04-17",
"strike": "120.00",
"type": "put",
"last": "0.00",
"mark": "0.01",
"bid": "0.00",
"bid_size": "0",
"ask": "1.24",
"ask_size": "71",
"volume": "0",
"open_interest": "1",
"date": "2025-01-24",
"implied_volatility": "0.43522",
"delta": "-0.00075",
"gamma": "0.00006",
"theta": "-0.00256",
"vega": "0.00276",
"rho": "-0.00040"
},
{
"contractID": "IBM250417C00125000",
"symbol": "IBM",
"expiration": "2025-04-17",
"strike": "125.00",
"type": "call",
"last": "0.00",
"mark": "99.72",
"bid": "98.80",
"bid_size": "74",
"ask": "100.65",
"ask_size": "71",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.08483",
"delta": "1.00000",
"gamma": "0.00000",
"theta": "-0.05359",
"vega": "0.00000",
"rho": "0.28146"
},
{
"contractID": "IBM250417P00125000",
"symbol": "IBM",
"expiration": "2025-04-17",
"strike": "125.00",
"type": "put",
"last": "0.00",
"mark": "0.58",
"bid": "0.02",
"bid_size": "14",
"ask": "1.15",
"ask_size": "6",
"volume": "0",
"open_interest": "1",
"date": "2025-01-24",
"implied_volatility": "0.65991",
"delta": "-0.02000",
"gamma": "0.00068",
"theta": "-0.07313",
"vega": "0.05191",
"rho": "-0.01155"
},
{
"contractID": "IBM250417C00130000",
"symbol": "IBM",
"expiration": "2025-04-17",
"strike": "130.00",
"type": "call",
"last": "91.86",
"mark": "94.78",
"bid": "94.00",
"bid_size": "71",
"ask": "95.55",
"ask_size": "70",
"volume": "0",
"open_interest": "4",
"date": "2025-01-24",
"implied_volatility": "0.08058",
"delta": "1.00000",
"gamma": "0.00000",
"theta": "-0.05574",
"vega": "0.00000",
"rho": "0.29272"
},
{
"contractID": "IBM250417P00130000",
"symbol": "IBM",
"expiration": "2025-04-17",
"strike": "130.00",
"type": "put",
"last": "0.00",
"mark": "0.64",
"bid": "0.01",
"bid_size": "8",
"ask": "1.27",
"ask_size": "70",
"volume": "0",
"open_interest": "3",
"date": "2025-01-24",
"implied_volatility": "0.63216",
"delta": "-0.02274",
"gamma": "0.00080",
"theta": "-0.07793",
"vega": "0.05786",
"rho": "-0.01308"
},
{
"contractID": "IBM250417C00135000",
"symbol": "IBM",
"expiration": "2025-04-17",
"strike": "135.00",
"type": "call",
"last": "0.00",
"mark": "90.18",
"bid": "89.20",
"bid_size": "78",
"ask": "91.15",
"ask_size": "72",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.07633",
"delta": "1.00000",
"gamma": "0.00000",
"theta": "-0.05788",
"vega": "0.00000",
"rho": "0.30398"
},
{
"contractID": "IBM250417P00135000",
"symbol": "IBM",
"expiration": "2025-04-17",
"strike": "135.00",
"type": "put",
"last": "0.00",
"mark": "0.49",
"bid": "0.04",
"bid_size": "96",
"ask": "0.95",
"ask_size": "71",
"volume": "0",
"open_interest": "9",
"date": "2025-01-24",
"implied_volatility": "0.56799",
"delta": "-0.01996",
"gamma": "0.00079",
"theta": "-0.06257",
"vega": "0.05182",
"rho": "-0.01132"
},
{
"contractID": "IBM250417C00140000",
"symbol": "IBM",
"expiration": "2025-04-17",
"strike": "140.00",
"type": "call",
"last": "0.00",
"mark": "85.00",
"bid": "84.45",
"bid_size": "54",
"ask": "85.55",
"ask_size": "35",
"volume": "0",
"open_interest": "1",
"date": "2025-01-24",
"implied_volatility": "0.07208",
"delta": "1.00000",
"gamma": "0.00000",
"theta": "-0.06003",
"vega": "0.00000",
"rho": "0.31524"
},
{
"contractID": "IBM250417P00140000",
"symbol": "IBM",
"expiration": "2025-04-17",
"strike": "140.00",
"type": "put",
"last": "0.00",
"mark": "0.59",
"bid": "0.05",
"bid_size": "91",
"ask": "1.13",
"ask_size": "71",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.55031",
"delta": "-0.02423",
"gamma": "0.00096",
"theta": "-0.07123",
"vega": "0.06102",
"rho": "-0.01373"
},
{
"contractID": "IBM250417C00145000",
"symbol": "IBM",
"expiration": "2025-04-17",
"strike": "145.00",
"type": "call",
"last": "94.84",
"mark": "80.15",
"bid": "79.35",
"bid_size": "74",
"ask": "80.95",
"ask_size": "77",
"volume": "0",
"open_interest": "2",
"date": "2025-01-24",
"implied_volatility": "0.06783",
"delta": "1.00000",
"gamma": "0.00000",
"theta": "-0.06217",
"vega": "0.00000",
"rho": "0.32650"
},
{
"contractID": "IBM250417P00145000",
"symbol": "IBM",
"expiration": "2025-04-17",
"strike": "145.00",
"type": "put",
"last": "0.00",
"mark": "0.51",
"bid": "0.07",
"bid_size": "112",
"ask": "0.95",
"ask_size": "112",
"volume": "0",
"open_interest": "26",
"date": "2025-01-24",
"implied_volatility": "0.50244",
"delta": "-0.02324",
"gamma": "0.00102",
"theta": "-0.06262",
"vega": "0.05893",
"rho": "-0.01304"
},
{
"contractID": "IBM250417C00150000",
"symbol": "IBM",
"expiration": "2025-04-17",
"strike": "150.00",
"type": "call",
"last": "64.91",
"mark": "74.90",
"bid": "74.00",
"bid_size": "79",
"ask": "75.80",
"ask_size": "45",
"volume": "0",
"open_interest": "1",
"date": "2025-01-24",
"implied_volatility": "0.06358",
"delta": "1.00000",
"gamma": "0.00000",
"theta": "-0.06431",
"vega": "0.00000",
"rho": "0.33775"
},
{
"contractID": "IBM250417P00150000",
"symbol": "IBM",
"expiration": "2025-04-17",
"strike": "150.00",
"type": "put",
"last": "0.00",
"mark": "0.52",
"bid": "0.09",
"bid_size": "202",
"ask": "0.95",
"ask_size": "617",
"volume": "0",
"open_interest": "407",
"date": "2025-01-24",
"implied_volatility": "0.47104",
"delta": "-0.02516",
"gamma": "0.00116",
"theta": "-0.06256",
"vega": "0.06298",
"rho": "-0.01404"
},
{
"contractID": "IBM250417C00155000",
"symbol": "IBM",
"expiration": "2025-04-17",
"strike": "155.00",
"type": "call",
"last": "0.00",
"mark": "70.20",
"bid": "69.50",
"bid_size": "46",
"ask": "70.90",
"ask_size": "37",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.05933",
"delta": "1.00000",
"gamma": "0.00000",
"theta": "-0.06646",
"vega": "0.00000",
"rho": "0.34901"
},
{
"contractID": "IBM250417P00155000",
"symbol": "IBM",
"expiration": "2025-04-17",
"strike": "155.00",
"type": "put",
"last": "0.00",
"mark": "0.43",
"bid": "0.11",
"bid_size": "36",
"ask": "0.75",
"ask_size": "71",
"volume": "0",
"open_interest": "3",
"date": "2025-01-24",
"implied_volatility": "0.42455",
"delta": "-0.02350",
"gamma": "0.00122",
"theta": "-0.05305",
"vega": "0.05948",
"rho": "-0.01299"
},
{
"contractID": "IBM250417C00160000",
"symbol": "IBM",
"expiration": "2025-04-17",
"strike": "160.00",
"type": "call",
"last": "60.98",
"mark": "64.90",
"bid": "63.80",
"bid_size": "72",
"ask": "66.00",
"ask_size": "59",
"volume": "0",
"open_interest": "19",
"date": "2025-01-24",
"implied_volatility": "0.05508",
"delta": "1.00000",
"gamma": "0.00000",
"theta": "-0.06860",
"vega": "0.00000",
"rho": "0.36027"
},
{
"contractID": "IBM250417P00160000",
"symbol": "IBM",
"expiration": "2025-04-17",
"strike": "160.00",
"type": "put",
"last": "0.00",
"mark": "0.45",
"bid": "0.14",
"bid_size": "53",
"ask": "0.75",
"ask_size": "39",
"volume": "0",
"open_interest": "19",
"date": "2025-01-24",
"implied_volatility": "0.39696",
"delta": "-0.02601",
"gamma": "0.00142",
"theta": "-0.05380",
"vega": "0.06476",
"rho": "-0.01432"
},
{
"contractID": "IBM250417C00165000",
"symbol": "IBM",
"expiration": "2025-04-17",
"strike": "165.00",
"type": "call",
"last": "57.85",
"mark": "60.30",
"bid": "59.55",
"bid_size": "60",
"ask": "61.05",
"ask_size": "10",
"volume": "0",
"open_interest": "2",
"date": "2025-01-24",
"implied_volatility": "0.05083",
"delta": "1.00000",
"gamma": "0.00000",
"theta": "-0.07074",
"vega": "0.00000",
"rho": "0.37153"
},
{
"contractID": "IBM250417P00165000",
"symbol": "IBM",
"expiration": "2025-04-17",
"strike": "165.00",
"type": "put",
"last": "0.00",
"mark": "0.58",
"bid": "0.18",
"bid_size": "197",
"ask": "0.99",
"ask_size": "208",
"volume": "0",
"open_interest": "60",
"date": "2025-01-24",
"implied_volatility": "0.38446",
"delta": "-0.03345",
"gamma": "0.00181",
"theta": "-0.06396",
"vega": "0.07981",
"rho": "-0.01842"
},
{
"contractID": "IBM250417C00170000",
"symbol": "IBM",
"expiration": "2025-04-17",
"strike": "170.00",
"type": "call",
"last": "55.49",
"mark": "55.50",
"bid": "54.90",
"bid_size": "31",
"ask": "56.10",
"ask_size": "6",
"volume": "0",
"open_interest": "30",
"date": "2025-01-24",
"implied_volatility": "0.04658",
"delta": "1.00000",
"gamma": "0.00000",
"theta": "-0.07289",
"vega": "0.00000",
"rho": "0.38279"
},
{
"contractID": "IBM250417P00170000",
"symbol": "IBM",
"expiration": "2025-04-17",
"strike": "170.00",
"type": "put",
"last": "0.52",
"mark": "0.51",
"bid": "0.29",
"bid_size": "166",
"ask": "0.72",
"ask_size": "103",
"volume": "2",
"open_interest": "28",
"date": "2025-01-24",
"implied_volatility": "0.34559",
"delta": "-0.03306",
"gamma": "0.00199",
"theta": "-0.05662",
"vega": "0.07903",
"rho": "-0.01806"
},
{
"contractID": "IBM250417C00175000",
"symbol": "IBM",
"expiration": "2025-04-17",
"strike": "175.00",
"type": "call",
"last": "36.15",
"mark": "50.55",
"bid": "49.55",
"bid_size": "72",
"ask": "51.55",
"ask_size": "12",
"volume": "0",
"open_interest": "50",
"date": "2025-01-24",
"implied_volatility": "0.04233",
"delta": "1.00000",
"gamma": "0.00000",
"theta": "-0.07503",
"vega": "0.00000",
"rho": "0.39405"
},
{
"contractID": "IBM250417P00175000",
"symbol": "IBM",
"expiration": "2025-04-17",
"strike": "175.00",
"type": "put",
"last": "0.00",
"mark": "0.64",
"bid": "0.32",
"bid_size": "291",
"ask": "0.95",
"ask_size": "243",
"volume": "0",
"open_interest": "97",
"date": "2025-01-24",
"implied_volatility": "0.33065",
"delta": "-0.04186",
"gamma": "0.00252",
"theta": "-0.06533",
"vega": "0.09584",
"rho": "-0.02285"
},
{
"contractID": "IBM250417C00180000",
"symbol": "IBM",
"expiration": "2025-04-17",
"strike": "180.00",
"type": "call",
"last": "46.18",
"mark": "45.45",
"bid": "44.80",
"bid_size": "218",
"ask": "46.10",
"ask_size": "11",
"volume": "0",
"open_interest": "78",
"date": "2025-01-24",
"implied_volatility": "0.03808",
"delta": "1.00000",
"gamma": "0.00000",
"theta": "-0.07718",
"vega": "0.00000",
"rho": "0.40530"
},
{
"contractID": "IBM250417P00180000",
"symbol": "IBM",
"expiration": "2025-04-17",
"strike": "180.00",
"type": "put",
"last": "0.86",
"mark": "0.91",
"bid": "0.77",
"bid_size": "86",
"ask": "1.05",
"ask_size": "138",
"volume": "7",
"open_interest": "154",
"date": "2025-01-24",
"implied_volatility": "0.32486",
"delta": "-0.05754",
"gamma": "0.00331",
"theta": "-0.08227",
"vega": "0.12358",
"rho": "-0.03149"
},
{
"contractID": "IBM250417C00185000",
"symbol": "IBM",
"expiration": "2025-04-17",
"strike": "185.00",
"type": "call",
"last": "42.60",
"mark": "41.12",
"bid": "40.80",
"bid_size": "11",
"ask": "41.45",
"ask_size": "10",
"volume": "1",
"open_interest": "125",
"date": "2025-01-24",
"implied_volatility": "0.03383",
"delta": "1.00000",
"gamma": "0.00000",
"theta": "-0.07932",
"vega": "0.00000",
"rho": "0.41656"
},
{
"contractID": "IBM250417P00185000",
"symbol": "IBM",
"expiration": "2025-04-17",
"strike": "185.00",
"type": "put",
"last": "1.08",
"mark": "1.18",
"bid": "1.10",
"bid_size": "51",
"ask": "1.25",
"ask_size": "49",
"volume": "16",
"open_interest": "366",
"date": "2025-01-24",
"implied_volatility": "0.31297",
"delta": "-0.07406",
"gamma": "0.00418",
"theta": "-0.09570",
"vega": "0.15028",
"rho": "-0.04054"
},
{
"contractID": "IBM250417C00190000",
"symbol": "IBM",
"expiration": "2025-04-17",
"strike": "190.00",
"type": "call",
"last": "36.75",
"mark": "36.50",
"bid": "36.15",
"bid_size": "38",
"ask": "36.85",
"ask_size": "11",
"volume": "5",
"open_interest": "564",
"date": "2025-01-24",
"implied_volatility": "0.02958",
"delta": "1.00000",
"gamma": "0.00000",
"theta": "-0.08146",
"vega": "0.00000",
"rho": "0.42782"
},
{
"contractID": "IBM250417P00190000",
"symbol": "IBM",
"expiration": "2025-04-17",
"strike": "190.00",
"type": "put",
"last": "1.55",
"mark": "1.66",
"bid": "1.56",
"bid_size": "49",
"ask": "1.75",
"ask_size": "49",
"volume": "1",
"open_interest": "241",
"date": "2025-01-24",
"implied_volatility": "0.30854",
"delta": "-0.09964",
"gamma": "0.00529",
"theta": "-0.11688",
"vega": "0.18764",
"rho": "-0.05471"
},
{
"contractID": "IBM250417C00195000",
"symbol": "IBM",
"expiration": "2025-04-17",
"strike": "195.00",
"type": "call",
"last": "32.25",
"mark": "32.33",
"bid": "31.30",
"bid_size": "385",
"ask": "33.35",
"ask_size": "102",
"volume": "0",
"open_interest": "195",
"date": "2025-01-24",
"implied_volatility": "0.21266",
"delta": "0.93944",
"gamma": "0.00526",
"theta": "-0.13759",
"vega": "0.12862",
"rho": "0.40672"
},
{
"contractID": "IBM250417P00195000",
"symbol": "IBM",
"expiration": "2025-04-17",
"strike": "195.00",
"type": "put",
"last": "2.09",
"mark": "2.30",
"bid": "2.15",
"bid_size": "42",
"ask": "2.45",
"ask_size": "96",
"volume": "3",
"open_interest": "644",
"date": "2025-01-24",
"implied_volatility": "0.30458",
"delta": "-0.13145",
"gamma": "0.00653",
"theta": "-0.13925",
"vega": "0.22852",
"rho": "-0.07243"
},
{
"contractID": "IBM250417C00200000",
"symbol": "IBM",
"expiration": "2025-04-17",
"strike": "200.00",
"type": "call",
"last": "29.15",
"mark": "28.33",
"bid": "27.35",
"bid_size": "370",
"ask": "29.30",
"ask_size": "219",
"volume": "1",
"open_interest": "198",
"date": "2025-01-24",
"implied_volatility": "0.23720",
"delta": "0.88041",
"gamma": "0.00785",
"theta": "-0.18501",
"vega": "0.21393",
"rho": "0.38563"
},
{
"contractID": "IBM250417P00200000",
"symbol": "IBM",
"expiration": "2025-04-17",
"strike": "200.00",
"type": "put",
"last": "3.17",
"mark": "3.07",
"bid": "2.99",
"bid_size": "7",
"ask": "3.15",
"ask_size": "64",
"volume": "5",
"open_interest": "808",
"date": "2025-01-24",
"implied_volatility": "0.29864",
"delta": "-0.16823",
"gamma": "0.00785",
"theta": "-0.15923",
"vega": "0.26945",
"rho": "-0.09298"
},
{
"contractID": "IBM250417C00205000",
"symbol": "IBM",
"expiration": "2025-04-17",
"strike": "205.00",
"type": "call",
"last": "25.02",
"mark": "23.75",
"bid": "23.10",
"bid_size": "418",
"ask": "24.40",
"ask_size": "30",
"volume": "1",
"open_interest": "188",
"date": "2025-01-24",
"implied_volatility": "0.21907",
"delta": "0.84828",
"gamma": "0.01000",
"theta": "-0.19359",
"vega": "0.25184",
"rho": "0.37963"
},
{
"contractID": "IBM250417P00205000",
"symbol": "IBM",
"expiration": "2025-04-17",
"strike": "205.00",
"type": "put",
"last": "4.28",
"mark": "4.12",
"bid": "4.05",
"bid_size": "34",
"ask": "4.20",
"ask_size": "34",
"volume": "7",
"open_interest": "479",
"date": "2025-01-24",
"implied_volatility": "0.29544",
"delta": "-0.21337",
"gamma": "0.00919",
"theta": "-0.18002",
"vega": "0.31184",
"rho": "-0.11844"
},
{
"contractID": "IBM250417C00210000",
"symbol": "IBM",
"expiration": "2025-04-17",
"strike": "210.00",
"type": "call",
"last": "21.00",
"mark": "20.20",
"bid": "19.65",
"bid_size": "462",
"ask": "20.75",
"ask_size": "12",
"volume": "0",
"open_interest": "445",
"date": "2025-01-24",
"implied_volatility": "0.23050",
"delta": "0.77761",
"gamma": "0.01206",
"theta": "-0.22881",
"vega": "0.31938",
"rho": "0.35158"
},
{
"contractID": "IBM250417P00210000",
"symbol": "IBM",
"expiration": "2025-04-17",
"strike": "210.00",
"type": "put",
"last": "5.65",
"mark": "5.28",
"bid": "4.95",
"bid_size": "223",
"ask": "5.60",
"ask_size": "50",
"volume": "30",
"open_interest": "1057",
"date": "2025-01-24",
"implied_volatility": "0.28827",
"delta": "-0.26246",
"gamma": "0.01055",
"theta": "-0.19363",
"vega": "0.34940",
"rho": "-0.14617"
},
{
"contractID": "IBM250417C00215000",
"symbol": "IBM",
"expiration": "2025-04-17",
"strike": "215.00",
"type": "call",
"last": "18.24",
"mark": "17.42",
"bid": "16.70",
"bid_size": "399",
"ask": "18.15",
"ask_size": "302",
"volume": "5",
"open_interest": "177",
"date": "2025-01-24",
"implied_volatility": "0.25001",
"delta": "0.69710",
"gamma": "0.01303",
"theta": "-0.26609",
"vega": "0.37434",
"rho": "0.31674"
},
{
"contractID": "IBM250417P00215000",
"symbol": "IBM",
"expiration": "2025-04-17",
"strike": "215.00",
"type": "put",
"last": "7.45",
"mark": "7.25",
"bid": "7.15",
"bid_size": "5",
"ask": "7.35",
"ask_size": "29",
"volume": "9",
"open_interest": "982",
"date": "2025-01-24",
"implied_volatility": "0.29574",
"delta": "-0.32405",
"gamma": "0.01134",
"theta": "-0.21591",
"vega": "0.38536",
"rho": "-0.18214"
},
{
"contractID": "IBM250417C00220000",
"symbol": "IBM",
"expiration": "2025-04-17",
"strike": "220.00",
"type": "call",
"last": "15.55",
"mark": "14.70",
"bid": "14.25",
"bid_size": "20",
"ask": "15.15",
"ask_size": "155",
"volume": "2",
"open_interest": "382",
"date": "2025-01-24",
"implied_volatility": "0.25839",
"delta": "0.62426",
"gamma": "0.01370",
"theta": "-0.28549",
"vega": "0.40674",
"rho": "0.28568"
},
{
"contractID": "IBM250417P00220000",
"symbol": "IBM",
"expiration": "2025-04-17",
"strike": "220.00",
"type": "put",
"last": "9.40",
"mark": "9.02",
"bid": "8.60",
"bid_size": "165",
"ask": "9.45",
"ask_size": "51",
"volume": "10",
"open_interest": "282",
"date": "2025-01-24",
"implied_volatility": "0.28964",
"delta": "-0.38338",
"gamma": "0.01230",
"theta": "-0.21942",
"vega": "0.40926",
"rho": "-0.21649"
},
{
"contractID": "IBM250417C00225000",
"symbol": "IBM",
"expiration": "2025-04-17",
"strike": "225.00",
"type": "call",
"last": "11.65",
"mark": "11.80",
"bid": "11.70",
"bid_size": "20",
"ask": "11.90",
"ask_size": "10",
"volume": "161",
"open_interest": "1487",
"date": "2025-01-24",
"implied_volatility": "0.25306",
"delta": "0.55352",
"gamma": "0.01457",
"theta": "-0.28459",
"vega": "0.42381",
"rho": "0.25612"
},
{
"contractID": "IBM250417P00225000",
"symbol": "IBM",
"expiration": "2025-04-17",
"strike": "225.00",
"type": "put",
"last": "11.90",
"mark": "11.78",
"bid": "11.65",
"bid_size": "10",
"ask": "11.90",
"ask_size": "23",
"volume": "27",
"open_interest": "1131",
"date": "2025-01-24",
"implied_volatility": "0.29986",
"delta": "-0.44665",
"gamma": "0.01230",
"theta": "-0.23086",
"vega": "0.42383",
"rho": "-0.25510"
},
{
"contractID": "IBM250417C00230000",
"symbol": "IBM",
"expiration": "2025-04-17",
"strike": "230.00",
"type": "call",
"last": "9.61",
"mark": "9.88",
"bid": "9.45",
"bid_size": "23",
"ask": "10.30",
"ask_size": "660",
"volume": "20",
"open_interest": "1641",
"date": "2025-01-24",
"implied_volatility": "0.26251",
"delta": "0.48347",
"gamma": "0.01416",
"theta": "-0.28942",
"vega": "0.42729",
"rho": "0.22468"
},
{
"contractID": "IBM250417P00230000",
"symbol": "IBM",
"expiration": "2025-04-17",
"strike": "230.00",
"type": "put",
"last": "14.75",
"mark": "14.60",
"bid": "14.45",
"bid_size": "10",
"ask": "14.75",
"ask_size": "16",
"volume": "6",
"open_interest": "673",
"date": "2025-01-24",
"implied_volatility": "0.30397",
"delta": "-0.50693",
"gamma": "0.01224",
"theta": "-0.23013",
"vega": "0.42760",
"rho": "-0.29233"
},
{
"contractID": "IBM250417C00235000",
"symbol": "IBM",
"expiration": "2025-04-17",
"strike": "235.00",
"type": "call",
"last": "7.46",
"mark": "7.70",
"bid": "7.55",
"bid_size": "11",
"ask": "7.85",
"ask_size": "138",
"volume": "14",
"open_interest": "1213",
"date": "2025-01-24",
"implied_volatility": "0.25778",
"delta": "0.41316",
"gamma": "0.01409",
"theta": "-0.27352",
"vega": "0.41749",
"rho": "0.19369"
},
{
"contractID": "IBM250417P00235000",
"symbol": "IBM",
"expiration": "2025-04-17",
"strike": "235.00",
"type": "put",
"last": "17.90",
"mark": "17.85",
"bid": "17.15",
"bid_size": "58",
"ask": "18.55",
"ask_size": "40",
"volume": "84",
"open_interest": "78",
"date": "2025-01-24",
"implied_volatility": "0.31144",
"delta": "-0.56286",
"gamma": "0.01180",
"theta": "-0.22670",
"vega": "0.42234",
"rho": "-0.32833"
},
{
"contractID": "IBM250417C00240000",
"symbol": "IBM",
"expiration": "2025-04-17",
"strike": "240.00",
"type": "call",
"last": "5.80",
"mark": "6.03",
"bid": "5.95",
"bid_size": "26",
"ask": "6.10",
"ask_size": "53",
"volume": "20",
"open_interest": "514",
"date": "2025-01-24",
"implied_volatility": "0.25733",
"delta": "0.34768",
"gamma": "0.01339",
"theta": "-0.25535",
"vega": "0.39610",
"rho": "0.16402"
},
{
"contractID": "IBM250417P00240000",
"symbol": "IBM",
"expiration": "2025-04-17",
"strike": "240.00",
"type": "put",
"last": "20.25",
"mark": "21.62",
"bid": "20.90",
"bid_size": "40",
"ask": "22.35",
"ask_size": "30",
"volume": "1",
"open_interest": "188",
"date": "2025-01-24",
"implied_volatility": "0.32516",
"delta": "-0.61062",
"gamma": "0.01100",
"theta": "-0.22513",
"vega": "0.41111",
"rho": "-0.36130"
},
{
"contractID": "IBM250417C00245000",
"symbol": "IBM",
"expiration": "2025-04-17",
"strike": "245.00",
"type": "call",
"last": "4.66",
"mark": "4.53",
"bid": "4.25",
"bid_size": "479",
"ask": "4.80",
"ask_size": "75",
"volume": "9",
"open_interest": "383",
"date": "2025-01-24",
"implied_volatility": "0.25367",
"delta": "0.28452",
"gamma": "0.01247",
"theta": "-0.22856",
"vega": "0.36365",
"rho": "0.13514"
},
{
"contractID": "IBM250417P00245000",
"symbol": "IBM",
"expiration": "2025-04-17",
"strike": "245.00",
"type": "put",
"last": "0.00",
"mark": "25.52",
"bid": "24.75",
"bid_size": "10",
"ask": "26.30",
"ask_size": "40",
"volume": "0",
"open_interest": "87",
"date": "2025-01-24",
"implied_volatility": "0.33720",
"delta": "-0.65302",
"gamma": "0.01021",
"theta": "-0.21885",
"vega": "0.39580",
"rho": "-0.39185"
},
{
"contractID": "IBM250417C00250000",
"symbol": "IBM",
"expiration": "2025-04-17",
"strike": "250.00",
"type": "call",
"last": "3.65",
"mark": "3.67",
"bid": "3.60",
"bid_size": "46",
"ask": "3.75",
"ask_size": "88",
"volume": "13",
"open_interest": "570",
"date": "2025-01-24",
"implied_volatility": "0.26053",
"delta": "0.23766",
"gamma": "0.01107",
"theta": "-0.21142",
"vega": "0.33147",
"rho": "0.11314"
},
{
"contractID": "IBM250417P00250000",
"symbol": "IBM",
"expiration": "2025-04-17",
"strike": "250.00",
"type": "put",
"last": "0.00",
"mark": "29.80",
"bid": "29.00",
"bid_size": "10",
"ask": "30.60",
"ask_size": "20",
"volume": "0",
"open_interest": "86",
"date": "2025-01-24",
"implied_volatility": "0.35458",
"delta": "-0.68638",
"gamma": "0.00933",
"theta": "-0.21663",
"vega": "0.38010",
"rho": "-0.41863"
},
{
"contractID": "IBM250417C00255000",
"symbol": "IBM",
"expiration": "2025-04-17",
"strike": "255.00",
"type": "call",
"last": "2.80",
"mark": "2.81",
"bid": "2.72",
"bid_size": "40",
"ask": "2.89",
"ask_size": "40",
"volume": "7",
"open_interest": "313",
"date": "2025-01-24",
"implied_volatility": "0.26144",
"delta": "0.19222",
"gamma": "0.00975",
"theta": "-0.18591",
"vega": "0.29298",
"rho": "0.09187"
},
{
"contractID": "IBM250417P00255000",
"symbol": "IBM",
"expiration": "2025-04-17",
"strike": "255.00",
"type": "put",
"last": "0.00",
"mark": "33.90",
"bid": "33.20",
"bid_size": "11",
"ask": "34.60",
"ask_size": "40",
"volume": "0",
"open_interest": "7",
"date": "2025-01-24",
"implied_volatility": "0.36373",
"delta": "-0.72014",
"gamma": "0.00863",
"theta": "-0.20375",
"vega": "0.36077",
"rho": "-0.44521"
},
{
"contractID": "IBM250417C00260000",
"symbol": "IBM",
"expiration": "2025-04-17",
"strike": "260.00",
"type": "call",
"last": "2.22",
"mark": "2.12",
"bid": "2.02",
"bid_size": "80",
"ask": "2.23",
"ask_size": "40",
"volume": "15",
"open_interest": "438",
"date": "2025-01-24",
"implied_volatility": "0.26205",
"delta": "0.15319",
"gamma": "0.00842",
"theta": "-0.16004",
"vega": "0.25347",
"rho": "0.07349"
},
{
"contractID": "IBM250417P00260000",
"symbol": "IBM",
"expiration": "2025-04-17",
"strike": "260.00",
"type": "put",
"last": "0.00",
"mark": "37.98",
"bid": "36.95",
"bid_size": "72",
"ask": "39.00",
"ask_size": "40",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.36845",
"delta": "-0.75303",
"gamma": "0.00799",
"theta": "-0.18445",
"vega": "0.33845",
"rho": "-0.47130"
},
{
"contractID": "IBM250417C00265000",
"symbol": "IBM",
"expiration": "2025-04-17",
"strike": "265.00",
"type": "call",
"last": "1.68",
"mark": "1.67",
"bid": "1.62",
"bid_size": "40",
"ask": "1.72",
"ask_size": "14",
"volume": "15",
"open_interest": "664",
"date": "2025-01-24",
"implied_volatility": "0.26647",
"delta": "0.12432",
"gamma": "0.00718",
"theta": "-0.14018",
"vega": "0.21983",
"rho": "0.05975"
},
{
"contractID": "IBM250417P00265000",
"symbol": "IBM",
"expiration": "2025-04-17",
"strike": "265.00",
"type": "put",
"last": "0.00",
"mark": "42.65",
"bid": "41.95",
"bid_size": "45",
"ask": "43.35",
"ask_size": "14",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.38781",
"delta": "-0.77153",
"gamma": "0.00728",
"theta": "-0.18296",
"vega": "0.32429",
"rho": "-0.49139"
},
{
"contractID": "IBM250417C00270000",
"symbol": "IBM",
"expiration": "2025-04-17",
"strike": "270.00",
"type": "call",
"last": "1.45",
"mark": "1.19",
"bid": "1.04",
"bid_size": "338",
"ask": "1.34",
"ask_size": "67",
"volume": "1",
"open_interest": "831",
"date": "2025-01-24",
"implied_volatility": "0.26403",
"delta": "0.09443",
"gamma": "0.00595",
"theta": "-0.11340",
"vega": "0.18038",
"rho": "0.04557"
},
{
"contractID": "IBM250417P00270000",
"symbol": "IBM",
"expiration": "2025-04-17",
"strike": "270.00",
"type": "put",
"last": "0.00",
"mark": "47.33",
"bid": "46.65",
"bid_size": "48",
"ask": "48.00",
"ask_size": "13",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.40549",
"delta": "-0.78811",
"gamma": "0.00667",
"theta": "-0.17970",
"vega": "0.31057",
"rho": "-0.51051"
},
{
"contractID": "IBM250417C00275000",
"symbol": "IBM",
"expiration": "2025-04-17",
"strike": "275.00",
"type": "call",
"last": "1.05",
"mark": "0.99",
"bid": "0.95",
"bid_size": "34",
"ask": "1.03",
"ask_size": "37",
"volume": "1",
"open_interest": "1190",
"date": "2025-01-24",
"implied_volatility": "0.27211",
"delta": "0.07889",
"gamma": "0.00504",
"theta": "-0.10160",
"vega": "0.15769",
"rho": "0.03808"
},
{
"contractID": "IBM250417P00275000",
"symbol": "IBM",
"expiration": "2025-04-17",
"strike": "275.00",
"type": "put",
"last": "0.00",
"mark": "52.00",
"bid": "51.40",
"bid_size": "35",
"ask": "52.60",
"ask_size": "8",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.42104",
"delta": "-0.80358",
"gamma": "0.00614",
"theta": "-0.17410",
"vega": "0.29687",
"rho": "-0.52902"
},
{
"contractID": "IBM250417C00280000",
"symbol": "IBM",
"expiration": "2025-04-17",
"strike": "280.00",
"type": "call",
"last": "0.81",
"mark": "0.76",
"bid": "0.72",
"bid_size": "26",
"ask": "0.79",
"ask_size": "25",
"volume": "8",
"open_interest": "34",
"date": "2025-01-24",
"implied_volatility": "0.27486",
"delta": "0.06244",
"gamma": "0.00417",
"theta": "-0.08536",
"vega": "0.13173",
"rho": "0.03019"
},
{
"contractID": "IBM250417P00280000",
"symbol": "IBM",
"expiration": "2025-04-17",
"strike": "280.00",
"type": "put",
"last": "0.00",
"mark": "56.65",
"bid": "55.55",
"bid_size": "83",
"ask": "57.75",
"ask_size": "83",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.43446",
"delta": "-0.81826",
"gamma": "0.00567",
"theta": "-0.16616",
"vega": "0.28299",
"rho": "-0.54711"
},
{
"contractID": "IBM250417C00285000",
"symbol": "IBM",
"expiration": "2025-04-17",
"strike": "285.00",
"type": "call",
"last": "0.63",
"mark": "0.58",
"bid": "0.54",
"bid_size": "47",
"ask": "0.63",
"ask_size": "77",
"volume": "6",
"open_interest": "99",
"date": "2025-01-24",
"implied_volatility": "0.27745",
"delta": "0.04918",
"gamma": "0.00342",
"theta": "-0.07110",
"vega": "0.10911",
"rho": "0.02382"
},
{
"contractID": "IBM250417P00285000",
"symbol": "IBM",
"expiration": "2025-04-17",
"strike": "285.00",
"type": "put",
"last": "0.00",
"mark": "61.85",
"bid": "61.05",
"bid_size": "59",
"ask": "62.65",
"ask_size": "79",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.46601",
"delta": "-0.81920",
"gamma": "0.00527",
"theta": "-0.18251",
"vega": "0.28207",
"rho": "-0.55941"
},
{
"contractID": "IBM250417C00290000",
"symbol": "IBM",
"expiration": "2025-04-17",
"strike": "290.00",
"type": "call",
"last": "0.40",
"mark": "0.62",
"bid": "0.21",
"bid_size": "855",
"ask": "1.04",
"ask_size": "2001",
"volume": "0",
"open_interest": "21",
"date": "2025-01-24",
"implied_volatility": "0.29772",
"delta": "0.04912",
"gamma": "0.00319",
"theta": "-0.07587",
"vega": "0.10900",
"rho": "0.02370"
},
{
"contractID": "IBM250417P00290000",
"symbol": "IBM",
"expiration": "2025-04-17",
"strike": "290.00",
"type": "put",
"last": "0.00",
"mark": "66.70",
"bid": "65.80",
"bid_size": "79",
"ask": "67.60",
"ask_size": "79",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.48445",
"delta": "-0.82748",
"gamma": "0.00492",
"theta": "-0.18227",
"vega": "0.27383",
"rho": "-0.57467"
},
{
"contractID": "IBM250417C00295000",
"symbol": "IBM",
"expiration": "2025-04-17",
"strike": "295.00",
"type": "call",
"last": "0.00",
"mark": "0.55",
"bid": "0.16",
"bid_size": "452",
"ask": "0.95",
"ask_size": "1939",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.30702",
"delta": "0.04310",
"gamma": "0.00278",
"theta": "-0.07021",
"vega": "0.09814",
"rho": "0.02078"
},
{
"contractID": "IBM250417P00295000",
"symbol": "IBM",
"expiration": "2025-04-17",
"strike": "295.00",
"type": "put",
"last": "0.00",
"mark": "71.67",
"bid": "70.80",
"bid_size": "75",
"ask": "72.55",
"ask_size": "72",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.50656",
"delta": "-0.83235",
"gamma": "0.00462",
"theta": "-0.18740",
"vega": "0.26885",
"rho": "-0.58847"
},
{
"contractID": "IBM250417C00300000",
"symbol": "IBM",
"expiration": "2025-04-17",
"strike": "300.00",
"type": "call",
"last": "0.36",
"mark": "0.45",
"bid": "0.15",
"bid_size": "422",
"ask": "0.74",
"ask_size": "1992",
"volume": "0",
"open_interest": "75",
"date": "2025-01-24",
"implied_volatility": "0.31144",
"delta": "0.03573",
"gamma": "0.00235",
"theta": "-0.06098",
"vega": "0.08425",
"rho": "0.01724"
},
{
"contractID": "IBM250417P00300000",
"symbol": "IBM",
"expiration": "2025-04-17",
"strike": "300.00",
"type": "put",
"last": "0.00",
"mark": "76.57",
"bid": "75.60",
"bid_size": "79",
"ask": "77.55",
"ask_size": "79",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.52531",
"delta": "-0.83828",
"gamma": "0.00435",
"theta": "-0.18862",
"vega": "0.26265",
"rho": "-0.60264"
},
{
"contractID": "IBM250417C00305000",
"symbol": "IBM",
"expiration": "2025-04-17",
"strike": "305.00",
"type": "call",
"last": "0.00",
"mark": "0.42",
"bid": "0.10",
"bid_size": "194",
"ask": "0.75",
"ask_size": "1952",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.32257",
"delta": "0.03270",
"gamma": "0.00211",
"theta": "-0.05855",
"vega": "0.07832",
"rho": "0.01576"
},
{
"contractID": "IBM250417P00305000",
"symbol": "IBM",
"expiration": "2025-04-17",
"strike": "305.00",
"type": "put",
"last": "0.00",
"mark": "81.53",
"bid": "80.55",
"bid_size": "79",
"ask": "82.50",
"ask_size": "80",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.54573",
"delta": "-0.84241",
"gamma": "0.00412",
"theta": "-0.19258",
"vega": "0.25824",
"rho": "-0.61603"
},
{
"contractID": "IBM250417C00310000",
"symbol": "IBM",
"expiration": "2025-04-17",
"strike": "310.00",
"type": "call",
"last": "0.69",
"mark": "0.41",
"bid": "0.08",
"bid_size": "148",
"ask": "0.75",
"ask_size": "1972",
"volume": "0",
"open_interest": "11",
"date": "2025-01-24",
"implied_volatility": "0.33553",
"delta": "0.03095",
"gamma": "0.00194",
"theta": "-0.05806",
"vega": "0.07485",
"rho": "0.01489"
},
{
"contractID": "IBM250417P00310000",
"symbol": "IBM",
"expiration": "2025-04-17",
"strike": "310.00",
"type": "put",
"last": "0.00",
"mark": "86.62",
"bid": "85.65",
"bid_size": "94",
"ask": "87.60",
"ask_size": "75",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.57058",
"delta": "-0.84348",
"gamma": "0.00392",
"theta": "-0.20293",
"vega": "0.25709",
"rho": "-0.62815"
},
{
"contractID": "IBM250417C00315000",
"symbol": "IBM",
"expiration": "2025-04-17",
"strike": "315.00",
"type": "call",
"last": "0.00",
"mark": "0.41",
"bid": "0.07",
"bid_size": "182",
"ask": "0.75",
"ask_size": "1945",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.34955",
"delta": "0.02995",
"gamma": "0.00181",
"theta": "-0.05872",
"vega": "0.07284",
"rho": "0.01438"
},
{
"contractID": "IBM250417P00315000",
"symbol": "IBM",
"expiration": "2025-04-17",
"strike": "315.00",
"type": "put",
"last": "0.00",
"mark": "91.75",
"bid": "90.85",
"bid_size": "56",
"ask": "92.65",
"ask_size": "72",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.59665",
"delta": "-0.84348",
"gamma": "0.00375",
"theta": "-0.21545",
"vega": "0.25709",
"rho": "-0.63982"
},
{
"contractID": "IBM250417C00320000",
"symbol": "IBM",
"expiration": "2025-04-17",
"strike": "320.00",
"type": "call",
"last": "0.05",
"mark": "0.01",
"bid": "0.00",
"bid_size": "0",
"ask": "0.26",
"ask_size": "638",
"volume": "1",
"open_interest": "17",
"date": "2025-01-24",
"implied_volatility": "0.23690",
"delta": "0.00143",
"gamma": "0.00018",
"theta": "-0.00275",
"vega": "0.00501",
"rho": "0.00071"
},
{
"contractID": "IBM250417P00320000",
"symbol": "IBM",
"expiration": "2025-04-17",
"strike": "320.00",
"type": "put",
"last": "0.00",
"mark": "96.75",
"bid": "95.80",
"bid_size": "64",
"ask": "97.70",
"ask_size": "72",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.61723",
"delta": "-0.84592",
"gamma": "0.00359",
"theta": "-0.22108",
"vega": "0.25444",
"rho": "-0.65243"
},
{
"contractID": "IBM250417C00330000",
"symbol": "IBM",
"expiration": "2025-04-17",
"strike": "330.00",
"type": "call",
"last": "0.01",
"mark": "0.21",
"bid": "0.04",
"bid_size": "46",
"ask": "0.38",
"ask_size": "1974",
"volume": "2",
"open_interest": "500",
"date": "2025-01-24",
"implied_volatility": "0.35321",
"delta": "0.01632",
"gamma": "0.00108",
"theta": "-0.03539",
"vega": "0.04364",
"rho": "0.00787"
},
{
"contractID": "IBM250417P00330000",
"symbol": "IBM",
"expiration": "2025-04-17",
"strike": "330.00",
"type": "put",
"last": "0.00",
"mark": "106.38",
"bid": "105.65",
"bid_size": "72",
"ask": "107.10",
"ask_size": "72",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.64192",
"delta": "-0.85743",
"gamma": "0.00327",
"theta": "-0.21142",
"vega": "0.24156",
"rho": "-0.68022"
},
{
"contractID": "IBM250417C00340000",
"symbol": "IBM",
"expiration": "2025-04-17",
"strike": "340.00",
"type": "call",
"last": "0.49",
"mark": "0.01",
"bid": "0.00",
"bid_size": "0",
"ask": "0.50",
"ask_size": "1682",
"volume": "0",
"open_interest": "33",
"date": "2025-01-24",
"implied_volatility": "0.27425",
"delta": "0.00125",
"gamma": "0.00014",
"theta": "-0.00279",
"vega": "0.00443",
"rho": "0.00062"
},
{
"contractID": "IBM250417P00340000",
"symbol": "IBM",
"expiration": "2025-04-17",
"strike": "340.00",
"type": "put",
"last": "0.00",
"mark": "116.28",
"bid": "115.35",
"bid_size": "80",
"ask": "117.20",
"ask_size": "70",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.67561",
"delta": "-0.86271",
"gamma": "0.00303",
"theta": "-0.21544",
"vega": "0.23545",
"rho": "-0.70542"
},
{
"contractID": "IBM250620C00080000",
"symbol": "IBM",
"expiration": "2025-06-20",
"strike": "80.00",
"type": "call",
"last": "0.00",
"mark": "144.50",
"bid": "143.70",
"bid_size": "71",
"ask": "145.30",
"ask_size": "54",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.06985",
"delta": "1.00000",
"gamma": "0.00000",
"theta": "-0.03404",
"vega": "0.00000",
"rho": "0.31662"
},
{
"contractID": "IBM250620P00080000",
"symbol": "IBM",
"expiration": "2025-06-20",
"strike": "80.00",
"type": "put",
"last": "0.00",
"mark": "0.01",
"bid": "0.00",
"bid_size": "0",
"ask": "1.35",
"ask_size": "188",
"volume": "0",
"open_interest": "117",
"date": "2025-01-24",
"implied_volatility": "0.52653",
"delta": "-0.00046",
"gamma": "0.00002",
"theta": "-0.00150",
"vega": "0.00237",
"rho": "-0.00046"
},
{
"contractID": "IBM250620C00085000",
"symbol": "IBM",
"expiration": "2025-06-20",
"strike": "85.00",
"type": "call",
"last": "0.00",
"mark": "139.43",
"bid": "138.40",
"bid_size": "73",
"ask": "140.45",
"ask_size": "75",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.06744",
"delta": "1.00000",
"gamma": "0.00000",
"theta": "-0.03617",
"vega": "0.00000",
"rho": "0.33641"
},
{
"contractID": "IBM250620P00085000",
"symbol": "IBM",
"expiration": "2025-06-20",
"strike": "85.00",
"type": "put",
"last": "0.00",
"mark": "0.01",
"bid": "0.00",
"bid_size": "0",
"ask": "1.37",
"ask_size": "71",
"volume": "0",
"open_interest": "32",
"date": "2025-01-24",
"implied_volatility": "0.49726",
"delta": "-0.00049",
"gamma": "0.00002",
"theta": "-0.00149",
"vega": "0.00250",
"rho": "-0.00049"
},
{
"contractID": "IBM250620C00090000",
"symbol": "IBM",
"expiration": "2025-06-20",
"strike": "90.00",
"type": "call",
"last": "125.10",
"mark": "134.68",
"bid": "134.00",
"bid_size": "71",
"ask": "135.35",
"ask_size": "59",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.06503",
"delta": "1.00000",
"gamma": "0.00000",
"theta": "-0.03830",
"vega": "0.00000",
"rho": "0.35620"
},
{
"contractID": "IBM250620P00090000",
"symbol": "IBM",
"expiration": "2025-06-20",
"strike": "90.00",
"type": "put",
"last": "0.00",
"mark": "0.01",
"bid": "0.00",
"bid_size": "0",
"ask": "1.38",
"ask_size": "173",
"volume": "0",
"open_interest": "97",
"date": "2025-01-24",
"implied_volatility": "0.46967",
"delta": "-0.00052",
"gamma": "0.00003",
"theta": "-0.00148",
"vega": "0.00264",
"rho": "-0.00051"
},
{
"contractID": "IBM250620C00095000",
"symbol": "IBM",
"expiration": "2025-06-20",
"strike": "95.00",
"type": "call",
"last": "0.00",
"mark": "129.60",
"bid": "128.85",
"bid_size": "73",
"ask": "130.35",
"ask_size": "61",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.06262",
"delta": "1.00000",
"gamma": "0.00000",
"theta": "-0.04042",
"vega": "0.00000",
"rho": "0.37599"
},
{
"contractID": "IBM250620P00095000",
"symbol": "IBM",
"expiration": "2025-06-20",
"strike": "95.00",
"type": "put",
"last": "0.00",
"mark": "0.57",
"bid": "0.01",
"bid_size": "13",
"ask": "1.14",
"ask_size": "70",
"volume": "0",
"open_interest": "55",
"date": "2025-01-24",
"implied_volatility": "0.70030",
"delta": "-0.01392",
"gamma": "0.00036",
"theta": "-0.04244",
"vega": "0.05066",
"rho": "-0.01490"
},
{
"contractID": "IBM250620C00100000",
"symbol": "IBM",
"expiration": "2025-06-20",
"strike": "100.00",
"type": "call",
"last": "0.00",
"mark": "124.78",
"bid": "123.45",
"bid_size": "72",
"ask": "126.10",
"ask_size": "75",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.06020",
"delta": "1.00000",
"gamma": "0.00000",
"theta": "-0.04255",
"vega": "0.00000",
"rho": "0.39578"
},
{
"contractID": "IBM250620P00100000",
"symbol": "IBM",
"expiration": "2025-06-20",
"strike": "100.00",
"type": "put",
"last": "0.00",
"mark": "0.71",
"bid": "0.02",
"bid_size": "14",
"ask": "1.40",
"ask_size": "70",
"volume": "0",
"open_interest": "354",
"date": "2025-01-24",
"implied_volatility": "0.68750",
"delta": "-0.01723",
"gamma": "0.00043",
"theta": "-0.04994",
"vega": "0.06083",
"rho": "-0.01846"
},
{
"contractID": "IBM250620C00105000",
"symbol": "IBM",
"expiration": "2025-06-20",
"strike": "105.00",
"type": "call",
"last": "0.00",
"mark": "119.42",
"bid": "118.50",
"bid_size": "73",
"ask": "120.35",
"ask_size": "51",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.05779",
"delta": "1.00000",
"gamma": "0.00000",
"theta": "-0.04468",
"vega": "0.00000",
"rho": "0.41557"
},
{
"contractID": "IBM250620P00105000",
"symbol": "IBM",
"expiration": "2025-06-20",
"strike": "105.00",
"type": "put",
"last": "0.00",
"mark": "0.71",
"bid": "0.01",
"bid_size": "6",
"ask": "1.42",
"ask_size": "6",
"volume": "0",
"open_interest": "453",
"date": "2025-01-24",
"implied_volatility": "0.65076",
"delta": "-0.01822",
"gamma": "0.00048",
"theta": "-0.04947",
"vega": "0.06381",
"rho": "-0.01935"
},
{
"contractID": "IBM250620C00110000",
"symbol": "IBM",
"expiration": "2025-06-20",
"strike": "110.00",
"type": "call",
"last": "0.00",
"mark": "114.55",
"bid": "113.65",
"bid_size": "70",
"ask": "115.45",
"ask_size": "65",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.05538",
"delta": "1.00000",
"gamma": "0.00000",
"theta": "-0.04681",
"vega": "0.00000",
"rho": "0.43536"
},
{
"contractID": "IBM250620P00110000",
"symbol": "IBM",
"expiration": "2025-06-20",
"strike": "110.00",
"type": "put",
"last": "0.00",
"mark": "0.62",
"bid": "0.06",
"bid_size": "2",
"ask": "1.18",
"ask_size": "71",
"volume": "0",
"open_interest": "101",
"date": "2025-01-24",
"implied_volatility": "0.60168",
"delta": "-0.01750",
"gamma": "0.00050",
"theta": "-0.04408",
"vega": "0.06165",
"rho": "-0.01834"
},
{
"contractID": "IBM250620C00115000",
"symbol": "IBM",
"expiration": "2025-06-20",
"strike": "115.00",
"type": "call",
"last": "0.00",
"mark": "109.58",
"bid": "108.75",
"bid_size": "72",
"ask": "110.40",
"ask_size": "58",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.05297",
"delta": "1.00000",
"gamma": "0.00000",
"theta": "-0.04893",
"vega": "0.00000",
"rho": "0.45514"
},
{
"contractID": "IBM250620P00115000",
"symbol": "IBM",
"expiration": "2025-06-20",
"strike": "115.00",
"type": "put",
"last": "0.00",
"mark": "0.51",
"bid": "0.07",
"bid_size": "142",
"ask": "0.95",
"ask_size": "190",
"volume": "0",
"open_interest": "76",
"date": "2025-01-24",
"implied_volatility": "0.55076",
"delta": "-0.01608",
"gamma": "0.00051",
"theta": "-0.03743",
"vega": "0.05736",
"rho": "-0.01661"
},
{
"contractID": "IBM250620C00120000",
"symbol": "IBM",
"expiration": "2025-06-20",
"strike": "120.00",
"type": "call",
"last": "0.00",
"mark": "104.53",
"bid": "103.55",
"bid_size": "70",
"ask": "105.50",
"ask_size": "56",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.05056",
"delta": "1.00000",
"gamma": "0.00000",
"theta": "-0.05106",
"vega": "0.00000",
"rho": "0.47493"
},
{
"contractID": "IBM250620P00120000",
"symbol": "IBM",
"expiration": "2025-06-20",
"strike": "120.00",
"type": "put",
"last": "0.20",
"mark": "0.21",
"bid": "0.08",
"bid_size": "119",
"ask": "0.35",
"ask_size": "18",
"volume": "10",
"open_interest": "186",
"date": "2025-01-24",
"implied_volatility": "0.45595",
"delta": "-0.00879",
"gamma": "0.00037",
"theta": "-0.01828",
"vega": "0.03397",
"rho": "-0.00880"
},
{
"contractID": "IBM250620C00125000",
"symbol": "IBM",
"expiration": "2025-06-20",
"strike": "125.00",
"type": "call",
"last": "89.70",
"mark": "99.57",
"bid": "98.55",
"bid_size": "70",
"ask": "100.60",
"ask_size": "55",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.04814",
"delta": "1.00000",
"gamma": "0.00000",
"theta": "-0.05319",
"vega": "0.00000",
"rho": "0.49472"
},
{
"contractID": "IBM250620P00125000",
"symbol": "IBM",
"expiration": "2025-06-20",
"strike": "125.00",
"type": "put",
"last": "0.00",
"mark": "0.28",
"bid": "0.10",
"bid_size": "72",
"ask": "0.45",
"ask_size": "260",
"volume": "0",
"open_interest": "307",
"date": "2025-01-24",
"implied_volatility": "0.44741",
"delta": "-0.01159",
"gamma": "0.00047",
"theta": "-0.02277",
"vega": "0.04324",
"rho": "-0.01162"
},
{
"contractID": "IBM250620C00130000",
"symbol": "IBM",
"expiration": "2025-06-20",
"strike": "130.00",
"type": "call",
"last": "92.02",
"mark": "95.10",
"bid": "94.55",
"bid_size": "36",
"ask": "95.65",
"ask_size": "28",
"volume": "0",
"open_interest": "117",
"date": "2025-01-24",
"implied_volatility": "0.04573",
"delta": "1.00000",
"gamma": "0.00000",
"theta": "-0.05532",
"vega": "0.00000",
"rho": "0.51451"
},
{
"contractID": "IBM250620P00130000",
"symbol": "IBM",
"expiration": "2025-06-20",
"strike": "130.00",
"type": "put",
"last": "0.00",
"mark": "0.29",
"bid": "0.11",
"bid_size": "59",
"ask": "0.48",
"ask_size": "27",
"volume": "0",
"open_interest": "61",
"date": "2025-01-24",
"implied_volatility": "0.42348",
"delta": "-0.01264",
"gamma": "0.00054",
"theta": "-0.02315",
"vega": "0.04661",
"rho": "-0.01261"
},
{
"contractID": "IBM250620C00135000",
"symbol": "IBM",
"expiration": "2025-06-20",
"strike": "135.00",
"type": "call",
"last": "87.80",
"mark": "89.88",
"bid": "88.85",
"bid_size": "72",
"ask": "90.90",
"ask_size": "43",
"volume": "0",
"open_interest": "42",
"date": "2025-01-24",
"implied_volatility": "0.04332",
"delta": "1.00000",
"gamma": "0.00000",
"theta": "-0.05744",
"vega": "0.00000",
"rho": "0.53430"
},
{
"contractID": "IBM250620P00135000",
"symbol": "IBM",
"expiration": "2025-06-20",
"strike": "135.00",
"type": "put",
"last": "0.00",
"mark": "0.46",
"bid": "0.13",
"bid_size": "100",
"ask": "0.79",
"ask_size": "525",
"volume": "0",
"open_interest": "376",
"date": "2025-01-24",
"implied_volatility": "0.42775",
"delta": "-0.01883",
"gamma": "0.00075",
"theta": "-0.03282",
"vega": "0.06563",
"rho": "-0.01890"
},
{
"contractID": "IBM250620C00140000",
"symbol": "IBM",
"expiration": "2025-06-20",
"strike": "140.00",
"type": "call",
"last": "86.65",
"mark": "85.33",
"bid": "84.70",
"bid_size": "26",
"ask": "85.95",
"ask_size": "35",
"volume": "1",
"open_interest": "49",
"date": "2025-01-24",
"implied_volatility": "0.04091",
"delta": "1.00000",
"gamma": "0.00000",
"theta": "-0.05957",
"vega": "0.00000",
"rho": "0.55409"
},
{
"contractID": "IBM250620P00140000",
"symbol": "IBM",
"expiration": "2025-06-20",
"strike": "140.00",
"type": "put",
"last": "0.00",
"mark": "0.30",
"bid": "0.16",
"bid_size": "114",
"ask": "0.45",
"ask_size": "81",
"volume": "0",
"open_interest": "282",
"date": "2025-01-24",
"implied_volatility": "0.37546",
"delta": "-0.01464",
"gamma": "0.00069",
"theta": "-0.02310",
"vega": "0.05290",
"rho": "-0.01446"
},
{
"contractID": "IBM250620C00145000",
"symbol": "IBM",
"expiration": "2025-06-20",
"strike": "145.00",
"type": "call",
"last": "67.20",
"mark": "80.12",
"bid": "79.15",
"bid_size": "72",
"ask": "81.10",
"ask_size": "31",
"volume": "0",
"open_interest": "80",
"date": "2025-01-24",
"implied_volatility": "0.03850",
"delta": "1.00000",
"gamma": "0.00000",
"theta": "-0.06170",
"vega": "0.00000",
"rho": "0.57388"
},
{
"contractID": "IBM250620P00145000",
"symbol": "IBM",
"expiration": "2025-06-20",
"strike": "145.00",
"type": "put",
"last": "0.00",
"mark": "0.35",
"bid": "0.19",
"bid_size": "174",
"ask": "0.52",
"ask_size": "136",
"volume": "0",
"open_interest": "306",
"date": "2025-01-24",
"implied_volatility": "0.36007",
"delta": "-0.01745",
"gamma": "0.00084",
"theta": "-0.02565",
"vega": "0.06151",
"rho": "-0.01721"
},
{
"contractID": "IBM250620C00150000",
"symbol": "IBM",
"expiration": "2025-06-20",
"strike": "150.00",
"type": "call",
"last": "67.57",
"mark": "74.88",
"bid": "73.45",
"bid_size": "74",
"ask": "76.30",
"ask_size": "30",
"volume": "0",
"open_interest": "80",
"date": "2025-01-24",
"implied_volatility": "0.03608",
"delta": "1.00000",
"gamma": "0.00000",
"theta": "-0.06383",
"vega": "0.00000",
"rho": "0.59367"
},
{
"contractID": "IBM250620P00150000",
"symbol": "IBM",
"expiration": "2025-06-20",
"strike": "150.00",
"type": "put",
"last": "0.50",
"mark": "0.53",
"bid": "0.24",
"bid_size": "295",
"ask": "0.83",
"ask_size": "323",
"volume": "2",
"open_interest": "950",
"date": "2025-01-24",
"implied_volatility": "0.36068",
"delta": "-0.02510",
"gamma": "0.00114",
"theta": "-0.03479",
"vega": "0.08367",
"rho": "-0.02486"
},
{
"contractID": "IBM250620C00155000",
"symbol": "IBM",
"expiration": "2025-06-20",
"strike": "155.00",
"type": "call",
"last": "70.33",
"mark": "70.83",
"bid": "70.15",
"bid_size": "24",
"ask": "71.50",
"ask_size": "33",
"volume": "1",
"open_interest": "440",
"date": "2025-01-24",
"implied_volatility": "0.03367",
"delta": "1.00000",
"gamma": "0.00000",
"theta": "-0.06595",
"vega": "0.00000",
"rho": "0.61345"
},
{
"contractID": "IBM250620P00155000",
"symbol": "IBM",
"expiration": "2025-06-20",
"strike": "155.00",
"type": "put",
"last": "0.00",
"mark": "0.60",
"bid": "0.28",
"bid_size": "524",
"ask": "0.92",
"ask_size": "321",
"volume": "0",
"open_interest": "335",
"date": "2025-01-24",
"implied_volatility": "0.34406",
"delta": "-0.02926",
"gamma": "0.00136",
"theta": "-0.03751",
"vega": "0.09508",
"rho": "-0.02891"
},
{
"contractID": "IBM250620C00160000",
"symbol": "IBM",
"expiration": "2025-06-20",
"strike": "160.00",
"type": "call",
"last": "62.54",
"mark": "65.75",
"bid": "64.65",
"bid_size": "72",
"ask": "66.85",
"ask_size": "45",
"volume": "0",
"open_interest": "83",
"date": "2025-01-24",
"implied_volatility": "0.03126",
"delta": "1.00000",
"gamma": "0.00000",
"theta": "-0.06808",
"vega": "0.00000",
"rho": "0.63324"
},
{
"contractID": "IBM250620P00160000",
"symbol": "IBM",
"expiration": "2025-06-20",
"strike": "160.00",
"type": "put",
"last": "0.00",
"mark": "1.09",
"bid": "0.37",
"bid_size": "887",
"ask": "1.82",
"ask_size": "449",
"volume": "0",
"open_interest": "2100",
"date": "2025-01-24",
"implied_volatility": "0.36083",
"delta": "-0.04691",
"gamma": "0.00190",
"theta": "-0.05759",
"vega": "0.13981",
"rho": "-0.04686"
},
{
"contractID": "IBM250620C00165000",
"symbol": "IBM",
"expiration": "2025-06-20",
"strike": "165.00",
"type": "call",
"last": "60.85",
"mark": "61.05",
"bid": "60.15",
"bid_size": "72",
"ask": "61.95",
"ask_size": "10",
"volume": "0",
"open_interest": "185",
"date": "2025-01-24",
"implied_volatility": "0.02885",
"delta": "1.00000",
"gamma": "0.00000",
"theta": "-0.07021",
"vega": "0.00000",
"rho": "0.65303"
},
{
"contractID": "IBM250620P00165000",
"symbol": "IBM",
"expiration": "2025-06-20",
"strike": "165.00",
"type": "put",
"last": "1.00",
"mark": "1.04",
"bid": "0.88",
"bid_size": "65",
"ask": "1.21",
"ask_size": "107",
"volume": "33",
"open_interest": "1015",
"date": "2025-01-24",
"implied_volatility": "0.33171",
"delta": "-0.04874",
"gamma": "0.00214",
"theta": "-0.05418",
"vega": "0.14417",
"rho": "-0.04832"
},
{
"contractID": "IBM250620C00170000",
"symbol": "IBM",
"expiration": "2025-06-20",
"strike": "170.00",
"type": "call",
"last": "56.47",
"mark": "55.77",
"bid": "54.80",
"bid_size": "270",
"ask": "56.75",
"ask_size": "11",
"volume": "0",
"open_interest": "268",
"date": "2025-01-24",
"implied_volatility": "0.02644",
"delta": "1.00000",
"gamma": "0.00000",
"theta": "-0.07234",
"vega": "0.00000",
"rho": "0.67282"
},
{
"contractID": "IBM250620P00170000",
"symbol": "IBM",
"expiration": "2025-06-20",
"strike": "170.00",
"type": "put",
"last": "0.00",
"mark": "1.29",
"bid": "1.22",
"bid_size": "20",
"ask": "1.37",
"ask_size": "20",
"volume": "0",
"open_interest": "871",
"date": "2025-01-24",
"implied_volatility": "0.32211",
"delta": "-0.06005",
"gamma": "0.00259",
"theta": "-0.06160",
"vega": "0.17004",
"rho": "-0.05955"
},
{
"contractID": "IBM250620C00175000",
"symbol": "IBM",
"expiration": "2025-06-20",
"strike": "175.00",
"type": "call",
"last": "52.75",
"mark": "51.73",
"bid": "51.35",
"bid_size": "14",
"ask": "52.10",
"ask_size": "22",
"volume": "5",
"open_interest": "332",
"date": "2025-01-24",
"implied_volatility": "0.02402",
"delta": "1.00000",
"gamma": "0.00000",
"theta": "-0.07447",
"vega": "0.00000",
"rho": "0.69261"
},
{
"contractID": "IBM250620P00175000",
"symbol": "IBM",
"expiration": "2025-06-20",
"strike": "175.00",
"type": "put",
"last": "1.56",
"mark": "1.68",
"bid": "1.59",
"bid_size": "20",
"ask": "1.76",
"ask_size": "20",
"volume": "25",
"open_interest": "385",
"date": "2025-01-24",
"implied_volatility": "0.31708",
"delta": "-0.07610",
"gamma": "0.00316",
"theta": "-0.07225",
"vega": "0.20421",
"rho": "-0.07566"
},
{
"contractID": "IBM250620C00180000",
"symbol": "IBM",
"expiration": "2025-06-20",
"strike": "180.00",
"type": "call",
"last": "49.25",
"mark": "47.03",
"bid": "45.70",
"bid_size": "299",
"ask": "48.35",
"ask_size": "49",
"volume": "8",
"open_interest": "214",
"date": "2025-01-24",
"implied_volatility": "0.02161",
"delta": "1.00000",
"gamma": "0.00000",
"theta": "-0.07659",
"vega": "0.00000",
"rho": "0.71240"
},
{
"contractID": "IBM250620P00180000",
"symbol": "IBM",
"expiration": "2025-06-20",
"strike": "180.00",
"type": "put",
"last": "2.15",
"mark": "2.15",
"bid": "2.08",
"bid_size": "11",
"ask": "2.22",
"ask_size": "20",
"volume": "2",
"open_interest": "652",
"date": "2025-01-24",
"implied_volatility": "0.31159",
"delta": "-0.09493",
"gamma": "0.00380",
"theta": "-0.08305",
"vega": "0.24099",
"rho": "-0.09460"
},
{
"contractID": "IBM250620C00185000",
"symbol": "IBM",
"expiration": "2025-06-20",
"strike": "185.00",
"type": "call",
"last": "43.75",
"mark": "42.50",
"bid": "41.90",
"bid_size": "254",
"ask": "43.10",
"ask_size": "10",
"volume": "1",
"open_interest": "469",
"date": "2025-01-24",
"implied_volatility": "0.01920",
"delta": "1.00000",
"gamma": "0.00000",
"theta": "-0.07872",
"vega": "0.00000",
"rho": "0.73219"
},
{
"contractID": "IBM250620P00185000",
"symbol": "IBM",
"expiration": "2025-06-20",
"strike": "185.00",
"type": "put",
"last": "2.51",
"mark": "2.75",
"bid": "2.67",
"bid_size": "13",
"ask": "2.84",
"ask_size": "20",
"volume": "1",
"open_interest": "858",
"date": "2025-01-24",
"implied_volatility": "0.30702",
"delta": "-0.11761",
"gamma": "0.00450",
"theta": "-0.09461",
"vega": "0.28136",
"rho": "-0.11756"
},
{
"contractID": "IBM250620C00190000",
"symbol": "IBM",
"expiration": "2025-06-20",
"strike": "190.00",
"type": "call",
"last": "39.87",
"mark": "38.38",
"bid": "37.05",
"bid_size": "367",
"ask": "39.70",
"ask_size": "178",
"volume": "0",
"open_interest": "582",
"date": "2025-01-24",
"implied_volatility": "0.16190",
"delta": "0.96842",
"gamma": "0.00307",
"theta": "-0.09801",
"vega": "0.10129",
"rho": "0.72219"
},
{
"contractID": "IBM250620P00190000",
"symbol": "IBM",
"expiration": "2025-06-20",
"strike": "190.00",
"type": "put",
"last": "3.46",
"mark": "3.53",
"bid": "3.45",
"bid_size": "12",
"ask": "3.60",
"ask_size": "20",
"volume": "6",
"open_interest": "795",
"date": "2025-01-24",
"implied_volatility": "0.30412",
"delta": "-0.14496",
"gamma": "0.00525",
"theta": "-0.10711",
"vega": "0.32510",
"rho": "-0.14546"
},
{
"contractID": "IBM250620C00195000",
"symbol": "IBM",
"expiration": "2025-06-20",
"strike": "195.00",
"type": "call",
"last": "34.80",
"mark": "34.35",
"bid": "33.65",
"bid_size": "358",
"ask": "35.05",
"ask_size": "52",
"volume": "5",
"open_interest": "402",
"date": "2025-01-24",
"implied_volatility": "0.19437",
"delta": "0.91244",
"gamma": "0.00574",
"theta": "-0.12871",
"vega": "0.22697",
"rho": "0.68775"
},
{
"contractID": "IBM250620P00195000",
"symbol": "IBM",
"expiration": "2025-06-20",
"strike": "195.00",
"type": "put",
"last": "4.30",
"mark": "4.50",
"bid": "4.40",
"bid_size": "15",
"ask": "4.60",
"ask_size": "31",
"volume": "26",
"open_interest": "741",
"date": "2025-01-24",
"implied_volatility": "0.30214",
"delta": "-0.17658",
"gamma": "0.00601",
"theta": "-0.11959",
"vega": "0.36984",
"rho": "-0.17800"
},
{
"contractID": "IBM250620C00200000",
"symbol": "IBM",
"expiration": "2025-06-20",
"strike": "200.00",
"type": "call",
"last": "30.84",
"mark": "30.75",
"bid": "30.35",
"bid_size": "186",
"ask": "31.15",
"ask_size": "42",
"volume": "0",
"open_interest": "11389",
"date": "2025-01-24",
"implied_volatility": "0.21602",
"delta": "0.85278",
"gamma": "0.00747",
"theta": "-0.15779",
"vega": "0.32849",
"rho": "0.64824"
},
{
"contractID": "IBM250620P00200000",
"symbol": "IBM",
"expiration": "2025-06-20",
"strike": "200.00",
"type": "put",
"last": "0.00",
"mark": "5.62",
"bid": "5.50",
"bid_size": "30",
"ask": "5.75",
"ask_size": "23",
"volume": "0",
"open_interest": "1407",
"date": "2025-01-24",
"implied_volatility": "0.29925",
"delta": "-0.21119",
"gamma": "0.00677",
"theta": "-0.13027",
"vega": "0.41251",
"rho": "-0.21383"
},
{
"contractID": "IBM250620C00210000",
"symbol": "IBM",
"expiration": "2025-06-20",
"strike": "210.00",
"type": "call",
"last": "23.32",
"mark": "23.55",
"bid": "23.10",
"bid_size": "323",
"ask": "24.00",
"ask_size": "10",
"volume": "5",
"open_interest": "1050",
"date": "2025-01-24",
"implied_volatility": "0.22349",
"delta": "0.74986",
"gamma": "0.00997",
"theta": "-0.18861",
"vega": "0.45348",
"rho": "0.58405"
},
{
"contractID": "IBM250620P00210000",
"symbol": "IBM",
"expiration": "2025-06-20",
"strike": "210.00",
"type": "put",
"last": "8.85",
"mark": "8.68",
"bid": "8.55",
"bid_size": "31",
"ask": "8.80",
"ask_size": "30",
"volume": "18",
"open_interest": "2286",
"date": "2025-01-24",
"implied_volatility": "0.29848",
"delta": "-0.29243",
"gamma": "0.00807",
"theta": "-0.14945",
"vega": "0.49024",
"rho": "-0.29970"
},
{
"contractID": "IBM250620C00220000",
"symbol": "IBM",
"expiration": "2025-06-20",
"strike": "220.00",
"type": "call",
"last": "18.50",
"mark": "17.90",
"bid": "17.75",
"bid_size": "21",
"ask": "18.05",
"ask_size": "14",
"volume": "32",
"open_interest": "2695",
"date": "2025-01-24",
"implied_volatility": "0.23583",
"delta": "0.63140",
"gamma": "0.01121",
"theta": "-0.21122",
"vega": "0.53798",
"rho": "0.49956"
},
{
"contractID": "IBM250620P00220000",
"symbol": "IBM",
"expiration": "2025-06-20",
"strike": "220.00",
"type": "put",
"last": "12.40",
"mark": "13.15",
"bid": "12.65",
"bid_size": "12",
"ask": "13.65",
"ask_size": "40",
"volume": "139",
"open_interest": "1069",
"date": "2025-01-24",
"implied_volatility": "0.30702",
"delta": "-0.38297",
"gamma": "0.00871",
"theta": "-0.16456",
"vega": "0.54447",
"rho": "-0.39969"
},
{
"contractID": "IBM250620C00230000",
"symbol": "IBM",
"expiration": "2025-06-20",
"strike": "230.00",
"type": "call",
"last": "13.75",
"mark": "13.32",
"bid": "12.80",
"bid_size": "170",
"ask": "13.85",
"ask_size": "287",
"volume": "37",
"open_interest": "2440",
"date": "2025-01-24",
"implied_volatility": "0.24422",
"delta": "0.51693",
"gamma": "0.01144",
"theta": "-0.21695",
"vega": "0.56863",
"rho": "0.41437"
},
{
"contractID": "IBM250620P00230000",
"symbol": "IBM",
"expiration": "2025-06-20",
"strike": "230.00",
"type": "put",
"last": "18.10",
"mark": "18.30",
"bid": "17.75",
"bid_size": "11",
"ask": "18.85",
"ask_size": "40",
"volume": "37",
"open_interest": "441",
"date": "2025-01-24",
"implied_volatility": "0.31037",
"delta": "-0.47173",
"gamma": "0.00899",
"theta": "-0.16491",
"vega": "0.56771",
"rho": "-0.50080"
},
{
"contractID": "IBM250620C00240000",
"symbol": "IBM",
"expiration": "2025-06-20",
"strike": "240.00",
"type": "call",
"last": "9.17",
"mark": "9.05",
"bid": "8.70",
"bid_size": "398",
"ask": "9.40",
"ask_size": "5",
"volume": "20",
"open_interest": "1892",
"date": "2025-01-24",
"implied_volatility": "0.23827",
"delta": "0.40448",
"gamma": "0.01140",
"theta": "-0.19896",
"vega": "0.55275",
"rho": "0.32977"
},
{
"contractID": "IBM250620P00240000",
"symbol": "IBM",
"expiration": "2025-06-20",
"strike": "240.00",
"type": "put",
"last": "0.00",
"mark": "24.25",
"bid": "24.00",
"bid_size": "5",
"ask": "24.50",
"ask_size": "20",
"volume": "0",
"open_interest": "188",
"date": "2025-01-24",
"implied_volatility": "0.31251",
"delta": "-0.55678",
"gamma": "0.00886",
"theta": "-0.15388",
"vega": "0.56336",
"rho": "-0.60174"
},
{
"contractID": "IBM250620C00250000",
"symbol": "IBM",
"expiration": "2025-06-20",
"strike": "250.00",
"type": "call",
"last": "6.40",
"mark": "6.62",
"bid": "6.35",
"bid_size": "41",
"ask": "6.90",
"ask_size": "356",
"volume": "28",
"open_interest": "2469",
"date": "2025-01-24",
"implied_volatility": "0.24849",
"delta": "0.31407",
"gamma": "0.01001",
"theta": "-0.18385",
"vega": "0.50615",
"rho": "0.25768"
},
{
"contractID": "IBM250620P00250000",
"symbol": "IBM",
"expiration": "2025-06-20",
"strike": "250.00",
"type": "put",
"last": "0.00",
"mark": "31.70",
"bid": "31.20",
"bid_size": "10",
"ask": "32.20",
"ask_size": "40",
"volume": "0",
"open_interest": "560",
"date": "2025-01-24",
"implied_volatility": "0.32836",
"delta": "-0.62627",
"gamma": "0.00809",
"theta": "-0.14561",
"vega": "0.54039",
"rho": "-0.69467"
},
{
"contractID": "IBM250620C00260000",
"symbol": "IBM",
"expiration": "2025-06-20",
"strike": "260.00",
"type": "call",
"last": "4.35",
"mark": "4.47",
"bid": "4.35",
"bid_size": "40",
"ask": "4.60",
"ask_size": "11",
"volume": "8",
"open_interest": "1861",
"date": "2025-01-24",
"implied_volatility": "0.24909",
"delta": "0.23243",
"gamma": "0.00859",
"theta": "-0.15544",
"vega": "0.43573",
"rho": "0.19244"
},
{
"contractID": "IBM250620P00260000",
"symbol": "IBM",
"expiration": "2025-06-20",
"strike": "260.00",
"type": "put",
"last": "0.00",
"mark": "39.70",
"bid": "39.00",
"bid_size": "12",
"ask": "40.40",
"ask_size": "73",
"volume": "0",
"open_interest": "172",
"date": "2025-01-24",
"implied_volatility": "0.34406",
"delta": "-0.68339",
"gamma": "0.00725",
"theta": "-0.13324",
"vega": "0.50789",
"rho": "-0.77860"
},
{
"contractID": "IBM250620C00270000",
"symbol": "IBM",
"expiration": "2025-06-20",
"strike": "270.00",
"type": "call",
"last": "3.00",
"mark": "3.06",
"bid": "2.97",
"bid_size": "41",
"ask": "3.15",
"ask_size": "11",
"volume": "39",
"open_interest": "3638",
"date": "2025-01-24",
"implied_volatility": "0.25291",
"delta": "0.17039",
"gamma": "0.00702",
"theta": "-0.12878",
"vega": "0.36155",
"rho": "0.14194"
},
{
"contractID": "IBM250620P00270000",
"symbol": "IBM",
"expiration": "2025-06-20",
"strike": "270.00",
"type": "put",
"last": "0.00",
"mark": "48.08",
"bid": "47.20",
"bid_size": "72",
"ask": "48.95",
"ask_size": "40",
"volume": "0",
"open_interest": "46",
"date": "2025-01-24",
"implied_volatility": "0.35885",
"delta": "-0.73041",
"gamma": "0.00645",
"theta": "-0.11807",
"vega": "0.47134",
"rho": "-0.85493"
},
{
"contractID": "IBM250620C00280000",
"symbol": "IBM",
"expiration": "2025-06-20",
"strike": "280.00",
"type": "call",
"last": "2.02",
"mark": "2.10",
"bid": "2.01",
"bid_size": "21",
"ask": "2.19",
"ask_size": "40",
"volume": "2",
"open_interest": "295",
"date": "2025-01-24",
"implied_volatility": "0.25717",
"delta": "0.12365",
"gamma": "0.00557",
"theta": "-0.10418",
"vega": "0.29145",
"rho": "0.10350"
},
{
"contractID": "IBM250620P00280000",
"symbol": "IBM",
"expiration": "2025-06-20",
"strike": "280.00",
"type": "put",
"last": "0.00",
"mark": "57.38",
"bid": "56.85",
"bid_size": "43",
"ask": "57.90",
"ask_size": "11",
"volume": "0",
"open_interest": "1",
"date": "2025-01-24",
"implied_volatility": "0.38705",
"delta": "-0.75808",
"gamma": "0.00565",
"theta": "-0.11540",
"vega": "0.44543",
"rho": "-0.91742"
},
{
"contractID": "IBM250620C00290000",
"symbol": "IBM",
"expiration": "2025-06-20",
"strike": "290.00",
"type": "call",
"last": "1.50",
"mark": "1.42",
"bid": "1.33",
"bid_size": "30",
"ask": "1.51",
"ask_size": "40",
"volume": "0",
"open_interest": "1653",
"date": "2025-01-24",
"implied_volatility": "0.26068",
"delta": "0.08830",
"gamma": "0.00431",
"theta": "-0.08190",
"vega": "0.22841",
"rho": "0.07422"
},
{
"contractID": "IBM250620P00290000",
"symbol": "IBM",
"expiration": "2025-06-20",
"strike": "290.00",
"type": "put",
"last": "0.00",
"mark": "66.95",
"bid": "66.45",
"bid_size": "24",
"ask": "67.45",
"ask_size": "11",
"volume": "0",
"open_interest": "1",
"date": "2025-01-24",
"implied_volatility": "0.41769",
"delta": "-0.77710",
"gamma": "0.00501",
"theta": "-0.11606",
"vega": "0.42559",
"rho": "-0.97319"
},
{
"contractID": "IBM250620C00300000",
"symbol": "IBM",
"expiration": "2025-06-20",
"strike": "300.00",
"type": "call",
"last": "0.96",
"mark": "0.96",
"bid": "0.91",
"bid_size": "16",
"ask": "1.01",
"ask_size": "22",
"volume": "19",
"open_interest": "496",
"date": "2025-01-24",
"implied_volatility": "0.26419",
"delta": "0.06259",
"gamma": "0.00327",
"theta": "-0.06329",
"vega": "0.17566",
"rho": "0.05280"
},
{
"contractID": "IBM250620P00300000",
"symbol": "IBM",
"expiration": "2025-06-20",
"strike": "300.00",
"type": "put",
"last": "0.00",
"mark": "77.12",
"bid": "76.15",
"bid_size": "56",
"ask": "78.10",
"ask_size": "76",
"volume": "0",
"open_interest": "1",
"date": "2025-01-24",
"implied_volatility": "0.45991",
"delta": "-0.78319",
"gamma": "0.00447",
"theta": "-0.12954",
"vega": "0.41887",
"rho": "-1.01967"
},
{
"contractID": "IBM250620C00310000",
"symbol": "IBM",
"expiration": "2025-06-20",
"strike": "310.00",
"type": "call",
"last": "0.77",
"mark": "0.68",
"bid": "0.24",
"bid_size": "943",
"ask": "1.12",
"ask_size": "1778",
"volume": "0",
"open_interest": "191",
"date": "2025-01-24",
"implied_volatility": "0.26983",
"delta": "0.04559",
"gamma": "0.00249",
"theta": "-0.04992",
"vega": "0.13664",
"rho": "0.03853"
},
{
"contractID": "IBM250620P00310000",
"symbol": "IBM",
"expiration": "2025-06-20",
"strike": "310.00",
"type": "put",
"last": "0.00",
"mark": "86.90",
"bid": "86.00",
"bid_size": "65",
"ask": "87.80",
"ask_size": "70",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.49086",
"delta": "-0.79386",
"gamma": "0.00407",
"theta": "-0.13292",
"vega": "0.40667",
"rho": "-1.06871"
},
{
"contractID": "IBM250620C00320000",
"symbol": "IBM",
"expiration": "2025-06-20",
"strike": "320.00",
"type": "call",
"last": "0.50",
"mark": "0.53",
"bid": "0.17",
"bid_size": "479",
"ask": "0.88",
"ask_size": "1623",
"volume": "0",
"open_interest": "304",
"date": "2025-01-24",
"implied_volatility": "0.27943",
"delta": "0.03560",
"gamma": "0.00197",
"theta": "-0.04201",
"vega": "0.11177",
"rho": "0.03010"
},
{
"contractID": "IBM250620P00320000",
"symbol": "IBM",
"expiration": "2025-06-20",
"strike": "320.00",
"type": "put",
"last": "0.00",
"mark": "96.22",
"bid": "95.00",
"bid_size": "1",
"ask": "97.45",
"ask_size": "76",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.50823",
"delta": "-0.81042",
"gamma": "0.00374",
"theta": "-0.12339",
"vega": "0.38660",
"rho": "-1.12124"
},
{
"contractID": "IBM250620C00330000",
"symbol": "IBM",
"expiration": "2025-06-20",
"strike": "330.00",
"type": "call",
"last": "0.85",
"mark": "0.41",
"bid": "0.08",
"bid_size": "468",
"ask": "0.75",
"ask_size": "1946",
"volume": "0",
"open_interest": "13",
"date": "2025-01-24",
"implied_volatility": "0.28781",
"delta": "0.02775",
"gamma": "0.00155",
"theta": "-0.03503",
"vega": "0.09098",
"rho": "0.02347"
},
{
"contractID": "IBM250620P00330000",
"symbol": "IBM",
"expiration": "2025-06-20",
"strike": "330.00",
"type": "put",
"last": "0.00",
"mark": "106.72",
"bid": "105.85",
"bid_size": "76",
"ask": "107.60",
"ask_size": "89",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.55412",
"delta": "-0.80682",
"gamma": "0.00347",
"theta": "-0.14430",
"vega": "0.39109",
"rho": "-1.16026"
},
{
"contractID": "IBM250620C00340000",
"symbol": "IBM",
"expiration": "2025-06-20",
"strike": "340.00",
"type": "call",
"last": "0.40",
"mark": "0.42",
"bid": "0.05",
"bid_size": "399",
"ask": "0.78",
"ask_size": "1756",
"volume": "0",
"open_interest": "477",
"date": "2025-01-24",
"implied_volatility": "0.30793",
"delta": "0.02679",
"gamma": "0.00141",
"theta": "-0.03620",
"vega": "0.08835",
"rho": "0.02256"
},
{
"contractID": "IBM250620P00340000",
"symbol": "IBM",
"expiration": "2025-06-20",
"strike": "340.00",
"type": "put",
"last": "0.00",
"mark": "116.78",
"bid": "115.80",
"bid_size": "82",
"ask": "117.75",
"ask_size": "76",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.58750",
"delta": "-0.80962",
"gamma": "0.00324",
"theta": "-0.15334",
"vega": "0.38761",
"rho": "-1.20331"
},
{
"contractID": "IBM250620C00350000",
"symbol": "IBM",
"expiration": "2025-06-20",
"strike": "350.00",
"type": "call",
"last": "0.10",
"mark": "0.38",
"bid": "0.01",
"bid_size": "256",
"ask": "0.75",
"ask_size": "1782",
"volume": "0",
"open_interest": "2",
"date": "2025-01-24",
"implied_volatility": "0.32135",
"delta": "0.02366",
"gamma": "0.00122",
"theta": "-0.03390",
"vega": "0.07961",
"rho": "0.01989"
},
{
"contractID": "IBM250620P00350000",
"symbol": "IBM",
"expiration": "2025-06-20",
"strike": "350.00",
"type": "put",
"last": "0.00",
"mark": "126.72",
"bid": "125.80",
"bid_size": "70",
"ask": "127.65",
"ask_size": "70",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.61662",
"delta": "-0.81357",
"gamma": "0.00305",
"theta": "-0.15885",
"vega": "0.38262",
"rho": "-1.24692"
},
{
"contractID": "IBM250718C00105000",
"symbol": "IBM",
"expiration": "2025-07-18",
"strike": "105.00",
"type": "call",
"last": "0.00",
"mark": "119.32",
"bid": "118.30",
"bid_size": "75",
"ask": "120.35",
"ask_size": "43",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.04860",
"delta": "1.00000",
"gamma": "0.00000",
"theta": "-0.04453",
"vega": "0.00000",
"rho": "0.49308"
},
{
"contractID": "IBM250718P00105000",
"symbol": "IBM",
"expiration": "2025-07-18",
"strike": "105.00",
"type": "put",
"last": "0.00",
"mark": "0.75",
"bid": "0.02",
"bid_size": "27",
"ask": "1.48",
"ask_size": "70",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.60442",
"delta": "-0.01886",
"gamma": "0.00049",
"theta": "-0.04304",
"vega": "0.07171",
"rho": "-0.02393"
},
{
"contractID": "IBM250718C00110000",
"symbol": "IBM",
"expiration": "2025-07-18",
"strike": "110.00",
"type": "call",
"last": "0.00",
"mark": "114.57",
"bid": "113.60",
"bid_size": "71",
"ask": "115.55",
"ask_size": "49",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.04657",
"delta": "1.00000",
"gamma": "0.00000",
"theta": "-0.04665",
"vega": "0.00000",
"rho": "0.51656"
},
{
"contractID": "IBM250718P00110000",
"symbol": "IBM",
"expiration": "2025-07-18",
"strike": "110.00",
"type": "put",
"last": "0.00",
"mark": "0.87",
"bid": "0.03",
"bid_size": "30",
"ask": "1.71",
"ask_size": "70",
"volume": "0",
"open_interest": "1",
"date": "2025-01-24",
"implied_volatility": "0.58735",
"delta": "-0.02212",
"gamma": "0.00058",
"theta": "-0.04774",
"vega": "0.08207",
"rho": "-0.02802"
},
{
"contractID": "IBM250718C00115000",
"symbol": "IBM",
"expiration": "2025-07-18",
"strike": "115.00",
"type": "call",
"last": "0.00",
"mark": "109.53",
"bid": "108.55",
"bid_size": "76",
"ask": "110.50",
"ask_size": "63",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.04454",
"delta": "1.00000",
"gamma": "0.00000",
"theta": "-0.04877",
"vega": "0.00000",
"rho": "0.54004"
},
{
"contractID": "IBM250718P00115000",
"symbol": "IBM",
"expiration": "2025-07-18",
"strike": "115.00",
"type": "put",
"last": "0.00",
"mark": "0.80",
"bid": "0.08",
"bid_size": "26",
"ask": "1.51",
"ask_size": "71",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.54726",
"delta": "-0.02205",
"gamma": "0.00062",
"theta": "-0.04423",
"vega": "0.08186",
"rho": "-0.02760"
},
{
"contractID": "IBM250718C00120000",
"symbol": "IBM",
"expiration": "2025-07-18",
"strike": "120.00",
"type": "call",
"last": "0.00",
"mark": "104.57",
"bid": "103.55",
"bid_size": "70",
"ask": "105.60",
"ask_size": "47",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.04251",
"delta": "1.00000",
"gamma": "0.00000",
"theta": "-0.05089",
"vega": "0.00000",
"rho": "0.56352"
},
{
"contractID": "IBM250718P00120000",
"symbol": "IBM",
"expiration": "2025-07-18",
"strike": "120.00",
"type": "put",
"last": "0.00",
"mark": "0.73",
"bid": "0.04",
"bid_size": "71",
"ask": "1.43",
"ask_size": "71",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.50900",
"delta": "-0.02189",
"gamma": "0.00066",
"theta": "-0.04074",
"vega": "0.08135",
"rho": "-0.02710"
},
{
"contractID": "IBM250718C00125000",
"symbol": "IBM",
"expiration": "2025-07-18",
"strike": "125.00",
"type": "call",
"last": "0.00",
"mark": "99.72",
"bid": "98.60",
"bid_size": "98",
"ask": "100.85",
"ask_size": "67",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.04049",
"delta": "1.00000",
"gamma": "0.00000",
"theta": "-0.05301",
"vega": "0.00000",
"rho": "0.58700"
},
{
"contractID": "IBM250718P00125000",
"symbol": "IBM",
"expiration": "2025-07-18",
"strike": "125.00",
"type": "put",
"last": "0.00",
"mark": "0.72",
"bid": "0.05",
"bid_size": "71",
"ask": "1.39",
"ask_size": "71",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.47942",
"delta": "-0.02294",
"gamma": "0.00073",
"theta": "-0.03977",
"vega": "0.08464",
"rho": "-0.02818"
},
{
"contractID": "IBM250718C00130000",
"symbol": "IBM",
"expiration": "2025-07-18",
"strike": "130.00",
"type": "call",
"last": "0.00",
"mark": "95.15",
"bid": "94.20",
"bid_size": "72",
"ask": "96.10",
"ask_size": "58",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.03846",
"delta": "1.00000",
"gamma": "0.00000",
"theta": "-0.05513",
"vega": "0.00000",
"rho": "0.61048"
},
{
"contractID": "IBM250718P00130000",
"symbol": "IBM",
"expiration": "2025-07-18",
"strike": "130.00",
"type": "put",
"last": "0.00",
"mark": "0.53",
"bid": "0.15",
"bid_size": "63",
"ask": "0.90",
"ask_size": "71",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.42882",
"delta": "-0.01956",
"gamma": "0.00071",
"theta": "-0.03094",
"vega": "0.07396",
"rho": "-0.02363"
},
{
"contractID": "IBM250718C00135000",
"symbol": "IBM",
"expiration": "2025-07-18",
"strike": "135.00",
"type": "call",
"last": "0.00",
"mark": "89.92",
"bid": "88.60",
"bid_size": "70",
"ask": "91.25",
"ask_size": "71",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.03643",
"delta": "1.00000",
"gamma": "0.00000",
"theta": "-0.05725",
"vega": "0.00000",
"rho": "0.63396"
},
{
"contractID": "IBM250718P00135000",
"symbol": "IBM",
"expiration": "2025-07-18",
"strike": "135.00",
"type": "put",
"last": "0.00",
"mark": "0.55",
"bid": "0.18",
"bid_size": "71",
"ask": "0.91",
"ask_size": "71",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.40610",
"delta": "-0.02129",
"gamma": "0.00081",
"theta": "-0.03134",
"vega": "0.07945",
"rho": "-0.02558"
},
{
"contractID": "IBM250718C00140000",
"symbol": "IBM",
"expiration": "2025-07-18",
"strike": "140.00",
"type": "call",
"last": "0.00",
"mark": "85.55",
"bid": "84.65",
"bid_size": "53",
"ask": "86.45",
"ask_size": "66",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.03440",
"delta": "1.00000",
"gamma": "0.00000",
"theta": "-0.05937",
"vega": "0.00000",
"rho": "0.65744"
},
{
"contractID": "IBM250718P00140000",
"symbol": "IBM",
"expiration": "2025-07-18",
"strike": "140.00",
"type": "put",
"last": "0.00",
"mark": "0.58",
"bid": "0.22",
"bid_size": "71",
"ask": "0.94",
"ask_size": "71",
"volume": "0",
"open_interest": "8",
"date": "2025-01-24",
"implied_volatility": "0.38522",
"delta": "-0.02348",
"gamma": "0.00092",
"theta": "-0.03214",
"vega": "0.08631",
"rho": "-0.02809"
},
{
"contractID": "IBM250718C00145000",
"symbol": "IBM",
"expiration": "2025-07-18",
"strike": "145.00",
"type": "call",
"last": "0.00",
"mark": "80.58",
"bid": "79.70",
"bid_size": "69",
"ask": "81.45",
"ask_size": "41",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.03237",
"delta": "1.00000",
"gamma": "0.00000",
"theta": "-0.06150",
"vega": "0.00000",
"rho": "0.68092"
},
{
"contractID": "IBM250718P00145000",
"symbol": "IBM",
"expiration": "2025-07-18",
"strike": "145.00",
"type": "put",
"last": "0.00",
"mark": "0.93",
"bid": "0.27",
"bid_size": "72",
"ask": "1.58",
"ask_size": "71",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.39467",
"delta": "-0.03460",
"gamma": "0.00125",
"theta": "-0.04527",
"vega": "0.11915",
"rho": "-0.04175"
},
{
"contractID": "IBM250718C00150000",
"symbol": "IBM",
"expiration": "2025-07-18",
"strike": "150.00",
"type": "call",
"last": "0.00",
"mark": "75.40",
"bid": "74.15",
"bid_size": "94",
"ask": "76.65",
"ask_size": "40",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.03034",
"delta": "1.00000",
"gamma": "0.00000",
"theta": "-0.06362",
"vega": "0.00000",
"rho": "0.70440"
},
{
"contractID": "IBM250718P00150000",
"symbol": "IBM",
"expiration": "2025-07-18",
"strike": "150.00",
"type": "put",
"last": "0.00",
"mark": "1.04",
"bid": "0.33",
"bid_size": "99",
"ask": "1.76",
"ask_size": "71",
"volume": "0",
"open_interest": "9",
"date": "2025-01-24",
"implied_volatility": "0.37836",
"delta": "-0.03967",
"gamma": "0.00145",
"theta": "-0.04826",
"vega": "0.13324",
"rho": "-0.04775"
},
{
"contractID": "IBM250718C00155000",
"symbol": "IBM",
"expiration": "2025-07-18",
"strike": "155.00",
"type": "call",
"last": "65.22",
"mark": "70.32",
"bid": "68.80",
"bid_size": "74",
"ask": "71.85",
"ask_size": "31",
"volume": "0",
"open_interest": "10",
"date": "2025-01-24",
"implied_volatility": "0.02832",
"delta": "1.00000",
"gamma": "0.00000",
"theta": "-0.06574",
"vega": "0.00000",
"rho": "0.72788"
},
{
"contractID": "IBM250718P00155000",
"symbol": "IBM",
"expiration": "2025-07-18",
"strike": "155.00",
"type": "put",
"last": "0.00",
"mark": "1.14",
"bid": "0.42",
"bid_size": "72",
"ask": "1.86",
"ask_size": "71",
"volume": "0",
"open_interest": "9",
"date": "2025-01-24",
"implied_volatility": "0.36068",
"delta": "-0.04488",
"gamma": "0.00168",
"theta": "-0.05051",
"vega": "0.14722",
"rho": "-0.05383"
},
{
"contractID": "IBM250718C00160000",
"symbol": "IBM",
"expiration": "2025-07-18",
"strike": "160.00",
"type": "call",
"last": "0.00",
"mark": "65.97",
"bid": "64.55",
"bid_size": "98",
"ask": "67.40",
"ask_size": "65",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.02629",
"delta": "1.00000",
"gamma": "0.00000",
"theta": "-0.06786",
"vega": "0.00000",
"rho": "0.75136"
},
{
"contractID": "IBM250718P00160000",
"symbol": "IBM",
"expiration": "2025-07-18",
"strike": "160.00",
"type": "put",
"last": "0.00",
"mark": "0.91",
"bid": "0.67",
"bid_size": "72",
"ask": "1.15",
"ask_size": "1",
"volume": "0",
"open_interest": "11",
"date": "2025-01-24",
"implied_volatility": "0.32074",
"delta": "-0.04132",
"gamma": "0.00177",
"theta": "-0.04165",
"vega": "0.13771",
"rho": "-0.04889"
},
{
"contractID": "IBM250718C00165000",
"symbol": "IBM",
"expiration": "2025-07-18",
"strike": "165.00",
"type": "call",
"last": "58.88",
"mark": "61.52",
"bid": "60.75",
"bid_size": "54",
"ask": "62.30",
"ask_size": "14",
"volume": "0",
"open_interest": "5",
"date": "2025-01-24",
"implied_volatility": "0.02426",
"delta": "1.00000",
"gamma": "0.00000",
"theta": "-0.06998",
"vega": "0.00000",
"rho": "0.77484"
},
{
"contractID": "IBM250718P00165000",
"symbol": "IBM",
"expiration": "2025-07-18",
"strike": "165.00",
"type": "put",
"last": "0.00",
"mark": "1.78",
"bid": "1.09",
"bid_size": "40",
"ask": "2.47",
"ask_size": "84",
"volume": "0",
"open_interest": "16",
"date": "2025-01-24",
"implied_volatility": "0.34742",
"delta": "-0.06782",
"gamma": "0.00242",
"theta": "-0.06653",
"vega": "0.20397",
"rho": "-0.08163"
},
{
"contractID": "IBM250718C00170000",
"symbol": "IBM",
"expiration": "2025-07-18",
"strike": "170.00",
"type": "call",
"last": "53.08",
"mark": "56.67",
"bid": "55.55",
"bid_size": "72",
"ask": "57.80",
"ask_size": "12",
"volume": "0",
"open_interest": "5",
"date": "2025-01-24",
"implied_volatility": "0.02223",
"delta": "1.00000",
"gamma": "0.00000",
"theta": "-0.07210",
"vega": "0.00000",
"rho": "0.79832"
},
{
"contractID": "IBM250718P00170000",
"symbol": "IBM",
"expiration": "2025-07-18",
"strike": "170.00",
"type": "put",
"last": "1.67",
"mark": "1.75",
"bid": "1.56",
"bid_size": "40",
"ask": "1.94",
"ask_size": "40",
"volume": "2",
"open_interest": "52",
"date": "2025-01-24",
"implied_volatility": "0.32104",
"delta": "-0.07194",
"gamma": "0.00274",
"theta": "-0.06370",
"vega": "0.21344",
"rho": "-0.08593"
},
{
"contractID": "IBM250718C00175000",
"symbol": "IBM",
"expiration": "2025-07-18",
"strike": "175.00",
"type": "call",
"last": "0.00",
"mark": "51.73",
"bid": "50.35",
"bid_size": "72",
"ask": "53.10",
"ask_size": "13",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.02020",
"delta": "1.00000",
"gamma": "0.00000",
"theta": "-0.07422",
"vega": "0.00000",
"rho": "0.82180"
},
{
"contractID": "IBM250718P00175000",
"symbol": "IBM",
"expiration": "2025-07-18",
"strike": "175.00",
"type": "put",
"last": "0.00",
"mark": "2.05",
"bid": "1.98",
"bid_size": "30",
"ask": "2.12",
"ask_size": "37",
"volume": "0",
"open_interest": "61",
"date": "2025-01-24",
"implied_volatility": "0.30946",
"delta": "-0.08492",
"gamma": "0.00323",
"theta": "-0.06896",
"vega": "0.24204",
"rho": "-0.10136"
},
{
"contractID": "IBM250718C00180000",
"symbol": "IBM",
"expiration": "2025-07-18",
"strike": "180.00",
"type": "call",
"last": "49.50",
"mark": "47.58",
"bid": "47.10",
"bid_size": "51",
"ask": "48.05",
"ask_size": "10",
"volume": "0",
"open_interest": "12",
"date": "2025-01-24",
"implied_volatility": "0.01817",
"delta": "1.00000",
"gamma": "0.00000",
"theta": "-0.07634",
"vega": "0.00000",
"rho": "0.84528"
},
{
"contractID": "IBM250718P00180000",
"symbol": "IBM",
"expiration": "2025-07-18",
"strike": "180.00",
"type": "put",
"last": "2.43",
"mark": "2.67",
"bid": "2.51",
"bid_size": "11",
"ask": "2.84",
"ask_size": "41",
"volume": "2",
"open_interest": "45",
"date": "2025-01-24",
"implied_volatility": "0.30748",
"delta": "-0.10604",
"gamma": "0.00383",
"theta": "-0.07993",
"vega": "0.28506",
"rho": "-0.12708"
},
{
"contractID": "IBM250718C00185000",
"symbol": "IBM",
"expiration": "2025-07-18",
"strike": "185.00",
"type": "call",
"last": "40.11",
"mark": "43.67",
"bid": "42.70",
"bid_size": "60",
"ask": "44.65",
"ask_size": "40",
"volume": "0",
"open_interest": "4",
"date": "2025-01-24",
"implied_volatility": "0.13538",
"delta": "0.99054",
"gamma": "0.00121",
"theta": "-0.08309",
"vega": "0.03953",
"rho": "0.85823"
},
{
"contractID": "IBM250718P00185000",
"symbol": "IBM",
"expiration": "2025-07-18",
"strike": "185.00",
"type": "put",
"last": "0.00",
"mark": "3.25",
"bid": "3.20",
"bid_size": "10",
"ask": "3.30",
"ask_size": "11",
"volume": "0",
"open_interest": "89",
"date": "2025-01-24",
"implied_volatility": "0.30047",
"delta": "-0.12706",
"gamma": "0.00445",
"theta": "-0.08778",
"vega": "0.32410",
"rho": "-0.15254"
},
{
"contractID": "IBM250718C00190000",
"symbol": "IBM",
"expiration": "2025-07-18",
"strike": "190.00",
"type": "call",
"last": "35.00",
"mark": "39.02",
"bid": "38.40",
"bid_size": "88",
"ask": "39.65",
"ask_size": "5",
"volume": "0",
"open_interest": "8",
"date": "2025-01-24",
"implied_volatility": "0.15245",
"delta": "0.96732",
"gamma": "0.00308",
"theta": "-0.09534",
"vega": "0.11369",
"rho": "0.85550"
},
{
"contractID": "IBM250718P00190000",
"symbol": "IBM",
"expiration": "2025-07-18",
"strike": "190.00",
"type": "put",
"last": "4.17",
"mark": "4.08",
"bid": "4.00",
"bid_size": "10",
"ask": "4.15",
"ask_size": "10",
"volume": "1",
"open_interest": "94",
"date": "2025-01-24",
"implied_volatility": "0.29726",
"delta": "-0.15366",
"gamma": "0.00512",
"theta": "-0.09760",
"vega": "0.36878",
"rho": "-0.18516"
},
{
"contractID": "IBM250718C00195000",
"symbol": "IBM",
"expiration": "2025-07-18",
"strike": "195.00",
"type": "call",
"last": "36.48",
"mark": "35.12",
"bid": "34.50",
"bid_size": "134",
"ask": "35.75",
"ask_size": "7",
"volume": "0",
"open_interest": "49",
"date": "2025-01-24",
"implied_volatility": "0.18629",
"delta": "0.90790",
"gamma": "0.00570",
"theta": "-0.12312",
"vega": "0.25714",
"rho": "0.81016"
},
{
"contractID": "IBM250718P00195000",
"symbol": "IBM",
"expiration": "2025-07-18",
"strike": "195.00",
"type": "put",
"last": "0.00",
"mark": "5.53",
"bid": "5.00",
"bid_size": "11",
"ask": "6.05",
"ask_size": "133",
"volume": "0",
"open_interest": "221",
"date": "2025-01-24",
"implied_volatility": "0.30550",
"delta": "-0.19046",
"gamma": "0.00572",
"theta": "-0.11384",
"vega": "0.42303",
"rho": "-0.23180"
},
{
"contractID": "IBM250718C00200000",
"symbol": "IBM",
"expiration": "2025-07-18",
"strike": "200.00",
"type": "call",
"last": "33.35",
"mark": "31.75",
"bid": "30.80",
"bid_size": "85",
"ask": "32.70",
"ask_size": "40",
"volume": "0",
"open_interest": "33",
"date": "2025-01-24",
"implied_volatility": "0.21099",
"delta": "0.84502",
"gamma": "0.00726",
"theta": "-0.15011",
"vega": "0.37089",
"rho": "0.75853"
},
{
"contractID": "IBM250718P00200000",
"symbol": "IBM",
"expiration": "2025-07-18",
"strike": "200.00",
"type": "put",
"last": "5.95",
"mark": "6.40",
"bid": "5.45",
"bid_size": "315",
"ask": "7.35",
"ask_size": "144",
"volume": "10",
"open_interest": "637",
"date": "2025-01-24",
"implied_volatility": "0.29544",
"delta": "-0.21911",
"gamma": "0.00642",
"theta": "-0.11757",
"vega": "0.45982",
"rho": "-0.26685"
},
{
"contractID": "IBM250718C00205000",
"symbol": "IBM",
"expiration": "2025-07-18",
"strike": "205.00",
"type": "call",
"last": "26.00",
"mark": "27.93",
"bid": "27.30",
"bid_size": "285",
"ask": "28.55",
"ask_size": "11",
"volume": "0",
"open_interest": "27",
"date": "2025-01-24",
"implied_volatility": "0.21129",
"delta": "0.80102",
"gamma": "0.00849",
"theta": "-0.16160",
"vega": "0.43445",
"rho": "0.72943"
},
{
"contractID": "IBM250718P00205000",
"symbol": "IBM",
"expiration": "2025-07-18",
"strike": "205.00",
"type": "put",
"last": "7.80",
"mark": "8.47",
"bid": "7.50",
"bid_size": "91",
"ask": "9.45",
"ask_size": "241",
"volume": "18",
"open_interest": "65",
"date": "2025-01-24",
"implied_volatility": "0.30687",
"delta": "-0.26178",
"gamma": "0.00681",
"theta": "-0.13300",
"vega": "0.50667",
"rho": "-0.32277"
},
{
"contractID": "IBM250718C00210000",
"symbol": "IBM",
"expiration": "2025-07-18",
"strike": "210.00",
"type": "call",
"last": "25.87",
"mark": "24.80",
"bid": "24.35",
"bid_size": "164",
"ask": "25.25",
"ask_size": "9",
"volume": "0",
"open_interest": "44",
"date": "2025-01-24",
"implied_volatility": "0.22028",
"delta": "0.74501",
"gamma": "0.00936",
"theta": "-0.17660",
"vega": "0.49982",
"rho": "0.68409"
},
{
"contractID": "IBM250718P00210000",
"symbol": "IBM",
"expiration": "2025-07-18",
"strike": "210.00",
"type": "put",
"last": "9.55",
"mark": "9.68",
"bid": "9.05",
"bid_size": "40",
"ask": "10.30",
"ask_size": "40",
"volume": "6",
"open_interest": "125",
"date": "2025-01-24",
"implied_volatility": "0.29696",
"delta": "-0.29633",
"gamma": "0.00748",
"theta": "-0.13363",
"vega": "0.53818",
"rho": "-0.36581"
},
{
"contractID": "IBM250718C00215000",
"symbol": "IBM",
"expiration": "2025-07-18",
"strike": "215.00",
"type": "call",
"last": "22.25",
"mark": "21.60",
"bid": "21.00",
"bid_size": "255",
"ask": "22.20",
"ask_size": "12",
"volume": "0",
"open_interest": "351",
"date": "2025-01-24",
"implied_volatility": "0.22150",
"delta": "0.69240",
"gamma": "0.01020",
"theta": "-0.18446",
"vega": "0.54728",
"rho": "0.64270"
},
{
"contractID": "IBM250718P00215000",
"symbol": "IBM",
"expiration": "2025-07-18",
"strike": "215.00",
"type": "put",
"last": "0.00",
"mark": "11.35",
"bid": "10.25",
"bid_size": "161",
"ask": "12.45",
"ask_size": "40",
"volume": "0",
"open_interest": "77",
"date": "2025-01-24",
"implied_volatility": "0.29239",
"delta": "-0.33581",
"gamma": "0.00801",
"theta": "-0.13548",
"vega": "0.56761",
"rho": "-0.41634"
},
{
"contractID": "IBM250718C00220000",
"symbol": "IBM",
"expiration": "2025-07-18",
"strike": "220.00",
"type": "call",
"last": "20.06",
"mark": "18.85",
"bid": "18.30",
"bid_size": "251",
"ask": "19.40",
"ask_size": "11",
"volume": "5",
"open_interest": "82",
"date": "2025-01-24",
"implied_volatility": "0.22531",
"delta": "0.63661",
"gamma": "0.01070",
"theta": "-0.19108",
"vega": "0.58421",
"rho": "0.59578"
},
{
"contractID": "IBM250718P00220000",
"symbol": "IBM",
"expiration": "2025-07-18",
"strike": "220.00",
"type": "put",
"last": "13.00",
"mark": "13.60",
"bid": "13.25",
"bid_size": "4",
"ask": "13.95",
"ask_size": "30",
"volume": "2",
"open_interest": "87",
"date": "2025-01-24",
"implied_volatility": "0.29452",
"delta": "-0.37843",
"gamma": "0.00829",
"theta": "-0.13908",
"vega": "0.59192",
"rho": "-0.47309"
},
{
"contractID": "IBM250718C00225000",
"symbol": "IBM",
"expiration": "2025-07-18",
"strike": "225.00",
"type": "call",
"last": "17.44",
"mark": "16.35",
"bid": "15.90",
"bid_size": "255",
"ask": "16.80",
"ask_size": "19",
"volume": "0",
"open_interest": "53",
"date": "2025-01-24",
"implied_volatility": "0.22836",
"delta": "0.58111",
"gamma": "0.01099",
"theta": "-0.19431",
"vega": "0.60810",
"rho": "0.54794"
},
{
"contractID": "IBM250718P00225000",
"symbol": "IBM",
"expiration": "2025-07-18",
"strike": "225.00",
"type": "put",
"last": "0.00",
"mark": "16.68",
"bid": "15.65",
"bid_size": "10",
"ask": "17.70",
"ask_size": "116",
"volume": "0",
"open_interest": "176",
"date": "2025-01-24",
"implied_volatility": "0.30641",
"delta": "-0.42084",
"gamma": "0.00820",
"theta": "-0.14633",
"vega": "0.60872",
"rho": "-0.53354"
},
{
"contractID": "IBM250718C00230000",
"symbol": "IBM",
"expiration": "2025-07-18",
"strike": "230.00",
"type": "call",
"last": "15.05",
"mark": "13.95",
"bid": "13.40",
"bid_size": "323",
"ask": "14.50",
"ask_size": "41",
"volume": "1",
"open_interest": "179",
"date": "2025-01-24",
"implied_volatility": "0.22852",
"delta": "0.52623",
"gamma": "0.01119",
"theta": "-0.19285",
"vega": "0.61964",
"rho": "0.50027"
},
{
"contractID": "IBM250718P00230000",
"symbol": "IBM",
"expiration": "2025-07-18",
"strike": "230.00",
"type": "put",
"last": "0.00",
"mark": "18.20",
"bid": "17.30",
"bid_size": "166",
"ask": "19.10",
"ask_size": "41",
"volume": "0",
"open_interest": "107",
"date": "2025-01-24",
"implied_volatility": "0.28949",
"delta": "-0.46426",
"gamma": "0.00882",
"theta": "-0.13365",
"vega": "0.61849",
"rho": "-0.58766"
},
{
"contractID": "IBM250718C00235000",
"symbol": "IBM",
"expiration": "2025-07-18",
"strike": "235.00",
"type": "call",
"last": "12.65",
"mark": "12.23",
"bid": "12.05",
"bid_size": "40",
"ask": "12.40",
"ask_size": "30",
"volume": "0",
"open_interest": "86",
"date": "2025-01-24",
"implied_volatility": "0.23522",
"delta": "0.47467",
"gamma": "0.01087",
"theta": "-0.19293",
"vega": "0.61973",
"rho": "0.45294"
},
{
"contractID": "IBM250718P00235000",
"symbol": "IBM",
"expiration": "2025-07-18",
"strike": "235.00",
"type": "put",
"last": "0.00",
"mark": "21.98",
"bid": "21.25",
"bid_size": "10",
"ask": "22.70",
"ask_size": "30",
"volume": "0",
"open_interest": "106",
"date": "2025-01-24",
"implied_volatility": "0.30565",
"delta": "-0.50230",
"gamma": "0.00839",
"theta": "-0.13952",
"vega": "0.62097",
"rho": "-0.64674"
},
{
"contractID": "IBM250718C00240000",
"symbol": "IBM",
"expiration": "2025-07-18",
"strike": "240.00",
"type": "call",
"last": "10.37",
"mark": "10.40",
"bid": "10.25",
"bid_size": "10",
"ask": "10.55",
"ask_size": "10",
"volume": "2",
"open_interest": "191",
"date": "2025-01-24",
"implied_volatility": "0.23614",
"delta": "0.42409",
"gamma": "0.01066",
"theta": "-0.18692",
"vega": "0.60971",
"rho": "0.40722"
},
{
"contractID": "IBM250718P00240000",
"symbol": "IBM",
"expiration": "2025-07-18",
"strike": "240.00",
"type": "put",
"last": "0.00",
"mark": "25.20",
"bid": "24.45",
"bid_size": "10",
"ask": "25.95",
"ask_size": "40",
"volume": "0",
"open_interest": "48",
"date": "2025-01-24",
"implied_volatility": "0.30992",
"delta": "-0.54017",
"gamma": "0.00823",
"theta": "-0.13619",
"vega": "0.61783",
"rho": "-0.70304"
},
{
"contractID": "IBM250718C00245000",
"symbol": "IBM",
"expiration": "2025-07-18",
"strike": "245.00",
"type": "call",
"last": "7.98",
"mark": "8.77",
"bid": "8.60",
"bid_size": "40",
"ask": "8.95",
"ask_size": "10",
"volume": "0",
"open_interest": "61",
"date": "2025-01-24",
"implied_volatility": "0.23660",
"delta": "0.37577",
"gamma": "0.01030",
"theta": "-0.17851",
"vega": "0.59063",
"rho": "0.36295"
},
{
"contractID": "IBM250718P00245000",
"symbol": "IBM",
"expiration": "2025-07-18",
"strike": "245.00",
"type": "put",
"last": "0.00",
"mark": "28.65",
"bid": "27.85",
"bid_size": "13",
"ask": "29.45",
"ask_size": "30",
"volume": "0",
"open_interest": "3",
"date": "2025-01-24",
"implied_volatility": "0.31495",
"delta": "-0.57548",
"gamma": "0.00799",
"theta": "-0.13187",
"vega": "0.60983",
"rho": "-0.75764"
},
{
"contractID": "IBM250718C00250000",
"symbol": "IBM",
"expiration": "2025-07-18",
"strike": "250.00",
"type": "call",
"last": "7.69",
"mark": "7.25",
"bid": "6.95",
"bid_size": "192",
"ask": "7.55",
"ask_size": "10",
"volume": "2",
"open_interest": "145",
"date": "2025-01-24",
"implied_volatility": "0.23507",
"delta": "0.32858",
"gamma": "0.00988",
"theta": "-0.16680",
"vega": "0.56273",
"rho": "0.31940"
},
{
"contractID": "IBM250718P00250000",
"symbol": "IBM",
"expiration": "2025-07-18",
"strike": "250.00",
"type": "put",
"last": "0.00",
"mark": "32.30",
"bid": "31.50",
"bid_size": "10",
"ask": "33.10",
"ask_size": "40",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.32059",
"delta": "-0.60801",
"gamma": "0.00770",
"theta": "-0.12679",
"vega": "0.59808",
"rho": "-0.81017"
},
{
"contractID": "IBM250718C00255000",
"symbol": "IBM",
"expiration": "2025-07-18",
"strike": "255.00",
"type": "call",
"last": "6.35",
"mark": "5.85",
"bid": "5.30",
"bid_size": "417",
"ask": "6.40",
"ask_size": "20",
"volume": "0",
"open_interest": "106",
"date": "2025-01-24",
"implied_volatility": "0.23202",
"delta": "0.28263",
"gamma": "0.00936",
"theta": "-0.15233",
"vega": "0.52635",
"rho": "0.27656"
},
{
"contractID": "IBM250718P00255000",
"symbol": "IBM",
"expiration": "2025-07-18",
"strike": "255.00",
"type": "put",
"last": "0.00",
"mark": "36.02",
"bid": "35.40",
"bid_size": "10",
"ask": "36.65",
"ask_size": "30",
"volume": "0",
"open_interest": "2",
"date": "2025-01-24",
"implied_volatility": "0.32516",
"delta": "-0.63874",
"gamma": "0.00740",
"theta": "-0.11994",
"vega": "0.58304",
"rho": "-0.86113"
},
{
"contractID": "IBM250718C00260000",
"symbol": "IBM",
"expiration": "2025-07-18",
"strike": "260.00",
"type": "call",
"last": "5.20",
"mark": "5.25",
"bid": "5.10",
"bid_size": "40",
"ask": "5.40",
"ask_size": "40",
"volume": "16",
"open_interest": "107",
"date": "2025-01-24",
"implied_volatility": "0.24102",
"delta": "0.25340",
"gamma": "0.00853",
"theta": "-0.14761",
"vega": "0.49818",
"rho": "0.24793"
},
{
"contractID": "IBM250718P00260000",
"symbol": "IBM",
"expiration": "2025-07-18",
"strike": "260.00",
"type": "put",
"last": "0.00",
"mark": "40.27",
"bid": "39.50",
"bid_size": "10",
"ask": "41.05",
"ask_size": "40",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.33675",
"delta": "-0.66212",
"gamma": "0.00697",
"theta": "-0.11792",
"vega": "0.56897",
"rho": "-0.90671"
},
{
"contractID": "IBM250718C00265000",
"symbol": "IBM",
"expiration": "2025-07-18",
"strike": "265.00",
"type": "call",
"last": "4.75",
"mark": "4.38",
"bid": "4.25",
"bid_size": "40",
"ask": "4.50",
"ask_size": "10",
"volume": "1",
"open_interest": "76",
"date": "2025-01-24",
"implied_volatility": "0.24208",
"delta": "0.21952",
"gamma": "0.00785",
"theta": "-0.13568",
"vega": "0.46031",
"rho": "0.21559"
},
{
"contractID": "IBM250718P00265000",
"symbol": "IBM",
"expiration": "2025-07-18",
"strike": "265.00",
"type": "put",
"last": "0.00",
"mark": "44.15",
"bid": "43.70",
"bid_size": "7",
"ask": "44.60",
"ask_size": "40",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.34010",
"delta": "-0.68889",
"gamma": "0.00667",
"theta": "-0.10890",
"vega": "0.55000",
"rho": "-0.95418"
},
{
"contractID": "IBM250718C00270000",
"symbol": "IBM",
"expiration": "2025-07-18",
"strike": "270.00",
"type": "call",
"last": "3.77",
"mark": "3.65",
"bid": "3.50",
"bid_size": "30",
"ask": "3.80",
"ask_size": "41",
"volume": "0",
"open_interest": "40",
"date": "2025-01-24",
"implied_volatility": "0.24315",
"delta": "0.18924",
"gamma": "0.00715",
"theta": "-0.12369",
"vega": "0.42136",
"rho": "0.18648"
},
{
"contractID": "IBM250718P00270000",
"symbol": "IBM",
"expiration": "2025-07-18",
"strike": "270.00",
"type": "put",
"last": "0.00",
"mark": "48.67",
"bid": "48.15",
"bid_size": "10",
"ask": "49.20",
"ask_size": "40",
"volume": "0",
"open_interest": "1",
"date": "2025-01-24",
"implied_volatility": "0.35336",
"delta": "-0.70595",
"gamma": "0.00626",
"theta": "-0.10783",
"vega": "0.53627",
"rho": "-0.99424"
},
{
"contractID": "IBM250718C00275000",
"symbol": "IBM",
"expiration": "2025-07-18",
"strike": "275.00",
"type": "call",
"last": "3.10",
"mark": "2.81",
"bid": "2.41",
"bid_size": "320",
"ask": "3.20",
"ask_size": "40",
"volume": "3",
"open_interest": "14",
"date": "2025-01-24",
"implied_volatility": "0.23842",
"delta": "0.15562",
"gamma": "0.00644",
"theta": "-0.10640",
"vega": "0.37190",
"rho": "0.15427"
},
{
"contractID": "IBM250718P00275000",
"symbol": "IBM",
"expiration": "2025-07-18",
"strike": "275.00",
"type": "put",
"last": "0.00",
"mark": "53.10",
"bid": "52.65",
"bid_size": "11",
"ask": "53.55",
"ask_size": "40",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.36373",
"delta": "-0.72306",
"gamma": "0.00591",
"theta": "-0.10432",
"vega": "0.52118",
"rho": "-1.03391"
},
{
"contractID": "IBM250718C00280000",
"symbol": "IBM",
"expiration": "2025-07-18",
"strike": "280.00",
"type": "call",
"last": "2.89",
"mark": "2.57",
"bid": "2.47",
"bid_size": "11",
"ask": "2.67",
"ask_size": "30",
"volume": "2",
"open_interest": "13",
"date": "2025-01-24",
"implied_volatility": "0.24711",
"delta": "0.14087",
"gamma": "0.00581",
"theta": "-0.10226",
"vega": "0.34792",
"rho": "0.13952"
},
{
"contractID": "IBM250718P00280000",
"symbol": "IBM",
"expiration": "2025-07-18",
"strike": "280.00",
"type": "put",
"last": "0.00",
"mark": "57.60",
"bid": "56.90",
"bid_size": "34",
"ask": "58.30",
"ask_size": "14",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.37424",
"delta": "-0.73815",
"gamma": "0.00559",
"theta": "-0.10098",
"vega": "0.50674",
"rho": "-1.07175"
},
{
"contractID": "IBM250718C00285000",
"symbol": "IBM",
"expiration": "2025-07-18",
"strike": "285.00",
"type": "call",
"last": "2.42",
"mark": "2.12",
"bid": "2.02",
"bid_size": "41",
"ask": "2.23",
"ask_size": "20",
"volume": "2",
"open_interest": "22",
"date": "2025-01-24",
"implied_volatility": "0.24788",
"delta": "0.11986",
"gamma": "0.00518",
"theta": "-0.09117",
"vega": "0.31112",
"rho": "0.11903"
},
{
"contractID": "IBM250718P00285000",
"symbol": "IBM",
"expiration": "2025-07-18",
"strike": "285.00",
"type": "put",
"last": "0.00",
"mark": "62.33",
"bid": "61.80",
"bid_size": "13",
"ask": "62.85",
"ask_size": "11",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.38842",
"delta": "-0.74875",
"gamma": "0.00527",
"theta": "-0.10102",
"vega": "0.49595",
"rho": "-1.10585"
},
{
"contractID": "IBM250718C00290000",
"symbol": "IBM",
"expiration": "2025-07-18",
"strike": "290.00",
"type": "call",
"last": "2.21",
"mark": "1.77",
"bid": "1.66",
"bid_size": "40",
"ask": "1.89",
"ask_size": "40",
"volume": "0",
"open_interest": "14",
"date": "2025-01-24",
"implied_volatility": "0.24970",
"delta": "0.10269",
"gamma": "0.00460",
"theta": "-0.08175",
"vega": "0.27850",
"rho": "0.10218"
},
{
"contractID": "IBM250718P00290000",
"symbol": "IBM",
"expiration": "2025-07-18",
"strike": "290.00",
"type": "put",
"last": "0.00",
"mark": "67.05",
"bid": "66.55",
"bid_size": "56",
"ask": "67.55",
"ask_size": "11",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.40168",
"delta": "-0.75864",
"gamma": "0.00499",
"theta": "-0.10045",
"vega": "0.48539",
"rho": "-1.13914"
},
{
"contractID": "IBM250718C00295000",
"symbol": "IBM",
"expiration": "2025-07-18",
"strike": "295.00",
"type": "call",
"last": "1.25",
"mark": "1.48",
"bid": "1.39",
"bid_size": "30",
"ask": "1.56",
"ask_size": "10",
"volume": "0",
"open_interest": "20",
"date": "2025-01-24",
"implied_volatility": "0.25153",
"delta": "0.08786",
"gamma": "0.00407",
"theta": "-0.07304",
"vega": "0.24828",
"rho": "0.08759"
},
{
"contractID": "IBM250718P00295000",
"symbol": "IBM",
"expiration": "2025-07-18",
"strike": "295.00",
"type": "put",
"last": "0.00",
"mark": "72.35",
"bid": "71.30",
"bid_size": "52",
"ask": "73.40",
"ask_size": "70",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.42622",
"delta": "-0.75895",
"gamma": "0.00470",
"theta": "-0.11040",
"vega": "0.48505",
"rho": "-1.16488"
},
{
"contractID": "IBM250718C00300000",
"symbol": "IBM",
"expiration": "2025-07-18",
"strike": "300.00",
"type": "call",
"last": "1.27",
"mark": "1.32",
"bid": "1.15",
"bid_size": "40",
"ask": "1.49",
"ask_size": "156",
"volume": "2",
"open_interest": "7",
"date": "2025-01-24",
"implied_volatility": "0.25687",
"delta": "0.07827",
"gamma": "0.00366",
"theta": "-0.06802",
"vega": "0.22762",
"rho": "0.07804"
},
{
"contractID": "IBM250718P00300000",
"symbol": "IBM",
"expiration": "2025-07-18",
"strike": "300.00",
"type": "put",
"last": "0.00",
"mark": "77.20",
"bid": "76.15",
"bid_size": "68",
"ask": "78.25",
"ask_size": "76",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.44101",
"delta": "-0.76557",
"gamma": "0.00447",
"theta": "-0.11175",
"vega": "0.47770",
"rho": "-1.19526"
},
{
"contractID": "IBM250718C00305000",
"symbol": "IBM",
"expiration": "2025-07-18",
"strike": "305.00",
"type": "call",
"last": "1.40",
"mark": "1.11",
"bid": "0.92",
"bid_size": "40",
"ask": "1.30",
"ask_size": "260",
"volume": "0",
"open_interest": "1",
"date": "2025-01-24",
"implied_volatility": "0.25885",
"delta": "0.06722",
"gamma": "0.00323",
"theta": "-0.06075",
"vega": "0.20257",
"rho": "0.06713"
},
{
"contractID": "IBM250718P00305000",
"symbol": "IBM",
"expiration": "2025-07-18",
"strike": "305.00",
"type": "put",
"last": "0.00",
"mark": "82.12",
"bid": "81.10",
"bid_size": "61",
"ask": "83.15",
"ask_size": "76",
"volume": "0",
"open_interest": "1",
"date": "2025-01-24",
"implied_volatility": "0.45686",
"delta": "-0.77055",
"gamma": "0.00426",
"theta": "-0.11433",
"vega": "0.47202",
"rho": "-1.22424"
},
{
"contractID": "IBM250718C00310000",
"symbol": "IBM",
"expiration": "2025-07-18",
"strike": "310.00",
"type": "call",
"last": "0.00",
"mark": "0.98",
"bid": "0.73",
"bid_size": "9",
"ask": "1.23",
"ask_size": "48",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.26312",
"delta": "0.05952",
"gamma": "0.00289",
"theta": "-0.05593",
"vega": "0.18425",
"rho": "0.05945"
},
{
"contractID": "IBM250718P00310000",
"symbol": "IBM",
"expiration": "2025-07-18",
"strike": "310.00",
"type": "put",
"last": "0.00",
"mark": "86.85",
"bid": "86.00",
"bid_size": "70",
"ask": "87.70",
"ask_size": "92",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.46814",
"delta": "-0.77794",
"gamma": "0.00409",
"theta": "-0.11288",
"vega": "0.46335",
"rho": "-1.25489"
},
{
"contractID": "IBM250718C00320000",
"symbol": "IBM",
"expiration": "2025-07-18",
"strike": "320.00",
"type": "call",
"last": "1.10",
"mark": "0.73",
"bid": "0.40",
"bid_size": "205",
"ask": "1.06",
"ask_size": "640",
"volume": "0",
"open_interest": "2",
"date": "2025-01-24",
"implied_volatility": "0.26891",
"delta": "0.04534",
"gamma": "0.00228",
"theta": "-0.04573",
"vega": "0.14844",
"rho": "0.04537"
},
{
"contractID": "IBM250718P00320000",
"symbol": "IBM",
"expiration": "2025-07-18",
"strike": "320.00",
"type": "put",
"last": "0.00",
"mark": "96.83",
"bid": "96.00",
"bid_size": "55",
"ask": "97.65",
"ask_size": "72",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.50046",
"delta": "-0.78401",
"gamma": "0.00376",
"theta": "-0.11976",
"vega": "0.45603",
"rho": "-1.30925"
},
{
"contractID": "IBM250718C00330000",
"symbol": "IBM",
"expiration": "2025-07-18",
"strike": "330.00",
"type": "call",
"last": "0.00",
"mark": "0.60",
"bid": "0.22",
"bid_size": "210",
"ask": "0.99",
"ask_size": "932",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.27867",
"delta": "0.03710",
"gamma": "0.00187",
"theta": "-0.04001",
"vega": "0.12615",
"rho": "0.03711"
},
{
"contractID": "IBM250718P00330000",
"symbol": "IBM",
"expiration": "2025-07-18",
"strike": "330.00",
"type": "put",
"last": "0.00",
"mark": "106.82",
"bid": "105.80",
"bid_size": "92",
"ask": "107.85",
"ask_size": "70",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.53186",
"delta": "-0.78869",
"gamma": "0.00349",
"theta": "-0.12671",
"vega": "0.45025",
"rho": "-1.36222"
},
{
"contractID": "IBM250718C00340000",
"symbol": "IBM",
"expiration": "2025-07-18",
"strike": "340.00",
"type": "call",
"last": "0.87",
"mark": "0.85",
"bid": "0.09",
"bid_size": "269",
"ask": "1.60",
"ask_size": "1133",
"volume": "0",
"open_interest": "1",
"date": "2025-01-24",
"implied_volatility": "0.31540",
"delta": "0.04550",
"gamma": "0.00195",
"theta": "-0.05302",
"vega": "0.14885",
"rho": "0.04496"
},
{
"contractID": "IBM250718P00340000",
"symbol": "IBM",
"expiration": "2025-07-18",
"strike": "340.00",
"type": "put",
"last": "0.00",
"mark": "116.67",
"bid": "115.80",
"bid_size": "81",
"ask": "117.55",
"ask_size": "89",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.55869",
"delta": "-0.79458",
"gamma": "0.00327",
"theta": "-0.13013",
"vega": "0.44281",
"rho": "-1.41577"
},
{
"contractID": "IBM250718C00350000",
"symbol": "IBM",
"expiration": "2025-07-18",
"strike": "350.00",
"type": "call",
"last": "0.38",
"mark": "0.40",
"bid": "0.04",
"bid_size": "238",
"ask": "0.75",
"ask_size": "1016",
"volume": "0",
"open_interest": "1",
"date": "2025-01-24",
"implied_volatility": "0.29483",
"delta": "0.02471",
"gamma": "0.00126",
"theta": "-0.02993",
"vega": "0.09010",
"rho": "0.02472"
},
{
"contractID": "IBM250718P00350000",
"symbol": "IBM",
"expiration": "2025-07-18",
"strike": "350.00",
"type": "put",
"last": "0.00",
"mark": "126.78",
"bid": "125.80",
"bid_size": "82",
"ask": "127.75",
"ask_size": "72",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.59040",
"delta": "-0.79610",
"gamma": "0.00308",
"theta": "-0.13904",
"vega": "0.44084",
"rho": "-1.46590"
},
{
"contractID": "IBM250919C00100000",
"symbol": "IBM",
"expiration": "2025-09-19",
"strike": "100.00",
"type": "call",
"last": "0.00",
"mark": "124.33",
"bid": "122.90",
"bid_size": "74",
"ask": "125.75",
"ask_size": "94",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.03728",
"delta": "1.00000",
"gamma": "0.00000",
"theta": "-0.04209",
"vega": "0.00000",
"rho": "0.63390"
},
{
"contractID": "IBM250919P00100000",
"symbol": "IBM",
"expiration": "2025-09-19",
"strike": "100.00",
"type": "put",
"last": "0.00",
"mark": "0.79",
"bid": "0.10",
"bid_size": "47",
"ask": "1.48",
"ask_size": "71",
"volume": "0",
"open_interest": "2",
"date": "2025-01-24",
"implied_volatility": "0.55686",
"delta": "-0.01835",
"gamma": "0.00045",
"theta": "-0.03275",
"vega": "0.08169",
"rho": "-0.03205"
},
{
"contractID": "IBM250919C00105000",
"symbol": "IBM",
"expiration": "2025-09-19",
"strike": "105.00",
"type": "call",
"last": "0.00",
"mark": "119.88",
"bid": "118.45",
"bid_size": "98",
"ask": "121.30",
"ask_size": "96",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.03579",
"delta": "1.00000",
"gamma": "0.00000",
"theta": "-0.04420",
"vega": "0.00000",
"rho": "0.66560"
},
{
"contractID": "IBM250919P00105000",
"symbol": "IBM",
"expiration": "2025-09-19",
"strike": "105.00",
"type": "put",
"last": "0.00",
"mark": "0.78",
"bid": "0.02",
"bid_size": "72",
"ask": "1.53",
"ask_size": "71",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.52622",
"delta": "-0.01921",
"gamma": "0.00049",
"theta": "-0.03206",
"vega": "0.08492",
"rho": "-0.03324"
},
{
"contractID": "IBM250919C00110000",
"symbol": "IBM",
"expiration": "2025-09-19",
"strike": "110.00",
"type": "call",
"last": "0.00",
"mark": "114.50",
"bid": "113.40",
"bid_size": "98",
"ask": "115.60",
"ask_size": "61",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.03429",
"delta": "1.00000",
"gamma": "0.00000",
"theta": "-0.04630",
"vega": "0.00000",
"rho": "0.69729"
},
{
"contractID": "IBM250919P00110000",
"symbol": "IBM",
"expiration": "2025-09-19",
"strike": "110.00",
"type": "put",
"last": "0.00",
"mark": "0.85",
"bid": "0.14",
"bid_size": "60",
"ask": "1.57",
"ask_size": "71",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.50595",
"delta": "-0.02155",
"gamma": "0.00056",
"theta": "-0.03385",
"vega": "0.09361",
"rho": "-0.03712"
},
{
"contractID": "IBM250919C00115000",
"symbol": "IBM",
"expiration": "2025-09-19",
"strike": "115.00",
"type": "call",
"last": "0.00",
"mark": "109.60",
"bid": "108.50",
"bid_size": "96",
"ask": "110.70",
"ask_size": "72",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.03280",
"delta": "1.00000",
"gamma": "0.00000",
"theta": "-0.04841",
"vega": "0.00000",
"rho": "0.72899"
},
{
"contractID": "IBM250919P00115000",
"symbol": "IBM",
"expiration": "2025-09-19",
"strike": "115.00",
"type": "put",
"last": "0.00",
"mark": "0.88",
"bid": "0.16",
"bid_size": "71",
"ask": "1.60",
"ask_size": "71",
"volume": "0",
"open_interest": "1",
"date": "2025-01-24",
"implied_volatility": "0.48202",
"delta": "-0.02334",
"gamma": "0.00063",
"theta": "-0.03436",
"vega": "0.10014",
"rho": "-0.03995"
},
{
"contractID": "IBM250919C00120000",
"symbol": "IBM",
"expiration": "2025-09-19",
"strike": "120.00",
"type": "call",
"last": "0.00",
"mark": "105.17",
"bid": "104.55",
"bid_size": "37",
"ask": "105.80",
"ask_size": "59",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.03131",
"delta": "1.00000",
"gamma": "0.00000",
"theta": "-0.05051",
"vega": "0.00000",
"rho": "0.76068"
},
{
"contractID": "IBM250919P00120000",
"symbol": "IBM",
"expiration": "2025-09-19",
"strike": "120.00",
"type": "put",
"last": "0.00",
"mark": "0.89",
"bid": "0.19",
"bid_size": "72",
"ask": "1.58",
"ask_size": "71",
"volume": "0",
"open_interest": "2",
"date": "2025-01-24",
"implied_volatility": "0.45686",
"delta": "-0.02485",
"gamma": "0.00070",
"theta": "-0.03418",
"vega": "0.10556",
"rho": "-0.04223"
},
{
"contractID": "IBM250919C00125000",
"symbol": "IBM",
"expiration": "2025-09-19",
"strike": "125.00",
"type": "call",
"last": "101.85",
"mark": "99.88",
"bid": "98.70",
"bid_size": "76",
"ask": "101.05",
"ask_size": "72",
"volume": "0",
"open_interest": "3",
"date": "2025-01-24",
"implied_volatility": "0.02981",
"delta": "1.00000",
"gamma": "0.00000",
"theta": "-0.05262",
"vega": "0.00000",
"rho": "0.79238"
},
{
"contractID": "IBM250919P00125000",
"symbol": "IBM",
"expiration": "2025-09-19",
"strike": "125.00",
"type": "put",
"last": "0.00",
"mark": "0.50",
"bid": "0.45",
"bid_size": "1",
"ask": "0.55",
"ask_size": "9",
"volume": "0",
"open_interest": "9",
"date": "2025-01-24",
"implied_volatility": "0.39055",
"delta": "-0.01751",
"gamma": "0.00061",
"theta": "-0.02158",
"vega": "0.07848",
"rho": "-0.02892"
},
{
"contractID": "IBM250919C00130000",
"symbol": "IBM",
"expiration": "2025-09-19",
"strike": "130.00",
"type": "call",
"last": "95.69",
"mark": "95.05",
"bid": "93.85",
"bid_size": "76",
"ask": "96.25",
"ask_size": "69",
"volume": "0",
"open_interest": "2",
"date": "2025-01-24",
"implied_volatility": "0.02832",
"delta": "1.00000",
"gamma": "0.00000",
"theta": "-0.05472",
"vega": "0.00000",
"rho": "0.82407"
},
{
"contractID": "IBM250919P00130000",
"symbol": "IBM",
"expiration": "2025-09-19",
"strike": "130.00",
"type": "put",
"last": "0.00",
"mark": "0.55",
"bid": "0.27",
"bid_size": "143",
"ask": "0.84",
"ask_size": "143",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.37424",
"delta": "-0.01985",
"gamma": "0.00071",
"theta": "-0.02289",
"vega": "0.08734",
"rho": "-0.03268"
},
{
"contractID": "IBM250919C00135000",
"symbol": "IBM",
"expiration": "2025-09-19",
"strike": "135.00",
"type": "call",
"last": "0.00",
"mark": "90.18",
"bid": "88.95",
"bid_size": "72",
"ask": "91.40",
"ask_size": "55",
"volume": "0",
"open_interest": "3",
"date": "2025-01-24",
"implied_volatility": "0.02683",
"delta": "1.00000",
"gamma": "0.00000",
"theta": "-0.05683",
"vega": "0.00000",
"rho": "0.85577"
},
{
"contractID": "IBM250919P00135000",
"symbol": "IBM",
"expiration": "2025-09-19",
"strike": "135.00",
"type": "put",
"last": "0.67",
"mark": "0.64",
"bid": "0.35",
"bid_size": "153",
"ask": "0.93",
"ask_size": "143",
"volume": "3",
"open_interest": "15",
"date": "2025-01-24",
"implied_volatility": "0.36190",
"delta": "-0.02342",
"gamma": "0.00084",
"theta": "-0.02532",
"vega": "0.10044",
"rho": "-0.03850"
},
{
"contractID": "IBM250919C00140000",
"symbol": "IBM",
"expiration": "2025-09-19",
"strike": "140.00",
"type": "call",
"last": "84.20",
"mark": "85.45",
"bid": "84.10",
"bid_size": "80",
"ask": "86.80",
"ask_size": "71",
"volume": "0",
"open_interest": "3",
"date": "2025-01-24",
"implied_volatility": "0.02533",
"delta": "1.00000",
"gamma": "0.00000",
"theta": "-0.05893",
"vega": "0.00000",
"rho": "0.88746"
},
{
"contractID": "IBM250919P00140000",
"symbol": "IBM",
"expiration": "2025-09-19",
"strike": "140.00",
"type": "put",
"last": "0.00",
"mark": "0.72",
"bid": "0.37",
"bid_size": "153",
"ask": "1.07",
"ask_size": "143",
"volume": "0",
"open_interest": "19",
"date": "2025-01-24",
"implied_volatility": "0.34787",
"delta": "-0.02700",
"gamma": "0.00099",
"theta": "-0.02724",
"vega": "0.11315",
"rho": "-0.04428"
},
{
"contractID": "IBM250919C00145000",
"symbol": "IBM",
"expiration": "2025-09-19",
"strike": "145.00",
"type": "call",
"last": "68.43",
"mark": "80.78",
"bid": "79.60",
"bid_size": "84",
"ask": "81.95",
"ask_size": "37",
"volume": "0",
"open_interest": "4",
"date": "2025-01-24",
"implied_volatility": "0.02384",
"delta": "1.00000",
"gamma": "0.00000",
"theta": "-0.06104",
"vega": "0.00000",
"rho": "0.91916"
},
{
"contractID": "IBM250919P00145000",
"symbol": "IBM",
"expiration": "2025-09-19",
"strike": "145.00",
"type": "put",
"last": "0.92",
"mark": "0.82",
"bid": "0.50",
"bid_size": "154",
"ask": "1.14",
"ask_size": "133",
"volume": "1",
"open_interest": "27",
"date": "2025-01-24",
"implied_volatility": "0.33476",
"delta": "-0.03132",
"gamma": "0.00116",
"theta": "-0.02946",
"vega": "0.12801",
"rho": "-0.05126"
},
{
"contractID": "IBM250919C00150000",
"symbol": "IBM",
"expiration": "2025-09-19",
"strike": "150.00",
"type": "call",
"last": "58.45",
"mark": "76.47",
"bid": "75.50",
"bid_size": "38",
"ask": "77.45",
"ask_size": "67",
"volume": "0",
"open_interest": "2",
"date": "2025-01-24",
"implied_volatility": "0.02235",
"delta": "1.00000",
"gamma": "0.00000",
"theta": "-0.06314",
"vega": "0.00000",
"rho": "0.95085"
},
{
"contractID": "IBM250919P00150000",
"symbol": "IBM",
"expiration": "2025-09-19",
"strike": "150.00",
"type": "put",
"last": "0.00",
"mark": "0.97",
"bid": "0.72",
"bid_size": "260",
"ask": "1.22",
"ask_size": "111",
"volume": "0",
"open_interest": "70",
"date": "2025-01-24",
"implied_volatility": "0.32455",
"delta": "-0.03733",
"gamma": "0.00138",
"theta": "-0.03275",
"vega": "0.14787",
"rho": "-0.06104"
},
{
"contractID": "IBM250919C00155000",
"symbol": "IBM",
"expiration": "2025-09-19",
"strike": "155.00",
"type": "call",
"last": "61.30",
"mark": "71.67",
"bid": "70.60",
"bid_size": "62",
"ask": "72.75",
"ask_size": "41",
"volume": "0",
"open_interest": "1",
"date": "2025-01-24",
"implied_volatility": "0.02085",
"delta": "1.00000",
"gamma": "0.00000",
"theta": "-0.06525",
"vega": "0.00000",
"rho": "0.98255"
},
{
"contractID": "IBM250919P00155000",
"symbol": "IBM",
"expiration": "2025-09-19",
"strike": "155.00",
"type": "put",
"last": "0.00",
"mark": "1.41",
"bid": "1.32",
"bid_size": "7",
"ask": "1.50",
"ask_size": "30",
"volume": "0",
"open_interest": "16",
"date": "2025-01-24",
"implied_volatility": "0.32928",
"delta": "-0.05077",
"gamma": "0.00175",
"theta": "-0.04230",
"vega": "0.18952",
"rho": "-0.08362"
},
{
"contractID": "IBM250919C00160000",
"symbol": "IBM",
"expiration": "2025-09-19",
"strike": "160.00",
"type": "call",
"last": "71.60",
"mark": "66.57",
"bid": "65.80",
"bid_size": "72",
"ask": "67.35",
"ask_size": "8",
"volume": "0",
"open_interest": "8",
"date": "2025-01-24",
"implied_volatility": "0.01936",
"delta": "1.00000",
"gamma": "0.00000",
"theta": "-0.06735",
"vega": "0.00000",
"rho": "1.01424"
},
{
"contractID": "IBM250919P00160000",
"symbol": "IBM",
"expiration": "2025-09-19",
"strike": "160.00",
"type": "put",
"last": "1.77",
"mark": "1.76",
"bid": "1.63",
"bid_size": "10",
"ask": "1.89",
"ask_size": "40",
"volume": "2",
"open_interest": "136",
"date": "2025-01-24",
"implied_volatility": "0.32425",
"delta": "-0.06209",
"gamma": "0.00208",
"theta": "-0.04842",
"vega": "0.22211",
"rho": "-0.10248"
},
{
"contractID": "IBM250919C00165000",
"symbol": "IBM",
"expiration": "2025-09-19",
"strike": "165.00",
"type": "call",
"last": "61.20",
"mark": "62.22",
"bid": "61.80",
"bid_size": "16",
"ask": "62.65",
"ask_size": "10",
"volume": "0",
"open_interest": "102",
"date": "2025-01-24",
"implied_volatility": "0.01786",
"delta": "1.00000",
"gamma": "0.00000",
"theta": "-0.06946",
"vega": "0.00000",
"rho": "1.04594"
},
{
"contractID": "IBM250919P00165000",
"symbol": "IBM",
"expiration": "2025-09-19",
"strike": "165.00",
"type": "put",
"last": "0.00",
"mark": "2.13",
"bid": "2.00",
"bid_size": "12",
"ask": "2.27",
"ask_size": "43",
"volume": "0",
"open_interest": "49",
"date": "2025-01-24",
"implied_volatility": "0.31754",
"delta": "-0.07431",
"gamma": "0.00244",
"theta": "-0.05397",
"vega": "0.25514",
"rho": "-0.12280"
},
{
"contractID": "IBM250919C00170000",
"symbol": "IBM",
"expiration": "2025-09-19",
"strike": "170.00",
"type": "call",
"last": "55.50",
"mark": "57.80",
"bid": "56.55",
"bid_size": "244",
"ask": "59.05",
"ask_size": "42",
"volume": "0",
"open_interest": "175",
"date": "2025-01-24",
"implied_volatility": "0.01637",
"delta": "1.00000",
"gamma": "0.00000",
"theta": "-0.07156",
"vega": "0.00000",
"rho": "1.07763"
},
{
"contractID": "IBM250919P00170000",
"symbol": "IBM",
"expiration": "2025-09-19",
"strike": "170.00",
"type": "put",
"last": "2.52",
"mark": "2.50",
"bid": "2.35",
"bid_size": "80",
"ask": "2.64",
"ask_size": "31",
"volume": "2",
"open_interest": "532",
"date": "2025-01-24",
"implied_volatility": "0.30870",
"delta": "-0.08710",
"gamma": "0.00283",
"theta": "-0.05854",
"vega": "0.28768",
"rho": "-0.14397"
},
{
"contractID": "IBM250919C00175000",
"symbol": "IBM",
"expiration": "2025-09-19",
"strike": "175.00",
"type": "call",
"last": "52.80",
"mark": "53.02",
"bid": "51.55",
"bid_size": "72",
"ask": "54.50",
"ask_size": "58",
"volume": "0",
"open_interest": "15",
"date": "2025-01-24",
"implied_volatility": "0.01488",
"delta": "1.00000",
"gamma": "0.00000",
"theta": "-0.07367",
"vega": "0.00000",
"rho": "1.10933"
},
{
"contractID": "IBM250919P00175000",
"symbol": "IBM",
"expiration": "2025-09-19",
"strike": "175.00",
"type": "put",
"last": "3.00",
"mark": "3.15",
"bid": "3.05",
"bid_size": "27",
"ask": "3.25",
"ask_size": "26",
"volume": "2",
"open_interest": "191",
"date": "2025-01-24",
"implied_volatility": "0.30687",
"delta": "-0.10593",
"gamma": "0.00329",
"theta": "-0.06649",
"vega": "0.33220",
"rho": "-0.17582"
},
{
"contractID": "IBM250919C00180000",
"symbol": "IBM",
"expiration": "2025-09-19",
"strike": "180.00",
"type": "call",
"last": "49.78",
"mark": "48.65",
"bid": "47.75",
"bid_size": "111",
"ask": "49.55",
"ask_size": "11",
"volume": "0",
"open_interest": "33",
"date": "2025-01-24",
"implied_volatility": "0.01338",
"delta": "1.00000",
"gamma": "0.00000",
"theta": "-0.07577",
"vega": "0.00000",
"rho": "1.14102"
},
{
"contractID": "IBM250919P00180000",
"symbol": "IBM",
"expiration": "2025-09-19",
"strike": "180.00",
"type": "put",
"last": "0.00",
"mark": "4.08",
"bid": "3.75",
"bid_size": "21",
"ask": "4.40",
"ask_size": "103",
"volume": "0",
"open_interest": "282",
"date": "2025-01-24",
"implied_volatility": "0.30915",
"delta": "-0.12962",
"gamma": "0.00376",
"theta": "-0.07646",
"vega": "0.38322",
"rho": "-0.21659"
},
{
"contractID": "IBM250919C00185000",
"symbol": "IBM",
"expiration": "2025-09-19",
"strike": "185.00",
"type": "call",
"last": "38.79",
"mark": "45.45",
"bid": "44.00",
"bid_size": "72",
"ask": "46.90",
"ask_size": "50",
"volume": "0",
"open_interest": "30",
"date": "2025-01-24",
"implied_volatility": "0.16373",
"delta": "0.96024",
"gamma": "0.00289",
"theta": "-0.09333",
"vega": "0.15567",
"rho": "1.11117"
},
{
"contractID": "IBM250919P00185000",
"symbol": "IBM",
"expiration": "2025-09-19",
"strike": "185.00",
"type": "put",
"last": "0.00",
"mark": "4.75",
"bid": "4.65",
"bid_size": "15",
"ask": "4.85",
"ask_size": "31",
"volume": "0",
"open_interest": "111",
"date": "2025-01-24",
"implied_volatility": "0.30153",
"delta": "-0.14964",
"gamma": "0.00425",
"theta": "-0.08108",
"vega": "0.42257",
"rho": "-0.25033"
},
{
"contractID": "IBM250919C00190000",
"symbol": "IBM",
"expiration": "2025-09-19",
"strike": "190.00",
"type": "call",
"last": "36.03",
"mark": "40.97",
"bid": "40.05",
"bid_size": "91",
"ask": "41.90",
"ask_size": "6",
"volume": "0",
"open_interest": "40",
"date": "2025-01-24",
"implied_volatility": "0.16678",
"delta": "0.93647",
"gamma": "0.00411",
"theta": "-0.10233",
"vega": "0.22610",
"rho": "1.10554"
},
{
"contractID": "IBM250919P00190000",
"symbol": "IBM",
"expiration": "2025-09-19",
"strike": "190.00",
"type": "put",
"last": "0.00",
"mark": "5.72",
"bid": "5.60",
"bid_size": "40",
"ask": "5.85",
"ask_size": "20",
"volume": "0",
"open_interest": "61",
"date": "2025-01-24",
"implied_volatility": "0.29833",
"delta": "-0.17469",
"gamma": "0.00475",
"theta": "-0.08744",
"vega": "0.46740",
"rho": "-0.29334"
},
{
"contractID": "IBM250919C00195000",
"symbol": "IBM",
"expiration": "2025-09-19",
"strike": "195.00",
"type": "call",
"last": "24.55",
"mark": "37.30",
"bid": "36.65",
"bid_size": "73",
"ask": "37.95",
"ask_size": "7",
"volume": "0",
"open_interest": "32",
"date": "2025-01-24",
"implied_volatility": "0.18858",
"delta": "0.88405",
"gamma": "0.00570",
"theta": "-0.12115",
"vega": "0.35442",
"rho": "1.05263"
},
{
"contractID": "IBM250919P00195000",
"symbol": "IBM",
"expiration": "2025-09-19",
"strike": "195.00",
"type": "put",
"last": "0.00",
"mark": "7.05",
"bid": "6.65",
"bid_size": "7",
"ask": "7.45",
"ask_size": "11",
"volume": "0",
"open_interest": "220",
"date": "2025-01-24",
"implied_volatility": "0.29955",
"delta": "-0.20452",
"gamma": "0.00522",
"theta": "-0.09534",
"vega": "0.51504",
"rho": "-0.34575"
},
{
"contractID": "IBM250919C00200000",
"symbol": "IBM",
"expiration": "2025-09-19",
"strike": "200.00",
"type": "call",
"last": "34.50",
"mark": "34.23",
"bid": "32.75",
"bid_size": "193",
"ask": "35.70",
"ask_size": "150",
"volume": "0",
"open_interest": "70",
"date": "2025-01-24",
"implied_volatility": "0.21022",
"delta": "0.82634",
"gamma": "0.00672",
"theta": "-0.14068",
"vega": "0.46565",
"rho": "0.98808"
},
{
"contractID": "IBM250919P00200000",
"symbol": "IBM",
"expiration": "2025-09-19",
"strike": "200.00",
"type": "put",
"last": "0.00",
"mark": "8.38",
"bid": "8.05",
"bid_size": "40",
"ask": "8.70",
"ask_size": "40",
"volume": "0",
"open_interest": "221",
"date": "2025-01-24",
"implied_volatility": "0.29742",
"delta": "-0.23442",
"gamma": "0.00568",
"theta": "-0.10060",
"vega": "0.55707",
"rho": "-0.39824"
},
{
"contractID": "IBM250919C00205000",
"symbol": "IBM",
"expiration": "2025-09-19",
"strike": "205.00",
"type": "call",
"last": "31.10",
"mark": "30.45",
"bid": "29.70",
"bid_size": "173",
"ask": "31.20",
"ask_size": "8",
"volume": "0",
"open_interest": "67",
"date": "2025-01-24",
"implied_volatility": "0.20839",
"delta": "0.78810",
"gamma": "0.00766",
"theta": "-0.14757",
"vega": "0.52594",
"rho": "0.95664"
},
{
"contractID": "IBM250919P00205000",
"symbol": "IBM",
"expiration": "2025-09-19",
"strike": "205.00",
"type": "put",
"last": "0.00",
"mark": "9.85",
"bid": "9.70",
"bid_size": "11",
"ask": "10.00",
"ask_size": "31",
"volume": "0",
"open_interest": "125",
"date": "2025-01-24",
"implied_volatility": "0.29498",
"delta": "-0.26608",
"gamma": "0.00613",
"theta": "-0.10460",
"vega": "0.59580",
"rho": "-0.45425"
},
{
"contractID": "IBM250919C00210000",
"symbol": "IBM",
"expiration": "2025-09-19",
"strike": "210.00",
"type": "call",
"last": "23.97",
"mark": "27.38",
"bid": "26.30",
"bid_size": "236",
"ask": "28.45",
"ask_size": "8",
"volume": "0",
"open_interest": "56",
"date": "2025-01-24",
"implied_volatility": "0.21495",
"delta": "0.73950",
"gamma": "0.00832",
"theta": "-0.15727",
"vega": "0.58939",
"rho": "0.90547"
},
{
"contractID": "IBM250919P00210000",
"symbol": "IBM",
"expiration": "2025-09-19",
"strike": "210.00",
"type": "put",
"last": "0.00",
"mark": "11.75",
"bid": "11.40",
"bid_size": "6",
"ask": "12.10",
"ask_size": "7",
"volume": "0",
"open_interest": "193",
"date": "2025-01-24",
"implied_volatility": "0.29665",
"delta": "-0.30086",
"gamma": "0.00646",
"theta": "-0.10939",
"vega": "0.63197",
"rho": "-0.51760"
},
{
"contractID": "IBM250919C00215000",
"symbol": "IBM",
"expiration": "2025-09-19",
"strike": "215.00",
"type": "call",
"last": "25.20",
"mark": "24.32",
"bid": "23.95",
"bid_size": "125",
"ask": "24.70",
"ask_size": "41",
"volume": "0",
"open_interest": "71",
"date": "2025-01-24",
"implied_volatility": "0.21693",
"delta": "0.69259",
"gamma": "0.00893",
"theta": "-0.16302",
"vega": "0.63806",
"rho": "0.85666"
},
{
"contractID": "IBM250919P00215000",
"symbol": "IBM",
"expiration": "2025-09-19",
"strike": "215.00",
"type": "put",
"last": "0.00",
"mark": "13.57",
"bid": "13.40",
"bid_size": "13",
"ask": "13.75",
"ask_size": "21",
"volume": "0",
"open_interest": "157",
"date": "2025-01-24",
"implied_volatility": "0.29422",
"delta": "-0.33533",
"gamma": "0.00682",
"theta": "-0.11074",
"vega": "0.66158",
"rho": "-0.58000"
},
{
"contractID": "IBM250919C00220000",
"symbol": "IBM",
"expiration": "2025-09-19",
"strike": "220.00",
"type": "call",
"last": "22.40",
"mark": "22.12",
"bid": "21.40",
"bid_size": "113",
"ask": "22.85",
"ask_size": "112",
"volume": "2",
"open_interest": "328",
"date": "2025-01-24",
"implied_volatility": "0.22775",
"delta": "0.64164",
"gamma": "0.00903",
"theta": "-0.17130",
"vega": "0.67805",
"rho": "0.79631"
},
{
"contractID": "IBM250919P00220000",
"symbol": "IBM",
"expiration": "2025-09-19",
"strike": "220.00",
"type": "put",
"last": "0.00",
"mark": "15.57",
"bid": "15.15",
"bid_size": "150",
"ask": "16.00",
"ask_size": "49",
"volume": "0",
"open_interest": "88",
"date": "2025-01-24",
"implied_volatility": "0.29193",
"delta": "-0.37100",
"gamma": "0.00713",
"theta": "-0.11070",
"vega": "0.68599",
"rho": "-0.64537"
},
{
"contractID": "IBM250919C00225000",
"symbol": "IBM",
"expiration": "2025-09-19",
"strike": "225.00",
"type": "call",
"last": "19.70",
"mark": "19.20",
"bid": "19.00",
"bid_size": "20",
"ask": "19.40",
"ask_size": "26",
"volume": "0",
"open_interest": "151",
"date": "2025-01-24",
"implied_volatility": "0.22410",
"delta": "0.59545",
"gamma": "0.00952",
"theta": "-0.17051",
"vega": "0.70335",
"rho": "0.74762"
},
{
"contractID": "IBM250919P00225000",
"symbol": "IBM",
"expiration": "2025-09-19",
"strike": "225.00",
"type": "put",
"last": "0.00",
"mark": "18.75",
"bid": "18.00",
"bid_size": "10",
"ask": "19.50",
"ask_size": "128",
"volume": "0",
"open_interest": "82",
"date": "2025-01-24",
"implied_volatility": "0.30382",
"delta": "-0.40744",
"gamma": "0.00704",
"theta": "-0.11637",
"vega": "0.70460",
"rho": "-0.71952"
},
{
"contractID": "IBM250919C00230000",
"symbol": "IBM",
"expiration": "2025-09-19",
"strike": "230.00",
"type": "call",
"last": "17.46",
"mark": "16.85",
"bid": "16.65",
"bid_size": "32",
"ask": "17.05",
"ask_size": "12",
"volume": "14",
"open_interest": "313",
"date": "2025-01-24",
"implied_volatility": "0.22516",
"delta": "0.54793",
"gamma": "0.00969",
"theta": "-0.17017",
"vega": "0.71895",
"rho": "0.69330"
},
{
"contractID": "IBM250919P00230000",
"symbol": "IBM",
"expiration": "2025-09-19",
"strike": "230.00",
"type": "put",
"last": "0.00",
"mark": "20.85",
"bid": "20.65",
"bid_size": "10",
"ask": "21.05",
"ask_size": "14",
"volume": "0",
"open_interest": "105",
"date": "2025-01-24",
"implied_volatility": "0.29772",
"delta": "-0.44333",
"gamma": "0.00731",
"theta": "-0.11147",
"vega": "0.71687",
"rho": "-0.78583"
},
{
"contractID": "IBM250919C00235000",
"symbol": "IBM",
"expiration": "2025-09-19",
"strike": "235.00",
"type": "call",
"last": "15.65",
"mark": "14.55",
"bid": "14.15",
"bid_size": "267",
"ask": "14.95",
"ask_size": "7",
"volume": "0",
"open_interest": "178",
"date": "2025-01-24",
"implied_volatility": "0.22379",
"delta": "0.50041",
"gamma": "0.00982",
"theta": "-0.16668",
"vega": "0.72418",
"rho": "0.63863"
},
{
"contractID": "IBM250919P00235000",
"symbol": "IBM",
"expiration": "2025-09-19",
"strike": "235.00",
"type": "put",
"last": "22.90",
"mark": "24.17",
"bid": "23.40",
"bid_size": "22",
"ask": "24.95",
"ask_size": "85",
"volume": "3",
"open_interest": "75",
"date": "2025-01-24",
"implied_volatility": "0.30611",
"delta": "-0.47676",
"gamma": "0.00717",
"theta": "-0.11282",
"vega": "0.72295",
"rho": "-0.85643"
},
{
"contractID": "IBM250919C00240000",
"symbol": "IBM",
"expiration": "2025-09-19",
"strike": "240.00",
"type": "call",
"last": "12.91",
"mark": "12.48",
"bid": "11.90",
"bid_size": "474",
"ask": "13.05",
"ask_size": "33",
"volume": "5",
"open_interest": "222",
"date": "2025-01-24",
"implied_volatility": "0.22242",
"delta": "0.45332",
"gamma": "0.00981",
"theta": "-0.16139",
"vega": "0.71922",
"rho": "0.58310"
},
{
"contractID": "IBM250919P00240000",
"symbol": "IBM",
"expiration": "2025-09-19",
"strike": "240.00",
"type": "put",
"last": "0.00",
"mark": "26.85",
"bid": "25.75",
"bid_size": "108",
"ask": "27.95",
"ask_size": "89",
"volume": "0",
"open_interest": "53",
"date": "2025-01-24",
"implied_volatility": "0.30351",
"delta": "-0.51165",
"gamma": "0.00724",
"theta": "-0.10704",
"vega": "0.72387",
"rho": "-0.92510"
},
{
"contractID": "IBM250919C00245000",
"symbol": "IBM",
"expiration": "2025-09-19",
"strike": "245.00",
"type": "call",
"last": "11.63",
"mark": "11.15",
"bid": "10.95",
"bid_size": "61",
"ask": "11.35",
"ask_size": "30",
"volume": "0",
"open_interest": "194",
"date": "2025-01-24",
"implied_volatility": "0.22852",
"delta": "0.41253",
"gamma": "0.00939",
"theta": "-0.15916",
"vega": "0.70671",
"rho": "0.53197"
},
{
"contractID": "IBM250919P00245000",
"symbol": "IBM",
"expiration": "2025-09-19",
"strike": "245.00",
"type": "put",
"last": "0.00",
"mark": "30.85",
"bid": "29.80",
"bid_size": "27",
"ask": "31.90",
"ask_size": "72",
"volume": "0",
"open_interest": "32",
"date": "2025-01-24",
"implied_volatility": "0.31693",
"delta": "-0.53901",
"gamma": "0.00690",
"theta": "-0.10932",
"vega": "0.72072",
"rho": "-0.99129"
},
{
"contractID": "IBM250919C00250000",
"symbol": "IBM",
"expiration": "2025-09-19",
"strike": "250.00",
"type": "call",
"last": "10.25",
"mark": "9.68",
"bid": "9.50",
"bid_size": "40",
"ask": "9.85",
"ask_size": "10",
"volume": "1",
"open_interest": "1487",
"date": "2025-01-24",
"implied_volatility": "0.22989",
"delta": "0.37166",
"gamma": "0.00906",
"theta": "-0.15298",
"vega": "0.68638",
"rho": "0.48168"
},
{
"contractID": "IBM250919P00250000",
"symbol": "IBM",
"expiration": "2025-09-19",
"strike": "250.00",
"type": "put",
"last": "0.00",
"mark": "33.97",
"bid": "33.15",
"bid_size": "40",
"ask": "34.80",
"ask_size": "44",
"volume": "0",
"open_interest": "2",
"date": "2025-01-24",
"implied_volatility": "0.31617",
"delta": "-0.57061",
"gamma": "0.00684",
"theta": "-0.10256",
"vega": "0.71281",
"rho": "-1.05795"
},
{
"contractID": "IBM250919C00260000",
"symbol": "IBM",
"expiration": "2025-09-19",
"strike": "260.00",
"type": "call",
"last": "7.31",
"mark": "7.25",
"bid": "7.10",
"bid_size": "30",
"ask": "7.40",
"ask_size": "21",
"volume": "0",
"open_interest": "139",
"date": "2025-01-24",
"implied_volatility": "0.23278",
"delta": "0.29816",
"gamma": "0.00821",
"theta": "-0.13823",
"vega": "0.62939",
"rho": "0.38975"
},
{
"contractID": "IBM250919P00260000",
"symbol": "IBM",
"expiration": "2025-09-19",
"strike": "260.00",
"type": "put",
"last": "0.00",
"mark": "41.60",
"bid": "40.80",
"bid_size": "10",
"ask": "42.40",
"ask_size": "42",
"volume": "0",
"open_interest": "6",
"date": "2025-01-24",
"implied_volatility": "0.32882",
"delta": "-0.62125",
"gamma": "0.00637",
"theta": "-0.09561",
"vega": "0.69047",
"rho": "-1.18191"
},
{
"contractID": "IBM250919C00270000",
"symbol": "IBM",
"expiration": "2025-09-19",
"strike": "270.00",
"type": "call",
"last": "5.70",
"mark": "5.32",
"bid": "5.10",
"bid_size": "123",
"ask": "5.55",
"ask_size": "40",
"volume": "0",
"open_interest": "163",
"date": "2025-01-24",
"implied_volatility": "0.23416",
"delta": "0.23420",
"gamma": "0.00722",
"theta": "-0.12046",
"vega": "0.55678",
"rho": "0.30861"
},
{
"contractID": "IBM250919P00270000",
"symbol": "IBM",
"expiration": "2025-09-19",
"strike": "270.00",
"type": "put",
"last": "0.00",
"mark": "50.10",
"bid": "49.00",
"bid_size": "12",
"ask": "51.20",
"ask_size": "72",
"volume": "0",
"open_interest": "1",
"date": "2025-01-24",
"implied_volatility": "0.34848",
"delta": "-0.65911",
"gamma": "0.00580",
"theta": "-0.09206",
"vega": "0.66579",
"rho": "-1.29282"
},
{
"contractID": "IBM250919C00280000",
"symbol": "IBM",
"expiration": "2025-09-19",
"strike": "280.00",
"type": "call",
"last": "4.00",
"mark": "4.00",
"bid": "3.90",
"bid_size": "38",
"ask": "4.10",
"ask_size": "20",
"volume": "4",
"open_interest": "1692",
"date": "2025-01-24",
"implied_volatility": "0.23842",
"delta": "0.18470",
"gamma": "0.00616",
"theta": "-0.10474",
"vega": "0.48406",
"rho": "0.24464"
},
{
"contractID": "IBM250919P00280000",
"symbol": "IBM",
"expiration": "2025-09-19",
"strike": "280.00",
"type": "put",
"last": "0.00",
"mark": "58.60",
"bid": "57.90",
"bid_size": "10",
"ask": "59.30",
"ask_size": "37",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.36373",
"delta": "-0.69309",
"gamma": "0.00532",
"theta": "-0.08500",
"vega": "0.63761",
"rho": "-1.39804"
},
{
"contractID": "IBM250919C00290000",
"symbol": "IBM",
"expiration": "2025-09-19",
"strike": "290.00",
"type": "call",
"last": "3.32",
"mark": "2.94",
"bid": "2.84",
"bid_size": "30",
"ask": "3.05",
"ask_size": "20",
"volume": "2",
"open_interest": "271",
"date": "2025-01-24",
"implied_volatility": "0.24071",
"delta": "0.14281",
"gamma": "0.00516",
"theta": "-0.08822",
"vega": "0.40952",
"rho": "0.19017"
},
{
"contractID": "IBM250919P00290000",
"symbol": "IBM",
"expiration": "2025-09-19",
"strike": "290.00",
"type": "put",
"last": "0.00",
"mark": "68.07",
"bid": "66.85",
"bid_size": "36",
"ask": "69.30",
"ask_size": "72",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.39086",
"delta": "-0.71213",
"gamma": "0.00481",
"theta": "-0.08680",
"vega": "0.61922",
"rho": "-1.48771"
},
{
"contractID": "IBM250919C00300000",
"symbol": "IBM",
"expiration": "2025-09-19",
"strike": "300.00",
"type": "call",
"last": "2.45",
"mark": "2.18",
"bid": "2.08",
"bid_size": "31",
"ask": "2.28",
"ask_size": "11",
"volume": "2",
"open_interest": "1254",
"date": "2025-01-24",
"implied_volatility": "0.24376",
"delta": "0.11044",
"gamma": "0.00426",
"theta": "-0.07379",
"vega": "0.34231",
"rho": "0.14767"
},
{
"contractID": "IBM250919P00300000",
"symbol": "IBM",
"expiration": "2025-09-19",
"strike": "300.00",
"type": "put",
"last": "0.00",
"mark": "77.30",
"bid": "76.45",
"bid_size": "42",
"ask": "78.15",
"ask_size": "72",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.41159",
"delta": "-0.73142",
"gamma": "0.00441",
"theta": "-0.08426",
"vega": "0.59862",
"rho": "-1.57616"
},
{
"contractID": "IBM250919C00310000",
"symbol": "IBM",
"expiration": "2025-09-19",
"strike": "310.00",
"type": "call",
"last": "1.57",
"mark": "1.63",
"bid": "1.53",
"bid_size": "30",
"ask": "1.73",
"ask_size": "30",
"volume": "0",
"open_interest": "19",
"date": "2025-01-24",
"implied_volatility": "0.24727",
"delta": "0.08562",
"gamma": "0.00349",
"theta": "-0.06148",
"vega": "0.28400",
"rho": "0.11486"
},
{
"contractID": "IBM250919P00310000",
"symbol": "IBM",
"expiration": "2025-09-19",
"strike": "310.00",
"type": "put",
"last": "0.00",
"mark": "87.15",
"bid": "86.15",
"bid_size": "64",
"ask": "88.15",
"ask_size": "76",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.44071",
"delta": "-0.74078",
"gamma": "0.00405",
"theta": "-0.08883",
"vega": "0.58789",
"rho": "-1.65410"
},
{
"contractID": "IBM250919C00320000",
"symbol": "IBM",
"expiration": "2025-09-19",
"strike": "320.00",
"type": "call",
"last": "1.26",
"mark": "1.20",
"bid": "1.10",
"bid_size": "20",
"ask": "1.29",
"ask_size": "12",
"volume": "0",
"open_interest": "24",
"date": "2025-01-24",
"implied_volatility": "0.24955",
"delta": "0.06534",
"gamma": "0.00281",
"theta": "-0.05006",
"vega": "0.23110",
"rho": "0.08796"
},
{
"contractID": "IBM250919P00320000",
"symbol": "IBM",
"expiration": "2025-09-19",
"strike": "320.00",
"type": "put",
"last": "0.00",
"mark": "96.57",
"bid": "96.05",
"bid_size": "61",
"ask": "97.10",
"ask_size": "59",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.46098",
"delta": "-0.75384",
"gamma": "0.00377",
"theta": "-0.08703",
"vega": "0.57210",
"rho": "-1.73471"
},
{
"contractID": "IBM250919C00330000",
"symbol": "IBM",
"expiration": "2025-09-19",
"strike": "330.00",
"type": "call",
"last": "0.97",
"mark": "0.91",
"bid": "0.82",
"bid_size": "11",
"ask": "0.99",
"ask_size": "11",
"volume": "2",
"open_interest": "20",
"date": "2025-01-24",
"implied_volatility": "0.25336",
"delta": "0.05092",
"gamma": "0.00228",
"theta": "-0.04146",
"vega": "0.18994",
"rho": "0.06869"
},
{
"contractID": "IBM250919P00330000",
"symbol": "IBM",
"expiration": "2025-09-19",
"strike": "330.00",
"type": "put",
"last": "0.00",
"mark": "106.55",
"bid": "105.15",
"bid_size": "86",
"ask": "107.95",
"ask_size": "96",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.48949",
"delta": "-0.75871",
"gamma": "0.00351",
"theta": "-0.09244",
"vega": "0.56597",
"rho": "-1.80690"
},
{
"contractID": "IBM250919C00340000",
"symbol": "IBM",
"expiration": "2025-09-19",
"strike": "340.00",
"type": "call",
"last": "0.90",
"mark": "1.06",
"bid": "0.36",
"bid_size": "572",
"ask": "1.77",
"ask_size": "1351",
"volume": "0",
"open_interest": "40",
"date": "2025-01-24",
"implied_volatility": "0.27760",
"delta": "0.05395",
"gamma": "0.00217",
"theta": "-0.04713",
"vega": "0.19889",
"rho": "0.07218"
},
{
"contractID": "IBM250919P00340000",
"symbol": "IBM",
"expiration": "2025-09-19",
"strike": "340.00",
"type": "put",
"last": "0.00",
"mark": "116.55",
"bid": "115.75",
"bid_size": "78",
"ask": "117.35",
"ask_size": "82",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.51723",
"delta": "-0.76244",
"gamma": "0.00329",
"theta": "-0.09789",
"vega": "0.56117",
"rho": "-1.87755"
},
{
"contractID": "IBM250919C00350000",
"symbol": "IBM",
"expiration": "2025-09-19",
"strike": "350.00",
"type": "call",
"last": "0.67",
"mark": "0.98",
"bid": "0.30",
"bid_size": "169",
"ask": "1.66",
"ask_size": "983",
"volume": "0",
"open_interest": "64",
"date": "2025-01-24",
"implied_volatility": "0.28934",
"delta": "0.04874",
"gamma": "0.00192",
"theta": "-0.04502",
"vega": "0.18343",
"rho": "0.06505"
},
{
"contractID": "IBM250919P00350000",
"symbol": "IBM",
"expiration": "2025-09-19",
"strike": "350.00",
"type": "put",
"last": "0.00",
"mark": "126.80",
"bid": "125.75",
"bid_size": "80",
"ask": "127.85",
"ask_size": "76",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.54848",
"delta": "-0.76251",
"gamma": "0.00310",
"theta": "-0.10685",
"vega": "0.56107",
"rho": "-1.94449"
},
{
"contractID": "IBM260116C00070000",
"symbol": "IBM",
"expiration": "2026-01-16",
"strike": "70.00",
"type": "call",
"last": "155.02",
"mark": "155.28",
"bid": "153.90",
"bid_size": "71",
"ask": "156.65",
"ask_size": "73",
"volume": "0",
"open_interest": "2",
"date": "2025-01-24",
"implied_volatility": "0.03087",
"delta": "1.00000",
"gamma": "0.00000",
"theta": "-0.02905",
"vega": "0.00000",
"rho": "0.65627"
},
{
"contractID": "IBM260116P00070000",
"symbol": "IBM",
"expiration": "2026-01-16",
"strike": "70.00",
"type": "put",
"last": "0.00",
"mark": "0.22",
"bid": "0.04",
"bid_size": "61",
"ask": "0.40",
"ask_size": "19",
"volume": "0",
"open_interest": "188",
"date": "2025-01-24",
"implied_volatility": "0.52851",
"delta": "-0.00502",
"gamma": "0.00012",
"theta": "-0.00813",
"vega": "0.03226",
"rho": "-0.01319"
},
{
"contractID": "IBM260116C00075000",
"symbol": "IBM",
"expiration": "2026-01-16",
"strike": "75.00",
"type": "call",
"last": "138.00",
"mark": "150.30",
"bid": "148.95",
"bid_size": "70",
"ask": "151.65",
"ask_size": "71",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.02987",
"delta": "1.00000",
"gamma": "0.00000",
"theta": "-0.03113",
"vega": "0.00000",
"rho": "0.70314"
},
{
"contractID": "IBM260116P00075000",
"symbol": "IBM",
"expiration": "2026-01-16",
"strike": "75.00",
"type": "put",
"last": "0.00",
"mark": "0.81",
"bid": "0.05",
"bid_size": "70",
"ask": "1.56",
"ask_size": "70",
"volume": "0",
"open_interest": "80",
"date": "2025-01-24",
"implied_volatility": "0.60610",
"delta": "-0.01384",
"gamma": "0.00026",
"theta": "-0.02265",
"vega": "0.07858",
"rho": "-0.03836"
},
{
"contractID": "IBM260116C00080000",
"symbol": "IBM",
"expiration": "2026-01-16",
"strike": "80.00",
"type": "call",
"last": "0.00",
"mark": "144.88",
"bid": "144.05",
"bid_size": "6",
"ask": "145.70",
"ask_size": "1",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.02888",
"delta": "1.00000",
"gamma": "0.00000",
"theta": "-0.03320",
"vega": "0.00000",
"rho": "0.75002"
},
{
"contractID": "IBM260116P00080000",
"symbol": "IBM",
"expiration": "2026-01-16",
"strike": "80.00",
"type": "put",
"last": "0.00",
"mark": "0.60",
"bid": "0.01",
"bid_size": "290",
"ask": "1.19",
"ask_size": "700",
"volume": "0",
"open_interest": "35",
"date": "2025-01-24",
"implied_volatility": "0.54634",
"delta": "-0.01189",
"gamma": "0.00026",
"theta": "-0.01782",
"vega": "0.06888",
"rho": "-0.03201"
},
{
"contractID": "IBM260116C00085000",
"symbol": "IBM",
"expiration": "2026-01-16",
"strike": "85.00",
"type": "call",
"last": "130.65",
"mark": "139.68",
"bid": "138.10",
"bid_size": "96",
"ask": "141.25",
"ask_size": "98",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.02788",
"delta": "1.00000",
"gamma": "0.00000",
"theta": "-0.03528",
"vega": "0.00000",
"rho": "0.79690"
},
{
"contractID": "IBM260116P00085000",
"symbol": "IBM",
"expiration": "2026-01-16",
"strike": "85.00",
"type": "put",
"last": "0.00",
"mark": "0.64",
"bid": "0.14",
"bid_size": "291",
"ask": "1.13",
"ask_size": "1023",
"volume": "0",
"open_interest": "32",
"date": "2025-01-24",
"implied_volatility": "0.52302",
"delta": "-0.01318",
"gamma": "0.00029",
"theta": "-0.01858",
"vega": "0.07534",
"rho": "-0.03525"
},
{
"contractID": "IBM260116C00090000",
"symbol": "IBM",
"expiration": "2026-01-16",
"strike": "90.00",
"type": "call",
"last": "126.25",
"mark": "134.93",
"bid": "133.45",
"bid_size": "87",
"ask": "136.40",
"ask_size": "91",
"volume": "0",
"open_interest": "1",
"date": "2025-01-24",
"implied_volatility": "0.02688",
"delta": "1.00000",
"gamma": "0.00000",
"theta": "-0.03735",
"vega": "0.00000",
"rho": "0.84377"
},
{
"contractID": "IBM260116P00090000",
"symbol": "IBM",
"expiration": "2026-01-16",
"strike": "90.00",
"type": "put",
"last": "0.00",
"mark": "0.41",
"bid": "0.16",
"bid_size": "422",
"ask": "0.65",
"ask_size": "806",
"volume": "0",
"open_interest": "221",
"date": "2025-01-24",
"implied_volatility": "0.46250",
"delta": "-0.01010",
"gamma": "0.00026",
"theta": "-0.01297",
"vega": "0.05978",
"rho": "-0.02622"
},
{
"contractID": "IBM260116C00095000",
"symbol": "IBM",
"expiration": "2026-01-16",
"strike": "95.00",
"type": "call",
"last": "127.38",
"mark": "129.90",
"bid": "128.90",
"bid_size": "72",
"ask": "130.90",
"ask_size": "98",
"volume": "0",
"open_interest": "1",
"date": "2025-01-24",
"implied_volatility": "0.02589",
"delta": "1.00000",
"gamma": "0.00000",
"theta": "-0.03943",
"vega": "0.00000",
"rho": "0.89065"
},
{
"contractID": "IBM260116P00095000",
"symbol": "IBM",
"expiration": "2026-01-16",
"strike": "95.00",
"type": "put",
"last": "0.00",
"mark": "0.95",
"bid": "0.18",
"bid_size": "291",
"ask": "1.72",
"ask_size": "1019",
"volume": "0",
"open_interest": "240",
"date": "2025-01-24",
"implied_volatility": "0.50290",
"delta": "-0.01943",
"gamma": "0.00042",
"theta": "-0.02470",
"vega": "0.10504",
"rho": "-0.05202"
},
{
"contractID": "IBM260116C00100000",
"symbol": "IBM",
"expiration": "2026-01-16",
"strike": "100.00",
"type": "call",
"last": "127.41",
"mark": "124.93",
"bid": "123.40",
"bid_size": "86",
"ask": "126.45",
"ask_size": "86",
"volume": "0",
"open_interest": "9",
"date": "2025-01-24",
"implied_volatility": "0.02489",
"delta": "1.00000",
"gamma": "0.00000",
"theta": "-0.04150",
"vega": "0.00000",
"rho": "0.93752"
},
{
"contractID": "IBM260116P00100000",
"symbol": "IBM",
"expiration": "2026-01-16",
"strike": "100.00",
"type": "put",
"last": "0.00",
"mark": "0.91",
"bid": "0.20",
"bid_size": "523",
"ask": "1.61",
"ask_size": "1004",
"volume": "0",
"open_interest": "532",
"date": "2025-01-24",
"implied_volatility": "0.47317",
"delta": "-0.01992",
"gamma": "0.00046",
"theta": "-0.02361",
"vega": "0.10726",
"rho": "-0.05269"
},
{
"contractID": "IBM260116C00105000",
"symbol": "IBM",
"expiration": "2026-01-16",
"strike": "105.00",
"type": "call",
"last": "0.00",
"mark": "119.88",
"bid": "118.25",
"bid_size": "72",
"ask": "121.50",
"ask_size": "72",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.02389",
"delta": "1.00000",
"gamma": "0.00000",
"theta": "-0.04358",
"vega": "0.00000",
"rho": "0.98440"
},
{
"contractID": "IBM260116P00105000",
"symbol": "IBM",
"expiration": "2026-01-16",
"strike": "105.00",
"type": "put",
"last": "0.00",
"mark": "0.93",
"bid": "0.01",
"bid_size": "1440",
"ask": "1.84",
"ask_size": "1158",
"volume": "0",
"open_interest": "145",
"date": "2025-01-24",
"implied_volatility": "0.45046",
"delta": "-0.02135",
"gamma": "0.00051",
"theta": "-0.02372",
"vega": "0.11378",
"rho": "-0.05604"
},
{
"contractID": "IBM260116C00110000",
"symbol": "IBM",
"expiration": "2026-01-16",
"strike": "110.00",
"type": "call",
"last": "0.00",
"mark": "114.42",
"bid": "113.05",
"bid_size": "90",
"ask": "115.80",
"ask_size": "10",
"volume": "0",
"open_interest": "23",
"date": "2025-01-24",
"implied_volatility": "0.02289",
"delta": "1.00000",
"gamma": "0.00000",
"theta": "-0.04565",
"vega": "0.00000",
"rho": "1.03128"
},
{
"contractID": "IBM260116P00110000",
"symbol": "IBM",
"expiration": "2026-01-16",
"strike": "110.00",
"type": "put",
"last": "0.00",
"mark": "0.01",
"bid": "0.00",
"bid_size": "0",
"ask": "1.45",
"ask_size": "685",
"volume": "0",
"open_interest": "192",
"date": "2025-01-24",
"implied_volatility": "0.24696",
"delta": "-0.00064",
"gamma": "0.00004",
"theta": "-0.00056",
"vega": "0.00494",
"rho": "-0.00150"
},
{
"contractID": "IBM260116C00115000",
"symbol": "IBM",
"expiration": "2026-01-16",
"strike": "115.00",
"type": "call",
"last": "110.80",
"mark": "109.80",
"bid": "108.15",
"bid_size": "72",
"ask": "111.45",
"ask_size": "72",
"volume": "0",
"open_interest": "13",
"date": "2025-01-24",
"implied_volatility": "0.02190",
"delta": "1.00000",
"gamma": "0.00000",
"theta": "-0.04773",
"vega": "0.00000",
"rho": "1.07815"
},
{
"contractID": "IBM260116P00115000",
"symbol": "IBM",
"expiration": "2026-01-16",
"strike": "115.00",
"type": "put",
"last": "0.90",
"mark": "0.58",
"bid": "0.31",
"bid_size": "676",
"ask": "0.86",
"ask_size": "637",
"volume": "6",
"open_interest": "2241",
"date": "2025-01-24",
"implied_volatility": "0.37272",
"delta": "-0.01711",
"gamma": "0.00051",
"theta": "-0.01604",
"vega": "0.09423",
"rho": "-0.04329"
},
{
"contractID": "IBM260116C00120000",
"symbol": "IBM",
"expiration": "2026-01-16",
"strike": "120.00",
"type": "call",
"last": "103.47",
"mark": "105.00",
"bid": "103.35",
"bid_size": "70",
"ask": "106.65",
"ask_size": "70",
"volume": "0",
"open_interest": "30",
"date": "2025-01-24",
"implied_volatility": "0.02090",
"delta": "1.00000",
"gamma": "0.00000",
"theta": "-0.04981",
"vega": "0.00000",
"rho": "1.12503"
},
{
"contractID": "IBM260116P00120000",
"symbol": "IBM",
"expiration": "2026-01-16",
"strike": "120.00",
"type": "put",
"last": "0.00",
"mark": "0.01",
"bid": "0.00",
"bid_size": "0",
"ask": "1.67",
"ask_size": "606",
"volume": "0",
"open_interest": "508",
"date": "2025-01-24",
"implied_volatility": "0.21998",
"delta": "-0.00071",
"gamma": "0.00005",
"theta": "-0.00054",
"vega": "0.00549",
"rho": "-0.00167"
},
{
"contractID": "IBM260116C00125000",
"symbol": "IBM",
"expiration": "2026-01-16",
"strike": "125.00",
"type": "call",
"last": "100.27",
"mark": "100.35",
"bid": "98.65",
"bid_size": "72",
"ask": "102.05",
"ask_size": "72",
"volume": "0",
"open_interest": "38",
"date": "2025-01-24",
"implied_volatility": "0.01990",
"delta": "1.00000",
"gamma": "0.00000",
"theta": "-0.05188",
"vega": "0.00000",
"rho": "1.17191"
},
{
"contractID": "IBM260116P00125000",
"symbol": "IBM",
"expiration": "2026-01-16",
"strike": "125.00",
"type": "put",
"last": "0.91",
"mark": "0.98",
"bid": "0.20",
"bid_size": "1606",
"ask": "1.77",
"ask_size": "1128",
"volume": "2",
"open_interest": "171",
"date": "2025-01-24",
"implied_volatility": "0.36632",
"delta": "-0.02755",
"gamma": "0.00078",
"theta": "-0.02329",
"vega": "0.14094",
"rho": "-0.07018"
},
{
"contractID": "IBM260116C00130000",
"symbol": "IBM",
"expiration": "2026-01-16",
"strike": "130.00",
"type": "call",
"last": "97.80",
"mark": "95.33",
"bid": "93.70",
"bid_size": "94",
"ask": "96.95",
"ask_size": "94",
"volume": "0",
"open_interest": "122",
"date": "2025-01-24",
"implied_volatility": "0.01891",
"delta": "1.00000",
"gamma": "0.00000",
"theta": "-0.05396",
"vega": "0.00000",
"rho": "1.21878"
},
{
"contractID": "IBM260116P00130000",
"symbol": "IBM",
"expiration": "2026-01-16",
"strike": "130.00",
"type": "put",
"last": "0.00",
"mark": "1.31",
"bid": "0.71",
"bid_size": "676",
"ask": "1.92",
"ask_size": "1126",
"volume": "0",
"open_interest": "398",
"date": "2025-01-24",
"implied_volatility": "0.36677",
"delta": "-0.03530",
"gamma": "0.00095",
"theta": "-0.02844",
"vega": "0.17301",
"rho": "-0.09043"
},
{
"contractID": "IBM260116C00135000",
"symbol": "IBM",
"expiration": "2026-01-16",
"strike": "135.00",
"type": "call",
"last": "84.02",
"mark": "90.88",
"bid": "89.15",
"bid_size": "72",
"ask": "92.60",
"ask_size": "72",
"volume": "0",
"open_interest": "40",
"date": "2025-01-24",
"implied_volatility": "0.01791",
"delta": "1.00000",
"gamma": "0.00000",
"theta": "-0.05603",
"vega": "0.00000",
"rho": "1.26566"
},
{
"contractID": "IBM260116P00135000",
"symbol": "IBM",
"expiration": "2026-01-16",
"strike": "135.00",
"type": "put",
"last": "1.60",
"mark": "1.11",
"bid": "0.67",
"bid_size": "1182",
"ask": "1.55",
"ask_size": "827",
"volume": "3",
"open_interest": "518",
"date": "2025-01-24",
"implied_volatility": "0.33507",
"delta": "-0.03345",
"gamma": "0.00100",
"theta": "-0.02461",
"vega": "0.16551",
"rho": "-0.08440"
},
{
"contractID": "IBM260116C00140000",
"symbol": "IBM",
"expiration": "2026-01-16",
"strike": "140.00",
"type": "call",
"last": "78.37",
"mark": "86.25",
"bid": "84.40",
"bid_size": "73",
"ask": "88.10",
"ask_size": "74",
"volume": "0",
"open_interest": "137",
"date": "2025-01-24",
"implied_volatility": "0.01691",
"delta": "1.00000",
"gamma": "0.00000",
"theta": "-0.05811",
"vega": "0.00000",
"rho": "1.31253"
},
{
"contractID": "IBM260116P00140000",
"symbol": "IBM",
"expiration": "2026-01-16",
"strike": "140.00",
"type": "put",
"last": "0.00",
"mark": "1.70",
"bid": "0.72",
"bid_size": "1243",
"ask": "2.68",
"ask_size": "975",
"volume": "0",
"open_interest": "530",
"date": "2025-01-24",
"implied_volatility": "0.34635",
"delta": "-0.04673",
"gamma": "0.00127",
"theta": "-0.03317",
"vega": "0.21720",
"rho": "-0.11937"
},
{
"contractID": "IBM260116C00145000",
"symbol": "IBM",
"expiration": "2026-01-16",
"strike": "145.00",
"type": "call",
"last": "82.80",
"mark": "81.58",
"bid": "81.00",
"bid_size": "35",
"ask": "82.15",
"ask_size": "8",
"volume": "10",
"open_interest": "230",
"date": "2025-01-24",
"implied_volatility": "0.01591",
"delta": "1.00000",
"gamma": "0.00000",
"theta": "-0.06018",
"vega": "0.00000",
"rho": "1.35941"
},
{
"contractID": "IBM260116P00145000",
"symbol": "IBM",
"expiration": "2026-01-16",
"strike": "145.00",
"type": "put",
"last": "0.00",
"mark": "1.89",
"bid": "0.85",
"bid_size": "1222",
"ask": "2.92",
"ask_size": "901",
"volume": "0",
"open_interest": "456",
"date": "2025-01-24",
"implied_volatility": "0.33476",
"delta": "-0.05285",
"gamma": "0.00145",
"theta": "-0.03504",
"vega": "0.23962",
"rho": "-0.13470"
},
{
"contractID": "IBM260116C00150000",
"symbol": "IBM",
"expiration": "2026-01-16",
"strike": "150.00",
"type": "call",
"last": "77.90",
"mark": "76.50",
"bid": "75.45",
"bid_size": "319",
"ask": "77.55",
"ask_size": "11",
"volume": "0",
"open_interest": "506",
"date": "2025-01-24",
"implied_volatility": "0.01492",
"delta": "1.00000",
"gamma": "0.00000",
"theta": "-0.06226",
"vega": "0.00000",
"rho": "1.40629"
},
{
"contractID": "IBM260116P00150000",
"symbol": "IBM",
"expiration": "2026-01-16",
"strike": "150.00",
"type": "put",
"last": "2.04",
"mark": "2.08",
"bid": "2.02",
"bid_size": "7",
"ask": "2.15",
"ask_size": "7",
"volume": "1",
"open_interest": "480",
"date": "2025-01-24",
"implied_volatility": "0.32257",
"delta": "-0.05932",
"gamma": "0.00165",
"theta": "-0.03661",
"vega": "0.26250",
"rho": "-0.15078"
},
{
"contractID": "IBM260116C00155000",
"symbol": "IBM",
"expiration": "2026-01-16",
"strike": "155.00",
"type": "call",
"last": "73.50",
"mark": "72.45",
"bid": "71.10",
"bid_size": "225",
"ask": "73.80",
"ask_size": "15",
"volume": "0",
"open_interest": "329",
"date": "2025-01-24",
"implied_volatility": "0.01392",
"delta": "1.00000",
"gamma": "0.00000",
"theta": "-0.06433",
"vega": "0.00000",
"rho": "1.45316"
},
{
"contractID": "IBM260116P00155000",
"symbol": "IBM",
"expiration": "2026-01-16",
"strike": "155.00",
"type": "put",
"last": "2.57",
"mark": "2.41",
"bid": "2.13",
"bid_size": "390",
"ask": "2.68",
"ask_size": "41",
"volume": "2",
"open_interest": "376",
"date": "2025-01-24",
"implied_volatility": "0.31479",
"delta": "-0.06865",
"gamma": "0.00189",
"theta": "-0.03960",
"vega": "0.29407",
"rho": "-0.17450"
},
{
"contractID": "IBM260116C00160000",
"symbol": "IBM",
"expiration": "2026-01-16",
"strike": "160.00",
"type": "call",
"last": "67.90",
"mark": "67.97",
"bid": "66.80",
"bid_size": "330",
"ask": "69.15",
"ask_size": "10",
"volume": "0",
"open_interest": "1068",
"date": "2025-01-24",
"implied_volatility": "0.01292",
"delta": "1.00000",
"gamma": "0.00000",
"theta": "-0.06641",
"vega": "0.00000",
"rho": "1.50004"
},
{
"contractID": "IBM260116P00160000",
"symbol": "IBM",
"expiration": "2026-01-16",
"strike": "160.00",
"type": "put",
"last": "2.85",
"mark": "2.87",
"bid": "2.68",
"bid_size": "281",
"ask": "3.05",
"ask_size": "36",
"volume": "2",
"open_interest": "560",
"date": "2025-01-24",
"implied_volatility": "0.30992",
"delta": "-0.08063",
"gamma": "0.00217",
"theta": "-0.04358",
"vega": "0.33249",
"rho": "-0.20536"
},
{
"contractID": "IBM260116C00165000",
"symbol": "IBM",
"expiration": "2026-01-16",
"strike": "165.00",
"type": "call",
"last": "63.93",
"mark": "63.92",
"bid": "63.15",
"bid_size": "317",
"ask": "64.70",
"ask_size": "40",
"volume": "0",
"open_interest": "632",
"date": "2025-01-24",
"implied_volatility": "0.01193",
"delta": "1.00000",
"gamma": "0.00000",
"theta": "-0.06848",
"vega": "0.00000",
"rho": "1.54692"
},
{
"contractID": "IBM260116P00165000",
"symbol": "IBM",
"expiration": "2026-01-16",
"strike": "165.00",
"type": "put",
"last": "0.00",
"mark": "3.53",
"bid": "3.45",
"bid_size": "7",
"ask": "3.60",
"ask_size": "20",
"volume": "0",
"open_interest": "994",
"date": "2025-01-24",
"implied_volatility": "0.30854",
"delta": "-0.09597",
"gamma": "0.00248",
"theta": "-0.04884",
"vega": "0.37858",
"rho": "-0.24553"
},
{
"contractID": "IBM260116C00170000",
"symbol": "IBM",
"expiration": "2026-01-16",
"strike": "170.00",
"type": "call",
"last": "59.55",
"mark": "59.92",
"bid": "58.60",
"bid_size": "375",
"ask": "61.25",
"ask_size": "380",
"volume": "0",
"open_interest": "495",
"date": "2025-01-24",
"implied_volatility": "0.01093",
"delta": "1.00000",
"gamma": "0.00000",
"theta": "-0.07056",
"vega": "0.00000",
"rho": "1.59379"
},
{
"contractID": "IBM260116P00170000",
"symbol": "IBM",
"expiration": "2026-01-16",
"strike": "170.00",
"type": "put",
"last": "4.25",
"mark": "4.03",
"bid": "3.75",
"bid_size": "470",
"ask": "4.30",
"ask_size": "20",
"volume": "2",
"open_interest": "582",
"date": "2025-01-24",
"implied_volatility": "0.30092",
"delta": "-0.10935",
"gamma": "0.00280",
"theta": "-0.05165",
"vega": "0.41628",
"rho": "-0.27983"
},
{
"contractID": "IBM260116C00175000",
"symbol": "IBM",
"expiration": "2026-01-16",
"strike": "175.00",
"type": "call",
"last": "56.50",
"mark": "55.92",
"bid": "54.80",
"bid_size": "388",
"ask": "57.05",
"ask_size": "298",
"volume": "0",
"open_interest": "505",
"date": "2025-01-24",
"implied_volatility": "0.00993",
"delta": "1.00000",
"gamma": "0.00000",
"theta": "-0.07263",
"vega": "0.00000",
"rho": "1.64067"
},
{
"contractID": "IBM260116P00175000",
"symbol": "IBM",
"expiration": "2026-01-16",
"strike": "175.00",
"type": "put",
"last": "0.00",
"mark": "4.95",
"bid": "4.80",
"bid_size": "20",
"ask": "5.10",
"ask_size": "11",
"volume": "0",
"open_interest": "782",
"date": "2025-01-24",
"implied_volatility": "0.30138",
"delta": "-0.12896",
"gamma": "0.00314",
"theta": "-0.05736",
"vega": "0.46771",
"rho": "-0.33199"
},
{
"contractID": "IBM260116C00180000",
"symbol": "IBM",
"expiration": "2026-01-16",
"strike": "180.00",
"type": "call",
"last": "52.68",
"mark": "51.60",
"bid": "50.50",
"bid_size": "382",
"ask": "52.70",
"ask_size": "40",
"volume": "3",
"open_interest": "370",
"date": "2025-01-24",
"implied_volatility": "0.00893",
"delta": "1.00000",
"gamma": "0.00000",
"theta": "-0.07471",
"vega": "0.00000",
"rho": "1.68754"
},
{
"contractID": "IBM260116P00180000",
"symbol": "IBM",
"expiration": "2026-01-16",
"strike": "180.00",
"type": "put",
"last": "0.00",
"mark": "5.88",
"bid": "5.75",
"bid_size": "8",
"ask": "6.00",
"ask_size": "10",
"volume": "0",
"open_interest": "979",
"date": "2025-01-24",
"implied_volatility": "0.29925",
"delta": "-0.14869",
"gamma": "0.00348",
"theta": "-0.06182",
"vega": "0.51534",
"rho": "-0.38442"
},
{
"contractID": "IBM260116C00185000",
"symbol": "IBM",
"expiration": "2026-01-16",
"strike": "185.00",
"type": "call",
"last": "45.89",
"mark": "47.85",
"bid": "46.75",
"bid_size": "397",
"ask": "48.95",
"ask_size": "40",
"volume": "0",
"open_interest": "711",
"date": "2025-01-24",
"implied_volatility": "0.13355",
"delta": "0.96870",
"gamma": "0.00237",
"theta": "-0.08427",
"vega": "0.15669",
"rho": "1.66188"
},
{
"contractID": "IBM260116P00185000",
"symbol": "IBM",
"expiration": "2026-01-16",
"strike": "185.00",
"type": "put",
"last": "0.00",
"mark": "6.95",
"bid": "6.75",
"bid_size": "11",
"ask": "7.15",
"ask_size": "40",
"volume": "0",
"open_interest": "499",
"date": "2025-01-24",
"implied_volatility": "0.29772",
"delta": "-0.17034",
"gamma": "0.00383",
"theta": "-0.06614",
"vega": "0.56331",
"rho": "-0.44252"
},
{
"contractID": "IBM260116C00190000",
"symbol": "IBM",
"expiration": "2026-01-16",
"strike": "190.00",
"type": "call",
"last": "44.50",
"mark": "44.30",
"bid": "43.95",
"bid_size": "12",
"ask": "44.65",
"ask_size": "10",
"volume": "7",
"open_interest": "500",
"date": "2025-01-24",
"implied_volatility": "0.16754",
"delta": "0.91205",
"gamma": "0.00429",
"theta": "-0.09999",
"vega": "0.35490",
"rho": "1.57207"
},
{
"contractID": "IBM260116P00190000",
"symbol": "IBM",
"expiration": "2026-01-16",
"strike": "190.00",
"type": "put",
"last": "0.00",
"mark": "8.15",
"bid": "7.95",
"bid_size": "10",
"ask": "8.35",
"ask_size": "20",
"volume": "0",
"open_interest": "536",
"date": "2025-01-24",
"implied_volatility": "0.29620",
"delta": "-0.19347",
"gamma": "0.00417",
"theta": "-0.07001",
"vega": "0.61003",
"rho": "-0.50513"
},
{
"contractID": "IBM260116C00195000",
"symbol": "IBM",
"expiration": "2026-01-16",
"strike": "195.00",
"type": "call",
"last": "40.95",
"mark": "40.62",
"bid": "40.00",
"bid_size": "338",
"ask": "41.25",
"ask_size": "11",
"volume": "10",
"open_interest": "607",
"date": "2025-01-24",
"implied_volatility": "0.17806",
"delta": "0.87205",
"gamma": "0.00529",
"theta": "-0.10964",
"vega": "0.46517",
"rho": "1.52008"
},
{
"contractID": "IBM260116P00195000",
"symbol": "IBM",
"expiration": "2026-01-16",
"strike": "195.00",
"type": "put",
"last": "9.45",
"mark": "10.20",
"bid": "9.10",
"bid_size": "71",
"ask": "11.30",
"ask_size": "381",
"volume": "1",
"open_interest": "406",
"date": "2025-01-24",
"implied_volatility": "0.30550",
"delta": "-0.22305",
"gamma": "0.00439",
"theta": "-0.07749",
"vega": "0.66348",
"rho": "-0.59018"
},
{
"contractID": "IBM260116C00200000",
"symbol": "IBM",
"expiration": "2026-01-16",
"strike": "200.00",
"type": "call",
"last": "37.00",
"mark": "37.33",
"bid": "36.85",
"bid_size": "283",
"ask": "37.80",
"ask_size": "10",
"volume": "7",
"open_interest": "2485",
"date": "2025-01-24",
"implied_volatility": "0.18888",
"delta": "0.82790",
"gamma": "0.00607",
"theta": "-0.11918",
"vega": "0.56704",
"rho": "1.45522"
},
{
"contractID": "IBM260116P00200000",
"symbol": "IBM",
"expiration": "2026-01-16",
"strike": "200.00",
"type": "put",
"last": "11.00",
"mark": "11.22",
"bid": "10.75",
"bid_size": "30",
"ask": "11.70",
"ask_size": "40",
"volume": "2",
"open_interest": "1469",
"date": "2025-01-24",
"implied_volatility": "0.29696",
"delta": "-0.24539",
"gamma": "0.00477",
"theta": "-0.07744",
"vega": "0.69950",
"rho": "-0.64929"
},
{
"contractID": "IBM260116C00210000",
"symbol": "IBM",
"expiration": "2026-01-16",
"strike": "210.00",
"type": "call",
"last": "31.00",
"mark": "31.25",
"bid": "30.85",
"bid_size": "44",
"ask": "31.65",
"ask_size": "12",
"volume": "0",
"open_interest": "561",
"date": "2025-01-24",
"implied_volatility": "0.20245",
"delta": "0.74273",
"gamma": "0.00717",
"theta": "-0.13299",
"vega": "0.71721",
"rho": "1.32738"
},
{
"contractID": "IBM260116P00210000",
"symbol": "IBM",
"expiration": "2026-01-16",
"strike": "210.00",
"type": "put",
"last": "14.60",
"mark": "14.57",
"bid": "14.35",
"bid_size": "10",
"ask": "14.80",
"ask_size": "20",
"volume": "3",
"open_interest": "223",
"date": "2025-01-24",
"implied_volatility": "0.29345",
"delta": "-0.29955",
"gamma": "0.00533",
"theta": "-0.08042",
"vega": "0.77247",
"rho": "-0.80114"
},
{
"contractID": "IBM260116C00220000",
"symbol": "IBM",
"expiration": "2026-01-16",
"strike": "220.00",
"type": "call",
"last": "26.70",
"mark": "25.92",
"bid": "25.65",
"bid_size": "11",
"ask": "26.20",
"ask_size": "12",
"volume": "3",
"open_interest": "1236",
"date": "2025-01-24",
"implied_volatility": "0.21114",
"delta": "0.65931",
"gamma": "0.00781",
"theta": "-0.14095",
"vega": "0.81524",
"rho": "1.19619"
},
{
"contractID": "IBM260116P00220000",
"symbol": "IBM",
"expiration": "2026-01-16",
"strike": "220.00",
"type": "put",
"last": "18.85",
"mark": "19.17",
"bid": "18.45",
"bid_size": "31",
"ask": "19.90",
"ask_size": "40",
"volume": "2",
"open_interest": "540",
"date": "2025-01-24",
"implied_volatility": "0.29818",
"delta": "-0.35783",
"gamma": "0.00563",
"theta": "-0.08339",
"vega": "0.83001",
"rho": "-0.97425"
},
{
"contractID": "IBM260116C00230000",
"symbol": "IBM",
"expiration": "2026-01-16",
"strike": "230.00",
"type": "call",
"last": "21.00",
"mark": "21.07",
"bid": "20.75",
"bid_size": "31",
"ask": "21.40",
"ask_size": "13",
"volume": "15",
"open_interest": "1287",
"date": "2025-01-24",
"implied_volatility": "0.21464",
"delta": "0.57845",
"gamma": "0.00820",
"theta": "-0.14262",
"vega": "0.86974",
"rho": "1.06580"
},
{
"contractID": "IBM260116P00230000",
"symbol": "IBM",
"expiration": "2026-01-16",
"strike": "230.00",
"type": "put",
"last": "23.85",
"mark": "23.77",
"bid": "23.45",
"bid_size": "30",
"ask": "24.10",
"ask_size": "10",
"volume": "2",
"open_interest": "582",
"date": "2025-01-24",
"implied_volatility": "0.29574",
"delta": "-0.41572",
"gamma": "0.00593",
"theta": "-0.08033",
"vega": "0.86707",
"rho": "-1.14658"
},
{
"contractID": "IBM260116C00240000",
"symbol": "IBM",
"expiration": "2026-01-16",
"strike": "240.00",
"type": "call",
"last": "17.50",
"mark": "16.98",
"bid": "16.70",
"bid_size": "22",
"ask": "17.25",
"ask_size": "20",
"volume": "8",
"open_interest": "1503",
"date": "2025-01-24",
"implied_volatility": "0.21769",
"delta": "0.50018",
"gamma": "0.00824",
"theta": "-0.14004",
"vega": "0.88694",
"rho": "0.93366"
},
{
"contractID": "IBM260116P00240000",
"symbol": "IBM",
"expiration": "2026-01-16",
"strike": "240.00",
"type": "put",
"last": "0.00",
"mark": "29.38",
"bid": "28.00",
"bid_size": "262",
"ask": "30.75",
"ask_size": "40",
"volume": "0",
"open_interest": "476",
"date": "2025-01-24",
"implied_volatility": "0.29833",
"delta": "-0.47237",
"gamma": "0.00600",
"theta": "-0.07624",
"vega": "0.88481",
"rho": "-1.32595"
},
{
"contractID": "IBM260116C00250000",
"symbol": "IBM",
"expiration": "2026-01-16",
"strike": "250.00",
"type": "call",
"last": "13.63",
"mark": "13.55",
"bid": "13.35",
"bid_size": "11",
"ask": "13.75",
"ask_size": "11",
"volume": "13",
"open_interest": "1370",
"date": "2025-01-24",
"implied_volatility": "0.21998",
"delta": "0.42664",
"gamma": "0.00802",
"theta": "-0.13371",
"vega": "0.87190",
"rho": "0.80548"
},
{
"contractID": "IBM260116P00250000",
"symbol": "IBM",
"expiration": "2026-01-16",
"strike": "250.00",
"type": "put",
"last": "0.00",
"mark": "36.12",
"bid": "35.00",
"bid_size": "132",
"ask": "37.25",
"ask_size": "40",
"volume": "0",
"open_interest": "133",
"date": "2025-01-24",
"implied_volatility": "0.30778",
"delta": "-0.52302",
"gamma": "0.00582",
"theta": "-0.07277",
"vega": "0.88546",
"rho": "-1.50325"
},
{
"contractID": "IBM260116C00260000",
"symbol": "IBM",
"expiration": "2026-01-16",
"strike": "260.00",
"type": "call",
"last": "11.17",
"mark": "10.60",
"bid": "10.30",
"bid_size": "335",
"ask": "10.90",
"ask_size": "10",
"volume": "2",
"open_interest": "1006",
"date": "2025-01-24",
"implied_volatility": "0.22028",
"delta": "0.35778",
"gamma": "0.00762",
"theta": "-0.12370",
"vega": "0.82996",
"rho": "0.68299"
},
{
"contractID": "IBM260116P00260000",
"symbol": "IBM",
"expiration": "2026-01-16",
"strike": "260.00",
"type": "put",
"last": "0.00",
"mark": "43.52",
"bid": "42.55",
"bid_size": "31",
"ask": "44.50",
"ask_size": "136",
"volume": "0",
"open_interest": "104",
"date": "2025-01-24",
"implied_volatility": "0.31952",
"delta": "-0.56684",
"gamma": "0.00554",
"theta": "-0.06882",
"vega": "0.87446",
"rho": "-1.67198"
},
{
"contractID": "IBM260116C00270000",
"symbol": "IBM",
"expiration": "2026-01-16",
"strike": "270.00",
"type": "call",
"last": "8.81",
"mark": "8.85",
"bid": "8.20",
"bid_size": "30",
"ask": "9.50",
"ask_size": "753",
"volume": "7",
"open_interest": "441",
"date": "2025-01-24",
"implied_volatility": "0.22882",
"delta": "0.30527",
"gamma": "0.00689",
"theta": "-0.11701",
"vega": "0.77906",
"rho": "0.58470"
},
{
"contractID": "IBM260116P00270000",
"symbol": "IBM",
"expiration": "2026-01-16",
"strike": "270.00",
"type": "put",
"last": "0.00",
"mark": "51.33",
"bid": "49.80",
"bid_size": "72",
"ask": "52.85",
"ask_size": "72",
"volume": "0",
"open_interest": "3",
"date": "2025-01-24",
"implied_volatility": "0.33171",
"delta": "-0.60463",
"gamma": "0.00522",
"theta": "-0.06412",
"vega": "0.85626",
"rho": "-1.83152"
},
{
"contractID": "IBM260116C00280000",
"symbol": "IBM",
"expiration": "2026-01-16",
"strike": "280.00",
"type": "call",
"last": "6.56",
"mark": "6.40",
"bid": "6.00",
"bid_size": "827",
"ask": "6.80",
"ask_size": "30",
"volume": "4",
"open_interest": "573",
"date": "2025-01-24",
"implied_volatility": "0.22227",
"delta": "0.24311",
"gamma": "0.00634",
"theta": "-0.09997",
"vega": "0.69599",
"rho": "0.47197"
},
{
"contractID": "IBM260116P00280000",
"symbol": "IBM",
"expiration": "2026-01-16",
"strike": "280.00",
"type": "put",
"last": "0.00",
"mark": "59.88",
"bid": "58.70",
"bid_size": "50",
"ask": "61.05",
"ask_size": "71",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.34894",
"delta": "-0.63345",
"gamma": "0.00485",
"theta": "-0.06169",
"vega": "0.83684",
"rho": "-1.97846"
},
{
"contractID": "IBM260116C00290000",
"symbol": "IBM",
"expiration": "2026-01-16",
"strike": "290.00",
"type": "call",
"last": "5.55",
"mark": "5.45",
"bid": "4.95",
"bid_size": "343",
"ask": "5.95",
"ask_size": "961",
"volume": "4",
"open_interest": "706",
"date": "2025-01-24",
"implied_volatility": "0.23156",
"delta": "0.20822",
"gamma": "0.00557",
"theta": "-0.09338",
"vega": "0.63754",
"rho": "0.40455"
},
{
"contractID": "IBM260116P00290000",
"symbol": "IBM",
"expiration": "2026-01-16",
"strike": "290.00",
"type": "put",
"last": "0.00",
"mark": "68.38",
"bid": "68.00",
"bid_size": "10",
"ask": "68.75",
"ask_size": "20",
"volume": "0",
"open_interest": "12",
"date": "2025-01-24",
"implied_volatility": "0.36281",
"delta": "-0.65995",
"gamma": "0.00454",
"theta": "-0.05725",
"vega": "0.81466",
"rho": "-2.11983"
},
{
"contractID": "IBM260116C00300000",
"symbol": "IBM",
"expiration": "2026-01-16",
"strike": "300.00",
"type": "call",
"last": "4.18",
"mark": "3.90",
"bid": "3.55",
"bid_size": "303",
"ask": "4.25",
"ask_size": "30",
"volume": "5",
"open_interest": "821",
"date": "2025-01-24",
"implied_volatility": "0.22653",
"delta": "0.16182",
"gamma": "0.00487",
"theta": "-0.07717",
"vega": "0.54495",
"rho": "0.31766"
},
{
"contractID": "IBM260116P00300000",
"symbol": "IBM",
"expiration": "2026-01-16",
"strike": "300.00",
"type": "put",
"last": "0.00",
"mark": "77.78",
"bid": "76.95",
"bid_size": "45",
"ask": "78.60",
"ask_size": "71",
"volume": "0",
"open_interest": "20",
"date": "2025-01-24",
"implied_volatility": "0.38552",
"delta": "-0.67550",
"gamma": "0.00420",
"theta": "-0.05817",
"vega": "0.79967",
"rho": "-2.24595"
},
{
"contractID": "IBM260116C00310000",
"symbol": "IBM",
"expiration": "2026-01-16",
"strike": "310.00",
"type": "call",
"last": "3.29",
"mark": "3.23",
"bid": "3.10",
"bid_size": "20",
"ask": "3.35",
"ask_size": "20",
"volume": "3",
"open_interest": "259",
"date": "2025-01-24",
"implied_volatility": "0.23248",
"delta": "0.13598",
"gamma": "0.00422",
"theta": "-0.06949",
"vega": "0.48510",
"rho": "0.26741"
},
{
"contractID": "IBM260116P00310000",
"symbol": "IBM",
"expiration": "2026-01-16",
"strike": "310.00",
"type": "put",
"last": "0.00",
"mark": "87.95",
"bid": "86.50",
"bid_size": "32",
"ask": "89.40",
"ask_size": "72",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.41632",
"delta": "-0.68146",
"gamma": "0.00386",
"theta": "-0.06447",
"vega": "0.79352",
"rho": "-2.35855"
},
{
"contractID": "IBM260116C00320000",
"symbol": "IBM",
"expiration": "2026-01-16",
"strike": "320.00",
"type": "call",
"last": "2.85",
"mark": "2.44",
"bid": "2.19",
"bid_size": "422",
"ask": "2.69",
"ask_size": "30",
"volume": "2",
"open_interest": "732",
"date": "2025-01-24",
"implied_volatility": "0.23233",
"delta": "0.10793",
"gamma": "0.00359",
"theta": "-0.05842",
"vega": "0.41237",
"rho": "0.21341"
},
{
"contractID": "IBM260116P00320000",
"symbol": "IBM",
"expiration": "2026-01-16",
"strike": "320.00",
"type": "put",
"last": "0.00",
"mark": "96.72",
"bid": "95.30",
"bid_size": "96",
"ask": "98.15",
"ask_size": "80",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.42790",
"delta": "-0.69942",
"gamma": "0.00366",
"theta": "-0.05928",
"vega": "0.77367",
"rho": "-2.48378"
},
{
"contractID": "IBM260116C00330000",
"symbol": "IBM",
"expiration": "2026-01-16",
"strike": "330.00",
"type": "call",
"last": "2.30",
"mark": "2.05",
"bid": "1.70",
"bid_size": "368",
"ask": "2.40",
"ask_size": "698",
"volume": "2",
"open_interest": "337",
"date": "2025-01-24",
"implied_volatility": "0.23812",
"delta": "0.09135",
"gamma": "0.00310",
"theta": "-0.05244",
"vega": "0.36503",
"rho": "0.18080"
},
{
"contractID": "IBM260116P00330000",
"symbol": "IBM",
"expiration": "2026-01-16",
"strike": "330.00",
"type": "put",
"last": "0.00",
"mark": "106.80",
"bid": "105.40",
"bid_size": "70",
"ask": "108.20",
"ask_size": "70",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.45519",
"delta": "-0.70318",
"gamma": "0.00342",
"theta": "-0.06431",
"vega": "0.76925",
"rho": "-2.59072"
},
{
"contractID": "IBM260116C00340000",
"symbol": "IBM",
"expiration": "2026-01-16",
"strike": "340.00",
"type": "call",
"last": "1.68",
"mark": "1.51",
"bid": "1.27",
"bid_size": "431",
"ask": "1.75",
"ask_size": "47",
"volume": "0",
"open_interest": "520",
"date": "2025-01-24",
"implied_volatility": "0.23660",
"delta": "0.07075",
"gamma": "0.00257",
"theta": "-0.04264",
"vega": "0.30098",
"rho": "0.14081"
},
{
"contractID": "IBM260116P00340000",
"symbol": "IBM",
"expiration": "2026-01-16",
"strike": "340.00",
"type": "put",
"last": "0.00",
"mark": "116.47",
"bid": "114.80",
"bid_size": "72",
"ask": "118.15",
"ask_size": "92",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.47607",
"delta": "-0.71000",
"gamma": "0.00323",
"theta": "-0.06567",
"vega": "0.76102",
"rho": "-2.70030"
},
{
"contractID": "IBM260116C00350000",
"symbol": "IBM",
"expiration": "2026-01-16",
"strike": "350.00",
"type": "call",
"last": "1.28",
"mark": "1.29",
"bid": "1.20",
"bid_size": "5",
"ask": "1.37",
"ask_size": "11",
"volume": "12",
"open_interest": "158",
"date": "2025-01-24",
"implied_volatility": "0.24254",
"delta": "0.06067",
"gamma": "0.00223",
"theta": "-0.03847",
"vega": "0.26714",
"rho": "0.12076"
},
{
"contractID": "IBM260116P00350000",
"symbol": "IBM",
"expiration": "2026-01-16",
"strike": "350.00",
"type": "put",
"last": "0.00",
"mark": "126.47",
"bid": "125.05",
"bid_size": "70",
"ask": "127.90",
"ask_size": "70",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.50031",
"delta": "-0.71286",
"gamma": "0.00306",
"theta": "-0.06958",
"vega": "0.75747",
"rho": "-2.80438"
},
{
"contractID": "IBM260320C00115000",
"symbol": "IBM",
"expiration": "2026-03-20",
"strike": "115.00",
"type": "call",
"last": "0.00",
"mark": "109.78",
"bid": "107.60",
"bid_size": "75",
"ask": "111.95",
"ask_size": "99",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.01862",
"delta": "1.00000",
"gamma": "0.00000",
"theta": "-0.04737",
"vega": "0.00000",
"rho": "1.25897"
},
{
"contractID": "IBM260320P00115000",
"symbol": "IBM",
"expiration": "2026-03-20",
"strike": "115.00",
"type": "put",
"last": "0.00",
"mark": "0.01",
"bid": "0.00",
"bid_size": "0",
"ask": "5.00",
"ask_size": "74",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.21708",
"delta": "-0.00067",
"gamma": "0.00004",
"theta": "-0.00046",
"vega": "0.00559",
"rho": "-0.00184"
},
{
"contractID": "IBM260320C00120000",
"symbol": "IBM",
"expiration": "2026-03-20",
"strike": "120.00",
"type": "call",
"last": "0.00",
"mark": "104.97",
"bid": "103.10",
"bid_size": "74",
"ask": "106.85",
"ask_size": "96",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.01777",
"delta": "1.00000",
"gamma": "0.00000",
"theta": "-0.04943",
"vega": "0.00000",
"rho": "1.31371"
},
{
"contractID": "IBM260320P00120000",
"symbol": "IBM",
"expiration": "2026-03-20",
"strike": "120.00",
"type": "put",
"last": "0.00",
"mark": "0.01",
"bid": "0.00",
"bid_size": "0",
"ask": "5.00",
"ask_size": "74",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.20489",
"delta": "-0.00070",
"gamma": "0.00005",
"theta": "-0.00045",
"vega": "0.00589",
"rho": "-0.00194"
},
{
"contractID": "IBM260320C00125000",
"symbol": "IBM",
"expiration": "2026-03-20",
"strike": "125.00",
"type": "call",
"last": "0.00",
"mark": "100.28",
"bid": "98.10",
"bid_size": "76",
"ask": "102.45",
"ask_size": "96",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.01692",
"delta": "1.00000",
"gamma": "0.00000",
"theta": "-0.05149",
"vega": "0.00000",
"rho": "1.36845"
},
{
"contractID": "IBM260320P00125000",
"symbol": "IBM",
"expiration": "2026-03-20",
"strike": "125.00",
"type": "put",
"last": "0.00",
"mark": "0.01",
"bid": "0.00",
"bid_size": "0",
"ask": "5.00",
"ask_size": "74",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.19330",
"delta": "-0.00075",
"gamma": "0.00006",
"theta": "-0.00045",
"vega": "0.00624",
"rho": "-0.00206"
},
{
"contractID": "IBM260320C00130000",
"symbol": "IBM",
"expiration": "2026-03-20",
"strike": "130.00",
"type": "call",
"last": "0.00",
"mark": "95.50",
"bid": "93.60",
"bid_size": "99",
"ask": "97.40",
"ask_size": "99",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.01608",
"delta": "1.00000",
"gamma": "0.00000",
"theta": "-0.05355",
"vega": "0.00000",
"rho": "1.42318"
},
{
"contractID": "IBM260320P00130000",
"symbol": "IBM",
"expiration": "2026-03-20",
"strike": "130.00",
"type": "put",
"last": "0.00",
"mark": "0.01",
"bid": "0.00",
"bid_size": "0",
"ask": "5.00",
"ask_size": "74",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.18202",
"delta": "-0.00080",
"gamma": "0.00006",
"theta": "-0.00044",
"vega": "0.00658",
"rho": "-0.00217"
},
{
"contractID": "IBM260320C00135000",
"symbol": "IBM",
"expiration": "2026-03-20",
"strike": "135.00",
"type": "call",
"last": "0.00",
"mark": "90.70",
"bid": "88.55",
"bid_size": "76",
"ask": "92.85",
"ask_size": "96",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.01523",
"delta": "1.00000",
"gamma": "0.00000",
"theta": "-0.05561",
"vega": "0.00000",
"rho": "1.47792"
},
{
"contractID": "IBM260320P00135000",
"symbol": "IBM",
"expiration": "2026-03-20",
"strike": "135.00",
"type": "put",
"last": "0.00",
"mark": "0.01",
"bid": "0.00",
"bid_size": "0",
"ask": "5.00",
"ask_size": "74",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.17120",
"delta": "-0.00085",
"gamma": "0.00007",
"theta": "-0.00043",
"vega": "0.00696",
"rho": "-0.00230"
},
{
"contractID": "IBM260320C00140000",
"symbol": "IBM",
"expiration": "2026-03-20",
"strike": "140.00",
"type": "call",
"last": "0.00",
"mark": "86.65",
"bid": "85.55",
"bid_size": "72",
"ask": "87.75",
"ask_size": "29",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.01438",
"delta": "1.00000",
"gamma": "0.00000",
"theta": "-0.05767",
"vega": "0.00000",
"rho": "1.53266"
},
{
"contractID": "IBM260320P00140000",
"symbol": "IBM",
"expiration": "2026-03-20",
"strike": "140.00",
"type": "put",
"last": "0.00",
"mark": "0.01",
"bid": "0.00",
"bid_size": "0",
"ask": "3.35",
"ask_size": "95",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.16068",
"delta": "-0.00090",
"gamma": "0.00008",
"theta": "-0.00042",
"vega": "0.00734",
"rho": "-0.00243"
},
{
"contractID": "IBM260320C00145000",
"symbol": "IBM",
"expiration": "2026-03-20",
"strike": "145.00",
"type": "call",
"last": "0.00",
"mark": "82.33",
"bid": "81.25",
"bid_size": "53",
"ask": "83.40",
"ask_size": "45",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.01353",
"delta": "1.00000",
"gamma": "0.00000",
"theta": "-0.05973",
"vega": "0.00000",
"rho": "1.58740"
},
{
"contractID": "IBM260320P00145000",
"symbol": "IBM",
"expiration": "2026-03-20",
"strike": "145.00",
"type": "put",
"last": "0.00",
"mark": "0.01",
"bid": "0.00",
"bid_size": "0",
"ask": "3.25",
"ask_size": "91",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.15062",
"delta": "-0.00096",
"gamma": "0.00009",
"theta": "-0.00041",
"vega": "0.00781",
"rho": "-0.00259"
},
{
"contractID": "IBM260320C00150000",
"symbol": "IBM",
"expiration": "2026-03-20",
"strike": "150.00",
"type": "call",
"last": "0.00",
"mark": "78.00",
"bid": "76.90",
"bid_size": "39",
"ask": "79.10",
"ask_size": "38",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.01269",
"delta": "1.00000",
"gamma": "0.00000",
"theta": "-0.06179",
"vega": "0.00000",
"rho": "1.64214"
},
{
"contractID": "IBM260320P00150000",
"symbol": "IBM",
"expiration": "2026-03-20",
"strike": "150.00",
"type": "put",
"last": "0.00",
"mark": "2.90",
"bid": "2.44",
"bid_size": "77",
"ask": "3.35",
"ask_size": "30",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.32836",
"delta": "-0.07130",
"gamma": "0.00172",
"theta": "-0.03866",
"vega": "0.32839",
"rho": "-0.21783"
},
{
"contractID": "IBM260320C00155000",
"symbol": "IBM",
"expiration": "2026-03-20",
"strike": "155.00",
"type": "call",
"last": "0.00",
"mark": "73.72",
"bid": "72.55",
"bid_size": "41",
"ask": "74.90",
"ask_size": "41",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.01184",
"delta": "1.00000",
"gamma": "0.00000",
"theta": "-0.06385",
"vega": "0.00000",
"rho": "1.69687"
},
{
"contractID": "IBM260320P00155000",
"symbol": "IBM",
"expiration": "2026-03-20",
"strike": "155.00",
"type": "put",
"last": "0.00",
"mark": "3.08",
"bid": "2.27",
"bid_size": "91",
"ask": "3.90",
"ask_size": "30",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.31449",
"delta": "-0.07803",
"gamma": "0.00192",
"theta": "-0.03915",
"vega": "0.35180",
"rho": "-0.23727"
},
{
"contractID": "IBM260320C00160000",
"symbol": "IBM",
"expiration": "2026-03-20",
"strike": "160.00",
"type": "call",
"last": "0.00",
"mark": "69.45",
"bid": "68.15",
"bid_size": "47",
"ask": "70.75",
"ask_size": "45",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.01099",
"delta": "1.00000",
"gamma": "0.00000",
"theta": "-0.06591",
"vega": "0.00000",
"rho": "1.75161"
},
{
"contractID": "IBM260320P00160000",
"symbol": "IBM",
"expiration": "2026-03-20",
"strike": "160.00",
"type": "put",
"last": "0.00",
"mark": "3.40",
"bid": "2.29",
"bid_size": "91",
"ask": "4.50",
"ask_size": "40",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.30443",
"delta": "-0.08737",
"gamma": "0.00216",
"theta": "-0.04069",
"vega": "0.38304",
"rho": "-0.26515"
},
{
"contractID": "IBM260320C00165000",
"symbol": "IBM",
"expiration": "2026-03-20",
"strike": "165.00",
"type": "call",
"last": "0.00",
"mark": "65.30",
"bid": "64.25",
"bid_size": "40",
"ask": "66.35",
"ask_size": "40",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.01014",
"delta": "1.00000",
"gamma": "0.00000",
"theta": "-0.06797",
"vega": "0.00000",
"rho": "1.80635"
},
{
"contractID": "IBM260320P00165000",
"symbol": "IBM",
"expiration": "2026-03-20",
"strike": "165.00",
"type": "put",
"last": "0.00",
"mark": "4.00",
"bid": "2.79",
"bid_size": "91",
"ask": "5.20",
"ask_size": "40",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.30031",
"delta": "-0.10102",
"gamma": "0.00244",
"theta": "-0.04407",
"vega": "0.42635",
"rho": "-0.30733"
},
{
"contractID": "IBM260320C00170000",
"symbol": "IBM",
"expiration": "2026-03-20",
"strike": "170.00",
"type": "call",
"last": "0.00",
"mark": "61.60",
"bid": "60.30",
"bid_size": "12",
"ask": "62.90",
"ask_size": "72",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.00929",
"delta": "1.00000",
"gamma": "0.00000",
"theta": "-0.07003",
"vega": "0.00000",
"rho": "1.86109"
},
{
"contractID": "IBM260320P00170000",
"symbol": "IBM",
"expiration": "2026-03-20",
"strike": "170.00",
"type": "put",
"last": "5.10",
"mark": "5.20",
"bid": "4.40",
"bid_size": "91",
"ask": "6.00",
"ask_size": "40",
"volume": "5",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.30717",
"delta": "-0.12222",
"gamma": "0.00274",
"theta": "-0.05107",
"vega": "0.48865",
"rho": "-0.37597"
},
{
"contractID": "IBM260320C00175000",
"symbol": "IBM",
"expiration": "2026-03-20",
"strike": "175.00",
"type": "call",
"last": "0.00",
"mark": "57.38",
"bid": "56.30",
"bid_size": "40",
"ask": "58.45",
"ask_size": "40",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.00845",
"delta": "1.00000",
"gamma": "0.00000",
"theta": "-0.07209",
"vega": "0.00000",
"rho": "1.91583"
},
{
"contractID": "IBM260320P00175000",
"symbol": "IBM",
"expiration": "2026-03-20",
"strike": "175.00",
"type": "put",
"last": "0.00",
"mark": "6.40",
"bid": "5.85",
"bid_size": "31",
"ask": "6.95",
"ask_size": "40",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.31053",
"delta": "-0.14278",
"gamma": "0.00301",
"theta": "-0.05672",
"vega": "0.54392",
"rho": "-0.44298"
},
{
"contractID": "IBM260320C00180000",
"symbol": "IBM",
"expiration": "2026-03-20",
"strike": "180.00",
"type": "call",
"last": "0.00",
"mark": "53.58",
"bid": "52.50",
"bid_size": "40",
"ask": "54.65",
"ask_size": "40",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.09803",
"delta": "0.99585",
"gamma": "0.00052",
"theta": "-0.07499",
"vega": "0.02950",
"rho": "1.95948"
},
{
"contractID": "IBM260320P00180000",
"symbol": "IBM",
"expiration": "2026-03-20",
"strike": "180.00",
"type": "put",
"last": "0.00",
"mark": "7.38",
"bid": "6.85",
"bid_size": "20",
"ask": "7.90",
"ask_size": "12",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.30748",
"delta": "-0.16113",
"gamma": "0.00330",
"theta": "-0.05987",
"vega": "0.58944",
"rho": "-0.50177"
},
{
"contractID": "IBM260320C00185000",
"symbol": "IBM",
"expiration": "2026-03-20",
"strike": "185.00",
"type": "call",
"last": "0.00",
"mark": "50.33",
"bid": "48.90",
"bid_size": "40",
"ask": "51.75",
"ask_size": "73",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.17090",
"delta": "0.92312",
"gamma": "0.00350",
"theta": "-0.09389",
"vega": "0.34785",
"rho": "1.80875"
},
{
"contractID": "IBM260320P00185000",
"symbol": "IBM",
"expiration": "2026-03-20",
"strike": "185.00",
"type": "put",
"last": "0.00",
"mark": "8.55",
"bid": "7.95",
"bid_size": "20",
"ask": "9.15",
"ask_size": "20",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.30580",
"delta": "-0.18143",
"gamma": "0.00358",
"theta": "-0.06313",
"vega": "0.63591",
"rho": "-0.56774"
},
{
"contractID": "IBM260320C00190000",
"symbol": "IBM",
"expiration": "2026-03-20",
"strike": "190.00",
"type": "call",
"last": "0.00",
"mark": "46.27",
"bid": "44.25",
"bid_size": "72",
"ask": "48.30",
"ask_size": "72",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.17379",
"delta": "0.89664",
"gamma": "0.00429",
"theta": "-0.09998",
"vega": "0.43351",
"rho": "1.78693"
},
{
"contractID": "IBM260320P00190000",
"symbol": "IBM",
"expiration": "2026-03-20",
"strike": "190.00",
"type": "put",
"last": "0.00",
"mark": "9.95",
"bid": "9.20",
"bid_size": "20",
"ask": "10.70",
"ask_size": "70",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.30580",
"delta": "-0.20366",
"gamma": "0.00384",
"theta": "-0.06655",
"vega": "0.68248",
"rho": "-0.64134"
},
{
"contractID": "IBM260320C00195000",
"symbol": "IBM",
"expiration": "2026-03-20",
"strike": "195.00",
"type": "call",
"last": "0.00",
"mark": "42.95",
"bid": "42.00",
"bid_size": "40",
"ask": "43.90",
"ask_size": "11",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.18675",
"delta": "0.85515",
"gamma": "0.00506",
"theta": "-0.10921",
"vega": "0.54923",
"rho": "1.71781"
},
{
"contractID": "IBM260320P00195000",
"symbol": "IBM",
"expiration": "2026-03-20",
"strike": "195.00",
"type": "put",
"last": "10.80",
"mark": "11.90",
"bid": "10.65",
"bid_size": "20",
"ask": "13.15",
"ask_size": "73",
"volume": "1",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.31144",
"delta": "-0.22909",
"gamma": "0.00403",
"theta": "-0.07142",
"vega": "0.73060",
"rho": "-0.72949"
},
{
"contractID": "IBM260320C00200000",
"symbol": "IBM",
"expiration": "2026-03-20",
"strike": "200.00",
"type": "call",
"last": "0.00",
"mark": "39.80",
"bid": "38.85",
"bid_size": "40",
"ask": "40.75",
"ask_size": "40",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.19605",
"delta": "0.81538",
"gamma": "0.00564",
"theta": "-0.11690",
"vega": "0.64285",
"rho": "1.65123"
},
{
"contractID": "IBM260320P00200000",
"symbol": "IBM",
"expiration": "2026-03-20",
"strike": "200.00",
"type": "put",
"last": "0.00",
"mark": "12.90",
"bid": "12.25",
"bid_size": "21",
"ask": "13.55",
"ask_size": "40",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.30245",
"delta": "-0.24949",
"gamma": "0.00435",
"theta": "-0.07073",
"vega": "0.76547",
"rho": "-0.79380"
},
{
"contractID": "IBM260320C00210000",
"symbol": "IBM",
"expiration": "2026-03-20",
"strike": "210.00",
"type": "call",
"last": "0.00",
"mark": "33.80",
"bid": "32.85",
"bid_size": "112",
"ask": "34.75",
"ask_size": "40",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.20641",
"delta": "0.73999",
"gamma": "0.00652",
"theta": "-0.12755",
"vega": "0.78220",
"rho": "1.52526"
},
{
"contractID": "IBM260320P00210000",
"symbol": "IBM",
"expiration": "2026-03-20",
"strike": "210.00",
"type": "put",
"last": "0.00",
"mark": "16.55",
"bid": "15.85",
"bid_size": "20",
"ask": "17.25",
"ask_size": "40",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.30153",
"delta": "-0.29933",
"gamma": "0.00478",
"theta": "-0.07344",
"vega": "0.83759",
"rho": "-0.96470"
},
{
"contractID": "IBM260320C00220000",
"symbol": "IBM",
"expiration": "2026-03-20",
"strike": "220.00",
"type": "call",
"last": "0.00",
"mark": "27.93",
"bid": "26.50",
"bid_size": "500",
"ask": "29.35",
"ask_size": "40",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.20718",
"delta": "0.66729",
"gamma": "0.00727",
"theta": "-0.13173",
"vega": "0.87615",
"rho": "1.40472"
},
{
"contractID": "IBM260320P00220000",
"symbol": "IBM",
"expiration": "2026-03-20",
"strike": "220.00",
"type": "put",
"last": "0.00",
"mark": "20.88",
"bid": "20.15",
"bid_size": "13",
"ask": "21.60",
"ask_size": "20",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.30229",
"delta": "-0.35110",
"gamma": "0.00509",
"theta": "-0.07424",
"vega": "0.89421",
"rho": "-1.14846"
},
{
"contractID": "IBM260320C00230000",
"symbol": "IBM",
"expiration": "2026-03-20",
"strike": "230.00",
"type": "call",
"last": "0.00",
"mark": "23.40",
"bid": "21.20",
"bid_size": "590",
"ask": "25.60",
"ask_size": "70",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.21403",
"delta": "0.59181",
"gamma": "0.00752",
"theta": "-0.13456",
"vega": "0.93643",
"rho": "1.26159"
},
{
"contractID": "IBM260320P00230000",
"symbol": "IBM",
"expiration": "2026-03-20",
"strike": "230.00",
"type": "put",
"last": "0.00",
"mark": "25.90",
"bid": "25.10",
"bid_size": "21",
"ask": "26.70",
"ask_size": "40",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.30473",
"delta": "-0.40288",
"gamma": "0.00527",
"theta": "-0.07316",
"vega": "0.93337",
"rho": "-1.34023"
},
{
"contractID": "IBM260320C00240000",
"symbol": "IBM",
"expiration": "2026-03-20",
"strike": "240.00",
"type": "call",
"last": "0.00",
"mark": "19.73",
"bid": "18.80",
"bid_size": "30",
"ask": "20.65",
"ask_size": "40",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.22181",
"delta": "0.52129",
"gamma": "0.00745",
"theta": "-0.13479",
"vega": "0.96065",
"rho": "1.12136"
},
{
"contractID": "IBM260320P00240000",
"symbol": "IBM",
"expiration": "2026-03-20",
"strike": "240.00",
"type": "put",
"last": "0.00",
"mark": "31.58",
"bid": "30.70",
"bid_size": "41",
"ask": "32.45",
"ask_size": "40",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.30854",
"delta": "-0.45290",
"gamma": "0.00532",
"theta": "-0.07032",
"vega": "0.95531",
"rho": "-1.53492"
},
{
"contractID": "IBM260320C00250000",
"symbol": "IBM",
"expiration": "2026-03-20",
"strike": "250.00",
"type": "call",
"last": "0.00",
"mark": "16.50",
"bid": "15.35",
"bid_size": "160",
"ask": "17.65",
"ask_size": "65",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.22714",
"delta": "0.45631",
"gamma": "0.00724",
"theta": "-0.13165",
"vega": "0.95624",
"rho": "0.99046"
},
{
"contractID": "IBM260320P00250000",
"symbol": "IBM",
"expiration": "2026-03-20",
"strike": "250.00",
"type": "put",
"last": "0.00",
"mark": "38.27",
"bid": "37.00",
"bid_size": "40",
"ask": "39.55",
"ask_size": "73",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.31800",
"delta": "-0.49795",
"gamma": "0.00520",
"theta": "-0.06788",
"vega": "0.96201",
"rho": "-1.72850"
},
{
"contractID": "IBM260320C00260000",
"symbol": "IBM",
"expiration": "2026-03-20",
"strike": "260.00",
"type": "call",
"last": "0.00",
"mark": "13.50",
"bid": "11.75",
"bid_size": "602",
"ask": "15.25",
"ask_size": "72",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.22882",
"delta": "0.39476",
"gamma": "0.00698",
"theta": "-0.12489",
"vega": "0.92835",
"rho": "0.86583"
},
{
"contractID": "IBM260320P00260000",
"symbol": "IBM",
"expiration": "2026-03-20",
"strike": "260.00",
"type": "put",
"last": "0.00",
"mark": "44.92",
"bid": "44.00",
"bid_size": "40",
"ask": "45.85",
"ask_size": "40",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.32257",
"delta": "-0.54118",
"gamma": "0.00510",
"theta": "-0.06199",
"vega": "0.95689",
"rho": "-1.91685"
},
{
"contractID": "IBM260320C00270000",
"symbol": "IBM",
"expiration": "2026-03-20",
"strike": "270.00",
"type": "call",
"last": "0.00",
"mark": "9.97",
"bid": "8.45",
"bid_size": "784",
"ask": "11.50",
"ask_size": "40",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.21876",
"delta": "0.32597",
"gamma": "0.00683",
"theta": "-0.11001",
"vega": "0.86896",
"rho": "0.72843"
},
{
"contractID": "IBM260320P00270000",
"symbol": "IBM",
"expiration": "2026-03-20",
"strike": "270.00",
"type": "put",
"last": "0.00",
"mark": "53.10",
"bid": "51.55",
"bid_size": "40",
"ask": "54.65",
"ask_size": "71",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.33934",
"delta": "-0.57316",
"gamma": "0.00479",
"theta": "-0.06067",
"vega": "0.94580",
"rho": "-2.09364"
},
{
"contractID": "IBM260320C00280000",
"symbol": "IBM",
"expiration": "2026-03-20",
"strike": "280.00",
"type": "call",
"last": "0.00",
"mark": "9.35",
"bid": "8.00",
"bid_size": "11",
"ask": "10.70",
"ask_size": "71",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.23705",
"delta": "0.29445",
"gamma": "0.00603",
"theta": "-0.11024",
"vega": "0.83131",
"rho": "0.65411"
},
{
"contractID": "IBM260320P00280000",
"symbol": "IBM",
"expiration": "2026-03-20",
"strike": "280.00",
"type": "put",
"last": "0.00",
"mark": "60.50",
"bid": "59.60",
"bid_size": "40",
"ask": "61.40",
"ask_size": "40",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.34467",
"delta": "-0.60806",
"gamma": "0.00462",
"theta": "-0.05338",
"vega": "0.92651",
"rho": "-2.26898"
},
{
"contractID": "IBM260320C00290000",
"symbol": "IBM",
"expiration": "2026-03-20",
"strike": "290.00",
"type": "call",
"last": "0.00",
"mark": "6.28",
"bid": "4.75",
"bid_size": "830",
"ask": "7.80",
"ask_size": "40",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.22074",
"delta": "0.22762",
"gamma": "0.00567",
"theta": "-0.08926",
"vega": "0.72797",
"rho": "0.51649"
},
{
"contractID": "IBM260320P00290000",
"symbol": "IBM",
"expiration": "2026-03-20",
"strike": "290.00",
"type": "put",
"last": "0.00",
"mark": "69.72",
"bid": "68.30",
"bid_size": "40",
"ask": "71.15",
"ask_size": "72",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.36723",
"delta": "-0.62667",
"gamma": "0.00428",
"theta": "-0.05452",
"vega": "0.91311",
"rho": "-2.42333"
},
{
"contractID": "IBM260320C00300000",
"symbol": "IBM",
"expiration": "2026-03-20",
"strike": "300.00",
"type": "call",
"last": "0.00",
"mark": "4.95",
"bid": "3.55",
"bid_size": "906",
"ask": "6.35",
"ask_size": "40",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.22150",
"delta": "0.18781",
"gamma": "0.00504",
"theta": "-0.07867",
"vega": "0.64972",
"rho": "0.42890"
},
{
"contractID": "IBM260320P00300000",
"symbol": "IBM",
"expiration": "2026-03-20",
"strike": "300.00",
"type": "put",
"last": "0.00",
"mark": "78.07",
"bid": "77.35",
"bid_size": "40",
"ask": "78.80",
"ask_size": "40",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.37806",
"delta": "-0.65023",
"gamma": "0.00406",
"theta": "-0.04959",
"vega": "0.89298",
"rho": "-2.58035"
},
{
"contractID": "IBM260320C00310000",
"symbol": "IBM",
"expiration": "2026-03-20",
"strike": "310.00",
"type": "call",
"last": "0.00",
"mark": "4.79",
"bid": "2.84",
"bid_size": "981",
"ask": "6.75",
"ask_size": "72",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.23751",
"delta": "0.17402",
"gamma": "0.00448",
"theta": "-0.07879",
"vega": "0.61940",
"rho": "0.39504"
},
{
"contractID": "IBM260320P00310000",
"symbol": "IBM",
"expiration": "2026-03-20",
"strike": "310.00",
"type": "put",
"last": "0.00",
"mark": "88.05",
"bid": "86.70",
"bid_size": "52",
"ask": "89.40",
"ask_size": "71",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.40534",
"delta": "-0.65803",
"gamma": "0.00376",
"theta": "-0.05379",
"vega": "0.88552",
"rho": "-2.71526"
},
{
"contractID": "IBM260320C00320000",
"symbol": "IBM",
"expiration": "2026-03-20",
"strike": "320.00",
"type": "call",
"last": "0.00",
"mark": "3.54",
"bid": "2.83",
"bid_size": "538",
"ask": "4.25",
"ask_size": "30",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.23278",
"delta": "0.13792",
"gamma": "0.00392",
"theta": "-0.06563",
"vega": "0.53129",
"rho": "0.31605"
},
{
"contractID": "IBM260320P00320000",
"symbol": "IBM",
"expiration": "2026-03-20",
"strike": "320.00",
"type": "put",
"last": "0.00",
"mark": "97.17",
"bid": "95.00",
"bid_size": "84",
"ask": "99.35",
"ask_size": "96",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.42180",
"delta": "-0.67150",
"gamma": "0.00355",
"theta": "-0.05233",
"vega": "0.87170",
"rho": "-2.85517"
},
{
"contractID": "IBM260320C00330000",
"symbol": "IBM",
"expiration": "2026-03-20",
"strike": "330.00",
"type": "call",
"last": "0.00",
"mark": "2.33",
"bid": "0.81",
"bid_size": "754",
"ask": "3.85",
"ask_size": "72",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.22288",
"delta": "0.10067",
"gamma": "0.00328",
"theta": "-0.04998",
"vega": "0.42528",
"rho": "0.23359"
},
{
"contractID": "IBM260320P00330000",
"symbol": "IBM",
"expiration": "2026-03-20",
"strike": "330.00",
"type": "put",
"last": "0.00",
"mark": "106.70",
"bid": "104.55",
"bid_size": "74",
"ask": "108.85",
"ask_size": "74",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.44162",
"delta": "-0.68022",
"gamma": "0.00336",
"theta": "-0.05302",
"vega": "0.86211",
"rho": "-2.98738"
},
{
"contractID": "IBM260618C00110000",
"symbol": "IBM",
"expiration": "2026-06-18",
"strike": "110.00",
"type": "call",
"last": "0.00",
"mark": "114.55",
"bid": "112.75",
"bid_size": "91",
"ask": "116.35",
"ask_size": "6",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.01604",
"delta": "1.00000",
"gamma": "0.00000",
"theta": "-0.04483",
"vega": "0.00000",
"rho": "1.44675"
},
{
"contractID": "IBM260618P00110000",
"symbol": "IBM",
"expiration": "2026-06-18",
"strike": "110.00",
"type": "put",
"last": "0.00",
"mark": "0.01",
"bid": "0.00",
"bid_size": "0",
"ask": "2.39",
"ask_size": "71",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.21129",
"delta": "-0.00062",
"gamma": "0.00004",
"theta": "-0.00037",
"vega": "0.00577",
"rho": "-0.00209"
},
{
"contractID": "IBM260618C00115000",
"symbol": "IBM",
"expiration": "2026-06-18",
"strike": "115.00",
"type": "call",
"last": "0.00",
"mark": "110.38",
"bid": "109.30",
"bid_size": "74",
"ask": "111.45",
"ask_size": "6",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.01534",
"delta": "1.00000",
"gamma": "0.00000",
"theta": "-0.04687",
"vega": "0.00000",
"rho": "1.51252"
},
{
"contractID": "IBM260618P00115000",
"symbol": "IBM",
"expiration": "2026-06-18",
"strike": "115.00",
"type": "put",
"last": "0.00",
"mark": "0.01",
"bid": "0.00",
"bid_size": "0",
"ask": "2.45",
"ask_size": "71",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.19986",
"delta": "-0.00066",
"gamma": "0.00004",
"theta": "-0.00037",
"vega": "0.00611",
"rho": "-0.00221"
},
{
"contractID": "IBM260618C00120000",
"symbol": "IBM",
"expiration": "2026-06-18",
"strike": "120.00",
"type": "call",
"last": "0.00",
"mark": "105.40",
"bid": "104.10",
"bid_size": "92",
"ask": "106.70",
"ask_size": "6",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.01464",
"delta": "1.00000",
"gamma": "0.00000",
"theta": "-0.04891",
"vega": "0.00000",
"rho": "1.57828"
},
{
"contractID": "IBM260618P00120000",
"symbol": "IBM",
"expiration": "2026-06-18",
"strike": "120.00",
"type": "put",
"last": "0.00",
"mark": "1.35",
"bid": "0.39",
"bid_size": "71",
"ask": "2.31",
"ask_size": "71",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.35290",
"delta": "-0.03156",
"gamma": "0.00076",
"theta": "-0.02015",
"vega": "0.18854",
"rho": "-0.11799"
},
{
"contractID": "IBM260618C00125000",
"symbol": "IBM",
"expiration": "2026-06-18",
"strike": "125.00",
"type": "call",
"last": "102.79",
"mark": "100.95",
"bid": "99.85",
"bid_size": "70",
"ask": "102.05",
"ask_size": "70",
"volume": "0",
"open_interest": "5",
"date": "2025-01-24",
"implied_volatility": "0.01394",
"delta": "1.00000",
"gamma": "0.00000",
"theta": "-0.05095",
"vega": "0.00000",
"rho": "1.64404"
},
{
"contractID": "IBM260618P00125000",
"symbol": "IBM",
"expiration": "2026-06-18",
"strike": "125.00",
"type": "put",
"last": "0.00",
"mark": "1.54",
"bid": "0.52",
"bid_size": "71",
"ask": "2.57",
"ask_size": "72",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.34391",
"delta": "-0.03626",
"gamma": "0.00087",
"theta": "-0.02182",
"vega": "0.21138",
"rho": "-0.13543"
},
{
"contractID": "IBM260618C00130000",
"symbol": "IBM",
"expiration": "2026-06-18",
"strike": "130.00",
"type": "call",
"last": "0.00",
"mark": "95.90",
"bid": "94.40",
"bid_size": "96",
"ask": "97.40",
"ask_size": "57",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.01325",
"delta": "1.00000",
"gamma": "0.00000",
"theta": "-0.05299",
"vega": "0.00000",
"rho": "1.70980"
},
{
"contractID": "IBM260618P00130000",
"symbol": "IBM",
"expiration": "2026-06-18",
"strike": "130.00",
"type": "put",
"last": "0.00",
"mark": "1.86",
"bid": "0.73",
"bid_size": "71",
"ask": "3.00",
"ask_size": "71",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.33964",
"delta": "-0.04312",
"gamma": "0.00101",
"theta": "-0.02457",
"vega": "0.24335",
"rho": "-0.16141"
},
{
"contractID": "IBM260618C00135000",
"symbol": "IBM",
"expiration": "2026-06-18",
"strike": "135.00",
"type": "call",
"last": "0.00",
"mark": "90.85",
"bid": "89.25",
"bid_size": "72",
"ask": "92.45",
"ask_size": "8",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.01255",
"delta": "1.00000",
"gamma": "0.00000",
"theta": "-0.05502",
"vega": "0.00000",
"rho": "1.77556"
},
{
"contractID": "IBM260618P00135000",
"symbol": "IBM",
"expiration": "2026-06-18",
"strike": "135.00",
"type": "put",
"last": "0.00",
"mark": "2.35",
"bid": "2.06",
"bid_size": "20",
"ask": "2.64",
"ask_size": "2",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.33995",
"delta": "-0.05256",
"gamma": "0.00119",
"theta": "-0.02856",
"vega": "0.28518",
"rho": "-0.19795"
},
{
"contractID": "IBM260618C00140000",
"symbol": "IBM",
"expiration": "2026-06-18",
"strike": "140.00",
"type": "call",
"last": "0.00",
"mark": "87.28",
"bid": "86.40",
"bid_size": "46",
"ask": "88.15",
"ask_size": "6",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.01185",
"delta": "1.00000",
"gamma": "0.00000",
"theta": "-0.05706",
"vega": "0.00000",
"rho": "1.84132"
},
{
"contractID": "IBM260618P00140000",
"symbol": "IBM",
"expiration": "2026-06-18",
"strike": "140.00",
"type": "put",
"last": "0.00",
"mark": "2.75",
"bid": "2.25",
"bid_size": "72",
"ask": "3.25",
"ask_size": "8",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.33476",
"delta": "-0.06087",
"gamma": "0.00135",
"theta": "-0.03123",
"vega": "0.32013",
"rho": "-0.22962"
},
{
"contractID": "IBM260618C00145000",
"symbol": "IBM",
"expiration": "2026-06-18",
"strike": "145.00",
"type": "call",
"last": "0.00",
"mark": "82.92",
"bid": "82.00",
"bid_size": "45",
"ask": "83.85",
"ask_size": "8",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.01115",
"delta": "1.00000",
"gamma": "0.00000",
"theta": "-0.05910",
"vega": "0.00000",
"rho": "1.90708"
},
{
"contractID": "IBM260618P00145000",
"symbol": "IBM",
"expiration": "2026-06-18",
"strike": "145.00",
"type": "put",
"last": "0.00",
"mark": "3.52",
"bid": "2.80",
"bid_size": "35",
"ask": "4.25",
"ask_size": "95",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.33857",
"delta": "-0.07396",
"gamma": "0.00156",
"theta": "-0.03637",
"vega": "0.37218",
"rho": "-0.28153"
},
{
"contractID": "IBM260618C00150000",
"symbol": "IBM",
"expiration": "2026-06-18",
"strike": "150.00",
"type": "call",
"last": "0.00",
"mark": "77.80",
"bid": "76.15",
"bid_size": "70",
"ask": "79.45",
"ask_size": "9",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.01045",
"delta": "1.00000",
"gamma": "0.00000",
"theta": "-0.06114",
"vega": "0.00000",
"rho": "1.97285"
},
{
"contractID": "IBM260618P00150000",
"symbol": "IBM",
"expiration": "2026-06-18",
"strike": "150.00",
"type": "put",
"last": "0.00",
"mark": "3.62",
"bid": "2.90",
"bid_size": "72",
"ask": "4.35",
"ask_size": "34",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.32272",
"delta": "-0.07929",
"gamma": "0.00172",
"theta": "-0.03603",
"vega": "0.39237",
"rho": "-0.29963"
},
{
"contractID": "IBM260618C00155000",
"symbol": "IBM",
"expiration": "2026-06-18",
"strike": "155.00",
"type": "call",
"last": "0.00",
"mark": "74.20",
"bid": "73.45",
"bid_size": "37",
"ask": "74.95",
"ask_size": "7",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.00975",
"delta": "1.00000",
"gamma": "0.00000",
"theta": "-0.06317",
"vega": "0.00000",
"rho": "2.03861"
},
{
"contractID": "IBM260618P00155000",
"symbol": "IBM",
"expiration": "2026-06-18",
"strike": "155.00",
"type": "put",
"last": "0.00",
"mark": "4.33",
"bid": "3.95",
"bid_size": "12",
"ask": "4.70",
"ask_size": "8",
"volume": "0",
"open_interest": "2",
"date": "2025-01-24",
"implied_volatility": "0.32150",
"delta": "-0.09217",
"gamma": "0.00193",
"theta": "-0.03968",
"vega": "0.43920",
"rho": "-0.35002"
},
{
"contractID": "IBM260618C00160000",
"symbol": "IBM",
"expiration": "2026-06-18",
"strike": "160.00",
"type": "call",
"last": "0.00",
"mark": "70.55",
"bid": "68.65",
"bid_size": "72",
"ask": "72.45",
"ask_size": "72",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.00905",
"delta": "1.00000",
"gamma": "0.00000",
"theta": "-0.06521",
"vega": "0.00000",
"rho": "2.10437"
},
{
"contractID": "IBM260618P00160000",
"symbol": "IBM",
"expiration": "2026-06-18",
"strike": "160.00",
"type": "put",
"last": "0.00",
"mark": "5.10",
"bid": "4.65",
"bid_size": "5",
"ask": "5.55",
"ask_size": "10",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.31967",
"delta": "-0.10585",
"gamma": "0.00215",
"theta": "-0.04308",
"vega": "0.48600",
"rho": "-0.40375"
},
{
"contractID": "IBM260618C00165000",
"symbol": "IBM",
"expiration": "2026-06-18",
"strike": "165.00",
"type": "call",
"last": "0.00",
"mark": "66.60",
"bid": "64.70",
"bid_size": "91",
"ask": "68.50",
"ask_size": "78",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.00836",
"delta": "1.00000",
"gamma": "0.00000",
"theta": "-0.06725",
"vega": "0.00000",
"rho": "2.17013"
},
{
"contractID": "IBM260618P00165000",
"symbol": "IBM",
"expiration": "2026-06-18",
"strike": "165.00",
"type": "put",
"last": "0.00",
"mark": "5.75",
"bid": "5.35",
"bid_size": "4",
"ask": "6.15",
"ask_size": "1",
"volume": "0",
"open_interest": "5",
"date": "2025-01-24",
"implied_volatility": "0.31388",
"delta": "-0.11858",
"gamma": "0.00238",
"theta": "-0.04517",
"vega": "0.52711",
"rho": "-0.45281"
},
{
"contractID": "IBM260618C00170000",
"symbol": "IBM",
"expiration": "2026-06-18",
"strike": "170.00",
"type": "call",
"last": "0.00",
"mark": "62.38",
"bid": "61.50",
"bid_size": "28",
"ask": "63.25",
"ask_size": "10",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.00766",
"delta": "1.00000",
"gamma": "0.00000",
"theta": "-0.06929",
"vega": "0.00000",
"rho": "2.23589"
},
{
"contractID": "IBM260618P00170000",
"symbol": "IBM",
"expiration": "2026-06-18",
"strike": "170.00",
"type": "put",
"last": "0.00",
"mark": "5.72",
"bid": "4.10",
"bid_size": "95",
"ask": "7.35",
"ask_size": "21",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.29498",
"delta": "-0.12524",
"gamma": "0.00263",
"theta": "-0.04315",
"vega": "0.54773",
"rho": "-0.47335"
},
{
"contractID": "IBM260618C00175000",
"symbol": "IBM",
"expiration": "2026-06-18",
"strike": "175.00",
"type": "call",
"last": "0.00",
"mark": "58.67",
"bid": "57.95",
"bid_size": "12",
"ask": "59.40",
"ask_size": "40",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.00696",
"delta": "1.00000",
"gamma": "0.00000",
"theta": "-0.07133",
"vega": "0.00000",
"rho": "2.30165"
},
{
"contractID": "IBM260618P00175000",
"symbol": "IBM",
"expiration": "2026-06-18",
"strike": "175.00",
"type": "put",
"last": "0.00",
"mark": "8.43",
"bid": "7.20",
"bid_size": "30",
"ask": "9.65",
"ask_size": "72",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.32165",
"delta": "-0.15676",
"gamma": "0.00281",
"theta": "-0.05452",
"vega": "0.63792",
"rho": "-0.61020"
},
{
"contractID": "IBM260618C00180000",
"symbol": "IBM",
"expiration": "2026-06-18",
"strike": "180.00",
"type": "call",
"last": "55.51",
"mark": "54.62",
"bid": "53.50",
"bid_size": "73",
"ask": "55.75",
"ask_size": "40",
"volume": "0",
"open_interest": "2",
"date": "2025-01-24",
"implied_volatility": "0.00626",
"delta": "1.00000",
"gamma": "0.00000",
"theta": "-0.07336",
"vega": "0.00000",
"rho": "2.36742"
},
{
"contractID": "IBM260618P00180000",
"symbol": "IBM",
"expiration": "2026-06-18",
"strike": "180.00",
"type": "put",
"last": "8.90",
"mark": "9.53",
"bid": "8.30",
"bid_size": "30",
"ask": "10.75",
"ask_size": "74",
"volume": "1",
"open_interest": "1",
"date": "2025-01-24",
"implied_volatility": "0.31861",
"delta": "-0.17384",
"gamma": "0.00303",
"theta": "-0.05672",
"vega": "0.68209",
"rho": "-0.67919"
},
{
"contractID": "IBM260618C00185000",
"symbol": "IBM",
"expiration": "2026-06-18",
"strike": "185.00",
"type": "call",
"last": "0.00",
"mark": "51.12",
"bid": "50.05",
"bid_size": "67",
"ask": "52.20",
"ask_size": "40",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.12303",
"delta": "0.96627",
"gamma": "0.00229",
"theta": "-0.08069",
"vega": "0.19919",
"rho": "2.32083"
},
{
"contractID": "IBM260618P00185000",
"symbol": "IBM",
"expiration": "2026-06-18",
"strike": "185.00",
"type": "put",
"last": "9.61",
"mark": "11.00",
"bid": "9.60",
"bid_size": "8",
"ask": "12.40",
"ask_size": "71",
"volume": "1",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.31937",
"delta": "-0.19347",
"gamma": "0.00323",
"theta": "-0.05973",
"vega": "0.72913",
"rho": "-0.76132"
},
{
"contractID": "IBM260618C00190000",
"symbol": "IBM",
"expiration": "2026-06-18",
"strike": "190.00",
"type": "call",
"last": "49.30",
"mark": "47.58",
"bid": "46.45",
"bid_size": "72",
"ask": "48.70",
"ask_size": "11",
"volume": "0",
"open_interest": "3",
"date": "2025-01-24",
"implied_volatility": "0.14940",
"delta": "0.91670",
"gamma": "0.00386",
"theta": "-0.09040",
"vega": "0.40726",
"rho": "2.21459"
},
{
"contractID": "IBM260618P00190000",
"symbol": "IBM",
"expiration": "2026-06-18",
"strike": "190.00",
"type": "put",
"last": "0.00",
"mark": "11.68",
"bid": "10.85",
"bid_size": "40",
"ask": "12.50",
"ask_size": "68",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.30839",
"delta": "-0.20908",
"gamma": "0.00351",
"theta": "-0.05889",
"vega": "0.76386",
"rho": "-0.81999"
},
{
"contractID": "IBM260618C00195000",
"symbol": "IBM",
"expiration": "2026-06-18",
"strike": "195.00",
"type": "call",
"last": "44.85",
"mark": "45.20",
"bid": "44.00",
"bid_size": "21",
"ask": "46.40",
"ask_size": "20",
"volume": "0",
"open_interest": "1",
"date": "2025-01-24",
"implied_volatility": "0.18050",
"delta": "0.85469",
"gamma": "0.00476",
"theta": "-0.10280",
"vega": "0.60651",
"rho": "2.05305"
},
{
"contractID": "IBM260618P00195000",
"symbol": "IBM",
"expiration": "2026-06-18",
"strike": "195.00",
"type": "put",
"last": "0.00",
"mark": "12.95",
"bid": "12.15",
"bid_size": "31",
"ask": "13.75",
"ask_size": "17",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.30412",
"delta": "-0.22855",
"gamma": "0.00374",
"theta": "-0.05965",
"vega": "0.80402",
"rho": "-0.89877"
},
{
"contractID": "IBM260618C00200000",
"symbol": "IBM",
"expiration": "2026-06-18",
"strike": "200.00",
"type": "call",
"last": "41.02",
"mark": "41.92",
"bid": "40.15",
"bid_size": "91",
"ask": "43.70",
"ask_size": "61",
"volume": "0",
"open_interest": "13",
"date": "2025-01-24",
"implied_volatility": "0.18644",
"delta": "0.81994",
"gamma": "0.00530",
"theta": "-0.10819",
"vega": "0.69742",
"rho": "1.98965"
},
{
"contractID": "IBM260618P00200000",
"symbol": "IBM",
"expiration": "2026-06-18",
"strike": "200.00",
"type": "put",
"last": "0.00",
"mark": "14.68",
"bid": "13.80",
"bid_size": "31",
"ask": "15.55",
"ask_size": "28",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.30443",
"delta": "-0.25051",
"gamma": "0.00393",
"theta": "-0.06135",
"vega": "0.84533",
"rho": "-0.99201"
},
{
"contractID": "IBM260618C00210000",
"symbol": "IBM",
"expiration": "2026-06-18",
"strike": "210.00",
"type": "call",
"last": "0.00",
"mark": "35.85",
"bid": "34.40",
"bid_size": "201",
"ask": "37.30",
"ask_size": "11",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.19483",
"delta": "0.74971",
"gamma": "0.00614",
"theta": "-0.11636",
"vega": "0.84494",
"rho": "1.85389"
},
{
"contractID": "IBM260618P00210000",
"symbol": "IBM",
"expiration": "2026-06-18",
"strike": "210.00",
"type": "put",
"last": "0.00",
"mark": "18.35",
"bid": "17.70",
"bid_size": "23",
"ask": "19.00",
"ask_size": "50",
"volume": "0",
"open_interest": "1",
"date": "2025-01-24",
"implied_volatility": "0.30306",
"delta": "-0.29525",
"gamma": "0.00429",
"theta": "-0.06278",
"vega": "0.91720",
"rho": "-1.18385"
},
{
"contractID": "IBM260618C00220000",
"symbol": "IBM",
"expiration": "2026-06-18",
"strike": "220.00",
"type": "call",
"last": "29.01",
"mark": "30.67",
"bid": "29.40",
"bid_size": "190",
"ask": "31.95",
"ask_size": "7",
"volume": "0",
"open_interest": "2",
"date": "2025-01-24",
"implied_volatility": "0.20306",
"delta": "0.67796",
"gamma": "0.00665",
"theta": "-0.12194",
"vega": "0.95279",
"rho": "1.70089"
},
{
"contractID": "IBM260618P00220000",
"symbol": "IBM",
"expiration": "2026-06-18",
"strike": "220.00",
"type": "put",
"last": "0.00",
"mark": "22.92",
"bid": "21.95",
"bid_size": "20",
"ask": "23.90",
"ask_size": "38",
"volume": "0",
"open_interest": "1",
"date": "2025-01-24",
"implied_volatility": "0.30595",
"delta": "-0.34171",
"gamma": "0.00452",
"theta": "-0.06362",
"vega": "0.97551",
"rho": "-1.39351"
},
{
"contractID": "IBM260618C00230000",
"symbol": "IBM",
"expiration": "2026-06-18",
"strike": "230.00",
"type": "call",
"last": "0.00",
"mark": "26.38",
"bid": "25.50",
"bid_size": "7",
"ask": "27.25",
"ask_size": "8",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.21175",
"delta": "0.60853",
"gamma": "0.00683",
"theta": "-0.12515",
"vega": "1.02062",
"rho": "1.54293"
},
{
"contractID": "IBM260618P00230000",
"symbol": "IBM",
"expiration": "2026-06-18",
"strike": "230.00",
"type": "put",
"last": "0.00",
"mark": "27.75",
"bid": "26.90",
"bid_size": "27",
"ask": "28.60",
"ask_size": "6",
"volume": "0",
"open_interest": "1",
"date": "2025-01-24",
"implied_volatility": "0.30656",
"delta": "-0.38781",
"gamma": "0.00470",
"theta": "-0.06190",
"vega": "1.01789",
"rho": "-1.60575"
},
{
"contractID": "IBM260618C00240000",
"symbol": "IBM",
"expiration": "2026-06-18",
"strike": "240.00",
"type": "call",
"last": "22.25",
"mark": "21.10",
"bid": "19.90",
"bid_size": "507",
"ask": "22.30",
"ask_size": "40",
"volume": "0",
"open_interest": "8",
"date": "2025-01-24",
"implied_volatility": "0.20428",
"delta": "0.53996",
"gamma": "0.00731",
"theta": "-0.12052",
"vega": "1.05477",
"rho": "1.40113"
},
{
"contractID": "IBM260618P00240000",
"symbol": "IBM",
"expiration": "2026-06-18",
"strike": "240.00",
"type": "put",
"last": "0.00",
"mark": "32.85",
"bid": "32.25",
"bid_size": "45",
"ask": "33.45",
"ask_size": "11",
"volume": "0",
"open_interest": "1",
"date": "2025-01-24",
"implied_volatility": "0.30550",
"delta": "-0.43372",
"gamma": "0.00485",
"theta": "-0.05785",
"vega": "1.04543",
"rho": "-1.82130"
},
{
"contractID": "IBM260618C00250000",
"symbol": "IBM",
"expiration": "2026-06-18",
"strike": "250.00",
"type": "call",
"last": "18.11",
"mark": "18.38",
"bid": "17.85",
"bid_size": "12",
"ask": "18.90",
"ask_size": "40",
"volume": "6",
"open_interest": "24",
"date": "2025-01-24",
"implied_volatility": "0.21510",
"delta": "0.47895",
"gamma": "0.00697",
"theta": "-0.12014",
"vega": "1.05862",
"rho": "1.24750"
},
{
"contractID": "IBM260618P00250000",
"symbol": "IBM",
"expiration": "2026-06-18",
"strike": "250.00",
"type": "put",
"last": "0.00",
"mark": "39.95",
"bid": "38.85",
"bid_size": "10",
"ask": "41.05",
"ask_size": "53",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.31937",
"delta": "-0.47306",
"gamma": "0.00469",
"theta": "-0.05753",
"vega": "1.05768",
"rho": "-2.04419"
},
{
"contractID": "IBM260618C00260000",
"symbol": "IBM",
"expiration": "2026-06-18",
"strike": "260.00",
"type": "call",
"last": "14.87",
"mark": "14.45",
"bid": "13.50",
"bid_size": "545",
"ask": "15.40",
"ask_size": "20",
"volume": "0",
"open_interest": "9",
"date": "2025-01-24",
"implied_volatility": "0.20900",
"delta": "0.41278",
"gamma": "0.00701",
"theta": "-0.11130",
"vega": "1.03466",
"rho": "1.09457"
},
{
"contractID": "IBM260618P00260000",
"symbol": "IBM",
"expiration": "2026-06-18",
"strike": "260.00",
"type": "put",
"last": "0.00",
"mark": "46.17",
"bid": "45.45",
"bid_size": "14",
"ask": "46.90",
"ask_size": "41",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.32104",
"delta": "-0.51362",
"gamma": "0.00467",
"theta": "-0.05173",
"vega": "1.05948",
"rho": "-2.25842"
},
{
"contractID": "IBM260618C00270000",
"symbol": "IBM",
"expiration": "2026-06-18",
"strike": "270.00",
"type": "call",
"last": "0.00",
"mark": "12.10",
"bid": "10.15",
"bid_size": "679",
"ask": "14.05",
"ask_size": "41",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.21312",
"delta": "0.35900",
"gamma": "0.00660",
"theta": "-0.10545",
"vega": "0.99317",
"rho": "0.95852"
},
{
"contractID": "IBM260618P00270000",
"symbol": "IBM",
"expiration": "2026-06-18",
"strike": "270.00",
"type": "put",
"last": "0.00",
"mark": "53.90",
"bid": "52.80",
"bid_size": "14",
"ask": "55.00",
"ask_size": "44",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.33385",
"delta": "-0.54524",
"gamma": "0.00447",
"theta": "-0.04942",
"vega": "1.05327",
"rho": "-2.46578"
},
{
"contractID": "IBM260618C00280000",
"symbol": "IBM",
"expiration": "2026-06-18",
"strike": "280.00",
"type": "call",
"last": "11.10",
"mark": "10.40",
"bid": "10.20",
"bid_size": "10",
"ask": "10.60",
"ask_size": "20",
"volume": "3",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.21967",
"delta": "0.31463",
"gamma": "0.00608",
"theta": "-0.10029",
"vega": "0.94348",
"rho": "0.84298"
},
{
"contractID": "IBM260618P00280000",
"symbol": "IBM",
"expiration": "2026-06-18",
"strike": "280.00",
"type": "put",
"last": "0.00",
"mark": "61.15",
"bid": "60.65",
"bid_size": "20",
"ask": "61.65",
"ask_size": "40",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.33918",
"delta": "-0.57781",
"gamma": "0.00434",
"theta": "-0.04349",
"vega": "1.03987",
"rho": "-2.66927"
},
{
"contractID": "IBM260618C00290000",
"symbol": "IBM",
"expiration": "2026-06-18",
"strike": "290.00",
"type": "call",
"last": "0.00",
"mark": "8.65",
"bid": "8.40",
"bid_size": "11",
"ask": "8.90",
"ask_size": "30",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.22227",
"delta": "0.27170",
"gamma": "0.00562",
"theta": "-0.09280",
"vega": "0.88137",
"rho": "0.73247"
},
{
"contractID": "IBM260618P00290000",
"symbol": "IBM",
"expiration": "2026-06-18",
"strike": "290.00",
"type": "put",
"last": "0.00",
"mark": "69.60",
"bid": "69.05",
"bid_size": "30",
"ask": "70.15",
"ask_size": "40",
"volume": "0",
"open_interest": "2",
"date": "2025-01-24",
"implied_volatility": "0.35382",
"delta": "-0.60069",
"gamma": "0.00411",
"theta": "-0.04131",
"vega": "1.02615",
"rho": "-2.85928"
},
{
"contractID": "IBM260618C00300000",
"symbol": "IBM",
"expiration": "2026-06-18",
"strike": "300.00",
"type": "call",
"last": "7.27",
"mark": "7.10",
"bid": "6.70",
"bid_size": "10",
"ask": "7.50",
"ask_size": "6",
"volume": "0",
"open_interest": "1",
"date": "2025-01-24",
"implied_volatility": "0.22333",
"delta": "0.23211",
"gamma": "0.00514",
"theta": "-0.08433",
"vega": "0.81099",
"rho": "0.62991"
},
{
"contractID": "IBM260618P00300000",
"symbol": "IBM",
"expiration": "2026-06-18",
"strike": "300.00",
"type": "put",
"last": "0.00",
"mark": "78.60",
"bid": "77.75",
"bid_size": "40",
"ask": "79.45",
"ask_size": "10",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.37196",
"delta": "-0.61749",
"gamma": "0.00386",
"theta": "-0.04080",
"vega": "1.01379",
"rho": "-3.03784"
},
{
"contractID": "IBM260618C00310000",
"symbol": "IBM",
"expiration": "2026-06-18",
"strike": "310.00",
"type": "call",
"last": "0.00",
"mark": "5.55",
"bid": "4.65",
"bid_size": "287",
"ask": "6.45",
"ask_size": "6",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.22089",
"delta": "0.19256",
"gamma": "0.00466",
"theta": "-0.07381",
"vega": "0.72704",
"rho": "0.52728"
},
{
"contractID": "IBM260618P00310000",
"symbol": "IBM",
"expiration": "2026-06-18",
"strike": "310.00",
"type": "put",
"last": "0.00",
"mark": "87.70",
"bid": "86.95",
"bid_size": "49",
"ask": "88.45",
"ask_size": "7",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.38949",
"delta": "-0.63172",
"gamma": "0.00364",
"theta": "-0.04016",
"vega": "1.00178",
"rho": "-3.20965"
},
{
"contractID": "IBM260618C00320000",
"symbol": "IBM",
"expiration": "2026-06-18",
"strike": "320.00",
"type": "call",
"last": "0.00",
"mark": "4.25",
"bid": "2.95",
"bid_size": "210",
"ask": "5.55",
"ask_size": "8",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.21785",
"delta": "0.15683",
"gamma": "0.00415",
"theta": "-0.06317",
"vega": "0.63812",
"rho": "0.43318"
},
{
"contractID": "IBM260618P00320000",
"symbol": "IBM",
"expiration": "2026-06-18",
"strike": "320.00",
"type": "put",
"last": "0.00",
"mark": "96.53",
"bid": "95.05",
"bid_size": "70",
"ask": "98.00",
"ask_size": "8",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.40305",
"delta": "-0.64652",
"gamma": "0.00347",
"theta": "-0.03773",
"vega": "0.98777",
"rho": "-3.37961"
},
{
"contractID": "IBM260618C00330000",
"symbol": "IBM",
"expiration": "2026-06-18",
"strike": "330.00",
"type": "call",
"last": "0.00",
"mark": "3.50",
"bid": "2.41",
"bid_size": "311",
"ask": "4.60",
"ask_size": "8",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.21998",
"delta": "0.13272",
"gamma": "0.00367",
"theta": "-0.05629",
"vega": "0.57023",
"rho": "0.36795"
},
{
"contractID": "IBM260618P00330000",
"symbol": "IBM",
"expiration": "2026-06-18",
"strike": "330.00",
"type": "put",
"last": "0.00",
"mark": "106.35",
"bid": "104.65",
"bid_size": "84",
"ask": "108.05",
"ask_size": "72",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.42546",
"delta": "-0.65230",
"gamma": "0.00327",
"theta": "-0.03994",
"vega": "0.98187",
"rho": "-3.53498"
},
{
"contractID": "IBM270115C00105000",
"symbol": "IBM",
"expiration": "2027-01-15",
"strike": "105.00",
"type": "call",
"last": "120.09",
"mark": "120.57",
"bid": "118.80",
"bid_size": "72",
"ask": "122.35",
"ask_size": "71",
"volume": "4",
"open_interest": "66",
"date": "2025-01-24",
"implied_volatility": "0.01185",
"delta": "1.00000",
"gamma": "0.00000",
"theta": "-0.04174",
"vega": "0.00000",
"rho": "1.90408"
},
{
"contractID": "IBM270115P00105000",
"symbol": "IBM",
"expiration": "2027-01-15",
"strike": "105.00",
"type": "put",
"last": "0.00",
"mark": "1.58",
"bid": "0.72",
"bid_size": "849",
"ask": "2.43",
"ask_size": "755",
"volume": "0",
"open_interest": "10",
"date": "2025-01-24",
"implied_volatility": "0.36799",
"delta": "-0.02899",
"gamma": "0.00057",
"theta": "-0.01596",
"vega": "0.20896",
"rho": "-0.15995"
},
{
"contractID": "IBM270115C00110000",
"symbol": "IBM",
"expiration": "2027-01-15",
"strike": "110.00",
"type": "call",
"last": "112.20",
"mark": "115.28",
"bid": "113.75",
"bid_size": "94",
"ask": "116.80",
"ask_size": "10",
"volume": "0",
"open_interest": "160",
"date": "2025-01-24",
"implied_volatility": "0.01135",
"delta": "1.00000",
"gamma": "0.00000",
"theta": "-0.04373",
"vega": "0.00000",
"rho": "1.99475"
},
{
"contractID": "IBM270115P00110000",
"symbol": "IBM",
"expiration": "2027-01-15",
"strike": "110.00",
"type": "put",
"last": "0.00",
"mark": "1.69",
"bid": "0.85",
"bid_size": "948",
"ask": "2.53",
"ask_size": "832",
"volume": "0",
"open_interest": "57",
"date": "2025-01-24",
"implied_volatility": "0.35488",
"delta": "-0.03188",
"gamma": "0.00064",
"theta": "-0.01647",
"vega": "0.22608",
"rho": "-0.17494"
},
{
"contractID": "IBM270115C00115000",
"symbol": "IBM",
"expiration": "2027-01-15",
"strike": "115.00",
"type": "call",
"last": "108.26",
"mark": "110.60",
"bid": "108.75",
"bid_size": "100",
"ask": "112.45",
"ask_size": "70",
"volume": "0",
"open_interest": "123",
"date": "2025-01-24",
"implied_volatility": "0.01086",
"delta": "1.00000",
"gamma": "0.00000",
"theta": "-0.04571",
"vega": "0.00000",
"rho": "2.08542"
},
{
"contractID": "IBM270115P00115000",
"symbol": "IBM",
"expiration": "2027-01-15",
"strike": "115.00",
"type": "put",
"last": "0.00",
"mark": "2.09",
"bid": "0.98",
"bid_size": "900",
"ask": "3.20",
"ask_size": "780",
"volume": "0",
"open_interest": "5",
"date": "2025-01-24",
"implied_volatility": "0.35351",
"delta": "-0.03839",
"gamma": "0.00075",
"theta": "-0.01892",
"vega": "0.26334",
"rho": "-0.21177"
},
{
"contractID": "IBM270115C00120000",
"symbol": "IBM",
"expiration": "2027-01-15",
"strike": "120.00",
"type": "call",
"last": "103.98",
"mark": "105.93",
"bid": "103.90",
"bid_size": "91",
"ask": "107.95",
"ask_size": "72",
"volume": "0",
"open_interest": "25",
"date": "2025-01-24",
"implied_volatility": "0.01036",
"delta": "1.00000",
"gamma": "0.00000",
"theta": "-0.04770",
"vega": "0.00000",
"rho": "2.17609"
},
{
"contractID": "IBM270115P00120000",
"symbol": "IBM",
"expiration": "2027-01-15",
"strike": "120.00",
"type": "put",
"last": "0.00",
"mark": "2.55",
"bid": "2.21",
"bid_size": "22",
"ask": "2.89",
"ask_size": "169",
"volume": "0",
"open_interest": "18",
"date": "2025-01-24",
"implied_volatility": "0.35214",
"delta": "-0.04565",
"gamma": "0.00086",
"theta": "-0.02145",
"vega": "0.30294",
"rho": "-0.25309"
},
{
"contractID": "IBM270115C00125000",
"symbol": "IBM",
"expiration": "2027-01-15",
"strike": "125.00",
"type": "call",
"last": "102.03",
"mark": "101.47",
"bid": "99.55",
"bid_size": "72",
"ask": "103.40",
"ask_size": "96",
"volume": "0",
"open_interest": "5",
"date": "2025-01-24",
"implied_volatility": "0.00987",
"delta": "1.00000",
"gamma": "0.00000",
"theta": "-0.04969",
"vega": "0.00000",
"rho": "2.26676"
},
{
"contractID": "IBM270115P00125000",
"symbol": "IBM",
"expiration": "2027-01-15",
"strike": "125.00",
"type": "put",
"last": "0.00",
"mark": "2.62",
"bid": "2.49",
"bid_size": "33",
"ask": "2.74",
"ask_size": "8",
"volume": "0",
"open_interest": "14",
"date": "2025-01-24",
"implied_volatility": "0.33705",
"delta": "-0.04883",
"gamma": "0.00095",
"theta": "-0.02139",
"vega": "0.31973",
"rho": "-0.26856"
},
{
"contractID": "IBM270115C00130000",
"symbol": "IBM",
"expiration": "2027-01-15",
"strike": "130.00",
"type": "call",
"last": "97.28",
"mark": "96.40",
"bid": "95.05",
"bid_size": "72",
"ask": "97.75",
"ask_size": "8",
"volume": "2",
"open_interest": "7",
"date": "2025-01-24",
"implied_volatility": "0.00937",
"delta": "1.00000",
"gamma": "0.00000",
"theta": "-0.05168",
"vega": "0.00000",
"rho": "2.35743"
},
{
"contractID": "IBM270115P00130000",
"symbol": "IBM",
"expiration": "2027-01-15",
"strike": "130.00",
"type": "put",
"last": "3.00",
"mark": "3.01",
"bid": "2.87",
"bid_size": "45",
"ask": "3.15",
"ask_size": "10",
"volume": "3",
"open_interest": "26",
"date": "2025-01-24",
"implied_volatility": "0.33171",
"delta": "-0.05577",
"gamma": "0.00107",
"theta": "-0.02310",
"vega": "0.35535",
"rho": "-0.30712"
},
{
"contractID": "IBM270115C00135000",
"symbol": "IBM",
"expiration": "2027-01-15",
"strike": "135.00",
"type": "call",
"last": "88.40",
"mark": "92.62",
"bid": "90.85",
"bid_size": "140",
"ask": "94.40",
"ask_size": "144",
"volume": "0",
"open_interest": "47",
"date": "2025-01-24",
"implied_volatility": "0.00888",
"delta": "1.00000",
"gamma": "0.00000",
"theta": "-0.05366",
"vega": "0.00000",
"rho": "2.44810"
},
{
"contractID": "IBM270115P00135000",
"symbol": "IBM",
"expiration": "2027-01-15",
"strike": "135.00",
"type": "put",
"last": "0.00",
"mark": "3.45",
"bid": "3.30",
"bid_size": "133",
"ask": "3.60",
"ask_size": "6",
"volume": "0",
"open_interest": "29",
"date": "2025-01-24",
"implied_volatility": "0.32668",
"delta": "-0.06345",
"gamma": "0.00121",
"theta": "-0.02484",
"vega": "0.39314",
"rho": "-0.34986"
},
{
"contractID": "IBM270115C00140000",
"symbol": "IBM",
"expiration": "2027-01-15",
"strike": "140.00",
"type": "call",
"last": "87.30",
"mark": "88.15",
"bid": "87.45",
"bid_size": "119",
"ask": "88.85",
"ask_size": "10",
"volume": "0",
"open_interest": "54",
"date": "2025-01-24",
"implied_volatility": "0.00839",
"delta": "1.00000",
"gamma": "0.00000",
"theta": "-0.05565",
"vega": "0.00000",
"rho": "2.53878"
},
{
"contractID": "IBM270115P00140000",
"symbol": "IBM",
"expiration": "2027-01-15",
"strike": "140.00",
"type": "put",
"last": "0.00",
"mark": "3.50",
"bid": "2.85",
"bid_size": "845",
"ask": "4.15",
"ask_size": "10",
"volume": "0",
"open_interest": "22",
"date": "2025-01-24",
"implied_volatility": "0.31159",
"delta": "-0.06737",
"gamma": "0.00132",
"theta": "-0.02441",
"vega": "0.41189",
"rho": "-0.36836"
},
{
"contractID": "IBM270115C00145000",
"symbol": "IBM",
"expiration": "2027-01-15",
"strike": "145.00",
"type": "call",
"last": "84.80",
"mark": "84.47",
"bid": "83.20",
"bid_size": "76",
"ask": "85.75",
"ask_size": "112",
"volume": "10",
"open_interest": "20",
"date": "2025-01-24",
"implied_volatility": "0.00789",
"delta": "1.00000",
"gamma": "0.00000",
"theta": "-0.05764",
"vega": "0.00000",
"rho": "2.62945"
},
{
"contractID": "IBM270115P00145000",
"symbol": "IBM",
"expiration": "2027-01-15",
"strike": "145.00",
"type": "put",
"last": "0.00",
"mark": "4.58",
"bid": "4.40",
"bid_size": "50",
"ask": "4.75",
"ask_size": "10",
"volume": "0",
"open_interest": "75",
"date": "2025-01-24",
"implied_volatility": "0.31937",
"delta": "-0.08198",
"gamma": "0.00150",
"theta": "-0.02872",
"vega": "0.47847",
"rho": "-0.45448"
},
{
"contractID": "IBM270115C00150000",
"symbol": "IBM",
"expiration": "2027-01-15",
"strike": "150.00",
"type": "call",
"last": "80.69",
"mark": "80.15",
"bid": "79.70",
"bid_size": "2",
"ask": "80.60",
"ask_size": "10",
"volume": "0",
"open_interest": "77",
"date": "2025-01-24",
"implied_volatility": "0.00740",
"delta": "1.00000",
"gamma": "0.00000",
"theta": "-0.05963",
"vega": "0.00000",
"rho": "2.72012"
},
{
"contractID": "IBM270115P00150000",
"symbol": "IBM",
"expiration": "2027-01-15",
"strike": "150.00",
"type": "put",
"last": "5.20",
"mark": "5.28",
"bid": "5.10",
"bid_size": "11",
"ask": "5.45",
"ask_size": "10",
"volume": "2",
"open_interest": "296",
"date": "2025-01-24",
"implied_volatility": "0.31678",
"delta": "-0.09285",
"gamma": "0.00166",
"theta": "-0.03078",
"vega": "0.52505",
"rho": "-0.51659"
},
{
"contractID": "IBM270115C00155000",
"symbol": "IBM",
"expiration": "2027-01-15",
"strike": "155.00",
"type": "call",
"last": "72.45",
"mark": "75.62",
"bid": "74.55",
"bid_size": "382",
"ask": "76.70",
"ask_size": "7",
"volume": "0",
"open_interest": "231",
"date": "2025-01-24",
"implied_volatility": "0.00690",
"delta": "1.00000",
"gamma": "0.00000",
"theta": "-0.06161",
"vega": "0.00000",
"rho": "2.81079"
},
{
"contractID": "IBM270115P00155000",
"symbol": "IBM",
"expiration": "2027-01-15",
"strike": "155.00",
"type": "put",
"last": "0.00",
"mark": "6.03",
"bid": "5.85",
"bid_size": "9",
"ask": "6.20",
"ask_size": "10",
"volume": "0",
"open_interest": "87",
"date": "2025-01-24",
"implied_volatility": "0.31388",
"delta": "-0.10434",
"gamma": "0.00183",
"theta": "-0.03267",
"vega": "0.57187",
"rho": "-0.58247"
},
{
"contractID": "IBM270115C00160000",
"symbol": "IBM",
"expiration": "2027-01-15",
"strike": "160.00",
"type": "call",
"last": "68.81",
"mark": "71.92",
"bid": "70.75",
"bid_size": "355",
"ask": "73.10",
"ask_size": "11",
"volume": "0",
"open_interest": "125",
"date": "2025-01-24",
"implied_volatility": "0.00641",
"delta": "1.00000",
"gamma": "0.00000",
"theta": "-0.06360",
"vega": "0.00000",
"rho": "2.90146"
},
{
"contractID": "IBM270115P00160000",
"symbol": "IBM",
"expiration": "2027-01-15",
"strike": "160.00",
"type": "put",
"last": "0.00",
"mark": "6.90",
"bid": "6.65",
"bid_size": "15",
"ask": "7.15",
"ask_size": "10",
"volume": "0",
"open_interest": "150",
"date": "2025-01-24",
"implied_volatility": "0.31175",
"delta": "-0.11695",
"gamma": "0.00199",
"theta": "-0.03460",
"vega": "0.62064",
"rho": "-0.65562"
},
{
"contractID": "IBM270115C00165000",
"symbol": "IBM",
"expiration": "2027-01-15",
"strike": "165.00",
"type": "call",
"last": "64.18",
"mark": "69.10",
"bid": "68.20",
"bid_size": "8",
"ask": "70.00",
"ask_size": "8",
"volume": "0",
"open_interest": "31",
"date": "2025-01-24",
"implied_volatility": "0.00591",
"delta": "1.00000",
"gamma": "0.00000",
"theta": "-0.06559",
"vega": "0.00000",
"rho": "2.99213"
},
{
"contractID": "IBM270115P00165000",
"symbol": "IBM",
"expiration": "2027-01-15",
"strike": "165.00",
"type": "put",
"last": "0.00",
"mark": "7.88",
"bid": "7.55",
"bid_size": "28",
"ask": "8.20",
"ask_size": "2",
"volume": "0",
"open_interest": "69",
"date": "2025-01-24",
"implied_volatility": "0.31022",
"delta": "-0.13061",
"gamma": "0.00217",
"theta": "-0.03653",
"vega": "0.67056",
"rho": "-0.73573"
},
{
"contractID": "IBM270115C00170000",
"symbol": "IBM",
"expiration": "2027-01-15",
"strike": "170.00",
"type": "call",
"last": "61.85",
"mark": "65.17",
"bid": "64.55",
"bid_size": "2",
"ask": "65.80",
"ask_size": "2",
"volume": "0",
"open_interest": "58",
"date": "2025-01-24",
"implied_volatility": "0.00542",
"delta": "1.00000",
"gamma": "0.00000",
"theta": "-0.06758",
"vega": "0.00000",
"rho": "3.08280"
},
{
"contractID": "IBM270115P00170000",
"symbol": "IBM",
"expiration": "2027-01-15",
"strike": "170.00",
"type": "put",
"last": "0.00",
"mark": "8.88",
"bid": "8.50",
"bid_size": "35",
"ask": "9.25",
"ask_size": "2",
"volume": "0",
"open_interest": "321",
"date": "2025-01-24",
"implied_volatility": "0.30763",
"delta": "-0.14452",
"gamma": "0.00234",
"theta": "-0.03804",
"vega": "0.71850",
"rho": "-0.81706"
},
{
"contractID": "IBM270115C00175000",
"symbol": "IBM",
"expiration": "2027-01-15",
"strike": "175.00",
"type": "call",
"last": "62.05",
"mark": "61.17",
"bid": "60.15",
"bid_size": "417",
"ask": "62.20",
"ask_size": "48",
"volume": "0",
"open_interest": "231",
"date": "2025-01-24",
"implied_volatility": "0.00492",
"delta": "1.00000",
"gamma": "0.00000",
"theta": "-0.06956",
"vega": "0.00000",
"rho": "3.17347"
},
{
"contractID": "IBM270115P00175000",
"symbol": "IBM",
"expiration": "2027-01-15",
"strike": "175.00",
"type": "put",
"last": "0.00",
"mark": "10.62",
"bid": "9.60",
"bid_size": "326",
"ask": "11.65",
"ask_size": "577",
"volume": "0",
"open_interest": "24",
"date": "2025-01-24",
"implied_volatility": "0.31373",
"delta": "-0.16295",
"gamma": "0.00248",
"theta": "-0.04132",
"vega": "0.77797",
"rho": "-0.93331"
},
{
"contractID": "IBM270115C00180000",
"symbol": "IBM",
"expiration": "2027-01-15",
"strike": "180.00",
"type": "call",
"last": "58.68",
"mark": "57.62",
"bid": "56.10",
"bid_size": "425",
"ask": "59.15",
"ask_size": "11",
"volume": "3",
"open_interest": "146",
"date": "2025-01-24",
"implied_volatility": "0.00443",
"delta": "1.00000",
"gamma": "0.00000",
"theta": "-0.07155",
"vega": "0.00000",
"rho": "3.26414"
},
{
"contractID": "IBM270115P00180000",
"symbol": "IBM",
"expiration": "2027-01-15",
"strike": "180.00",
"type": "put",
"last": "0.00",
"mark": "11.62",
"bid": "11.05",
"bid_size": "11",
"ask": "12.20",
"ask_size": "10",
"volume": "0",
"open_interest": "54",
"date": "2025-01-24",
"implied_volatility": "0.30885",
"delta": "-0.17720",
"gamma": "0.00266",
"theta": "-0.04190",
"vega": "0.82090",
"rho": "-1.01630"
},
{
"contractID": "IBM270115C00185000",
"symbol": "IBM",
"expiration": "2027-01-15",
"strike": "185.00",
"type": "call",
"last": "55.08",
"mark": "55.08",
"bid": "54.60",
"bid_size": "10",
"ask": "55.55",
"ask_size": "10",
"volume": "2",
"open_interest": "14",
"date": "2025-01-24",
"implied_volatility": "0.08995",
"delta": "0.98873",
"gamma": "0.00104",
"theta": "-0.07452",
"vega": "0.09347",
"rho": "3.30249"
},
{
"contractID": "IBM270115P00185000",
"symbol": "IBM",
"expiration": "2027-01-15",
"strike": "185.00",
"type": "put",
"last": "0.00",
"mark": "13.43",
"bid": "12.45",
"bid_size": "10",
"ask": "14.40",
"ask_size": "601",
"volume": "0",
"open_interest": "6",
"date": "2025-01-24",
"implied_volatility": "0.31266",
"delta": "-0.19551",
"gamma": "0.00280",
"theta": "-0.04420",
"vega": "0.87247",
"rho": "-1.13341"
},
{
"contractID": "IBM270115C00190000",
"symbol": "IBM",
"expiration": "2027-01-15",
"strike": "190.00",
"type": "call",
"last": "52.79",
"mark": "50.95",
"bid": "49.60",
"bid_size": "392",
"ask": "52.30",
"ask_size": "10",
"volume": "0",
"open_interest": "102",
"date": "2025-01-24",
"implied_volatility": "0.10748",
"delta": "0.96038",
"gamma": "0.00252",
"theta": "-0.07877",
"vega": "0.27017",
"rho": "3.25820"
},
{
"contractID": "IBM270115P00190000",
"symbol": "IBM",
"expiration": "2027-01-15",
"strike": "190.00",
"type": "put",
"last": "0.00",
"mark": "14.32",
"bid": "13.25",
"bid_size": "767",
"ask": "15.40",
"ask_size": "155",
"volume": "0",
"open_interest": "55",
"date": "2025-01-24",
"implied_volatility": "0.30489",
"delta": "-0.21002",
"gamma": "0.00299",
"theta": "-0.04363",
"vega": "0.91062",
"rho": "-1.21547"
},
{
"contractID": "IBM270115C00195000",
"symbol": "IBM",
"expiration": "2027-01-15",
"strike": "195.00",
"type": "call",
"last": "49.50",
"mark": "48.85",
"bid": "48.40",
"bid_size": "10",
"ask": "49.30",
"ask_size": "10",
"volume": "1",
"open_interest": "24",
"date": "2025-01-24",
"implied_volatility": "0.15093",
"delta": "0.88094",
"gamma": "0.00417",
"theta": "-0.08861",
"vega": "0.62853",
"rho": "2.94693"
},
{
"contractID": "IBM270115P00195000",
"symbol": "IBM",
"expiration": "2027-01-15",
"strike": "195.00",
"type": "put",
"last": "0.00",
"mark": "16.57",
"bid": "15.50",
"bid_size": "26",
"ask": "17.65",
"ask_size": "383",
"volume": "0",
"open_interest": "54",
"date": "2025-01-24",
"implied_volatility": "0.31098",
"delta": "-0.22977",
"gamma": "0.00309",
"theta": "-0.04593",
"vega": "0.95884",
"rho": "-1.34772"
},
{
"contractID": "IBM270115C00200000",
"symbol": "IBM",
"expiration": "2027-01-15",
"strike": "200.00",
"type": "call",
"last": "45.30",
"mark": "45.40",
"bid": "44.50",
"bid_size": "456",
"ask": "46.30",
"ask_size": "2",
"volume": "0",
"open_interest": "314",
"date": "2025-01-24",
"implied_volatility": "0.15504",
"delta": "0.85034",
"gamma": "0.00475",
"theta": "-0.09198",
"vega": "0.73554",
"rho": "2.87931"
},
{
"contractID": "IBM270115P00200000",
"symbol": "IBM",
"expiration": "2027-01-15",
"strike": "200.00",
"type": "put",
"last": "0.00",
"mark": "17.85",
"bid": "17.15",
"bid_size": "24",
"ask": "18.55",
"ask_size": "10",
"volume": "0",
"open_interest": "55",
"date": "2025-01-24",
"implied_volatility": "0.30565",
"delta": "-0.24635",
"gamma": "0.00326",
"theta": "-0.04536",
"vega": "0.99618",
"rho": "-1.44641"
},
{
"contractID": "IBM270115C00210000",
"symbol": "IBM",
"expiration": "2027-01-15",
"strike": "210.00",
"type": "call",
"last": "41.40",
"mark": "40.53",
"bid": "40.10",
"bid_size": "10",
"ask": "40.95",
"ask_size": "10",
"volume": "2",
"open_interest": "164",
"date": "2025-01-24",
"implied_volatility": "0.17760",
"delta": "0.77044",
"gamma": "0.00541",
"theta": "-0.10053",
"vega": "0.95834",
"rho": "2.62068"
},
{
"contractID": "IBM270115P00210000",
"symbol": "IBM",
"expiration": "2027-01-15",
"strike": "210.00",
"type": "put",
"last": "0.00",
"mark": "21.90",
"bid": "21.10",
"bid_size": "21",
"ask": "22.70",
"ask_size": "2",
"volume": "0",
"open_interest": "139",
"date": "2025-01-24",
"implied_volatility": "0.30748",
"delta": "-0.28380",
"gamma": "0.00349",
"theta": "-0.04621",
"vega": "1.07049",
"rho": "-1.69292"
},
{
"contractID": "IBM270115C00220000",
"symbol": "IBM",
"expiration": "2027-01-15",
"strike": "220.00",
"type": "call",
"last": "35.03",
"mark": "35.17",
"bid": "34.45",
"bid_size": "374",
"ask": "35.90",
"ask_size": "1",
"volume": "5",
"open_interest": "383",
"date": "2025-01-24",
"implied_volatility": "0.18355",
"delta": "0.70685",
"gamma": "0.00593",
"theta": "-0.10408",
"vega": "1.08697",
"rho": "2.44418"
},
{
"contractID": "IBM270115P00220000",
"symbol": "IBM",
"expiration": "2027-01-15",
"strike": "220.00",
"type": "put",
"last": "26.36",
"mark": "26.52",
"bid": "25.50",
"bid_size": "17",
"ask": "27.55",
"ask_size": "50",
"volume": "2",
"open_interest": "43",
"date": "2025-01-24",
"implied_volatility": "0.31053",
"delta": "-0.32145",
"gamma": "0.00365",
"theta": "-0.04620",
"vega": "1.13200",
"rho": "-1.95144"
},
{
"contractID": "IBM270115C00230000",
"symbol": "IBM",
"expiration": "2027-01-15",
"strike": "230.00",
"type": "call",
"last": "30.74",
"mark": "31.35",
"bid": "30.60",
"bid_size": "10",
"ask": "32.10",
"ask_size": "7",
"volume": "1",
"open_interest": "916",
"date": "2025-01-24",
"implied_volatility": "0.19635",
"delta": "0.64246",
"gamma": "0.00602",
"theta": "-0.10757",
"vega": "1.17921",
"rho": "2.23346"
},
{
"contractID": "IBM270115P00230000",
"symbol": "IBM",
"expiration": "2027-01-15",
"strike": "230.00",
"type": "put",
"last": "0.00",
"mark": "30.65",
"bid": "30.30",
"bid_size": "27",
"ask": "31.00",
"ask_size": "1",
"volume": "0",
"open_interest": "141",
"date": "2025-01-24",
"implied_volatility": "0.30580",
"delta": "-0.35916",
"gamma": "0.00387",
"theta": "-0.04319",
"vega": "1.18107",
"rho": "-2.20030"
},
{
"contractID": "IBM270115C00240000",
"symbol": "IBM",
"expiration": "2027-01-15",
"strike": "240.00",
"type": "call",
"last": "27.49",
"mark": "26.90",
"bid": "26.55",
"bid_size": "10",
"ask": "27.25",
"ask_size": "12",
"volume": "2",
"open_interest": "231",
"date": "2025-01-24",
"implied_volatility": "0.19772",
"delta": "0.58367",
"gamma": "0.00625",
"theta": "-0.10686",
"vega": "1.23263",
"rho": "2.06054"
},
{
"contractID": "IBM270115P00240000",
"symbol": "IBM",
"expiration": "2027-01-15",
"strike": "240.00",
"type": "put",
"last": "0.00",
"mark": "36.70",
"bid": "35.90",
"bid_size": "15",
"ask": "37.50",
"ask_size": "40",
"volume": "0",
"open_interest": "5",
"date": "2025-01-24",
"implied_volatility": "0.31418",
"delta": "-0.39500",
"gamma": "0.00388",
"theta": "-0.04241",
"vega": "1.21654",
"rho": "-2.47884"
},
{
"contractID": "IBM270115C00250000",
"symbol": "IBM",
"expiration": "2027-01-15",
"strike": "250.00",
"type": "call",
"last": "24.15",
"mark": "22.90",
"bid": "22.15",
"bid_size": "568",
"ask": "23.65",
"ask_size": "10",
"volume": "1",
"open_interest": "154",
"date": "2025-01-24",
"implied_volatility": "0.19833",
"delta": "0.52593",
"gamma": "0.00635",
"theta": "-0.10442",
"vega": "1.25779",
"rho": "1.88319"
},
{
"contractID": "IBM270115P00250000",
"symbol": "IBM",
"expiration": "2027-01-15",
"strike": "250.00",
"type": "put",
"last": "0.00",
"mark": "42.80",
"bid": "41.65",
"bid_size": "33",
"ask": "43.95",
"ask_size": "40",
"volume": "0",
"open_interest": "4",
"date": "2025-01-24",
"implied_volatility": "0.31998",
"delta": "-0.42905",
"gamma": "0.00388",
"theta": "-0.04017",
"vega": "1.24047",
"rho": "-2.75084"
},
{
"contractID": "IBM270115C00260000",
"symbol": "IBM",
"expiration": "2027-01-15",
"strike": "260.00",
"type": "call",
"last": "20.65",
"mark": "20.05",
"bid": "19.75",
"bid_size": "16",
"ask": "20.35",
"ask_size": "10",
"volume": "2",
"open_interest": "364",
"date": "2025-01-24",
"implied_volatility": "0.20397",
"delta": "0.47379",
"gamma": "0.00618",
"theta": "-0.10238",
"vega": "1.25774",
"rho": "1.70802"
},
{
"contractID": "IBM270115P00260000",
"symbol": "IBM",
"expiration": "2027-01-15",
"strike": "260.00",
"type": "put",
"last": "0.00",
"mark": "49.27",
"bid": "48.15",
"bid_size": "28",
"ask": "50.40",
"ask_size": "163",
"volume": "0",
"open_interest": "178",
"date": "2025-01-24",
"implied_volatility": "0.32592",
"delta": "-0.46089",
"gamma": "0.00386",
"theta": "-0.03728",
"vega": "1.25439",
"rho": "-3.02003"
},
{
"contractID": "IBM270115C00270000",
"symbol": "IBM",
"expiration": "2027-01-15",
"strike": "270.00",
"type": "call",
"last": "17.15",
"mark": "17.60",
"bid": "16.25",
"bid_size": "314",
"ask": "18.95",
"ask_size": "334",
"volume": "155",
"open_interest": "525",
"date": "2025-01-24",
"implied_volatility": "0.20931",
"delta": "0.42663",
"gamma": "0.00593",
"theta": "-0.09955",
"vega": "1.23908",
"rho": "1.54683"
},
{
"contractID": "IBM270115P00270000",
"symbol": "IBM",
"expiration": "2027-01-15",
"strike": "270.00",
"type": "put",
"last": "0.00",
"mark": "56.40",
"bid": "55.10",
"bid_size": "32",
"ask": "57.70",
"ask_size": "40",
"volume": "0",
"open_interest": "4",
"date": "2025-01-24",
"implied_volatility": "0.33461",
"delta": "-0.48905",
"gamma": "0.00377",
"theta": "-0.03469",
"vega": "1.25998",
"rho": "-3.28565"
},
{
"contractID": "IBM270115C00280000",
"symbol": "IBM",
"expiration": "2027-01-15",
"strike": "280.00",
"type": "call",
"last": "12.75",
"mark": "14.85",
"bid": "14.60",
"bid_size": "8",
"ask": "15.10",
"ask_size": "10",
"volume": "0",
"open_interest": "80",
"date": "2025-01-24",
"implied_volatility": "0.20885",
"delta": "0.37832",
"gamma": "0.00576",
"theta": "-0.09391",
"vega": "1.20136",
"rho": "1.38674"
},
{
"contractID": "IBM270115P00280000",
"symbol": "IBM",
"expiration": "2027-01-15",
"strike": "280.00",
"type": "put",
"last": "0.00",
"mark": "63.92",
"bid": "62.55",
"bid_size": "40",
"ask": "65.30",
"ask_size": "47",
"volume": "0",
"open_interest": "3",
"date": "2025-01-24",
"implied_volatility": "0.34437",
"delta": "-0.51394",
"gamma": "0.00366",
"theta": "-0.03210",
"vega": "1.25969",
"rho": "-3.54466"
},
{
"contractID": "IBM270115C00290000",
"symbol": "IBM",
"expiration": "2027-01-15",
"strike": "290.00",
"type": "call",
"last": "13.83",
"mark": "12.78",
"bid": "12.50",
"bid_size": "8",
"ask": "13.05",
"ask_size": "18",
"volume": "0",
"open_interest": "86",
"date": "2025-01-24",
"implied_volatility": "0.21114",
"delta": "0.33666",
"gamma": "0.00547",
"theta": "-0.08887",
"vega": "1.15327",
"rho": "1.24253"
},
{
"contractID": "IBM270115P00290000",
"symbol": "IBM",
"expiration": "2027-01-15",
"strike": "290.00",
"type": "put",
"last": "0.00",
"mark": "71.80",
"bid": "70.65",
"bid_size": "24",
"ask": "72.95",
"ask_size": "37",
"volume": "0",
"open_interest": "2",
"date": "2025-01-24",
"implied_volatility": "0.35519",
"delta": "-0.53554",
"gamma": "0.00354",
"theta": "-0.02966",
"vega": "1.25545",
"rho": "-3.79625"
},
{
"contractID": "IBM270115C00300000",
"symbol": "IBM",
"expiration": "2027-01-15",
"strike": "300.00",
"type": "call",
"last": "11.50",
"mark": "11.00",
"bid": "10.80",
"bid_size": "3",
"ask": "11.20",
"ask_size": "10",
"volume": "2",
"open_interest": "749",
"date": "2025-01-24",
"implied_volatility": "0.21327",
"delta": "0.29893",
"gamma": "0.00515",
"theta": "-0.08354",
"vega": "1.09675",
"rho": "1.11008"
},
{
"contractID": "IBM270115P00300000",
"symbol": "IBM",
"expiration": "2027-01-15",
"strike": "300.00",
"type": "put",
"last": "0.00",
"mark": "79.67",
"bid": "77.85",
"bid_size": "73",
"ask": "81.50",
"ask_size": "69",
"volume": "0",
"open_interest": "2",
"date": "2025-01-24",
"implied_volatility": "0.36434",
"delta": "-0.55586",
"gamma": "0.00343",
"theta": "-0.02650",
"vega": "1.24808",
"rho": "-4.04195"
},
{
"contractID": "IBM270115C00310000",
"symbol": "IBM",
"expiration": "2027-01-15",
"strike": "310.00",
"type": "call",
"last": "9.65",
"mark": "9.12",
"bid": "8.40",
"bid_size": "708",
"ask": "9.85",
"ask_size": "30",
"volume": "0",
"open_interest": "37",
"date": "2025-01-24",
"implied_volatility": "0.21190",
"delta": "0.26013",
"gamma": "0.00485",
"theta": "-0.07635",
"vega": "1.02510",
"rho": "0.97486"
},
{
"contractID": "IBM270115P00310000",
"symbol": "IBM",
"expiration": "2027-01-15",
"strike": "310.00",
"type": "put",
"last": "0.00",
"mark": "89.12",
"bid": "87.90",
"bid_size": "11",
"ask": "90.35",
"ask_size": "72",
"volume": "0",
"open_interest": "1",
"date": "2025-01-24",
"implied_volatility": "0.38491",
"delta": "-0.56570",
"gamma": "0.00324",
"theta": "-0.02748",
"vega": "1.24333",
"rho": "-4.27260"
},
{
"contractID": "IBM270115C00320000",
"symbol": "IBM",
"expiration": "2027-01-15",
"strike": "320.00",
"type": "call",
"last": "9.00",
"mark": "8.15",
"bid": "7.85",
"bid_size": "10",
"ask": "8.45",
"ask_size": "10",
"volume": "1",
"open_interest": "284",
"date": "2025-01-24",
"implied_volatility": "0.21708",
"delta": "0.23439",
"gamma": "0.00447",
"theta": "-0.07256",
"vega": "0.96953",
"rho": "0.87977"
},
{
"contractID": "IBM270115P00320000",
"symbol": "IBM",
"expiration": "2027-01-15",
"strike": "320.00",
"type": "put",
"last": "0.00",
"mark": "97.90",
"bid": "96.90",
"bid_size": "10",
"ask": "98.90",
"ask_size": "11",
"volume": "0",
"open_interest": "1",
"date": "2025-01-24",
"implied_volatility": "0.39879",
"delta": "-0.57815",
"gamma": "0.00311",
"theta": "-0.02612",
"vega": "1.23619",
"rho": "-4.50114"
},
{
"contractID": "IBM270115C00330000",
"symbol": "IBM",
"expiration": "2027-01-15",
"strike": "330.00",
"type": "call",
"last": "6.45",
"mark": "6.88",
"bid": "6.55",
"bid_size": "180",
"ask": "7.20",
"ask_size": "10",
"volume": "0",
"open_interest": "345",
"date": "2025-01-24",
"implied_volatility": "0.21724",
"delta": "0.20482",
"gamma": "0.00414",
"theta": "-0.06629",
"vega": "0.89723",
"rho": "0.77360"
},
{
"contractID": "IBM270115P00330000",
"symbol": "IBM",
"expiration": "2027-01-15",
"strike": "330.00",
"type": "put",
"last": "0.00",
"mark": "106.72",
"bid": "105.05",
"bid_size": "72",
"ask": "108.40",
"ask_size": "11",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.41205",
"delta": "-0.58925",
"gamma": "0.00299",
"theta": "-0.02459",
"vega": "1.22878",
"rho": "-4.72465"
},
{
"contractID": "IBM270115C00340000",
"symbol": "IBM",
"expiration": "2027-01-15",
"strike": "340.00",
"type": "call",
"last": "6.20",
"mark": "5.78",
"bid": "5.25",
"bid_size": "536",
"ask": "6.30",
"ask_size": "11",
"volume": "10",
"open_interest": "291",
"date": "2025-01-24",
"implied_volatility": "0.21724",
"delta": "0.17819",
"gamma": "0.00380",
"theta": "-0.06014",
"vega": "0.82379",
"rho": "0.67696"
},
{
"contractID": "IBM270115P00340000",
"symbol": "IBM",
"expiration": "2027-01-15",
"strike": "340.00",
"type": "put",
"last": "0.00",
"mark": "116.65",
"bid": "114.70",
"bid_size": "70",
"ask": "118.60",
"ask_size": "70",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.43354",
"delta": "-0.59249",
"gamma": "0.00283",
"theta": "-0.02640",
"vega": "1.22643",
"rho": "-4.93536"
},
{
"contractID": "IBM270115C00350000",
"symbol": "IBM",
"expiration": "2027-01-15",
"strike": "350.00",
"type": "call",
"last": "5.37",
"mark": "4.83",
"bid": "4.15",
"bid_size": "1172",
"ask": "5.50",
"ask_size": "10",
"volume": "1",
"open_interest": "464",
"date": "2025-01-24",
"implied_volatility": "0.21693",
"delta": "0.15408",
"gamma": "0.00346",
"theta": "-0.05408",
"vega": "0.74991",
"rho": "0.58871"
},
{
"contractID": "IBM270115P00350000",
"symbol": "IBM",
"expiration": "2027-01-15",
"strike": "350.00",
"type": "put",
"last": "0.00",
"mark": "126.62",
"bid": "124.90",
"bid_size": "74",
"ask": "128.35",
"ask_size": "78",
"volume": "0",
"open_interest": "0",
"date": "2025-01-24",
"implied_volatility": "0.45458",
"delta": "-0.59469",
"gamma": "0.00270",
"theta": "-0.02821",
"vega": "1.22478",
"rho": "-5.14210"
}
]
}
```