Object: ggOptionChain
This object contains the full Options Chain for an underlying asset at 1-min & 5-min intervals.
Schema
Json
{
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "StockOptionsProfile",
"description": "Describes stock options, including historical data organized by timestamps.",
"type": "object",
"properties": {
"symbol": {
"description": "Underlying stock's ticker symbol.",
"type": "string"
},
"optionType": {
"description": "Type of the option (call or put).",
"type": "string",
"enum": ["call", "put"]
},
"strikePrice": {
"description": "Strike price of the option.",
"type": "number"
},
"expirationDate": {
"description": "Expiration date of the option.",
"type": "string",
"format": "date"
},
"historicalData": {
"description": "Dictionary of historical data for the option, keyed by timestamps.",
"type": "object",
"additionalProperties": {
"type": "object",
"properties": {
"oneMinute": {
"description": "1-minute candle data.",
"type": "object",
"properties": {
"open": { "type": "number" },
"high": { "type": "number" },
"low": { "type": "number" },
"close": { "type": "number" },
"volume": { "type": "integer", "minimum": 0 }
},
"required": ["open", "high", "low", "close", "volume"]
},
"fiveMinute": {
"description": "Optional 5-minute candle data.",
"type": "object",
"properties": {
"open": { "type": "number" },
"high": { "type": "number" },
"low": { "type": "number" },
"close": { "type": "number" },
"volume": { "type": "integer", "minimum": 0 }
},
"required": ["open", "high", "low", "close", "volume"]
}
},
"required": ["oneMinute"]
}
}
},
"required": ["symbol", "optionType", "strikePrice", "expirationDate", "historicalData"]
}
Yang
module stock-options-profile {
namespace "http://example.com/stock-options-profile";
prefix sop;
organization "Example Organization";
description "Describes the options for a stock, including historical data keyed by timestamps.";
container stockOptionsProfile {
leaf symbol {
type string;
description "Underlying stock's ticker symbol.";
}
leaf optionType {
type enumeration {
enum call {
description "Call option.";
}
enum put {
description "Put option.";
}
}
description "Type of the option (call or put).";
}
leaf strikePrice {
type decimal64 {
fraction-digits 2;
}
description "Strike price of the option.";
}
leaf expirationDate {
type string;
description "Expiration date of the option.";
}
container historicalData {
description "Dictionary of historical data for the option, keyed by timestamps.";
list candleData {
key "timestamp";
leaf timestamp {
type string;
description "Timestamp marking the beginning of the historical data point.";
}
container oneMinute {
description "1-minute candle data.";
leaf open {
type decimal64 {
fraction-digits 2;
}
}
leaf high {
type decimal64 {
fraction-digits 2;
}
}
leaf low {
type decimal64 {
fraction-digits 2;
}
}
leaf close {
type decimal64 {
fraction-digits 2;
}
}
leaf volume {
type uint64;
description "Volume of options traded.";
}
}
container fiveMinute {
description "Optional 5-minute candle data.";
leaf open {
type decimal64 {
fraction-digits 2;
}
}
leaf high {
type decimal64 {
fraction-digits 2;
}
}
leaf low {
type decimal64 {
fraction-digits 2;
}
}
leaf close {
type decimal64 {
fraction-digits 2;
}
}
leaf volume {
type uint64;
description "Volume of options traded.";
}
}
}
}
}
}
Example Object
Json
{
"historicals": [
{
"begins_at": "2023-03-07T06:30:00",
"options_chain": {
"symbol": "AAPL",
"status": "SUCCESS",
"underlying": null,
"strategy": "SINGLE",
"interval": 0.0,
"isDelayed": false,
"isIndex": false,
"interestRate": 5.008,
"underlyingPrice": 153.8,
"volatility": 29.0,
"daysToExpiration": 0.0,
"numberOfContracts": 2202,
"putExpDateMap": {
"2023-03-10:3": {
"142.0": [
{
"putCall": "PUT",
"symbol": "AAPL_031023P142",
"description": "AAPL Mar 10 2023 142 Put (Weekly)",
"exchangeName": "OPR",
"bid": 0.04,
"ask": 0.05,
"last": 0.05,
"mark": 0.05,
"bidSize": 19,
"askSize": 341,
"bidAskSize": "19X341",
"lastSize": 0,
"highPrice": 0.05,
"lowPrice": 0.05,
"openPrice": 0.0,
"closePrice": 0.05,
"totalVolume": 1,
"tradeDate": null,
"tradeTimeInLong": 1678199401260,
"quoteTimeInLong": 1678199403153,
"netChange": 0.0,
"volatility": "NaN",
"delta": "NaN",
"gamma": "NaN",
"theta": "NaN",
"vega": 0.008,
"rho": "NaN",
"openInterest": 4621,
"timeValue": 0.05,
"theoreticalOptionValue": "NaN",
"theoreticalVolatility": 29.0,
"optionDeliverablesList": null,
"strikePrice": 142.0,
"expirationDate": 1678482000000,
"daysToExpiration": 3,
"expirationType": "S",
"lastTradingDay": 1678496400000,
"multiplier": 100.0,
"settlementType": " ",
"deliverableNote": "",
"isIndexOption": null,
"percentChange": 11.11,
"markChange": 0.0,
"markPercentChange": 0.0,
"intrinsicValue": -11.79,
"pennyPilot": true,
"inTheMoney": false,
"mini": false,
"nonStandard": false
}
],
"143.0": [
{
"putCall": "PUT",
"symbol": "AAPL_031023P143",
"description": "AAPL Mar 10 2023 143 Put (Weekly)",
"exchangeName": "OPR",
"bid": 0.05,
"ask": 0.07,
"last": 0.06,
"mark": 0.06,
"bidSize": 19,
"askSize": 64,
"bidAskSize": "19X64",
"lastSize": 0,
"highPrice": 0.0,
"lowPrice": 0.0,
"openPrice": 0.0,
"closePrice": 0.05,
"totalVolume": 0,
"tradeDate": null,
"tradeTimeInLong": 1678136379721,
"quoteTimeInLong": 1678199403163,
"netChange": 0.0,
"volatility": 33.707,
"delta": -0.025,
"gamma": 0.01,
"theta": -0.035,
"vega": 0.01,
"rho": 0.0,
"openInterest": 3515,
"timeValue": 0.06,
"theoreticalOptionValue": 0.055,
"theoreticalVolatility": 29.0,
"optionDeliverablesList": null,
"strikePrice": 143.0,
"expirationDate": 1678482000000,
"daysToExpiration": 3,
"expirationType": "S",
"lastTradingDay": 1678496400000,
"multiplier": 100.0,
"settlementType": " ",
"deliverableNote": "",
"isIndexOption": null,
"percentChange": 9.09,
"markChange": 0.01,
"markPercentChange": 9.09,
"intrinsicValue": -10.79,
"pennyPilot": true,
"inTheMoney": false,
"mini": false,
"nonStandard": false
}
],
"144.0": [
{
"putCall": "PUT",
"symbol": "AAPL_031023P144",
"description": "AAPL Mar 10 2023 144 Put (Weekly)",
"exchangeName": "OPR",
"bid": 0.07,
"ask": 0.08,
"last": 0.09,
"mark": 0.08,
"bidSize": 19,
"askSize": 30,
"bidAskSize": "19X30",
"lastSize": 0,
"highPrice": 0.0,
"lowPrice": 0.0,
"openPrice": 0.0,
"closePrice": 0.09,
"totalVolume": 0,
"tradeDate": null,
"tradeTimeInLong": 1678136380105,
"quoteTimeInLong": 1678199403163,
"netChange": 0.0,
"volatility": 33.481,
"delta": -0.036,
"gamma": 0.014,
"theta": -0.048,
"vega": 0.014,
"rho": -0.001,
"openInterest": 6064,
"timeValue": 0.09,
"theoreticalOptionValue": 0.085,
"theoreticalVolatility": 29.0,
"optionDeliverablesList": null,
"strikePrice": 144.0,
"expirationDate": 1678482000000,
"daysToExpiration": 3,
"expirationType": "S",
"lastTradingDay": 1678496400000,
"multiplier": 100.0,
"settlementType": " ",
"deliverableNote": "",
"isIndexOption": null,
"percentChange": 5.88,
"markChange": -0.01,
"markPercentChange": -11.76,
"intrinsicValue": -9.79,
"pennyPilot": true,
"inTheMoney": false,
"mini": false,
"nonStandard": false
}
],
"145.0": [
{
"putCall": "PUT",
"symbol": "AAPL_031023P145",
"description": "AAPL Mar 10 2023 145 Put (Weekly)",
"exchangeName": "OPR",
"bid": 0.1,
"ask": 0.11,
"last": 0.11,
"mark": 0.11,
"bidSize": 19,
"askSize": 30,
"bidAskSize": "19X30",
"lastSize": 0,
"highPrice": 0.0,
"lowPrice": 0.0,
"openPrice": 0.0,
"closePrice": 0.12,
"totalVolume": 0,
"tradeDate": null,
"tradeTimeInLong": 1678136381040,
"quoteTimeInLong": 1678199403163,
"netChange": 0.0,
"volatility": 32.497,
"delta": -0.048,
"gamma": 0.018,
"theta": -0.059,
"vega": 0.017,
"rho": -0.001,
"openInterest": 12178,
"timeValue": 0.11,
"theoreticalOptionValue": 0.115,
"theoreticalVolatility": 29.0,
"optionDeliverablesList": null,
"strikePrice": 145.0,
"expirationDate": 1678482000000,
"daysToExpiration": 3,
"expirationType": "S",
"lastTradingDay": 1678496400000,
"multiplier": 100.0,
"settlementType": " ",
"deliverableNote": "",
"isIndexOption": null,
"percentChange": -4.35,
"markChange": -0.01,
"markPercentChange": -8.7,
"intrinsicValue": -8.79,
"pennyPilot": true,
"inTheMoney": false,
"mini": false,
"nonStandard": false
}
],
"146.0": [
{
"putCall": "PUT",
"symbol": "AAPL_031023P146",
"description": "AAPL Mar 10 2023 146 Put (Weekly)",
"exchangeName": "OPR",
"bid": 0.14,
"ask": 0.15,
"last": 0.15,
"mark": 0.15,
"bidSize": 19,
"askSize": 19,
"bidAskSize": "19X19",
"lastSize": 0,
"highPrice": 0.0,
"lowPrice": 0.0,
"openPrice": 0.0,
"closePrice": 0.16,
"totalVolume": 0,
"tradeDate": null,
"tradeTimeInLong": 1678136368723,
"quoteTimeInLong": 1678199403162,
"netChange": 0.0,
"volatility": 31.48,
"delta": -0.064,
"gamma": 0.023,
"theta": -0.071,
"vega": 0.022,
"rho": -0.001,
"openInterest": 14504,
"timeValue": 0.15,
"theoreticalOptionValue": 0.155,
"theoreticalVolatility": 29.0,
"optionDeliverablesList": null,
"strikePrice": 146.0,
"expirationDate": 1678482000000,
"daysToExpiration": 3,
"expirationType": "S",
"lastTradingDay": 1678496400000,
"multiplier": 100.0,
"settlementType": " ",
"deliverableNote": "",
"isIndexOption": null,
"percentChange": -3.23,
"markChange": -0.01,
"markPercentChange": -6.45,
"intrinsicValue": -7.79,
"pennyPilot": true,
"inTheMoney": false,
"mini": false,
"nonStandard": false
}
],
"147.0": [
{
"putCall": "PUT",
"symbol": "AAPL_031023P147",
"description": "AAPL Mar 10 2023 147 Put (Weekly)",
"exchangeName": "OPR",
"bid": 0.2,
"ask": 0.22,
"last": 0.22,
"mark": 0.21,
"bidSize": 43,
"askSize": 30,
"bidAskSize": "43X30",
"lastSize": 0,
"highPrice": 0.28,
"lowPrice": 0.22,
"openPrice": 0.0,
"closePrice": 0.21,
"totalVolume": 5,
"tradeDate": null,
"tradeTimeInLong": 1678199400339,
"quoteTimeInLong": 1678199403172,
"netChange": 0.01,
"volatility": 30.494,
"delta": -0.085,
"gamma": 0.029,
"theta": -0.085,
"vega": 0.027,
"rho": -0.002,
"openInterest": 6979,
"timeValue": 0.22,
"theoreticalOptionValue": 0.21,
"theoreticalVolatility": 29.0,
"optionDeliverablesList": null,
"strikePrice": 147.0,
"expirationDate": 1678482000000,
"daysToExpiration": 3,
"expirationType": "S",
"lastTradingDay": 1678496400000,
"multiplier": 100.0,
"settlementType": " ",
"deliverableNote": "",
"isIndexOption": null,
"percentChange": 4.76,
"markChange": 0.0,
"markPercentChange": 0.0,
"intrinsicValue": -6.79,
"pennyPilot": true,
"inTheMoney": false,
"mini": false,
"nonStandard": false
}
],
"148.0": [
{
"putCall": "PUT",
"symbol": "AAPL_031023P148",
"description": "AAPL Mar 10 2023 148 Put (Weekly)",
"exchangeName": "OPR",
"bid": 0.3,
"ask": 0.31,
"last": 0.31,
"mark": 0.31,
"bidSize": 19,
"askSize": 30,
"bidAskSize": "19X30",
"lastSize": 0,
"highPrice": 0.31,
"lowPrice": 0.31,
"openPrice": 0.0,
"closePrice": 0.31,
"totalVolume": 7,
"tradeDate": null,
"tradeTimeInLong": 1678199401743,
"quoteTimeInLong": 1678199403163,
"netChange": 0.0,
"volatility": 30.119,
"delta": -0.117,
"gamma": 0.038,
"theta": -0.105,
"vega": 0.034,
"rho": -0.002,
"openInterest": 11916,
"timeValue": 0.31,
"theoreticalOptionValue": 0.305,
"theoreticalVolatility": 29.0,
"optionDeliverablesList": null,
"strikePrice": 148.0,
"expirationDate": 1678482000000,
"daysToExpiration": 3,
"expirationType": "S",
"lastTradingDay": 1678496400000,
"multiplier": 100.0,
"settlementType": " ",
"deliverableNote": "",
"isIndexOption": null,
"percentChange": 1.64,
"markChange": 0.0,
"markPercentChange": 0.0,
"intrinsicValue": -5.79,
"pennyPilot": true,
"inTheMoney": false,
"mini": false,
"nonStandard": false
}
],
"149.0": [
{
"putCall": "PUT",
"symbol": "AAPL_031023P149",
"description": "AAPL Mar 10 2023 149 Put (Weekly)",
"exchangeName": "OPR",
"bid": 0.42,
"ask": 0.43,
"last": 0.43,
"mark": 0.43,
"bidSize": 100,
"askSize": 1,
"bidAskSize": "100X1",
"lastSize": 0,
"highPrice": 0.44,
"lowPrice": 0.43,
"openPrice": 0.0,
"closePrice": 0.42,
"totalVolume": 6,
"tradeDate": null,
"tradeTimeInLong": 1678199402070,
"quoteTimeInLong": 1678199403148,
"netChange": 0.01,
"volatility": 29.388,
"delta": -0.155,
"gamma": 0.047,
"theta": -0.124,
"vega": 0.041,
"rho": -0.003,
"openInterest": 8615,
"timeValue": 0.43,
"theoreticalOptionValue": 0.42,
"theoreticalVolatility": 29.0,
"optionDeliverablesList": null,
"strikePrice": 149.0,
"expirationDate": 1678482000000,
"daysToExpiration": 3,
"expirationType": "S",
"lastTradingDay": 1678496400000,
"multiplier": 100.0,
"settlementType": " ",
"deliverableNote": "",
"isIndexOption": null,
"percentChange": 2.38,
"markChange": 0.01,
"markPercentChange": 1.19,
"intrinsicValue": -4.79,
"pennyPilot": true,
"inTheMoney": false,
"mini": false,
"nonStandard": false
}
],
"150.0": [
{
"putCall": "PUT",
"symbol": "AAPL_031023P150",
"description": "AAPL Mar 10 2023 150 Put (Weekly)",
"exchangeName": "OPR",
"bid": 0.6,
"ask": 0.6,
"last": 0.6,
"mark": 0.6,
"bidSize": 1,
"askSize": 5,
"bidAskSize": "1X5",
"lastSize": 0,
"highPrice": 0.62,
"lowPrice": 0.6,
"openPrice": 0.0,
"closePrice": 0.6,
"totalVolume": 42,
"tradeDate": null,
"tradeTimeInLong": 1678199401600,
"quoteTimeInLong": 1678199403152,
"netChange": 0.0,
"volatility": 29.101,
"delta": -0.206,
"gamma": 0.056,
"theta": -0.145,
"vega": 0.05,
"rho": -0.004,
"openInterest": 32917,
"timeValue": 0.6,
"theoreticalOptionValue": 0.595,
"theoreticalVolatility": 29.0,
"optionDeliverablesList": null,
"strikePrice": 150.0,
"expirationDate": 1678482000000,
"daysToExpiration": 3,
"expirationType": "S",
"lastTradingDay": 1678496400000,
"multiplier": 100.0,
"settlementType": " ",
"deliverableNote": "",
"isIndexOption": null,
"percentChange": 0.84,
"markChange": 0.0,
"markPercentChange": 0.84,
"intrinsicValue": -3.79,
"pennyPilot": true,
"inTheMoney": false,
"mini": false,
"nonStandard": false
}
],
"152.5": [
{
"putCall": "PUT",
"symbol": "AAPL_031023P152.5",
"description": "AAPL Mar 10 2023 152.5 Put (Weekly)",
"exchangeName": "OPR",
"bid": 1.27,
"ask": 1.3,
"last": 1.27,
"mark": 1.29,
"bidSize": 14,
"askSize": 62,
"bidAskSize": "14X62",
"lastSize": 0,
"highPrice": 1.36,
"lowPrice": 1.27,
"openPrice": 0.0,
"closePrice": 1.27,
"totalVolume": 39,
"tradeDate": null,
"tradeTimeInLong": 1678199402735,
"quoteTimeInLong": 1678199403164,
"netChange": 0.0,
"volatility": 28.056,
"delta": -0.371,
"gamma": 0.078,
"theta": -0.181,
"vega": 0.066,
"rho": -0.007,
"openInterest": 14481,
"timeValue": 1.27,
"theoreticalOptionValue": 1.27,
"theoreticalVolatility": 29.0,
"optionDeliverablesList": null,
"strikePrice": 152.5,
"expirationDate": 1678482000000,
"daysToExpiration": 3,
"expirationType": "S",
"lastTradingDay": 1678496400000,
"multiplier": 100.0,
"settlementType": " ",
"deliverableNote": "",
"isIndexOption": null,
"percentChange": 0.0,
"markChange": 0.02,
"markPercentChange": 1.18,
"intrinsicValue": -1.29,
"pennyPilot": true,
"inTheMoney": false,
"mini": false,
"nonStandard": false
}
],
"155.0": [
{
"putCall": "PUT",
"symbol": "AAPL_031023P155",
"description": "AAPL Mar 10 2023 155 Put (Weekly)",
"exchangeName": "OPR",
"bid": 2.42,
"ask": 2.46,
"last": 2.43,
"mark": 2.44,
"bidSize": 19,
"askSize": 30,
"bidAskSize": "19X30",
"lastSize": 0,
"highPrice": 2.44,
"lowPrice": 2.43,
"openPrice": 0.0,
"closePrice": 2.36,
"totalVolume": 15,
"tradeDate": null,
"tradeTimeInLong": 1678199403038,
"quoteTimeInLong": 1678199403163,
"netChange": 0.07,
"volatility": 26.419,
"delta": -0.581,
"gamma": 0.087,
"theta": -0.168,
"vega": 0.068,
"rho": -0.011,
"openInterest": 16298,
"timeValue": 1.22,
"theoreticalOptionValue": 2.371,
"theoreticalVolatility": 29.0,
"optionDeliverablesList": null,
"strikePrice": 155.0,
"expirationDate": 1678482000000,
"daysToExpiration": 3,
"expirationType": "S",
"lastTradingDay": 1678496400000,
"multiplier": 100.0,
"settlementType": " ",
"deliverableNote": "",
"isIndexOption": null,
"percentChange": 2.83,
"markChange": 0.08,
"markPercentChange": 3.25,
"intrinsicValue": 1.21,
"pennyPilot": true,
"inTheMoney": true,
"mini": false,
"nonStandard": false
}
],
"157.5": [
{
"putCall": "PUT",
"symbol": "AAPL_031023P157.5",
"description": "AAPL Mar 10 2023 157.5 Put (Weekly)",
"exchangeName": "OPR",
"bid": 4.1,
"ask": 4.2,
"last": 4.12,
"mark": 4.15,
"bidSize": 47,
"askSize": 30,
"bidAskSize": "47X30",
"lastSize": 0,
"highPrice": 4.12,
"lowPrice": 4.12,
"openPrice": 0.0,
"closePrice": 4.07,
"totalVolume": 1,
"tradeDate": null,
"tradeTimeInLong": 1678199401378,
"quoteTimeInLong": 1678199403163,
"netChange": 0.05,
"volatility": 25.817,
"delta": -0.786,
"gamma": 0.072,
"theta": -0.113,
"vega": 0.05,
"rho": -0.012,
"openInterest": 3709,
"timeValue": 0.41,
"theoreticalOptionValue": 4.075,
"theoreticalVolatility": 29.0,
"optionDeliverablesList": null,
"strikePrice": 157.5,
"expirationDate": 1678482000000,
"daysToExpiration": 3,
"expirationType": "S",
"lastTradingDay": 1678496400000,
"multiplier": 100.0,
"settlementType": " ",
"deliverableNote": "",
"isIndexOption": null,
"percentChange": 1.13,
"markChange": 0.08,
"markPercentChange": 1.86,
"intrinsicValue": 3.71,
"pennyPilot": true,
"inTheMoney": true,
"mini": false,
"nonStandard": false
}
],
"160.0": [
{
"putCall": "PUT",
"symbol": "AAPL_031023P160",
"description": "AAPL Mar 10 2023 160 Put (Weekly)",
"exchangeName": "OPR",
"bid": 6.05,
"ask": 6.5,
"last": 6.25,
"mark": 6.28,
"bidSize": 91,
"askSize": 90,
"bidAskSize": "91X90",
"lastSize": 0,
"highPrice": 6.25,
"lowPrice": 6.25,
"openPrice": 0.0,
"closePrice": 6.24,
"totalVolume": 30,
"tradeDate": null,
"tradeTimeInLong": 1678199401527,
"quoteTimeInLong": 1678199403163,
"netChange": 0.01,
"volatility": 25.7,
"delta": -0.928,
"gamma": 0.044,
"theta": -0.045,
"vega": 0.023,
"rho": -0.008,
"openInterest": 3862,
"timeValue": 0.04,
"theoreticalOptionValue": 6.241,
"theoreticalVolatility": 29.0,
"optionDeliverablesList": null,
"strikePrice": 160.0,
"expirationDate": 1678482000000,
"daysToExpiration": 3,
"expirationType": "S",
"lastTradingDay": 1678496400000,
"multiplier": 100.0,
"settlementType": " ",
"deliverableNote": "",
"isIndexOption": null,
"percentChange": 0.14,
"markChange": 0.03,
"markPercentChange": 0.54,
"intrinsicValue": 6.21,
"pennyPilot": true,
"inTheMoney": true,
"mini": false,
"nonStandard": false
}
],
"162.5": [
{
"putCall": "PUT",
"symbol": "AAPL_031023P162.5",
"description": "AAPL Mar 10 2023 162.5 Put (Weekly)",
"exchangeName": "OPR",
"bid": 8.05,
"ask": 9.0,
"last": 8.6,
"mark": 8.53,
"bidSize": 90,
"askSize": 90,
"bidAskSize": "90X90",
"lastSize": 0,
"highPrice": 0.0,
"lowPrice": 0.0,
"openPrice": 0.0,
"closePrice": 8.67,
"totalVolume": 0,
"tradeDate": null,
"tradeTimeInLong": 1678135682024,
"quoteTimeInLong": 1678199403029,
"netChange": -0.07,
"volatility": 26.804,
"delta": -1.0,
"gamma": 0.0,
"theta": 0.0,
"vega": 0.0,
"rho": 0.0,
"openInterest": 240,
"timeValue": -0.11,
"theoreticalOptionValue": 8.67,
"theoreticalVolatility": 29.0,
"optionDeliverablesList": null,
"strikePrice": 162.5,
"expirationDate": 1678482000000,
"daysToExpiration": 3,
"expirationType": "S",
"lastTradingDay": 1678496400000,
"multiplier": 100.0,
"settlementType": " ",
"deliverableNote": "",
"isIndexOption": null,
"percentChange": -0.81,
"markChange": -0.15,
"markPercentChange": -1.67,
"intrinsicValue": 8.71,
"pennyPilot": true,
"inTheMoney": true,
"mini": false,
"nonStandard": false
}
],
"165.0": [
{
"putCall": "PUT",
"symbol": "AAPL_031023P165",
"description": "AAPL Mar 10 2023 165 Put (Weekly)",
"exchangeName": "OPR",
"bid": 9.95,
"ask": 12.4,
"last": 11.1,
"mark": 11.18,
"bidSize": 90,
"askSize": 90,
"bidAskSize": "90X90",
"lastSize": 0,
"highPrice": 0.0,
"lowPrice": 0.0,
"openPrice": 0.0,
"closePrice": 11.17,
"totalVolume": 0,
"tradeDate": null,
"tradeTimeInLong": 1678136309228,
"quoteTimeInLong": 1678199402889,
"netChange": -0.07,
"volatility": 29.091,
"delta": -1.0,
"gamma": 0.0,
"theta": 0.0,
"vega": 0.0,
"rho": 0.0,
"openInterest": 129,
"timeValue": -0.11,
"theoreticalOptionValue": 11.17,
"theoreticalVolatility": 29.0,
"optionDeliverablesList": null,
"strikePrice": 165.0,
"expirationDate": 1678482000000,
"daysToExpiration": 3,
"expirationType": "S",
"lastTradingDay": 1678496400000,
"multiplier": 100.0,
"settlementType": " ",
"deliverableNote": "",
"isIndexOption": null,
"percentChange": -0.63,
"markChange": 0.0,
"markPercentChange": 0.04,
"intrinsicValue": 11.21,
"pennyPilot": true,
"inTheMoney": true,
"mini": false,
"nonStandard": false
}
],
"167.5": [
{
"putCall": "PUT",
"symbol": "AAPL_031023P167.5",
"description": "AAPL Mar 10 2023 167.5 Put (Weekly)",
"exchangeName": "OPR",
"bid": 12.7,
"ask": 14.9,
"last": 11.8,
"mark": 13.8,
"bidSize": 90,
"askSize": 90,
"bidAskSize": "90X90",
"lastSize": 0,
"highPrice": 0.0,
"lowPrice": 0.0,
"openPrice": 0.0,
"closePrice": 13.67,
"totalVolume": 0,
"tradeDate": null,
"tradeTimeInLong": 1678119109755,
"quoteTimeInLong": 1678199403191,
"netChange": -1.87,
"volatility": 30.843,
"delta": -1.0,
"gamma": 0.0,
"theta": 0.0,
"vega": 0.0,
"rho": 0.0,
"openInterest": 7,
"timeValue": -1.91,
"theoreticalOptionValue": 13.67,
"theoreticalVolatility": 29.0,
"optionDeliverablesList": null,
"strikePrice": 167.5,
"expirationDate": 1678482000000,
"daysToExpiration": 3,
"expirationType": "S",
"lastTradingDay": 1678496400000,
"multiplier": 100.0,
"settlementType": " ",
"deliverableNote": "",
"isIndexOption": null,
"percentChange": -13.68,
"markChange": 0.13,
"markPercentChange": 0.95,
"intrinsicValue": 13.71,
"pennyPilot": true,
"inTheMoney": true,
"mini": false,
"nonStandard": false
}
],
"170.0": [
{
"putCall": "PUT",
"symbol": "AAPL_031023P170",
"description": "AAPL Mar 10 2023 170 Put (Weekly)",
"exchangeName": "OPR",
"bid": 15.1,
"ask": 17.35,
"last": 15.65,
"mark": 16.23,
"bidSize": 90,
"askSize": 90,
"bidAskSize": "90X90",
"lastSize": 0,
"highPrice": 0.0,
"lowPrice": 0.0,
"openPrice": 0.0,
"closePrice": 16.17,
"totalVolume": 0,
"tradeDate": null,
"tradeTimeInLong": 1678133403514,
"quoteTimeInLong": 1678199402751,
"netChange": -0.52,
"volatility": 30.811,
"delta": -1.0,
"gamma": 0.0,
"theta": 0.0,
"vega": 0.0,
"rho": 0.0,
"openInterest": 4,
"timeValue": -0.56,
"theoreticalOptionValue": 16.17,
"theoreticalVolatility": 29.0,
"optionDeliverablesList": null,
"strikePrice": 170.0,
"expirationDate": 1678482000000,
"daysToExpiration": 3,
"expirationType": "S",
"lastTradingDay": 1678496400000,
"multiplier": 100.0,
"settlementType": " ",
"deliverableNote": "",
"isIndexOption": null,
"percentChange": -3.22,
"markChange": 0.05,
"markPercentChange": 0.34,
"intrinsicValue": 16.21,
"pennyPilot": true,
"inTheMoney": true,
"mini": false,
"nonStandard": false
}
],
"172.5": [
{
"putCall": "PUT",
"symbol": "AAPL_031023P172.5",
"description": "AAPL Mar 10 2023 172.5 Put (Weekly)",
"exchangeName": "OPR",
"bid": 17.45,
"ask": 19.85,
"last": 16.8,
"mark": 18.65,
"bidSize": 90,
"askSize": 90,
"bidAskSize": "90X90",
"lastSize": 0,
"highPrice": 0.0,
"lowPrice": 0.0,
"openPrice": 0.0,
"closePrice": 18.67,
"totalVolume": 0,
"tradeDate": null,
"tradeTimeInLong": 1678119109768,
"quoteTimeInLong": 1678199403163,
"netChange": -1.87,
"volatility": 30.856,
"delta": -1.0,
"gamma": 0.0,
"theta": 0.0,
"vega": 0.0,
"rho": 0.0,
"openInterest": 0,
"timeValue": -1.91,
"theoreticalOptionValue": 18.67,
"theoreticalVolatility": 29.0,
"optionDeliverablesList": null,
"strikePrice": 172.5,
"expirationDate": 1678482000000,
"daysToExpiration": 3,
"expirationType": "S",
"lastTradingDay": 1678496400000,
"multiplier": 100.0,
"settlementType": " ",
"deliverableNote": "",
"isIndexOption": null,
"percentChange": -10.02,
"markChange": -0.02,
"markPercentChange": -0.11,
"intrinsicValue": 18.71,
"pennyPilot": true,
"inTheMoney": true,
"mini": false,
"nonStandard": false
}
],
"175.0": [
{
"putCall": "PUT",
"symbol": "AAPL_031023P175",
"description": "AAPL Mar 10 2023 175 Put (Weekly)",
"exchangeName": "OPR",
"bid": 19.95,
"ask": 22.35,
"last": 19.75,
"mark": 21.15,
"bidSize": 90,
"askSize": 90,
"bidAskSize": "90X90",
"lastSize": 0,
"highPrice": 0.0,
"lowPrice": 0.0,
"openPrice": 0.0,
"closePrice": 21.17,
"totalVolume": 0,
"tradeDate": null,
"tradeTimeInLong": 1678117247043,
"quoteTimeInLong": 1678199403163,
"netChange": -1.42,
"volatility": 31.067,
"delta": -1.0,
"gamma": 0.0,
"theta": 0.0,
"vega": 0.0,
"rho": 0.0,
"openInterest": 17,
"timeValue": -1.46,
"theoreticalOptionValue": 21.17,
"theoreticalVolatility": 29.0,
"optionDeliverablesList": null,
"strikePrice": 175.0,
"expirationDate": 1678482000000,
"daysToExpiration": 3,
"expirationType": "S",
"lastTradingDay": 1678496400000,
"multiplier": 100.0,
"settlementType": " ",
"deliverableNote": "",
"isIndexOption": null,
"percentChange": -6.71,
"markChange": -0.02,
"markPercentChange": -0.09,
"intrinsicValue": 21.21,
"pennyPilot": true,
"inTheMoney": true,
"mini": false,
"nonStandard": false
}
],
"177.5": [
{
"putCall": "PUT",
"symbol": "AAPL_031023P177.5",
"description": "AAPL Mar 10 2023 177.5 Put (Weekly)",
"exchangeName": "OPR",
"bid": 22.45,
"ask": 24.85,
"last": 0.0,
"mark": 23.65,
"bidSize": 90,
"askSize": 90,
"bidAskSize": "90X90",
"lastSize": 0,
"highPrice": 0.0,
"lowPrice": 0.0,
"openPrice": 0.0,
"closePrice": 23.67,
"totalVolume": 0,
"tradeDate": null,
"tradeTimeInLong": 0,
"quoteTimeInLong": 1678199403163,
"netChange": 0.0,
"volatility": 32.866,
"delta": -1.0,
"gamma": 0.0,
"theta": 0.0,
"vega": 0.0,
"rho": 0.0,
"openInterest": 0,
"timeValue": -0.06,
"theoreticalOptionValue": 23.67,
"theoreticalVolatility": 29.0,
"optionDeliverablesList": null,
"strikePrice": 177.5,
"expirationDate": 1678482000000,
"daysToExpiration": 3,
"expirationType": "S",
"lastTradingDay": 1678496400000,
"multiplier": 100.0,
"settlementType": " ",
"deliverableNote": "",
"isIndexOption": null,
"percentChange": 0.0,
"markChange": -0.02,
"markPercentChange": -0.08,
"intrinsicValue": 23.71,
"pennyPilot": true,
"inTheMoney": true,
"mini": false,
"nonStandard": false
}
],
"180.0": [
{
"putCall": "PUT",
"symbol": "AAPL_031023P180",
"description": "AAPL Mar 10 2023 180 Put (Weekly)",
"exchangeName": "OPR",
"bid": 24.95,
"ask": 27.35,
"last": 25.0,
"mark": 26.15,
"bidSize": 90,
"askSize": 90,
"bidAskSize": "90X90",
"lastSize": 0,
"highPrice": 0.0,
"lowPrice": 0.0,
"openPrice": 0.0,
"closePrice": 26.17,
"totalVolume": 0,
"tradeDate": null,
"tradeTimeInLong": 1678116796163,
"quoteTimeInLong": 1678199402746,
"netChange": -1.17,
"volatility": 35.913,
"delta": -1.0,
"gamma": 0.0,
"theta": 0.0,
"vega": 0.0,
"rho": 0.0,
"openInterest": 41,
"timeValue": -1.21,
"theoreticalOptionValue": 26.17,
"theoreticalVolatility": 29.0,
"optionDeliverablesList": null,
"strikePrice": 180.0,
"expirationDate": 1678482000000,
"daysToExpiration": 3,
"expirationType": "S",
"lastTradingDay": 1678496400000,
"multiplier": 100.0,
"settlementType": " ",
"deliverableNote": "",
"isIndexOption": null,
"percentChange": -4.47,
"markChange": -0.02,
"markPercentChange": -0.08,
"intrinsicValue": 26.21,
"pennyPilot": true,
"inTheMoney": true,
"mini": false,
"nonStandard": false
}
]
},
"2023-03-17:10": {
"142.0": [
{
"putCall": "PUT",
"symbol": "AAPL_031723P142",
"description": "AAPL Mar 17 2023 142 Put",
"exchangeName": "OPR",
"bid": 0.25,
"ask": 0.26,
"last": 0.26,
"mark": 0.26,
"bidSize": 26,
"askSize": 30,
"bidAskSize": "26X30",
"lastSize": 0,
"highPrice": 0.26,
"lowPrice": 0.26,
"openPrice": 0.0,
"closePrice": 0.25,
"totalVolume": 1,
"tradeDate": null,
"tradeTimeInLong": 1678199400011,
"quoteTimeInLong": 1678199403163,
"netChange": 0.0,
"volatility": 31.049,
"delta": -0.067,
"gamma": 0.015,
"theta": -0.046,
"vega": 0.036,
"rho": -0.003,
"openInterest": 4659,
"timeValue": 0.26,
"theoreticalOptionValue": 0.255,
"theoreticalVolatility": 29.0,
"optionDeliverablesList": null,
"strikePrice": 142.0,
"expirationDate": 1679083200000,
"daysToExpiration": 10,
"expirationType": "R",
"lastTradingDay": 1679097600000,
"multiplier": 100.0,
"settlementType": " ",
"deliverableNote": "",
"isIndexOption": null,
"percentChange": 1.96,
"markChange": 0.0,
"markPercentChange": 0.0,
"intrinsicValue": -11.79,
"pennyPilot": true,
"inTheMoney": false,
"mini": false,
"nonStandard": false
}
],
"143.0": [
{
"putCall": "PUT",
"symbol": "AAPL_031723P143",
"description": "AAPL Mar 17 2023 143 Put",
"exchangeName": "OPR",
"bid": 0.31,
"ask": 0.33,
"last": 0.33,
"mark": 0.32,
"bidSize": 33,
"askSize": 31,
"bidAskSize": "33X31",
"lastSize": 0,
"highPrice": 0.33,
"lowPrice": 0.33,
"openPrice": 0.0,
"closePrice": 0.32,
"totalVolume": 1,
"tradeDate": null,
"tradeTimeInLong": 1678199400238,
"quoteTimeInLong": 1678199403153,
"netChange": 0.01,
"volatility": 30.612,
"delta": -0.082,
"gamma": 0.018,
"theta": -0.052,
"vega": 0.042,
"rho": -0.004,
"openInterest": 4313,
"timeValue": 0.33,
"theoreticalOptionValue": 0.32,
"theoreticalVolatility": 29.0,
"optionDeliverablesList": null,
"strikePrice": 143.0,
"expirationDate": 1679083200000,
"daysToExpiration": 10,
"expirationType": "R",
"lastTradingDay": 1679097600000,
"multiplier": 100.0,
"settlementType": " ",
"deliverableNote": "",
"isIndexOption": null,
"percentChange": 3.13,
"markChange": 0.0,
"markPercentChange": 0.0,
"intrinsicValue": -10.79,
"pennyPilot": true,
"inTheMoney": false,
"mini": false,
"nonStandard": false
}
],
"144.0": [
{
"putCall": "PUT",
"symbol": "AAPL_031723P144",
"description": "AAPL Mar 17 2023 144 Put",
"exchangeName": "OPR",
"bid": 0.39,
"ask": 0.41,
"last": 0.4,
"mark": 0.4,
"bidSize": 19,
"askSize": 30,
"bidAskSize": "19X30",
"lastSize": 0,
"highPrice": 0.4,
"lowPrice": 0.4,
"openPrice": 0.0,
"closePrice": 0.4,
"totalVolume": 1,
"tradeDate": null,
"tradeTimeInLong": 1678199400797,
"quoteTimeInLong": 1678199403169,
"netChange": 0.0,
"volatility": 30.075,
"delta": -0.099,
"gamma": 0.021,
"theta": -0.059,
"vega": 0.048,
"rho": -0.005,
"openInterest": 2987,
"timeValue": 0.4,
"theoreticalOptionValue": 0.395,
"theoreticalVolatility": 29.0,
"optionDeliverablesList": null,
"strikePrice": 144.0,
"expirationDate": 1679083200000,
"daysToExpiration": 10,
"expirationType": "R",
"lastTradingDay": 1679097600000,
"multiplier": 100.0,
"settlementType": " ",
"deliverableNote": "",
"isIndexOption": null,
"percentChange": 1.27,
"markChange": 0.0,
"markPercentChange": 1.27,
"intrinsicValue": -9.79,
"pennyPilot": true,
"inTheMoney": false,
"mini": false,
"nonStandard": false
}
],
"145.0": [
{
"putCall": "PUT",
"symbol": "AAPL_031723P145",
"description": "AAPL Mar 17 2023 145 Put",
"exchangeName": "OPR",
"bid": 0.49,
"ask": 0.5,
"last": 0.51,
"mark": 0.5,
"bidSize": 19,
"askSize": 1,
"bidAskSize": "19X1",
"lastSize": 0,
"highPrice": 0.51,
"lowPrice": 0.5,
"openPrice": 0.0,
"closePrice": 0.49,
"totalVolume": 43,
"tradeDate": null,
"tradeTimeInLong": 1678199400429,
"quoteTimeInLong": 1678199403153,
"netChange": 0.03,
"volatility": 29.515,
"delta": -0.119,
"gamma": 0.025,
"theta": -0.066,
"vega": 0.055,
"rho": -0.006,
"openInterest": 60676,
"timeValue": 0.51,
"theoreticalOptionValue": 0.485,
"theoreticalVolatility": 29.0,
"optionDeliverablesList": null,
"strikePrice": 145.0,
"expirationDate": 1679083200000,
"daysToExpiration": 10,
"expirationType": "R",
"lastTradingDay": 1679097600000,
"multiplier": 100.0,
"settlementType": " ",
"deliverableNote": "",
"isIndexOption": null,
"percentChange": 5.15,
"markChange": 0.01,
"markPercentChange": 2.06,
"intrinsicValue": -8.79,
"pennyPilot": true,
"inTheMoney": false,
"mini": false,
"nonStandard": false
}
],
"146.0": [
{
"putCall": "PUT",
"symbol": "AAPL_031723P146",
"description": "AAPL Mar 17 2023 146 Put",
"exchangeName": "OPR",
"bid": 0.61,
"ask": 0.63,
"last": 0.61,
"mark": 0.62,
"bidSize": 19,
"askSize": 30,
"bidAskSize": "19X30",
"lastSize": 0,
"highPrice": 0.65,
"lowPrice": 0.61,
"openPrice": 0.0,
"closePrice": 0.61,
"totalVolume": 2,
"tradeDate": null,
"tradeTimeInLong": 1678199401609,
"quoteTimeInLong": 1678199403163,
"netChange": 0.0,
"volatility": 29.213,
"delta": -0.145,
"gamma": 0.028,
"theta": -0.075,
"vega": 0.063,
"rho": -0.007,
"openInterest": 16978,
"timeValue": 0.61,
"theoreticalOptionValue": 0.61,
"theoreticalVolatility": 29.0,
"optionDeliverablesList": null,
"strikePrice": 146.0,
"expirationDate": 1679083200000,
"daysToExpiration": 10,
"expirationType": "R",
"lastTradingDay": 1679097600000,
"multiplier": 100.0,
"settlementType": " ",
"deliverableNote": "",
"isIndexOption": null,
"percentChange": 0.0,
"markChange": 0.01,
"markPercentChange": 1.64,
"intrinsicValue": -7.79,
"pennyPilot": true,
"inTheMoney": false,
"mini": false,
"nonStandard": false
}
],
"147.0": [
{
"putCall": "PUT",
"symbol": "AAPL_031723P147",
"description": "AAPL Mar 17 2023 147 Put",
"exchangeName": "OPR",
"bid": 0.76,
"ask": 0.78,
"last": 0.76,
"mark": 0.77,
"bidSize": 19,
"askSize": 30,
"bidAskSize": "19X30",
"lastSize": 0,
"highPrice": 0.0,
"lowPrice": 0.0,
"openPrice": 0.0,
"closePrice": 0.75,
"totalVolume": 0,
"tradeDate": null,
"tradeTimeInLong": 1678136384768,
"quoteTimeInLong": 1678199403191,
"netChange": 0.01,
"volatility": 28.748,
"delta": -0.173,
"gamma": 0.032,
"theta": -0.082,
"vega": 0.07,
"rho": -0.009,
"openInterest": 6016,
"timeValue": 0.76,
"theoreticalOptionValue": 0.75,
"theoreticalVolatility": 29.0,
"optionDeliverablesList": null,
"strikePrice": 147.0,
"expirationDate": 1679083200000,
"daysToExpiration": 10,
"expirationType": "R",
"lastTradingDay": 1679097600000,
"multiplier": 100.0,
"settlementType": " ",
"deliverableNote": "",
"isIndexOption": null,
"percentChange": 1.33,
"markChange": 0.02,
"markPercentChange": 2.67,
"intrinsicValue": -6.79,
"pennyPilot": true,
"inTheMoney": false,
"mini": false,
"nonStandard": false
}
],
"148.0": [
{
"putCall": "PUT",
"symbol": "AAPL_031723P148",
"description": "AAPL Mar 17 2023 148 Put",
"exchangeName": "OPR",
"bid": 0.93,
"ask": 0.96,
"last": 0.94,
"mark": 0.95,
"bidSize": 19,
"askSize": 30,
"bidAskSize": "19X30",
"lastSize": 0,
"highPrice": 0.0,
"lowPrice": 0.0,
"openPrice": 0.0,
"closePrice": 0.93,
"totalVolume": 0,
"tradeDate": null,
"tradeTimeInLong": 1678136373514,
"quoteTimeInLong": 1678199403163,
"netChange": 0.01,
"volatility": 28.377,
"delta": -0.206,
"gamma": 0.037,
"theta": -0.09,
"vega": 0.078,
"rho": -0.01,
"openInterest": 5324,
"timeValue": 0.94,
"theoreticalOptionValue": 0.925,
"theoreticalVolatility": 29.0,
"optionDeliverablesList": null,
"strikePrice": 148.0,
"expirationDate": 1679083200000,
"daysToExpiration": 10,
"expirationType": "R",
"lastTradingDay": 1679097600000,
"multiplier": 100.0,
"settlementType": " ",
"deliverableNote": "",
"isIndexOption": null,
"percentChange": 1.62,
"markChange": 0.02,
"markPercentChange": 2.16,
"intrinsicValue": -5.79,
"pennyPilot": true,
"inTheMoney": false,
"mini": false,
"nonStandard": false
}
],
"149.0": [
{
"putCall": "PUT",
"symbol": "AAPL_031723P149",
"description": "AAPL Mar 17 2023 149 Put",
"exchangeName": "OPR",
"bid": 1.14,
"ask": 1.17,
"last": 1.18,
"mark": 1.15,
"bidSize": 19,
"askSize": 30,
"bidAskSize": "19X30",
"lastSize": 0,
"highPrice": 1.18,
"lowPrice": 1.17,
"openPrice": 0.0,
"closePrice": 1.13,
"totalVolume": 13,
"tradeDate": null,
"tradeTimeInLong": 1678199400437,
"quoteTimeInLong": 1678199403163,
"netChange": 0.05,
"volatility": 28.024,
"delta": -0.243,
"gamma": 0.041,
"theta": -0.098,
"vega": 0.086,
"rho": -0.012,
"openInterest": 5814,
"timeValue": 1.18,
"theoreticalOptionValue": 1.135,
"theoreticalVolatility": 29.0,
"optionDeliverablesList": null,
"strikePrice": 149.0,
"expirationDate": 1679083200000,
"daysToExpiration": 10,
"expirationType": "R",
"lastTradingDay": 1679097600000,
"multiplier": 100.0,
"settlementType": " ",
"deliverableNote": "",
"isIndexOption": null,
"percentChange": 3.96,
"markChange": 0.02,
"markPercentChange": 1.76,
"intrinsicValue": -4.79,
"pennyPilot": true,
"inTheMoney": false,
"mini": false,
"nonStandard": false
}
],
"150.0": [
{
"putCall": "PUT",
"symbol": "AAPL_031723P150",
"description": "AAPL Mar 17 2023 150 Put",
"exchangeName": "OPR",
"bid": 1.39,
"ask": 1.42,
"last": 1.4,
"mark": 1.4,
"bidSize": 19,
"askSize": 19,
"bidAskSize": "19X19",
"lastSize": 0,
"highPrice": 1.43,
"lowPrice": 1.4,
"openPrice": 0.0,
"closePrice": 1.38,
"totalVolume": 24,
"tradeDate": null,
"tradeTimeInLong": 1678199401706,
"quoteTimeInLong": 1678199403152,
"netChange": 0.02,
"volatility": 27.64,
"delta": -0.284,
"gamma": 0.045,
"theta": -0.104,
"vega": 0.093,
"rho": -0.014,
"openInterest": 73269,
"timeValue": 1.4,
"theoreticalOptionValue": 1.38,
"theoreticalVolatility": 29.0,
"optionDeliverablesList": null,
"strikePrice": 150.0,
"expirationDate": 1679083200000,
"daysToExpiration": 10,
"expirationType": "R",
"lastTradingDay": 1679097600000,
"multiplier": 100.0,
"settlementType": " ",
"deliverableNote": "",
"isIndexOption": null,
"percentChange": 1.45,
"markChange": 0.03,
"markPercentChange": 1.81,
"intrinsicValue": -3.79,
"pennyPilot": true,
"inTheMoney": false,
"mini": false,
"nonStandard": false
}
],
"152.5": [
{
"putCall": "PUT",
"symbol": "AAPL_031723P152.5",
"description": "AAPL Mar 17 2023 152.5 Put",
"exchangeName": "OPR",
"bid": 2.21,
"ask": 2.24,
"last": 2.23,
"mark": 2.23,
"bidSize": 3,
"askSize": 19,
"bidAskSize": "3X19",
"lastSize": 0,
"highPrice": 2.3,
"lowPrice": 2.23,
"openPrice": 0.0,
"closePrice": 2.18,
"totalVolume": 20,
"tradeDate": null,
"tradeTimeInLong": 1678199401514,
"quoteTimeInLong": 1678199403154,
"netChange": 0.05,
"volatility": 26.69,
"delta": -0.405,
"gamma": 0.053,
"theta": -0.112,
"vega": 0.107,
"rho": -0.02,
"openInterest": 5569,
"timeValue": 2.23,
"theoreticalOptionValue": 2.185,
"theoreticalVolatility": 29.0,
"optionDeliverablesList": null,
"strikePrice": 152.5,
"expirationDate": 1679083200000,
"daysToExpiration": 10,
"expirationType": "R",
"lastTradingDay": 1679097600000,
"multiplier": 100.0,
"settlementType": " ",
"deliverableNote": "",
"isIndexOption": null,
"percentChange": 2.06,
"markChange": 0.04,
"markPercentChange": 1.83,
"intrinsicValue": -1.29,
"pennyPilot": true,
"inTheMoney": false,
"mini": false,
"nonStandard": false
}
],
"155.0": [
{
"putCall": "PUT",
"symbol": "AAPL_031723P155",
"description": "AAPL Mar 17 2023 155 Put",
"exchangeName": "OPR",
"bid": 3.3,
"ask": 3.4,
"last": 3.4,
"mark": 3.35,
"bidSize": 30,
"askSize": 41,
"bidAskSize": "30X41",
"lastSize": 0,
"highPrice": 3.42,
"lowPrice": 3.4,
"openPrice": 0.0,
"closePrice": 3.3,
"totalVolume": 2,
"tradeDate": null,
"tradeTimeInLong": 1678199400310,
"quoteTimeInLong": 1678199403163,
"netChange": 0.1,
"volatility": 25.745,
"delta": -0.544,
"gamma": 0.057,
"theta": -0.108,
"vega": 0.109,
"rho": -0.025,
"openInterest": 26852,
"timeValue": 2.19,
"theoreticalOptionValue": 3.311,
"theoreticalVolatility": 29.0,
"optionDeliverablesList": null,
"strikePrice": 155.0,
"expirationDate": 1679083200000,
"daysToExpiration": 10,
"expirationType": "R",
"lastTradingDay": 1679097600000,
"multiplier": 100.0,
"settlementType": " ",
"deliverableNote": "",
"isIndexOption": null,
"percentChange": 2.99,
"markChange": 0.05,
"markPercentChange": 1.47,
"intrinsicValue": 1.21,
"pennyPilot": true,
"inTheMoney": true,
"mini": false,
"nonStandard": false
}
],
"157.5": [
{
"putCall": "PUT",
"symbol": "AAPL_031723P157.5",
"description": "AAPL Mar 17 2023 157.5 Put",
"exchangeName": "OPR",
"bid": 4.8,
"ask": 4.9,
"last": 4.85,
"mark": 4.85,
"bidSize": 20,
"askSize": 26,
"bidAskSize": "20X26",
"lastSize": 0,
"highPrice": 4.85,
"lowPrice": 4.85,
"openPrice": 0.0,
"closePrice": 4.78,
"totalVolume": 1,
"tradeDate": null,
"tradeTimeInLong": 1678199401479,
"quoteTimeInLong": 1678199403183,
"netChange": 0.07,
"volatility": 24.718,
"delta": -0.688,
"gamma": 0.055,
"theta": -0.088,
"vega": 0.097,
"rho": -0.03,
"openInterest": 1155,
"timeValue": 1.14,
"theoreticalOptionValue": 4.785,
"theoreticalVolatility": 29.0,
"optionDeliverablesList": null,
"strikePrice": 157.5,
"expirationDate": 1679083200000,
"daysToExpiration": 10,
"expirationType": "R",
"lastTradingDay": 1679097600000,
"multiplier": 100.0,
"settlementType": " ",
"deliverableNote": "",
"isIndexOption": null,
"percentChange": 1.42,
"markChange": 0.07,
"markPercentChange": 1.42,
"intrinsicValue": 3.71,
"pennyPilot": true,
"inTheMoney": true,
"mini": false,
"nonStandard": false
}
],
"160.0": [
{
"putCall": "PUT",
"symbol": "AAPL_031723P160",
"description": "AAPL Mar 17 2023 160 Put",
"exchangeName": "OPR",
"bid": 6.05,
"ask": 6.95,
"last": 6.76,
"mark": 6.5,
"bidSize": 36,
"askSize": 8,
"bidAskSize": "36X8",
"lastSize": 0,
"highPrice": 6.76,
"lowPrice": 6.76,
"openPrice": 0.0,
"closePrice": 6.64,
"totalVolume": 2,
"tradeDate": null,
"tradeTimeInLong": 1678199401365,
"quoteTimeInLong": 1678199403163,
"netChange": 0.12,
"volatility": 23.964,
"delta": -0.818,
"gamma": 0.045,
"theta": -0.06,
"vega": 0.072,
"rho": -0.029,
"openInterest": 6486,
"timeValue": 0.55,
"theoreticalOptionValue": 6.639,
"theoreticalVolatility": 29.0,
"optionDeliverablesList": null,
"strikePrice": 160.0,
"expirationDate": 1679083200000,
"daysToExpiration": 10,
"expirationType": "R",
"lastTradingDay": 1679097600000,
"multiplier": 100.0,
"settlementType": " ",
"deliverableNote": "",
"isIndexOption": null,
"percentChange": 1.8,
"markChange": -0.14,
"markPercentChange": -2.11,
"intrinsicValue": 6.21,
"pennyPilot": true,
"inTheMoney": true,
"mini": false,
"nonStandard": false
}
],
"162.5": [
{
"putCall": "PUT",
"symbol": "AAPL_031723P162.5",
"description": "AAPL Mar 17 2023 162.5 Put",
"exchangeName": "OPR",
"bid": 8.15,
"ask": 9.55,
"last": 8.7,
"mark": 8.85,
"bidSize": 2,
"askSize": 5,
"bidAskSize": "2X5",
"lastSize": 0,
"highPrice": 0.0,
"lowPrice": 0.0,
"openPrice": 0.0,
"closePrice": 8.82,
"totalVolume": 0,
"tradeDate": null,
"tradeTimeInLong": 1678133643368,
"quoteTimeInLong": 1678199403193,
"netChange": -0.12,
"volatility": 23.746,
"delta": -0.912,
"gamma": 0.032,
"theta": -0.032,
"vega": 0.042,
"rho": -0.023,
"openInterest": 186,
"timeValue": -0.01,
"theoreticalOptionValue": 8.815,
"theoreticalVolatility": 29.0,
"optionDeliverablesList": null,
"strikePrice": 162.5,
"expirationDate": 1679083200000,
"daysToExpiration": 10,
"expirationType": "R",
"lastTradingDay": 1679097600000,
"multiplier": 100.0,
"settlementType": " ",
"deliverableNote": "",
"isIndexOption": null,
"percentChange": -1.32,
"markChange": 0.03,
"markPercentChange": 0.38,
"intrinsicValue": 8.71,
"pennyPilot": true,
"inTheMoney": true,
"mini": false,
"nonStandard": false
}
],
"165.0": [
{
"putCall": "PUT",
"symbol": "AAPL_031723P165",
"description": "AAPL Mar 17 2023 165 Put",
"exchangeName": "OPR",
"bid": 10.5,
"ask": 11.95,
"last": 11.15,
"mark": 11.23,
"bidSize": 2,
"askSize": 2,
"bidAskSize": "2X2",
"lastSize": 0,
"highPrice": 0.0,
"lowPrice": 0.0,
"openPrice": 0.0,
"closePrice": 11.19,
"totalVolume": 0,
"tradeDate": null,
"tradeTimeInLong": 1678136345109,
"quoteTimeInLong": 1678199403013,
"netChange": -0.04,
"volatility": 24.095,
"delta": -0.967,
"gamma": 0.018,
"theta": -0.014,
"vega": 0.018,
"rho": -0.01,
"openInterest": 961,
"timeValue": -0.06,
"theoreticalOptionValue": 11.191,
"theoreticalVolatility": 29.0,
"optionDeliverablesList": null,
"strikePrice": 165.0,
"expirationDate": 1679083200000,
"daysToExpiration": 10,
"expirationType": "R",
"lastTradingDay": 1679097600000,
"multiplier": 100.0,
"settlementType": " ",
"deliverableNote": "",
"isIndexOption": null,
"percentChange": -0.39,
"markChange": 0.03,
"markPercentChange": 0.28,
"intrinsicValue": 11.21,
"pennyPilot": true,
"inTheMoney": true,
"mini": false,
"nonStandard": false
}
],
"167.5": [
{
"putCall": "PUT",
"symbol": "AAPL_031723P167.5",
"description": "AAPL Mar 17 2023 167.5 Put",
"exchangeName": "OPR",
"bid": 12.95,
"ask": 14.4,
"last": 12.8,
"mark": 13.68,
"bidSize": 2,
"askSize": 2,
"bidAskSize": "2X2",
"lastSize": 0,
"highPrice": 0.0,
"lowPrice": 0.0,
"openPrice": 0.0,
"closePrice": 13.67,
"totalVolume": 0,
"tradeDate": null,
"tradeTimeInLong": 1678128480122,
"quoteTimeInLong": 1678199403009,
"netChange": -0.87,
"volatility": 24.905,
"delta": -1.0,
"gamma": 0.0,
"theta": 0.0,
"vega": 0.0,
"rho": 0.0,
"openInterest": 5,
"timeValue": -0.91,
"theoreticalOptionValue": 13.67,
"theoreticalVolatility": 29.0,
"optionDeliverablesList": null,
"strikePrice": 167.5,
"expirationDate": 1679083200000,
"daysToExpiration": 10,
"expirationType": "R",
"lastTradingDay": 1679097600000,
"multiplier": 100.0,
"settlementType": " ",
"deliverableNote": "",
"isIndexOption": null,
"percentChange": -6.36,
"markChange": 0.0,
"markPercentChange": 0.04,
"intrinsicValue": 13.71,
"pennyPilot": true,
"inTheMoney": true,
"mini": false,
"nonStandard": false
}
],
"170.0": [
{
"putCall": "PUT",
"symbol": "AAPL_031723P170",
"description": "AAPL Mar 17 2023 170 Put",
"exchangeName": "OPR",
"bid": 15.45,
"ask": 16.9,
"last": 15.95,
"mark": 16.17,
"bidSize": 2,
"askSize": 2,
"bidAskSize": "2X2",
"lastSize": 0,
"highPrice": 0.0,
"lowPrice": 0.0,
"openPrice": 0.0,
"closePrice": 16.17,
"totalVolume": 0,
"tradeDate": null,
"tradeTimeInLong": 1678132922092,
"quoteTimeInLong": 1678199402644,
"netChange": -0.22,
"volatility": 25.829,
"delta": -1.0,
"gamma": 0.0,
"theta": 0.0,
"vega": 0.0,
"rho": 0.0,
"openInterest": 292,
"timeValue": -0.26,
"theoreticalOptionValue": 16.17,
"theoreticalVolatility": 29.0,
"optionDeliverablesList": null,
"strikePrice": 170.0,
"expirationDate": 1679083200000,
"daysToExpiration": 10,
"expirationType": "R",
"lastTradingDay": 1679097600000,
"multiplier": 100.0,
"settlementType": " ",
"deliverableNote": "",
"isIndexOption": null,
"percentChange": -1.36,
"markChange": 0.0,
"markPercentChange": 0.03,
"intrinsicValue": 16.21,
"pennyPilot": true,
"inTheMoney": true,
"mini": false,
"nonStandard": false
}
],
"172.5": [
{
"putCall": "PUT",
"symbol": "AAPL_031723P172.5",
"description": "AAPL Mar 17 2023 172.5 Put",
"exchangeName": "OPR",
"bid": 17.95,
"ask": 19.4,
"last": 17.12,
"mark": 18.67,
"bidSize": 2,
"askSize": 2,
"bidAskSize": "2X2",
"lastSize": 0,
"highPrice": 0.0,
"lowPrice": 0.0,
"openPrice": 0.0,
"closePrice": 18.67,
"totalVolume": 0,
"tradeDate": null,
"tradeTimeInLong": 1678118645563,
"quoteTimeInLong": 1678199402646,
"netChange": -1.55,
"volatility": 27.641,
"delta": -1.0,
"gamma": 0.0,
"theta": 0.0,
"vega": 0.0,
"rho": 0.0,
"openInterest": 1,
"timeValue": -1.59,
"theoreticalOptionValue": 18.67,
"theoreticalVolatility": 29.0,
"optionDeliverablesList": null,
"strikePrice": 172.5,
"expirationDate": 1679083200000,
"daysToExpiration": 10,
"expirationType": "R",
"lastTradingDay": 1679097600000,
"multiplier": 100.0,
"settlementType": " ",
"deliverableNote": "",
"isIndexOption": null,
"percentChange": -8.3,
"markChange": 0.0,
"markPercentChange": 0.03,
"intrinsicValue": 18.71,
"pennyPilot": true,
"inTheMoney": true,
"mini": false,
"nonStandard": false
}
],
"175.0": [
{
"putCall": "PUT",
"symbol": "AAPL_031723P175",
"description": "AAPL Mar 17 2023 175 Put",
"exchangeName": "OPR",
"bid": 20.45,
"ask": 21.75,
"last": 19.6,
"mark": 21.1,
"bidSize": 3,
"askSize": 10,
"bidAskSize": "3X10",
"lastSize": 0,
"highPrice": 0.0,
"lowPrice": 0.0,
"openPrice": 0.0,
"closePrice": 21.17,
"totalVolume": 0,
"tradeDate": null,
"tradeTimeInLong": 1678117705314,
"quoteTimeInLong": 1678199403194,
"netChange": -1.57,
"volatility": 29.655,
"delta": -1.0,
"gamma": 0.0,
"theta": 0.0,
"vega": 0.0,
"rho": 0.0,
"openInterest": 113,
"timeValue": -1.61,
"theoreticalOptionValue": 21.17,
"theoreticalVolatility": 29.0,
"optionDeliverablesList": null,
"strikePrice": 175.0,
"expirationDate": 1679083200000,
"daysToExpiration": 10,
"expirationType": "R",
"lastTradingDay": 1679097600000,
"multiplier": 100.0,
"settlementType": " ",
"deliverableNote": "",
"isIndexOption": null,
"percentChange": -7.42,
"markChange": -0.07,
"markPercentChange": -0.33,
"intrinsicValue": 21.21,
"pennyPilot": true,
"inTheMoney": true,
"mini": false,
"nonStandard": false
}
],
"177.5": [
{
"putCall": "PUT",
"symbol": "AAPL_031723P177.5",
"description": "AAPL Mar 17 2023 177.5 Put",
"exchangeName": "OPR",
"bid": 22.95,
"ask": 24.4,
"last": 0.0,
"mark": 23.67,
"bidSize": 2,
"askSize": 2,
"bidAskSize": "2X2",
"lastSize": 0,
"highPrice": 0.0,
"lowPrice": 0.0,
"openPrice": 0.0,
"closePrice": 23.67,
"totalVolume": 0,
"tradeDate": null,
"tradeTimeInLong": 0,
"quoteTimeInLong": 1678199402647,
"netChange": 0.0,
"volatility": 31.15,
"delta": -1.0,
"gamma": 0.0,
"theta": 0.0,
"vega": 0.0,
"rho": 0.0,
"openInterest": 0,
"timeValue": -0.04,
"theoreticalOptionValue": 23.67,
"theoreticalVolatility": 29.0,
"optionDeliverablesList": null,
"strikePrice": 177.5,
"expirationDate": 1679083200000,
"daysToExpiration": 10,
"expirationType": "R",
"lastTradingDay": 1679097600000,
"multiplier": 100.0,
"settlementType": " ",
"deliverableNote": "",
"isIndexOption": null,
"percentChange": 0.0,
"markChange": 0.0,
"markPercentChange": 0.02,
"intrinsicValue": 23.71,
"pennyPilot": true,
"inTheMoney": true,
"mini": false,
"nonStandard": false
}
],
"180.0": [
{
"putCall": "PUT",
"symbol": "AAPL_031723P180",
"description": "AAPL Mar 17 2023 180 Put",
"exchangeName": "OPR",
"bid": 25.45,
"ask": 26.9,
"last": 25.35,
"mark": 26.17,
"bidSize": 2,
"askSize": 2,
"bidAskSize": "2X2",
"lastSize": 0,
"highPrice": 0.0,
"lowPrice": 0.0,
"openPrice": 0.0,
"closePrice": 26.17,
"totalVolume": 0,
"tradeDate": null,
"tradeTimeInLong": 1678113464353,
"quoteTimeInLong": 1678199402647,
"netChange": -0.82,
"volatility": 31.823,
"delta": -1.0,
"gamma": 0.0,
"theta": 0.0,
"vega": 0.0,
"rho": 0.0,
"openInterest": 315,
"timeValue": -0.86,
"theoreticalOptionValue": 26.17,
"theoreticalVolatility": 29.0,
"optionDeliverablesList": null,
"strikePrice": 180.0,
"expirationDate": 1679083200000,
"daysToExpiration": 10,
"expirationType": "R",
"lastTradingDay": 1679097600000,
"multiplier": 100.0,
"settlementType": " ",
"deliverableNote": "",
"isIndexOption": null,
"percentChange": -3.13,
"markChange": 0.0,
"markPercentChange": 0.02,
"intrinsicValue": 26.21,
"pennyPilot": true,
"inTheMoney": true,
"mini": false,
"nonStandard": false
}
]
}
},
"callExpDateMap": {
"2023-03-10:3": {
"142.0": [
{
"putCall": "CALL",
"symbol": "AAPL_031023C142",
"description": "AAPL Mar 10 2023 142 Call (Weekly)",
"exchangeName": "OPR",
"bid": 10.75,
"ask": 13.15,
"last": 12.63,
"mark": 11.95,
"bidSize": 90,
"askSize": 90,
"bidAskSize": "90X90",
"lastSize": 0,
"highPrice": 0.0,
"lowPrice": 0.0,
"openPrice": 0.0,
"closePrice": 12.1,
"totalVolume": 0,
"tradeDate": null,
"tradeTimeInLong": 1678129407595,
"quoteTimeInLong": 1678199402644,
"netChange": 0.53,
"volatility": "NaN",
"delta": "NaN",
"gamma": "NaN",
"theta": "NaN",
"vega": 0.008,
"rho": "NaN",
"openInterest": 886,
"timeValue": 0.84,
"theoreticalOptionValue": "NaN",
"theoreticalVolatility": 29.0,
"optionDeliverablesList": null,
"strikePrice": 142.0,
"expirationDate": 1678482000000,
"daysToExpiration": 3,
"expirationType": "S",
"lastTradingDay": 1678496400000,
"multiplier": 100.0,
"settlementType": " ",
"deliverableNote": "",
"isIndexOption": null,
"percentChange": 4.4,
"markChange": -0.15,
"markPercentChange": -1.22,
"intrinsicValue": 11.79,
"pennyPilot": true,
"inTheMoney": true,
"mini": false,
"nonStandard": false
}
],
"143.0": [
{
"putCall": "CALL",
"symbol": "AAPL_031023C143",
"description": "AAPL Mar 10 2023 143 Call (Weekly)",
"exchangeName": "OPR",
"bid": 9.75,
"ask": 12.15,
"last": 11.58,
"mark": 10.95,
"bidSize": 90,
"askSize": 90,
"bidAskSize": "90X90",
"lastSize": 0,
"highPrice": 0.0,
"lowPrice": 0.0,
"openPrice": 0.0,
"closePrice": 11.11,
"totalVolume": 0,
"tradeDate": null,
"tradeTimeInLong": 1678130011695,
"quoteTimeInLong": 1678199403163,
"netChange": 0.47,
"volatility": 33.707,
"delta": 0.976,
"gamma": 0.01,
"theta": -0.078,
"vega": 0.01,
"rho": 0.018,
"openInterest": 1201,
"timeValue": 0.79,
"theoreticalOptionValue": 11.084,
"theoreticalVolatility": 29.0,
"optionDeliverablesList": null,
"strikePrice": 143.0,
"expirationDate": 1678482000000,
"daysToExpiration": 3,
"expirationType": "S",
"lastTradingDay": 1678496400000,
"multiplier": 100.0,
"settlementType": " ",
"deliverableNote": "",
"isIndexOption": null,
"percentChange": 4.25,
"markChange": -0.16,
"markPercentChange": -1.43,
"intrinsicValue": 10.79,
"pennyPilot": true,
"inTheMoney": true,
"mini": false,
"nonStandard": false
}
],
"144.0": [
{
"putCall": "CALL",
"symbol": "AAPL_031023C144",
"description": "AAPL Mar 10 2023 144 Call (Weekly)",
"exchangeName": "OPR",
"bid": 8.8,
"ask": 11.2,
"last": 10.1,
"mark": 10.0,
"bidSize": 90,
"askSize": 90,
"bidAskSize": "90X90",
"lastSize": 0,
"highPrice": 10.1,
"lowPrice": 9.8,
"openPrice": 0.0,
"closePrice": 10.14,
"totalVolume": 6,
"tradeDate": null,
"tradeTimeInLong": 1678199400102,
"quoteTimeInLong": 1678199403163,
"netChange": -0.04,
"volatility": 33.481,
"delta": 0.965,
"gamma": 0.014,
"theta": -0.091,
"vega": 0.014,
"rho": 0.018,
"openInterest": 895,
"timeValue": 0.31,
"theoreticalOptionValue": 10.115,
"theoreticalVolatility": 29.0,
"optionDeliverablesList": null,
"strikePrice": 144.0,
"expirationDate": 1678482000000,
"daysToExpiration": 3,
"expirationType": "S",
"lastTradingDay": 1678496400000,
"multiplier": 100.0,
"settlementType": " ",
"deliverableNote": "",
"isIndexOption": null,
"percentChange": -0.38,
"markChange": -0.14,
"markPercentChange": -1.37,
"intrinsicValue": 9.79,
"pennyPilot": true,
"inTheMoney": true,
"mini": false,
"nonStandard": false
}
],
"145.0": [
{
"putCall": "CALL",
"symbol": "AAPL_031023C145",
"description": "AAPL Mar 10 2023 145 Call (Weekly)",
"exchangeName": "OPR",
"bid": 8.1,
"ask": 9.55,
"last": 9.0,
"mark": 8.82,
"bidSize": 2,
"askSize": 90,
"bidAskSize": "2X90",
"lastSize": 0,
"highPrice": 0.0,
"lowPrice": 0.0,
"openPrice": 0.0,
"closePrice": 9.17,
"totalVolume": 0,
"tradeDate": null,
"tradeTimeInLong": 1678136383343,
"quoteTimeInLong": 1678199403158,
"netChange": -0.17,
"volatility": 32.497,
"delta": 0.952,
"gamma": 0.018,
"theta": -0.101,
"vega": 0.017,
"rho": 0.018,
"openInterest": 2516,
"timeValue": 0.21,
"theoreticalOptionValue": 9.145,
"theoreticalVolatility": 29.0,
"optionDeliverablesList": null,
"strikePrice": 145.0,
"expirationDate": 1678482000000,
"daysToExpiration": 3,
"expirationType": "S",
"lastTradingDay": 1678496400000,
"multiplier": 100.0,
"settlementType": " ",
"deliverableNote": "",
"isIndexOption": null,
"percentChange": -1.84,
"markChange": -0.34,
"markPercentChange": -3.75,
"intrinsicValue": 8.79,
"pennyPilot": true,
"inTheMoney": true,
"mini": false,
"nonStandard": false
}
],
"146.0": [
{
"putCall": "CALL",
"symbol": "AAPL_031023C146",
"description": "AAPL Mar 10 2023 146 Call (Weekly)",
"exchangeName": "OPR",
"bid": 7.15,
"ask": 9.0,
"last": 8.1,
"mark": 8.07,
"bidSize": 135,
"askSize": 119,
"bidAskSize": "135X119",
"lastSize": 0,
"highPrice": 0.0,
"lowPrice": 0.0,
"openPrice": 0.0,
"closePrice": 8.21,
"totalVolume": 0,
"tradeDate": null,
"tradeTimeInLong": 1678136330020,
"quoteTimeInLong": 1678199403163,
"netChange": -0.11,
"volatility": 31.48,
"delta": 0.937,
"gamma": 0.023,
"theta": -0.114,
"vega": 0.022,
"rho": 0.017,
"openInterest": 2861,
"timeValue": 0.31,
"theoreticalOptionValue": 8.186,
"theoreticalVolatility": 29.0,
"optionDeliverablesList": null,
"strikePrice": 146.0,
"expirationDate": 1678482000000,
"daysToExpiration": 3,
"expirationType": "S",
"lastTradingDay": 1678496400000,
"multiplier": 100.0,
"settlementType": " ",
"deliverableNote": "",
"isIndexOption": null,
"percentChange": -1.33,
"markChange": -0.13,
"markPercentChange": -1.64,
"intrinsicValue": 7.79,
"pennyPilot": true,
"inTheMoney": true,
"mini": false,
"nonStandard": false
}
],
"147.0": [
{
"putCall": "CALL",
"symbol": "AAPL_031023C147",
"description": "AAPL Mar 10 2023 147 Call (Weekly)",
"exchangeName": "OPR",
"bid": 6.25,
"ask": 7.75,
"last": 7.04,
"mark": 7.0,
"bidSize": 135,
"askSize": 92,
"bidAskSize": "135X92",
"lastSize": 0,
"highPrice": 7.04,
"lowPrice": 7.04,
"openPrice": 0.0,
"closePrice": 7.26,
"totalVolume": 4,
"tradeDate": null,
"tradeTimeInLong": 1678199400096,
"quoteTimeInLong": 1678199403163,
"netChange": -0.22,
"volatility": 30.494,
"delta": 0.916,
"gamma": 0.029,
"theta": -0.128,
"vega": 0.027,
"rho": 0.017,
"openInterest": 2357,
"timeValue": 0.25,
"theoreticalOptionValue": 7.242,
"theoreticalVolatility": 29.0,
"optionDeliverablesList": null,
"strikePrice": 147.0,
"expirationDate": 1678482000000,
"daysToExpiration": 3,
"expirationType": "S",
"lastTradingDay": 1678496400000,
"multiplier": 100.0,
"settlementType": " ",
"deliverableNote": "",
"isIndexOption": null,
"percentChange": -3.09,
"markChange": -0.26,
"markPercentChange": -3.64,
"intrinsicValue": 6.79,
"pennyPilot": true,
"inTheMoney": true,
"mini": false,
"nonStandard": false
}
],
"148.0": [
{
"putCall": "CALL",
"symbol": "AAPL_031023C148",
"description": "AAPL Mar 10 2023 148 Call (Weekly)",
"exchangeName": "OPR",
"bid": 5.7,
"ask": 6.35,
"last": 5.92,
"mark": 6.03,
"bidSize": 126,
"askSize": 90,
"bidAskSize": "126X90",
"lastSize": 0,
"highPrice": 5.92,
"lowPrice": 5.92,
"openPrice": 0.0,
"closePrice": 6.36,
"totalVolume": 1,
"tradeDate": null,
"tradeTimeInLong": 1678199400065,
"quoteTimeInLong": 1678199403163,
"netChange": -0.44,
"volatility": 30.119,
"delta": 0.884,
"gamma": 0.038,
"theta": -0.148,
"vega": 0.034,
"rho": 0.017,
"openInterest": 5250,
"timeValue": 0.13,
"theoreticalOptionValue": 6.337,
"theoreticalVolatility": 29.0,
"optionDeliverablesList": null,
"strikePrice": 148.0,
"expirationDate": 1678482000000,
"daysToExpiration": 3,
"expirationType": "S",
"lastTradingDay": 1678496400000,
"multiplier": 100.0,
"settlementType": " ",
"deliverableNote": "",
"isIndexOption": null,
"percentChange": -6.91,
"markChange": -0.33,
"markPercentChange": -5.26,
"intrinsicValue": 5.79,
"pennyPilot": true,
"inTheMoney": true,
"mini": false,
"nonStandard": false
}
],
"149.0": [
{
"putCall": "CALL",
"symbol": "AAPL_031023C149",
"description": "AAPL Mar 10 2023 149 Call (Weekly)",
"exchangeName": "OPR",
"bid": 4.85,
"ask": 5.7,
"last": 5.31,
"mark": 5.28,
"bidSize": 120,
"askSize": 120,
"bidAskSize": "120X120",
"lastSize": 0,
"highPrice": 5.31,
"lowPrice": 5.08,
"openPrice": 0.0,
"closePrice": 5.47,
"totalVolume": 2,
"tradeDate": null,
"tradeTimeInLong": 1678199401397,
"quoteTimeInLong": 1678199403163,
"netChange": -0.16,
"volatility": 29.388,
"delta": 0.846,
"gamma": 0.047,
"theta": -0.167,
"vega": 0.041,
"rho": 0.016,
"openInterest": 5096,
"timeValue": 0.52,
"theoreticalOptionValue": 5.453,
"theoreticalVolatility": 29.0,
"optionDeliverablesList": null,
"strikePrice": 149.0,
"expirationDate": 1678482000000,
"daysToExpiration": 3,
"expirationType": "S",
"lastTradingDay": 1678496400000,
"multiplier": 100.0,
"settlementType": " ",
"deliverableNote": "",
"isIndexOption": null,
"percentChange": -3.0,
"markChange": -0.2,
"markPercentChange": -3.64,
"intrinsicValue": 4.79,
"pennyPilot": true,
"inTheMoney": true,
"mini": false,
"nonStandard": false
}
],
"150.0": [
{
"putCall": "CALL",
"symbol": "AAPL_031023C150",
"description": "AAPL Mar 10 2023 150 Call (Weekly)",
"exchangeName": "OPR",
"bid": 4.45,
"ask": 4.55,
"last": 4.35,
"mark": 4.5,
"bidSize": 89,
"askSize": 109,
"bidAskSize": "89X109",
"lastSize": 0,
"highPrice": 4.35,
"lowPrice": 4.35,
"openPrice": 0.0,
"closePrice": 4.65,
"totalVolume": 2,
"tradeDate": null,
"tradeTimeInLong": 1678199400115,
"quoteTimeInLong": 1678199403163,
"netChange": -0.3,
"volatility": 29.101,
"delta": 0.795,
"gamma": 0.056,
"theta": -0.189,
"vega": 0.05,
"rho": 0.015,
"openInterest": 21434,
"timeValue": 0.56,
"theoreticalOptionValue": 4.628,
"theoreticalVolatility": 29.0,
"optionDeliverablesList": null,
"strikePrice": 150.0,
"expirationDate": 1678482000000,
"daysToExpiration": 3,
"expirationType": "S",
"lastTradingDay": 1678496400000,
"multiplier": 100.0,
"settlementType": " ",
"deliverableNote": "",
"isIndexOption": null,
"percentChange": -6.42,
"markChange": -0.15,
"markPercentChange": -3.19,
"intrinsicValue": 3.79,
"pennyPilot": true,
"inTheMoney": true,
"mini": false,
"nonStandard": false
}
],
"152.5": [
{
"putCall": "CALL",
"symbol": "AAPL_031023C152.5",
"description": "AAPL Mar 10 2023 152.5 Call (Weekly)",
"exchangeName": "OPR",
"bid": 2.66,
"ask": 2.71,
"last": 2.7,
"mark": 2.69,
"bidSize": 18,
"askSize": 18,
"bidAskSize": "18X18",
"lastSize": 0,
"highPrice": 2.7,
"lowPrice": 2.61,
"openPrice": 0.0,
"closePrice": 2.82,
"totalVolume": 5,
"tradeDate": null,
"tradeTimeInLong": 1678199401532,
"quoteTimeInLong": 1678199403152,
"netChange": -0.12,
"volatility": 28.056,
"delta": 0.63,
"gamma": 0.077,
"theta": -0.225,
"vega": 0.066,
"rho": 0.012,
"openInterest": 15720,
"timeValue": 1.41,
"theoreticalOptionValue": 2.803,
"theoreticalVolatility": 29.0,
"optionDeliverablesList": null,
"strikePrice": 152.5,
"expirationDate": 1678482000000,
"daysToExpiration": 3,
"expirationType": "S",
"lastTradingDay": 1678496400000,
"multiplier": 100.0,
"settlementType": " ",
"deliverableNote": "",
"isIndexOption": null,
"percentChange": -4.21,
"markChange": -0.13,
"markPercentChange": -4.75,
"intrinsicValue": 1.29,
"pennyPilot": true,
"inTheMoney": true,
"mini": false,
"nonStandard": false
}
],
"155.0": [
{
"putCall": "CALL",
"symbol": "AAPL_031023C155",
"description": "AAPL Mar 10 2023 155 Call (Weekly)",
"exchangeName": "OPR",
"bid": 1.33,
"ask": 1.35,
"last": 1.35,
"mark": 1.34,
"bidSize": 19,
"askSize": 2,
"bidAskSize": "19X2",
"lastSize": 0,
"highPrice": 1.36,
"lowPrice": 1.25,
"openPrice": 0.0,
"closePrice": 1.4,
"totalVolume": 44,
"tradeDate": null,
"tradeTimeInLong": 1678199401538,
"quoteTimeInLong": 1678199403160,
"netChange": -0.05,
"volatility": 26.419,
"delta": 0.424,
"gamma": 0.085,
"theta": -0.211,
"vega": 0.068,
"rho": 0.008,
"openInterest": 25866,
"timeValue": 1.35,
"theoreticalOptionValue": 1.4,
"theoreticalVolatility": 29.0,
"optionDeliverablesList": null,
"strikePrice": 155.0,
"expirationDate": 1678482000000,
"daysToExpiration": 3,
"expirationType": "S",
"lastTradingDay": 1678496400000,
"multiplier": 100.0,
"settlementType": " ",
"deliverableNote": "",
"isIndexOption": null,
"percentChange": -3.57,
"markChange": -0.06,
"markPercentChange": -4.29,
"intrinsicValue": -1.21,
"pennyPilot": true,
"inTheMoney": false,
"mini": false,
"nonStandard": false
}
],
"157.5": [
{
"putCall": "CALL",
"symbol": "AAPL_031023C157.5",
"description": "AAPL Mar 10 2023 157.5 Call (Weekly)",
"exchangeName": "OPR",
"bid": 0.54,
"ask": 0.56,
"last": 0.55,
"mark": 0.55,
"bidSize": 19,
"askSize": 34,
"bidAskSize": "19X34",
"lastSize": 0,
"highPrice": 0.55,
"lowPrice": 0.55,
"openPrice": 0.0,
"closePrice": 0.58,
"totalVolume": 6,
"tradeDate": null,
"tradeTimeInLong": 1678199401721,
"quoteTimeInLong": 1678199403163,
"netChange": -0.04,
"volatility": 25.817,
"delta": 0.228,
"gamma": 0.067,
"theta": -0.155,
"vega": 0.053,
"rho": 0.004,
"openInterest": 19259,
"timeValue": 0.55,
"theoreticalOptionValue": 0.585,
"theoreticalVolatility": 29.0,
"optionDeliverablesList": null,
"strikePrice": 157.5,
"expirationDate": 1678482000000,
"daysToExpiration": 3,
"expirationType": "S",
"lastTradingDay": 1678496400000,
"multiplier": 100.0,
"settlementType": " ",
"deliverableNote": "",
"isIndexOption": null,
"percentChange": -5.98,
"markChange": -0.03,
"markPercentChange": -5.98,
"intrinsicValue": -3.71,
"pennyPilot": true,
"inTheMoney": false,
"mini": false,
"nonStandard": false
}
],
"160.0": [
{
"putCall": "CALL",
"symbol": "AAPL_031023C160",
"description": "AAPL Mar 10 2023 160 Call (Weekly)",
"exchangeName": "OPR",
"bid": 0.19,
"ask": 0.21,
"last": 0.2,
"mark": 0.2,
"bidSize": 19,
"askSize": 63,
"bidAskSize": "19X63",
"lastSize": 0,
"highPrice": 0.33,
"lowPrice": 0.18,
"openPrice": 0.0,
"closePrice": 0.2,
"totalVolume": 78,
"tradeDate": null,
"tradeTimeInLong": 1678199401637,
"quoteTimeInLong": 1678199403163,
"netChange": 0.0,
"volatility": 25.7,
"delta": 0.098,
"gamma": 0.039,
"theta": -0.087,
"vega": 0.03,
"rho": 0.002,
"openInterest": 31575,
"timeValue": 0.2,
"theoreticalOptionValue": 0.205,
"theoreticalVolatility": 29.0,
"optionDeliverablesList": null,
"strikePrice": 160.0,
"expirationDate": 1678482000000,
"daysToExpiration": 3,
"expirationType": "S",
"lastTradingDay": 1678496400000,
"multiplier": 100.0,
"settlementType": " ",
"deliverableNote": "",
"isIndexOption": null,
"percentChange": -2.44,
"markChange": 0.0,
"markPercentChange": -2.44,
"intrinsicValue": -6.21,
"pennyPilot": true,
"inTheMoney": false,
"mini": false,
"nonStandard": false
}
],
"162.5": [
{
"putCall": "CALL",
"symbol": "AAPL_031023C162.5",
"description": "AAPL Mar 10 2023 162.5 Call (Weekly)",
"exchangeName": "OPR",
"bid": 0.07,
"ask": 0.08,
"last": 0.08,
"mark": 0.08,
"bidSize": 19,
"askSize": 49,
"bidAskSize": "19X49",
"lastSize": 0,
"highPrice": 0.08,
"lowPrice": 0.07,
"openPrice": 0.0,
"closePrice": 0.08,
"totalVolume": 4,
"tradeDate": null,
"tradeTimeInLong": 1678199401555,
"quoteTimeInLong": 1678199403163,
"netChange": 0.0,
"volatility": 26.804,
"delta": 0.04,
"gamma": 0.019,
"theta": -0.045,
"vega": 0.015,
"rho": 0.001,
"openInterest": 15439,
"timeValue": 0.08,
"theoreticalOptionValue": 0.075,
"theoreticalVolatility": 29.0,
"optionDeliverablesList": null,
"strikePrice": 162.5,
"expirationDate": 1678482000000,
"daysToExpiration": 3,
"expirationType": "S",
"lastTradingDay": 1678496400000,
"multiplier": 100.0,
"settlementType": " ",
"deliverableNote": "",
"isIndexOption": null,
"percentChange": 6.67,
"markChange": 0.0,
"markPercentChange": 0.0,
"intrinsicValue": -8.71,
"pennyPilot": true,
"inTheMoney": false,
"mini": false,
"nonStandard": false
}
],
"165.0": [
{
"putCall": "CALL",
"symbol": "AAPL_031023C165",
"description": "AAPL Mar 10 2023 165 Call (Weekly)",
"exchangeName": "OPR",
"bid": 0.03,
"ask": 0.04,
"last": 0.03,
"mark": 0.04,
"bidSize": 19,
"askSize": 69,
"bidAskSize": "19X69",
"lastSize": 0,
"highPrice": 0.03,
"lowPrice": 0.03,
"openPrice": 0.0,
"closePrice": 0.04,
"totalVolume": 1,
"tradeDate": null,
"tradeTimeInLong": 1678199401595,
"quoteTimeInLong": 1678199403153,
"netChange": 0.0,
"volatility": 29.091,
"delta": 0.019,
"gamma": 0.009,
"theta": -0.026,
"vega": 0.008,
"rho": 0.0,
"openInterest": 16931,
"timeValue": 0.03,
"theoreticalOptionValue": 0.035,
"theoreticalVolatility": 29.0,
"optionDeliverablesList": null,
"strikePrice": 165.0,
"expirationDate": 1678482000000,
"daysToExpiration": 3,
"expirationType": "S",
"lastTradingDay": 1678496400000,
"multiplier": 100.0,
"settlementType": " ",
"deliverableNote": "",
"isIndexOption": null,
"percentChange": -14.29,
"markChange": 0.0,
"markPercentChange": 0.0,
"intrinsicValue": -11.21,
"pennyPilot": true,
"inTheMoney": false,
"mini": false,
"nonStandard": false
}
],
"167.5": [
{
"putCall": "CALL",
"symbol": "AAPL_031023C167.5",
"description": "AAPL Mar 10 2023 167.5 Call (Weekly)",
"exchangeName": "OPR",
"bid": 0.01,
"ask": 0.02,
"last": 0.02,
"mark": 0.02,
"bidSize": 30,
"askSize": 43,
"bidAskSize": "30X43",
"lastSize": 0,
"highPrice": 0.02,
"lowPrice": 0.02,
"openPrice": 0.0,
"closePrice": 0.02,
"totalVolume": 21,
"tradeDate": null,
"tradeTimeInLong": 1678199401717,
"quoteTimeInLong": 1678199403153,
"netChange": 0.0,
"volatility": 30.843,
"delta": 0.009,
"gamma": 0.004,
"theta": -0.014,
"vega": 0.004,
"rho": 0.0,
"openInterest": 4157,
"timeValue": 0.02,
"theoreticalOptionValue": 0.015,
"theoreticalVolatility": 29.0,
"optionDeliverablesList": null,
"strikePrice": 167.5,
"expirationDate": 1678482000000,
"daysToExpiration": 3,
"expirationType": "S",
"lastTradingDay": 1678496400000,
"multiplier": 100.0,
"settlementType": " ",
"deliverableNote": "",
"isIndexOption": null,
"percentChange": 31.58,
"markChange": 0.0,
"markPercentChange": -1.32,
"intrinsicValue": -13.71,
"pennyPilot": true,
"inTheMoney": false,
"mini": false,
"nonStandard": false
}
],
"170.0": [
{
"putCall": "CALL",
"symbol": "AAPL_031023C170",
"description": "AAPL Mar 10 2023 170 Call (Weekly)",
"exchangeName": "OPR",
"bid": 0.0,
"ask": 0.01,
"last": 0.01,
"mark": 0.01,
"bidSize": 0,
"askSize": 406,
"bidAskSize": "0X406",
"lastSize": 0,
"highPrice": 0.0,
"lowPrice": 0.0,
"openPrice": 0.0,
"closePrice": 0.0,
"totalVolume": 0,
"tradeDate": null,
"tradeTimeInLong": 1678136293114,
"quoteTimeInLong": 1678199400570,
"netChange": 0.01,
"volatility": 30.811,
"delta": 0.002,
"gamma": 0.001,
"theta": -0.005,
"vega": 0.001,
"rho": 0.0,
"openInterest": 7977,
"timeValue": 0.01,
"theoreticalOptionValue": 0.004,
"theoreticalVolatility": 29.0,
"optionDeliverablesList": null,
"strikePrice": 170.0,
"expirationDate": 1678482000000,
"daysToExpiration": 3,
"expirationType": "S",
"lastTradingDay": 1678496400000,
"multiplier": 100.0,
"settlementType": " ",
"deliverableNote": "",
"isIndexOption": null,
"percentChange": 156.41,
"markChange": 0.0,
"markPercentChange": 28.21,
"intrinsicValue": -16.21,
"pennyPilot": true,
"inTheMoney": false,
"mini": false,
"nonStandard": false
}
],
"172.5": [
{
"putCall": "CALL",
"symbol": "AAPL_031023C172.5",
"description": "AAPL Mar 10 2023 172.5 Call (Weekly)",
"exchangeName": "OPR",
"bid": 0.0,
"ask": 0.02,
"last": 0.01,
"mark": 0.01,
"bidSize": 0,
"askSize": 1030,
"bidAskSize": "0X1030",
"lastSize": 0,
"highPrice": 0.0,
"lowPrice": 0.0,
"openPrice": 0.0,
"closePrice": 0.0,
"totalVolume": 0,
"tradeDate": null,
"tradeTimeInLong": 1678136337749,
"quoteTimeInLong": 1678199402526,
"netChange": 0.01,
"volatility": 30.856,
"delta": 0.001,
"gamma": 0.0,
"theta": -0.001,
"vega": 0.0,
"rho": 0.0,
"openInterest": 1922,
"timeValue": 0.01,
"theoreticalOptionValue": 0.001,
"theoreticalVolatility": 29.0,
"optionDeliverablesList": null,
"strikePrice": 172.5,
"expirationDate": 1678482000000,
"daysToExpiration": 3,
"expirationType": "S",
"lastTradingDay": 1678496400000,
"multiplier": 100.0,
"settlementType": " ",
"deliverableNote": "",
"isIndexOption": null,
"percentChange": 1011.11,
"markChange": 0.01,
"markPercentChange": 1011.11,
"intrinsicValue": -18.71,
"pennyPilot": true,
"inTheMoney": false,
"mini": false,
"nonStandard": false
}
],
"175.0": [
{
"putCall": "CALL",
"symbol": "AAPL_031023C175",
"description": "AAPL Mar 10 2023 175 Call (Weekly)",
"exchangeName": "OPR",
"bid": 0.0,
"ask": 0.01,
"last": 0.01,
"mark": 0.01,
"bidSize": 0,
"askSize": 600,
"bidAskSize": "0X600",
"lastSize": 0,
"highPrice": 0.01,
"lowPrice": 0.01,
"openPrice": 0.0,
"closePrice": 0.0,
"totalVolume": 10,
"tradeDate": null,
"tradeTimeInLong": 1678199400234,
"quoteTimeInLong": 1678199402526,
"netChange": 0.01,
"volatility": 31.067,
"delta": 0.0,
"gamma": 0.0,
"theta": 0.0,
"vega": 0.0,
"rho": 0.0,
"openInterest": 1428,
"timeValue": 0.01,
"theoreticalOptionValue": 0.0,
"theoreticalVolatility": 29.0,
"optionDeliverablesList": null,
"strikePrice": 175.0,
"expirationDate": 1678482000000,
"daysToExpiration": 3,
"expirationType": "S",
"lastTradingDay": 1678496400000,
"multiplier": 100.0,
"settlementType": " ",
"deliverableNote": "",
"isIndexOption": null,
"percentChange": 4900.0,
"markChange": 0.0,
"markPercentChange": 2400.0,
"intrinsicValue": -21.21,
"pennyPilot": true,
"inTheMoney": false,
"mini": false,
"nonStandard": false
}
],
"177.5": [
{
"putCall": "CALL",
"symbol": "AAPL_031023C177.5",
"description": "AAPL Mar 10 2023 177.5 Call (Weekly)",
"exchangeName": "OPR",
"bid": 0.0,
"ask": 0.01,
"last": 0.01,
"mark": 0.01,
"bidSize": 0,
"askSize": 400,
"bidAskSize": "0X400",
"lastSize": 0,
"highPrice": 0.0,
"lowPrice": 0.0,
"openPrice": 0.0,
"closePrice": 0.0,
"totalVolume": 0,
"tradeDate": null,
"tradeTimeInLong": 1678130710116,
"quoteTimeInLong": 1678199402525,
"netChange": 0.01,
"volatility": 32.866,
"delta": 0.0,
"gamma": 0.0,
"theta": 0.0,
"vega": 0.0,
"rho": 0.0,
"openInterest": 1078,
"timeValue": 0.01,
"theoreticalOptionValue": 0.0,
"theoreticalVolatility": 29.0,
"optionDeliverablesList": null,
"strikePrice": 177.5,
"expirationDate": 1678482000000,
"daysToExpiration": 3,
"expirationType": "S",
"lastTradingDay": 1678496400000,
"multiplier": 100.0,
"settlementType": " ",
"deliverableNote": "",
"isIndexOption": null,
"percentChange": 9900.0,
"markChange": 0.0,
"markPercentChange": 4900.0,
"intrinsicValue": -23.71,
"pennyPilot": true,
"inTheMoney": false,
"mini": false,
"nonStandard": false
}
],
"180.0": [
{
"putCall": "CALL",
"symbol": "AAPL_031023C180",
"description": "AAPL Mar 10 2023 180 Call (Weekly)",
"exchangeName": "OPR",
"bid": 0.0,
"ask": 0.01,
"last": 0.01,
"mark": 0.01,
"bidSize": 0,
"askSize": 600,
"bidAskSize": "0X600",
"lastSize": 0,
"highPrice": 0.0,
"lowPrice": 0.0,
"openPrice": 0.0,
"closePrice": 0.0,
"totalVolume": 0,
"tradeDate": null,
"tradeTimeInLong": 1678134693944,
"quoteTimeInLong": 1678199402526,
"netChange": 0.01,
"volatility": 35.913,
"delta": 0.0,
"gamma": 0.0,
"theta": 0.0,
"vega": 0.0,
"rho": 0.0,
"openInterest": 1173,
"timeValue": 0.01,
"theoreticalOptionValue": 0.0,
"theoreticalVolatility": 29.0,
"optionDeliverablesList": null,
"strikePrice": 180.0,
"expirationDate": 1678482000000,
"daysToExpiration": 3,
"expirationType": "S",
"lastTradingDay": 1678496400000,
"multiplier": 100.0,
"settlementType": " ",
"deliverableNote": "",
"isIndexOption": null,
"percentChange": 9900.0,
"markChange": 0.0,
"markPercentChange": 4900.0,
"intrinsicValue": -26.21,
"pennyPilot": true,
"inTheMoney": false,
"mini": false,
"nonStandard": false
}
]
},
"2023-03-17:10": {
"142.0": [
{
"putCall": "CALL",
"symbol": "AAPL_031723C142",
"description": "AAPL Mar 17 2023 142 Call",
"exchangeName": "OPR",
"bid": 11.6,
"ask": 13.0,
"last": 12.55,
"mark": 12.3,
"bidSize": 90,
"askSize": 90,
"bidAskSize": "90X90",
"lastSize": 0,
"highPrice": 0.0,
"lowPrice": 0.0,
"openPrice": 0.0,
"closePrice": 12.37,
"totalVolume": 0,
"tradeDate": null,
"tradeTimeInLong": 1678133288821,
"quoteTimeInLong": 1678199402639,
"netChange": 0.18,
"volatility": 31.049,
"delta": 0.934,
"gamma": 0.015,
"theta": -0.068,
"vega": 0.036,
"rho": 0.042,
"openInterest": 361,
"timeValue": 0.76,
"theoreticalOptionValue": 12.343,
"theoreticalVolatility": 29.0,
"optionDeliverablesList": null,
"strikePrice": 142.0,
"expirationDate": 1679083200000,
"daysToExpiration": 10,
"expirationType": "R",
"lastTradingDay": 1679097600000,
"multiplier": 100.0,
"settlementType": " ",
"deliverableNote": "",
"isIndexOption": null,
"percentChange": 1.45,
"markChange": -0.07,
"markPercentChange": -0.57,
"intrinsicValue": 11.79,
"pennyPilot": true,
"inTheMoney": true,
"mini": false,
"nonStandard": false
}
],
"143.0": [
{
"putCall": "CALL",
"symbol": "AAPL_031723C143",
"description": "AAPL Mar 17 2023 143 Call",
"exchangeName": "OPR",
"bid": 10.65,
"ask": 12.05,
"last": 11.38,
"mark": 11.35,
"bidSize": 90,
"askSize": 90,
"bidAskSize": "90X90",
"lastSize": 0,
"highPrice": 0.0,
"lowPrice": 0.0,
"openPrice": 0.0,
"closePrice": 11.44,
"totalVolume": 0,
"tradeDate": null,
"tradeTimeInLong": 1678136386285,
"quoteTimeInLong": 1678199402638,
"netChange": -0.06,
"volatility": 30.612,
"delta": 0.919,
"gamma": 0.018,
"theta": -0.075,
"vega": 0.042,
"rho": 0.042,
"openInterest": 376,
"timeValue": 0.59,
"theoreticalOptionValue": 11.409,
"theoreticalVolatility": 29.0,
"optionDeliverablesList": null,
"strikePrice": 143.0,
"expirationDate": 1679083200000,
"daysToExpiration": 10,
"expirationType": "R",
"lastTradingDay": 1679097600000,
"multiplier": 100.0,
"settlementType": " ",
"deliverableNote": "",
"isIndexOption": null,
"percentChange": -0.49,
"markChange": -0.09,
"markPercentChange": -0.76,
"intrinsicValue": 10.79,
"pennyPilot": true,
"inTheMoney": true,
"mini": false,
"nonStandard": false
}
],
"144.0": [
{
"putCall": "CALL",
"symbol": "AAPL_031723C144",
"description": "AAPL Mar 17 2023 144 Call",
"exchangeName": "OPR",
"bid": 9.85,
"ask": 11.0,
"last": 10.9,
"mark": 10.43,
"bidSize": 90,
"askSize": 90,
"bidAskSize": "90X90",
"lastSize": 0,
"highPrice": 0.0,
"lowPrice": 0.0,
"openPrice": 0.0,
"closePrice": 10.51,
"totalVolume": 0,
"tradeDate": null,
"tradeTimeInLong": 1678129660872,
"quoteTimeInLong": 1678199403163,
"netChange": 0.39,
"volatility": 30.075,
"delta": 0.901,
"gamma": 0.021,
"theta": -0.082,
"vega": 0.048,
"rho": 0.041,
"openInterest": 426,
"timeValue": 1.11,
"theoreticalOptionValue": 10.486,
"theoreticalVolatility": 29.0,
"optionDeliverablesList": null,
"strikePrice": 144.0,
"expirationDate": 1679083200000,
"daysToExpiration": 10,
"expirationType": "R",
"lastTradingDay": 1679097600000,
"multiplier": 100.0,
"settlementType": " ",
"deliverableNote": "",
"isIndexOption": null,
"percentChange": 3.69,
"markChange": -0.09,
"markPercentChange": -0.83,
"intrinsicValue": 9.79,
"pennyPilot": true,
"inTheMoney": true,
"mini": false,
"nonStandard": false
}
],
"145.0": [
{
"putCall": "CALL",
"symbol": "AAPL_031723C145",
"description": "AAPL Mar 17 2023 145 Call",
"exchangeName": "OPR",
"bid": 8.95,
"ask": 10.05,
"last": 9.84,
"mark": 9.5,
"bidSize": 90,
"askSize": 126,
"bidAskSize": "90X126",
"lastSize": 0,
"highPrice": 9.84,
"lowPrice": 9.84,
"openPrice": 0.0,
"closePrice": 9.6,
"totalVolume": 4,
"tradeDate": null,
"tradeTimeInLong": 1678199400102,
"quoteTimeInLong": 1678199403163,
"netChange": 0.24,
"volatility": 29.515,
"delta": 0.881,
"gamma": 0.024,
"theta": -0.089,
"vega": 0.055,
"rho": 0.04,
"openInterest": 40274,
"timeValue": 1.05,
"theoreticalOptionValue": 9.577,
"theoreticalVolatility": 29.0,
"optionDeliverablesList": null,
"strikePrice": 145.0,
"expirationDate": 1679083200000,
"daysToExpiration": 10,
"expirationType": "R",
"lastTradingDay": 1679097600000,
"multiplier": 100.0,
"settlementType": " ",
"deliverableNote": "",
"isIndexOption": null,
"percentChange": 2.46,
"markChange": -0.1,
"markPercentChange": -1.08,
"intrinsicValue": 8.79,
"pennyPilot": true,
"inTheMoney": true,
"mini": false,
"nonStandard": false
}
],
"146.0": [
{
"putCall": "CALL",
"symbol": "AAPL_031723C146",
"description": "AAPL Mar 17 2023 146 Call",
"exchangeName": "OPR",
"bid": 8.05,
"ask": 9.2,
"last": 8.75,
"mark": 8.63,
"bidSize": 90,
"askSize": 126,
"bidAskSize": "90X126",
"lastSize": 0,
"highPrice": 0.0,
"lowPrice": 0.0,
"openPrice": 0.0,
"closePrice": 8.73,
"totalVolume": 0,
"tradeDate": null,
"tradeTimeInLong": 1678135260516,
"quoteTimeInLong": 1678199403163,
"netChange": 0.02,
"volatility": 29.213,
"delta": 0.856,
"gamma": 0.028,
"theta": -0.097,
"vega": 0.063,
"rho": 0.039,
"openInterest": 1412,
"timeValue": 0.96,
"theoreticalOptionValue": 8.704,
"theoreticalVolatility": 29.0,
"optionDeliverablesList": null,
"strikePrice": 146.0,
"expirationDate": 1679083200000,
"daysToExpiration": 10,
"expirationType": "R",
"lastTradingDay": 1679097600000,
"multiplier": 100.0,
"settlementType": " ",
"deliverableNote": "",
"isIndexOption": null,
"percentChange": 0.24,
"markChange": -0.1,
"markPercentChange": -1.19,
"intrinsicValue": 7.79,
"pennyPilot": true,
"inTheMoney": true,
"mini": false,
"nonStandard": false
}
],
"147.0": [
{
"putCall": "CALL",
"symbol": "AAPL_031723C147",
"description": "AAPL Mar 17 2023 147 Call",
"exchangeName": "OPR",
"bid": 7.15,
"ask": 8.25,
"last": 7.75,
"mark": 7.7,
"bidSize": 90,
"askSize": 91,
"bidAskSize": "90X91",
"lastSize": 0,
"highPrice": 0.0,
"lowPrice": 0.0,
"openPrice": 0.0,
"closePrice": 7.87,
"totalVolume": 0,
"tradeDate": null,
"tradeTimeInLong": 1678136270901,
"quoteTimeInLong": 1678199403163,
"netChange": -0.12,
"volatility": 28.748,
"delta": 0.828,
"gamma": 0.032,
"theta": -0.105,
"vega": 0.07,
"rho": 0.038,
"openInterest": 4442,
"timeValue": 0.96,
"theoreticalOptionValue": 7.845,
"theoreticalVolatility": 29.0,
"optionDeliverablesList": null,
"strikePrice": 147.0,
"expirationDate": 1679083200000,
"daysToExpiration": 10,
"expirationType": "R",
"lastTradingDay": 1679097600000,
"multiplier": 100.0,
"settlementType": " ",
"deliverableNote": "",
"isIndexOption": null,
"percentChange": -1.52,
"markChange": -0.17,
"markPercentChange": -2.15,
"intrinsicValue": 6.79,
"pennyPilot": true,
"inTheMoney": true,
"mini": false,
"nonStandard": false
}
],
"148.0": [
{
"putCall": "CALL",
"symbol": "AAPL_031723C148",
"description": "AAPL Mar 17 2023 148 Call",
"exchangeName": "OPR",
"bid": 6.9,
"ask": 7.0,
"last": 6.95,
"mark": 6.95,
"bidSize": 30,
"askSize": 33,
"bidAskSize": "30X33",
"lastSize": 0,
"highPrice": 6.95,
"lowPrice": 6.95,
"openPrice": 0.0,
"closePrice": 7.04,
"totalVolume": 1,
"tradeDate": null,
"tradeTimeInLong": 1678199401426,
"quoteTimeInLong": 1678199403150,
"netChange": -0.09,
"volatility": 28.377,
"delta": 0.795,
"gamma": 0.036,
"theta": -0.113,
"vega": 0.078,
"rho": 0.037,
"openInterest": 7791,
"timeValue": 1.16,
"theoreticalOptionValue": 7.022,
"theoreticalVolatility": 29.0,
"optionDeliverablesList": null,
"strikePrice": 148.0,
"expirationDate": 1679083200000,
"daysToExpiration": 10,
"expirationType": "R",
"lastTradingDay": 1679097600000,
"multiplier": 100.0,
"settlementType": " ",
"deliverableNote": "",
"isIndexOption": null,
"percentChange": -1.35,
"markChange": -0.09,
"markPercentChange": -1.35,
"intrinsicValue": 5.79,
"pennyPilot": true,
"inTheMoney": true,
"mini": false,
"nonStandard": false
}
],
"149.0": [
{
"putCall": "CALL",
"symbol": "AAPL_031723C149",
"description": "AAPL Mar 17 2023 149 Call",
"exchangeName": "OPR",
"bid": 6.1,
"ask": 6.2,
"last": 6.2,
"mark": 6.15,
"bidSize": 30,
"askSize": 7,
"bidAskSize": "30X7",
"lastSize": 0,
"highPrice": 6.2,
"lowPrice": 6.09,
"openPrice": 0.0,
"closePrice": 6.25,
"totalVolume": 11,
"tradeDate": null,
"tradeTimeInLong": 1678199401528,
"quoteTimeInLong": 1678199403164,
"netChange": -0.05,
"volatility": 28.024,
"delta": 0.757,
"gamma": 0.041,
"theta": -0.12,
"vega": 0.086,
"rho": 0.035,
"openInterest": 12696,
"timeValue": 1.41,
"theoreticalOptionValue": 6.233,
"theoreticalVolatility": 29.0,
"optionDeliverablesList": null,
"strikePrice": 149.0,
"expirationDate": 1679083200000,
"daysToExpiration": 10,
"expirationType": "R",
"lastTradingDay": 1679097600000,
"multiplier": 100.0,
"settlementType": " ",
"deliverableNote": "",
"isIndexOption": null,
"percentChange": -0.88,
"markChange": -0.1,
"markPercentChange": -1.68,
"intrinsicValue": 4.79,
"pennyPilot": true,
"inTheMoney": true,
"mini": false,
"nonStandard": false
}
],
"150.0": [
{
"putCall": "CALL",
"symbol": "AAPL_031723C150",
"description": "AAPL Mar 17 2023 150 Call",
"exchangeName": "OPR",
"bid": 5.4,
"ask": 5.45,
"last": 5.45,
"mark": 5.43,
"bidSize": 12,
"askSize": 7,
"bidAskSize": "12X7",
"lastSize": 0,
"highPrice": 5.45,
"lowPrice": 5.35,
"openPrice": 0.0,
"closePrice": 5.5,
"totalVolume": 31,
"tradeDate": null,
"tradeTimeInLong": 1678199401652,
"quoteTimeInLong": 1678199403160,
"netChange": -0.05,
"volatility": 27.64,
"delta": 0.716,
"gamma": 0.045,
"theta": -0.127,
"vega": 0.093,
"rho": 0.033,
"openInterest": 94247,
"timeValue": 1.66,
"theoreticalOptionValue": 5.479,
"theoreticalVolatility": 29.0,
"optionDeliverablesList": null,
"strikePrice": 150.0,
"expirationDate": 1679083200000,
"daysToExpiration": 10,
"expirationType": "R",
"lastTradingDay": 1679097600000,
"multiplier": 100.0,
"settlementType": " ",
"deliverableNote": "",
"isIndexOption": null,
"percentChange": -0.9,
"markChange": -0.07,
"markPercentChange": -1.35,
"intrinsicValue": 3.79,
"pennyPilot": true,
"inTheMoney": true,
"mini": false,
"nonStandard": false
}
],
"152.5": [
{
"putCall": "CALL",
"symbol": "AAPL_031723C152.5",
"description": "AAPL Mar 17 2023 152.5 Call",
"exchangeName": "OPR",
"bid": 3.7,
"ask": 3.8,
"last": 3.75,
"mark": 3.75,
"bidSize": 30,
"askSize": 59,
"bidAskSize": "30X59",
"lastSize": 0,
"highPrice": 3.75,
"lowPrice": 3.7,
"openPrice": 0.0,
"closePrice": 3.8,
"totalVolume": 3,
"tradeDate": null,
"tradeTimeInLong": 1678199401531,
"quoteTimeInLong": 1678199403163,
"netChange": -0.05,
"volatility": 26.69,
"delta": 0.596,
"gamma": 0.053,
"theta": -0.135,
"vega": 0.107,
"rho": 0.028,
"openInterest": 23215,
"timeValue": 2.46,
"theoreticalOptionValue": 3.786,
"theoreticalVolatility": 29.0,
"optionDeliverablesList": null,
"strikePrice": 152.5,
"expirationDate": 1679083200000,
"daysToExpiration": 10,
"expirationType": "R",
"lastTradingDay": 1679097600000,
"multiplier": 100.0,
"settlementType": " ",
"deliverableNote": "",
"isIndexOption": null,
"percentChange": -1.35,
"markChange": -0.05,
"markPercentChange": -1.35,
"intrinsicValue": 1.29,
"pennyPilot": true,
"inTheMoney": true,
"mini": false,
"nonStandard": false
}
],
"155.0": [
{
"putCall": "CALL",
"symbol": "AAPL_031723C155",
"description": "AAPL Mar 17 2023 155 Call",
"exchangeName": "OPR",
"bid": 2.35,
"ask": 2.39,
"last": 2.35,
"mark": 2.37,
"bidSize": 19,
"askSize": 30,
"bidAskSize": "19X30",
"lastSize": 0,
"highPrice": 2.38,
"lowPrice": 2.35,
"openPrice": 0.0,
"closePrice": 2.41,
"totalVolume": 9,
"tradeDate": null,
"tradeTimeInLong": 1678199402637,
"quoteTimeInLong": 1678199403163,
"netChange": -0.06,
"volatility": 25.745,
"delta": 0.459,
"gamma": 0.056,
"theta": -0.131,
"vega": 0.109,
"rho": 0.022,
"openInterest": 60727,
"timeValue": 2.35,
"theoreticalOptionValue": 2.41,
"theoreticalVolatility": 29.0,
"optionDeliverablesList": null,
"strikePrice": 155.0,
"expirationDate": 1679083200000,
"daysToExpiration": 10,
"expirationType": "R",
"lastTradingDay": 1679097600000,
"multiplier": 100.0,
"settlementType": " ",
"deliverableNote": "",
"isIndexOption": null,
"percentChange": -2.49,
"markChange": -0.04,
"markPercentChange": -1.66,
"intrinsicValue": -1.21,
"pennyPilot": true,
"inTheMoney": false,
"mini": false,
"nonStandard": false
}
],
"157.5": [
{
"putCall": "CALL",
"symbol": "AAPL_031723C157.5",
"description": "AAPL Mar 17 2023 157.5 Call",
"exchangeName": "OPR",
"bid": 1.33,
"ask": 1.36,
"last": 1.35,
"mark": 1.35,
"bidSize": 19,
"askSize": 34,
"bidAskSize": "19X34",
"lastSize": 0,
"highPrice": 1.35,
"lowPrice": 1.32,
"openPrice": 0.0,
"closePrice": 1.38,
"totalVolume": 8,
"tradeDate": null,
"tradeTimeInLong": 1678199401537,
"quoteTimeInLong": 1678199403153,
"netChange": -0.03,
"volatility": 24.718,
"delta": 0.319,
"gamma": 0.053,
"theta": -0.111,
"vega": 0.098,
"rho": 0.015,
"openInterest": 8276,
"timeValue": 1.35,
"theoreticalOptionValue": 1.375,
"theoreticalVolatility": 29.0,
"optionDeliverablesList": null,
"strikePrice": 157.5,
"expirationDate": 1679083200000,
"daysToExpiration": 10,
"expirationType": "R",
"lastTradingDay": 1679097600000,
"multiplier": 100.0,
"settlementType": " ",
"deliverableNote": "",
"isIndexOption": null,
"percentChange": -1.82,
"markChange": -0.03,
"markPercentChange": -2.18,
"intrinsicValue": -3.71,
"pennyPilot": true,
"inTheMoney": false,
"mini": false,
"nonStandard": false
}
],
"160.0": [
{
"putCall": "CALL",
"symbol": "AAPL_031723C160",
"description": "AAPL Mar 17 2023 160 Call",
"exchangeName": "OPR",
"bid": 0.68,
"ask": 0.7,
"last": 0.67,
"mark": 0.69,
"bidSize": 19,
"askSize": 61,
"bidAskSize": "19X61",
"lastSize": 0,
"highPrice": 0.69,
"lowPrice": 0.64,
"openPrice": 0.0,
"closePrice": 0.7,
"totalVolume": 8,
"tradeDate": null,
"tradeTimeInLong": 1678199401572,
"quoteTimeInLong": 1678199403153,
"netChange": -0.04,
"volatility": 23.964,
"delta": 0.196,
"gamma": 0.042,
"theta": -0.083,
"vega": 0.076,
"rho": 0.009,
"openInterest": 61466,
"timeValue": 0.67,
"theoreticalOptionValue": 0.705,
"theoreticalVolatility": 29.0,
"optionDeliverablesList": null,
"strikePrice": 160.0,
"expirationDate": 1679083200000,
"daysToExpiration": 10,
"expirationType": "R",
"lastTradingDay": 1679097600000,
"multiplier": 100.0,
"settlementType": " ",
"deliverableNote": "",
"isIndexOption": null,
"percentChange": -4.96,
"markChange": -0.01,
"markPercentChange": -2.13,
"intrinsicValue": -6.21,
"pennyPilot": true,
"inTheMoney": false,
"mini": false,
"nonStandard": false
}
],
"162.5": [
{
"putCall": "CALL",
"symbol": "AAPL_031723C162.5",
"description": "AAPL Mar 17 2023 162.5 Call",
"exchangeName": "OPR",
"bid": 0.32,
"ask": 0.34,
"last": 0.32,
"mark": 0.33,
"bidSize": 124,
"askSize": 38,
"bidAskSize": "124X38",
"lastSize": 0,
"highPrice": 0.32,
"lowPrice": 0.32,
"openPrice": 0.0,
"closePrice": 0.34,
"totalVolume": 1,
"tradeDate": null,
"tradeTimeInLong": 1678199400923,
"quoteTimeInLong": 1678199403153,
"netChange": -0.02,
"volatility": 23.746,
"delta": 0.11,
"gamma": 0.029,
"theta": -0.055,
"vega": 0.052,
"rho": 0.005,
"openInterest": 10817,
"timeValue": 0.32,
"theoreticalOptionValue": 0.34,
"theoreticalVolatility": 29.0,
"optionDeliverablesList": null,
"strikePrice": 162.5,
"expirationDate": 1679083200000,
"daysToExpiration": 10,
"expirationType": "R",
"lastTradingDay": 1679097600000,
"multiplier": 100.0,
"settlementType": " ",
"deliverableNote": "",
"isIndexOption": null,
"percentChange": -5.88,
"markChange": -0.01,
"markPercentChange": -2.94,
"intrinsicValue": -8.71,
"pennyPilot": true,
"inTheMoney": false,
"mini": false,
"nonStandard": false
}
],
"165.0": [
{
"putCall": "CALL",
"symbol": "AAPL_031723C165",
"description": "AAPL Mar 17 2023 165 Call",
"exchangeName": "OPR",
"bid": 0.16,
"ask": 0.17,
"last": 0.17,
"mark": 0.17,
"bidSize": 19,
"askSize": 42,
"bidAskSize": "19X42",
"lastSize": 0,
"highPrice": 0.0,
"lowPrice": 0.0,
"openPrice": 0.0,
"closePrice": 0.17,
"totalVolume": 0,
"tradeDate": null,
"tradeTimeInLong": 1678136399062,
"quoteTimeInLong": 1678199403163,
"netChange": 0.0,
"volatility": 24.095,
"delta": 0.059,
"gamma": 0.018,
"theta": -0.035,
"vega": 0.032,
"rho": 0.003,
"openInterest": 34048,
"timeValue": 0.17,
"theoreticalOptionValue": 0.165,
"theoreticalVolatility": 29.0,
"optionDeliverablesList": null,
"strikePrice": 165.0,
"expirationDate": 1679083200000,
"daysToExpiration": 10,
"expirationType": "R",
"lastTradingDay": 1679097600000,
"multiplier": 100.0,
"settlementType": " ",
"deliverableNote": "",
"isIndexOption": null,
"percentChange": 3.03,
"markChange": 0.0,
"markPercentChange": 0.0,
"intrinsicValue": -11.21,
"pennyPilot": true,
"inTheMoney": false,
"mini": false,
"nonStandard": false
}
],
"167.5": [
{
"putCall": "CALL",
"symbol": "AAPL_031723C167.5",
"description": "AAPL Mar 17 2023 167.5 Call",
"exchangeName": "OPR",
"bid": 0.08,
"ask": 0.09,
"last": 0.09,
"mark": 0.09,
"bidSize": 19,
"askSize": 41,
"bidAskSize": "19X41",
"lastSize": 0,
"highPrice": 0.0,
"lowPrice": 0.0,
"openPrice": 0.0,
"closePrice": 0.09,
"totalVolume": 0,
"tradeDate": null,
"tradeTimeInLong": 1678136397800,
"quoteTimeInLong": 1678199403163,
"netChange": 0.0,
"volatility": 24.905,
"delta": 0.032,
"gamma": 0.011,
"theta": -0.022,
"vega": 0.02,
"rho": 0.002,
"openInterest": 6462,
"timeValue": 0.09,
"theoreticalOptionValue": 0.085,
"theoreticalVolatility": 29.0,
"optionDeliverablesList": null,
"strikePrice": 167.5,
"expirationDate": 1679083200000,
"daysToExpiration": 10,
"expirationType": "R",
"lastTradingDay": 1679097600000,
"multiplier": 100.0,
"settlementType": " ",
"deliverableNote": "",
"isIndexOption": null,
"percentChange": 5.88,
"markChange": 0.0,
"markPercentChange": 0.0,
"intrinsicValue": -13.71,
"pennyPilot": true,
"inTheMoney": false,
"mini": false,
"nonStandard": false
}
],
"170.0": [
{
"putCall": "CALL",
"symbol": "AAPL_031723C170",
"description": "AAPL Mar 17 2023 170 Call",
"exchangeName": "OPR",
"bid": 0.05,
"ask": 0.06,
"last": 0.04,
"mark": 0.06,
"bidSize": 20,
"askSize": 53,
"bidAskSize": "20X53",
"lastSize": 0,
"highPrice": 0.0,
"lowPrice": 0.0,
"openPrice": 0.0,
"closePrice": 0.05,
"totalVolume": 0,
"tradeDate": null,
"tradeTimeInLong": 1678136208479,
"quoteTimeInLong": 1678199403163,
"netChange": 0.0,
"volatility": 25.829,
"delta": 0.018,
"gamma": 0.006,
"theta": -0.014,
"vega": 0.012,
"rho": 0.001,
"openInterest": 32205,
"timeValue": 0.04,
"theoreticalOptionValue": 0.045,
"theoreticalVolatility": 29.0,
"optionDeliverablesList": null,
"strikePrice": 170.0,
"expirationDate": 1679083200000,
"daysToExpiration": 10,
"expirationType": "R",
"lastTradingDay": 1679097600000,
"multiplier": 100.0,
"settlementType": " ",
"deliverableNote": "",
"isIndexOption": null,
"percentChange": -11.11,
"markChange": 0.01,
"markPercentChange": 22.22,
"intrinsicValue": -16.21,
"pennyPilot": true,
"inTheMoney": false,
"mini": false,
"nonStandard": false
}
],
"172.5": [
{
"putCall": "CALL",
"symbol": "AAPL_031723C172.5",
"description": "AAPL Mar 17 2023 172.5 Call",
"exchangeName": "OPR",
"bid": 0.03,
"ask": 0.04,
"last": 0.04,
"mark": 0.04,
"bidSize": 19,
"askSize": 60,
"bidAskSize": "19X60",
"lastSize": 0,
"highPrice": 0.04,
"lowPrice": 0.04,
"openPrice": 0.0,
"closePrice": 0.03,
"totalVolume": 1,
"tradeDate": null,
"tradeTimeInLong": 1678199400372,
"quoteTimeInLong": 1678199403163,
"netChange": 0.01,
"volatility": 27.641,
"delta": 0.012,
"gamma": 0.004,
"theta": -0.01,
"vega": 0.009,
"rho": 0.001,
"openInterest": 1330,
"timeValue": 0.04,
"theoreticalOptionValue": 0.031,
"theoreticalVolatility": 29.0,
"optionDeliverablesList": null,
"strikePrice": 172.5,
"expirationDate": 1679083200000,
"daysToExpiration": 10,
"expirationType": "R",
"lastTradingDay": 1679097600000,
"multiplier": 100.0,
"settlementType": " ",
"deliverableNote": "",
"isIndexOption": null,
"percentChange": 28.62,
"markChange": 0.0,
"markPercentChange": 12.54,
"intrinsicValue": -18.71,
"pennyPilot": true,
"inTheMoney": false,
"mini": false,
"nonStandard": false
}
],
"175.0": [
{
"putCall": "CALL",
"symbol": "AAPL_031723C175",
"description": "AAPL Mar 17 2023 175 Call",
"exchangeName": "OPR",
"bid": 0.01,
"ask": 0.05,
"last": 0.03,
"mark": 0.03,
"bidSize": 47,
"askSize": 1,
"bidAskSize": "47X1",
"lastSize": 0,
"highPrice": 0.0,
"lowPrice": 0.0,
"openPrice": 0.0,
"closePrice": 0.02,
"totalVolume": 0,
"tradeDate": null,
"tradeTimeInLong": 1678136147005,
"quoteTimeInLong": 1678199403163,
"netChange": 0.01,
"volatility": 29.655,
"delta": 0.009,
"gamma": 0.003,
"theta": -0.009,
"vega": 0.007,
"rho": 0.0,
"openInterest": 18459,
"timeValue": 0.03,
"theoreticalOptionValue": 0.024,
"theoreticalVolatility": 29.0,
"optionDeliverablesList": null,
"strikePrice": 175.0,
"expirationDate": 1679083200000,
"daysToExpiration": 10,
"expirationType": "R",
"lastTradingDay": 1679097600000,
"multiplier": 100.0,
"settlementType": " ",
"deliverableNote": "",
"isIndexOption": null,
"percentChange": 26.05,
"markChange": 0.01,
"markPercentChange": 26.05,
"intrinsicValue": -21.21,
"pennyPilot": true,
"inTheMoney": false,
"mini": false,
"nonStandard": false
}
],
"177.5": [
{
"putCall": "CALL",
"symbol": "AAPL_031723C177.5",
"description": "AAPL Mar 17 2023 177.5 Call",
"exchangeName": "OPR",
"bid": 0.0,
"ask": 0.09,
"last": 0.02,
"mark": 0.05,
"bidSize": 0,
"askSize": 207,
"bidAskSize": "0X207",
"lastSize": 0,
"highPrice": 0.0,
"lowPrice": 0.0,
"openPrice": 0.0,
"closePrice": 0.02,
"totalVolume": 0,
"tradeDate": null,
"tradeTimeInLong": 1678134450132,
"quoteTimeInLong": 1678199402787,
"netChange": 0.0,
"volatility": 31.15,
"delta": 0.006,
"gamma": 0.002,
"theta": -0.006,
"vega": 0.005,
"rho": 0.0,
"openInterest": 726,
"timeValue": 0.02,
"theoreticalOptionValue": 0.016,
"theoreticalVolatility": 29.0,
"optionDeliverablesList": null,
"strikePrice": 177.5,
"expirationDate": 1679083200000,
"daysToExpiration": 10,
"expirationType": "R",
"lastTradingDay": 1679097600000,
"multiplier": 100.0,
"settlementType": " ",
"deliverableNote": "",
"isIndexOption": null,
"percentChange": 21.95,
"markChange": 0.03,
"markPercentChange": 174.39,
"intrinsicValue": -23.71,
"pennyPilot": true,
"inTheMoney": false,
"mini": false,
"nonStandard": false
}
],
"180.0": [
{
"putCall": "CALL",
"symbol": "AAPL_031723C180",
"description": "AAPL Mar 17 2023 180 Call",
"exchangeName": "OPR",
"bid": 0.0,
"ask": 0.02,
"last": 0.01,
"mark": 0.01,
"bidSize": 0,
"askSize": 200,
"bidAskSize": "0X200",
"lastSize": 0,
"highPrice": 0.01,
"lowPrice": 0.01,
"openPrice": 0.0,
"closePrice": 0.01,
"totalVolume": 6,
"tradeDate": null,
"tradeTimeInLong": 1678199400597,
"quoteTimeInLong": 1678199400795,
"netChange": 0.0,
"volatility": 31.823,
"delta": 0.003,
"gamma": 0.001,
"theta": -0.004,
"vega": 0.003,
"rho": 0.0,
"openInterest": 17181,
"timeValue": 0.01,
"theoreticalOptionValue": 0.009,
"theoreticalVolatility": 29.0,
"optionDeliverablesList": null,
"strikePrice": 180.0,
"expirationDate": 1679083200000,
"daysToExpiration": 10,
"expirationType": "R",
"lastTradingDay": 1679097600000,
"multiplier": 100.0,
"settlementType": " ",
"deliverableNote": "",
"isIndexOption": null,
"percentChange": 9.89,
"markChange": 0.0,
"markPercentChange": 9.89,
"intrinsicValue": -26.21,
"pennyPilot": true,
"inTheMoney": false,
"mini": false,
"nonStandard": false
}
]
}
}
}
}
]
}