Skip to content

Instantly share code, notes, and snippets.

@danwagnerco
Created October 10, 2024 11:47
Show Gist options
  • Save danwagnerco/c783f20b5073974f10abdc2050d1f463 to your computer and use it in GitHub Desktop.
Save danwagnerco/c783f20b5073974f10abdc2050d1f463 to your computer and use it in GitHub Desktop.
Experiment with the UW Net Premium Ticks endpoint to create single-chart and dashboard views
Display the source blob
Display the rendered blob
Raw
{
"cells": [
{
"cell_type": "code",
"execution_count": 1,
"metadata": {},
"outputs": [
{
"data": {
"text/html": [
"\n",
" <div id=\"QOIsfE\"></div>\n",
" <script type=\"text/javascript\" data-lets-plot-script=\"library\">\n",
" if(!window.letsPlotCallQueue) {\n",
" window.letsPlotCallQueue = [];\n",
" }; \n",
" window.letsPlotCall = function(f) {\n",
" window.letsPlotCallQueue.push(f);\n",
" };\n",
" (function() {\n",
" var script = document.createElement(\"script\");\n",
" script.type = \"text/javascript\";\n",
" script.src = \"https://cdn.jsdelivr.net/gh/JetBrains/[email protected]/js-package/distr/lets-plot.min.js\";\n",
" script.onload = function() {\n",
" window.letsPlotCall = function(f) {f();};\n",
" window.letsPlotCallQueue.forEach(function(f) {f();});\n",
" window.letsPlotCallQueue = [];\n",
" \n",
" };\n",
" script.onerror = function(event) {\n",
" window.letsPlotCall = function(f) {}; // noop\n",
" window.letsPlotCallQueue = [];\n",
" var div = document.createElement(\"div\");\n",
" div.style.color = 'darkred';\n",
" div.textContent = 'Error loading Lets-Plot JS';\n",
" document.getElementById(\"QOIsfE\").appendChild(div);\n",
" };\n",
" var e = document.getElementById(\"QOIsfE\");\n",
" e.appendChild(script);\n",
" })()\n",
" </script>\n",
" "
]
},
"metadata": {},
"output_type": "display_data"
}
],
"source": [
"import os\n",
"import requests\n",
"import polars as pl\n",
"from lets_plot import *\n",
"LetsPlot.setup_html()\n",
"\n",
"uw_token = os.environ['UW_TOKEN']\n",
"headers = {'Accept': 'application/json, text/plain', 'Authorization': uw_token}"
]
},
{
"cell_type": "code",
"execution_count": 2,
"metadata": {},
"outputs": [],
"source": [
"theme_colors = {\n",
" 'darkest_black': '#0d1117',\n",
" 'darker_black': '#161b22',\n",
" 'dark_black': '#21262d',\n",
" 'darkest_gray': '#89929b',\n",
" 'darker_gray': '#c6cdd5',\n",
" 'dark_gray': '#ecf2f8',\n",
" 'white': '#ffffff',\n",
" 'red': '#fa7970',\n",
" 'orange': '#faa356',\n",
" 'green': '#7ce38b',\n",
" 'sky_blue': '#a2d2fb',\n",
" 'blue': '#77bdfb',\n",
" 'purple': '#cea5fb'\n",
"}\n",
"\n",
"def theme_light(legend_position: str = 'bottom') -> ggplot:\n",
" darkest_black = '#0d1117'\n",
" darker_black = '#161b22'\n",
" dark_black = '#21262d'\n",
" white = '#ffffff'\n",
" return theme_none() + theme(\n",
" line=element_line(color=darkest_black, size=1),\n",
" rect=element_rect(color=darkest_black, fill=white, size=1),\n",
" text=element_text(color=darkest_black),\n",
" axis_ontop=True,\n",
" axis_ticks=element_line(color=darker_black),\n",
" legend_background=element_rect(size=1),\n",
" legend_position=legend_position,\n",
" panel_grid_major=element_line(color=dark_black, size=0.5, linetype='dashed'),\n",
" panel_grid_minor=element_blank(),\n",
" plot_title=element_text(hjust=0.5, color=darkest_black),\n",
" tooltip=element_rect(color=dark_black),\n",
" axis_tooltip=element_rect(color=darker_black)\n",
" )\n",
"\n",
"def expand_net_prem_ticks(data: list[dict], tz: str) -> pl.DataFrame:\n",
" \"\"\"\n",
" API documentation:\n",
" https://api.unusualwhales.com/docs#/operations/PublicApi.TickerController.net_prem_ticks\n",
" \n",
" Function:\n",
" Takes the raw 'data' list of dictionaries from the UW endpoint\n",
" then converts string time into timezone-aware datetimes and\n",
" calculates the cumulative sum of net call and put premiums\n",
" (in millions) to return a polars DataFrame.\n",
" \"\"\"\n",
" raw_df = pl.DataFrame(data)\n",
" return (\n",
" raw_df\n",
" .with_columns(\n",
" pl.col('tape_time').str.strptime(pl.Datetime, '%Y-%m-%dT%H:%M:%S%.fZ').alias('tape_dt')\n",
" )\n",
" .with_columns(\n",
" pl.col('tape_dt').dt.convert_time_zone(tz).alias('tape_dt_tz')\n",
" )\n",
" .with_columns(\n",
" pl.col('tape_dt_tz').dt.strftime('%H:%M').alias('tape_dt_tz_str')\n",
" )\n",
" .with_columns(\n",
" [\n",
" pl.col('net_call_premium').cast(pl.Float64),\n",
" pl.col('net_put_premium').cast(pl.Float64)\n",
" ]\n",
" )\n",
" .with_columns(\n",
" [\n",
" (\n",
" pl.col('net_call_premium').cum_sum() / 1_000_000\n",
" ).alias('cum_net_call_premium_in_millions'),\n",
" (\n",
" pl.col('net_put_premium').cum_sum() / 1_000_000\n",
" ).alias('cum_net_put_premium_in_millions')\n",
" ]\n",
" )\n",
" )\n",
"\n",
"def create_plot_df(df: pl.DataFrame) -> pl.DataFrame:\n",
" \"\"\"\n",
" Function:\n",
" Takes the expanded polars DataFrame and manipulate it down into\n",
" essentially one really-long DataFrame with with columns formatted\n",
" to be easy for lets-plot to display.\n",
" \"\"\"\n",
" c_df = (\n",
" df\n",
" .select(\n",
" ['tape_dt_tz', 'tape_dt_tz_str', 'cum_net_call_premium_in_millions']\n",
" )\n",
" .with_columns(\n",
" pl.lit('Call').alias('type')\n",
" )\n",
" .rename(\n",
" {'cum_net_call_premium_in_millions': 'net_premium'}\n",
" )\n",
" )\n",
" p_df = (\n",
" df\n",
" .select(\n",
" ['tape_dt_tz', 'tape_dt_tz_str', 'cum_net_put_premium_in_millions']\n",
" )\n",
" .with_columns(\n",
" pl.lit('Put').alias('type')\n",
" )\n",
" .rename(\n",
" {'cum_net_put_premium_in_millions': 'net_premium'}\n",
" )\n",
" )\n",
" return pl.concat([c_df, p_df])\n",
"\n",
"def create_plot(df: pl.DataFrame,\n",
" ticker: str,\n",
" tz: str,\n",
" color_mapping: dict[str, str],\n",
" size: int,\n",
" legend_position: str = 'bottom',\n",
" hide_axis_labels: bool = True) -> ggplot:\n",
" \"\"\"\n",
" Function:\n",
" Take the final 'long' polars DataFrame and return a lets-plot\n",
" geom_line chart showing the cumulative net call and put premiums\n",
" (in millions) for every minute of the cash session.\n",
" \"\"\"\n",
" p = ggplot(df, aes(x='tape_dt_tz_str', y='net_premium', color='type')) + \\\n",
" labs(x=f'Time ({tz})', y='Net Premium', title=f'{ticker} Net Premium (in $M)') + \\\n",
" scale_color_manual(values=color_mapping) + \\\n",
" geom_line(size=size) + \\\n",
" theme_light(legend_position=legend_position) + \\\n",
" scale_y_continuous(format='{.2f}M')\n",
" if hide_axis_labels:\n",
" p += theme(axis_title_x=element_blank(), axis_title_y=element_blank())\n",
" return p"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"**Create a Net Premium Flow plot for a single stock**\n",
"- Let's start with COIN, crypto names have been very volatile in the last two weeks\n",
"- Put traders (red line) were not very active, trading between $0 and -$1M all day\n",
"- Call traders (blue line) sold appx -$6.75M in premium over the ten-minute span from 11:13AM to 11:23AM Chicago time"
]
},
{
"cell_type": "code",
"execution_count": 3,
"metadata": {},
"outputs": [
{
"data": {
"text/html": [
" <div id=\"I1O6vI\"></div>\n",
" <script type=\"text/javascript\" data-lets-plot-script=\"plot\">\n",
" (function() {\n",
" var plotSpec={\n",
"\"data\":{\n",
"\"tape_dt_tz_str\":[\"08:30\",\"08:31\",\"08:32\",\"08:33\",\"08:34\",\"08:35\",\"08:36\",\"08:37\",\"08:38\",\"08:39\",\"08:40\",\"08:41\",\"08:42\",\"08:43\",\"08:44\",\"08:45\",\"08:46\",\"08:47\",\"08:48\",\"08:49\",\"08:50\",\"08:51\",\"08:52\",\"08:53\",\"08:54\",\"08:55\",\"08:56\",\"08:57\",\"08:58\",\"08:59\",\"09:00\",\"09:01\",\"09:02\",\"09:03\",\"09:04\",\"09:05\",\"09:06\",\"09:07\",\"09:08\",\"09:09\",\"09:10\",\"09:11\",\"09:12\",\"09:13\",\"09:14\",\"09:15\",\"09:16\",\"09:17\",\"09:18\",\"09:19\",\"09:20\",\"09:21\",\"09:22\",\"09:23\",\"09:24\",\"09:25\",\"09:26\",\"09:27\",\"09:28\",\"09:29\",\"09:30\",\"09:31\",\"09:32\",\"09:33\",\"09:34\",\"09:35\",\"09:36\",\"09:37\",\"09:38\",\"09:39\",\"09:40\",\"09:41\",\"09:42\",\"09:43\",\"09:44\",\"09:45\",\"09:46\",\"09:47\",\"09:48\",\"09:49\",\"09:50\",\"09:51\",\"09:52\",\"09:53\",\"09:54\",\"09:55\",\"09:56\",\"09:57\",\"09:58\",\"09:59\",\"10:00\",\"10:01\",\"10:02\",\"10:03\",\"10:04\",\"10:05\",\"10:06\",\"10:07\",\"10:08\",\"10:09\",\"10:10\",\"10:11\",\"10:12\",\"10:13\",\"10:14\",\"10:15\",\"10:16\",\"10:17\",\"10:18\",\"10:19\",\"10:20\",\"10:21\",\"10:22\",\"10:23\",\"10:24\",\"10:25\",\"10:26\",\"10:27\",\"10:28\",\"10:29\",\"10:30\",\"10:31\",\"10:32\",\"10:33\",\"10:34\",\"10:35\",\"10:36\",\"10:37\",\"10:38\",\"10:39\",\"10:40\",\"10:41\",\"10:42\",\"10:43\",\"10:44\",\"10:45\",\"10:46\",\"10:47\",\"10:48\",\"10:49\",\"10:50\",\"10:51\",\"10:52\",\"10:53\",\"10:54\",\"10:55\",\"10:56\",\"10:57\",\"10:58\",\"10:59\",\"11:00\",\"11:01\",\"11:02\",\"11:03\",\"11:04\",\"11:05\",\"11:06\",\"11:07\",\"11:08\",\"11:09\",\"11:10\",\"11:11\",\"11:12\",\"11:13\",\"11:14\",\"11:15\",\"11:16\",\"11:17\",\"11:18\",\"11:19\",\"11:20\",\"11:21\",\"11:22\",\"11:23\",\"11:24\",\"11:25\",\"11:26\",\"11:27\",\"11:28\",\"11:29\",\"11:30\",\"11:31\",\"11:32\",\"11:33\",\"11:34\",\"11:35\",\"11:36\",\"11:37\",\"11:38\",\"11:39\",\"11:40\",\"11:41\",\"11:42\",\"11:43\",\"11:44\",\"11:45\",\"11:46\",\"11:47\",\"11:48\",\"11:49\",\"11:50\",\"11:51\",\"11:52\",\"11:53\",\"11:54\",\"11:55\",\"11:56\",\"11:57\",\"11:58\",\"11:59\",\"12:00\",\"12:01\",\"12:02\",\"12:03\",\"12:04\",\"12:05\",\"12:06\",\"12:07\",\"12:08\",\"12:09\",\"12:10\",\"12:11\",\"12:12\",\"12:13\",\"12:14\",\"12:15\",\"12:16\",\"12:17\",\"12:18\",\"12:19\",\"12:20\",\"12:21\",\"12:22\",\"12:23\",\"12:24\",\"12:25\",\"12:26\",\"12:27\",\"12:28\",\"12:29\",\"12:30\",\"12:31\",\"12:32\",\"12:33\",\"12:34\",\"12:35\",\"12:36\",\"12:37\",\"12:38\",\"12:39\",\"12:40\",\"12:41\",\"12:42\",\"12:43\",\"12:44\",\"12:45\",\"12:46\",\"12:47\",\"12:48\",\"12:49\",\"12:50\",\"12:51\",\"12:52\",\"12:53\",\"12:54\",\"12:55\",\"12:56\",\"12:57\",\"12:58\",\"12:59\",\"13:00\",\"13:01\",\"13:02\",\"13:03\",\"13:04\",\"13:05\",\"13:06\",\"13:07\",\"13:08\",\"13:09\",\"13:10\",\"13:11\",\"13:12\",\"13:13\",\"13:14\",\"13:15\",\"13:16\",\"13:17\",\"13:18\",\"13:19\",\"13:20\",\"13:21\",\"13:22\",\"13:23\",\"13:24\",\"13:25\",\"13:26\",\"13:27\",\"13:28\",\"13:29\",\"13:30\",\"13:31\",\"13:32\",\"13:33\",\"13:34\",\"13:35\",\"13:36\",\"13:37\",\"13:38\",\"13:39\",\"13:40\",\"13:41\",\"13:42\",\"13:43\",\"13:44\",\"13:45\",\"13:46\",\"13:47\",\"13:48\",\"13:49\",\"13:50\",\"13:51\",\"13:52\",\"13:53\",\"13:54\",\"13:55\",\"13:56\",\"13:57\",\"13:58\",\"13:59\",\"14:00\",\"14:01\",\"14:02\",\"14:03\",\"14:04\",\"14:05\",\"14:06\",\"14:07\",\"14:08\",\"14:09\",\"14:10\",\"14:11\",\"14:12\",\"14:13\",\"14:14\",\"14:15\",\"14:16\",\"14:17\",\"14:18\",\"14:19\",\"14:20\",\"14:21\",\"14:22\",\"14:23\",\"14:24\",\"14:25\",\"14:26\",\"14:27\",\"14:28\",\"14:29\",\"14:30\",\"14:31\",\"14:32\",\"14:33\",\"14:34\",\"14:35\",\"14:36\",\"14:37\",\"14:38\",\"14:39\",\"14:40\",\"14:41\",\"14:42\",\"14:43\",\"14:44\",\"14:45\",\"14:46\",\"14:47\",\"14:48\",\"14:49\",\"14:50\",\"14:51\",\"14:52\",\"14:53\",\"14:54\",\"14:55\",\"14:56\",\"14:57\",\"14:58\",\"14:59\",\"08:30\",\"08:31\",\"08:32\",\"08:33\",\"08:34\",\"08:35\",\"08:36\",\"08:37\",\"08:38\",\"08:39\",\"08:40\",\"08:41\",\"08:42\",\"08:43\",\"08:44\",\"08:45\",\"08:46\",\"08:47\",\"08:48\",\"08:49\",\"08:50\",\"08:51\",\"08:52\",\"08:53\",\"08:54\",\"08:55\",\"08:56\",\"08:57\",\"08:58\",\"08:59\",\"09:00\",\"09:01\",\"09:02\",\"09:03\",\"09:04\",\"09:05\",\"09:06\",\"09:07\",\"09:08\",\"09:09\",\"09:10\",\"09:11\",\"09:12\",\"09:13\",\"09:14\",\"09:15\",\"09:16\",\"09:17\",\"09:18\",\"09:19\",\"09:20\",\"09:21\",\"09:22\",\"09:23\",\"09:24\",\"09:25\",\"09:26\",\"09:27\",\"09:28\",\"09:29\",\"09:30\",\"09:31\",\"09:32\",\"09:33\",\"09:34\",\"09:35\",\"09:36\",\"09:37\",\"09:38\",\"09:39\",\"09:40\",\"09:41\",\"09:42\",\"09:43\",\"09:44\",\"09:45\",\"09:46\",\"09:47\",\"09:48\",\"09:49\",\"09:50\",\"09:51\",\"09:52\",\"09:53\",\"09:54\",\"09:55\",\"09:56\",\"09:57\",\"09:58\",\"09:59\",\"10:00\",\"10:01\",\"10:02\",\"10:03\",\"10:04\",\"10:05\",\"10:06\",\"10:07\",\"10:08\",\"10:09\",\"10:10\",\"10:11\",\"10:12\",\"10:13\",\"10:14\",\"10:15\",\"10:16\",\"10:17\",\"10:18\",\"10:19\",\"10:20\",\"10:21\",\"10:22\",\"10:23\",\"10:24\",\"10:25\",\"10:26\",\"10:27\",\"10:28\",\"10:29\",\"10:30\",\"10:31\",\"10:32\",\"10:33\",\"10:34\",\"10:35\",\"10:36\",\"10:37\",\"10:38\",\"10:39\",\"10:40\",\"10:41\",\"10:42\",\"10:43\",\"10:44\",\"10:45\",\"10:46\",\"10:47\",\"10:48\",\"10:49\",\"10:50\",\"10:51\",\"10:52\",\"10:53\",\"10:54\",\"10:55\",\"10:56\",\"10:57\",\"10:58\",\"10:59\",\"11:00\",\"11:01\",\"11:02\",\"11:03\",\"11:04\",\"11:05\",\"11:06\",\"11:07\",\"11:08\",\"11:09\",\"11:10\",\"11:11\",\"11:12\",\"11:13\",\"11:14\",\"11:15\",\"11:16\",\"11:17\",\"11:18\",\"11:19\",\"11:20\",\"11:21\",\"11:22\",\"11:23\",\"11:24\",\"11:25\",\"11:26\",\"11:27\",\"11:28\",\"11:29\",\"11:30\",\"11:31\",\"11:32\",\"11:33\",\"11:34\",\"11:35\",\"11:36\",\"11:37\",\"11:38\",\"11:39\",\"11:40\",\"11:41\",\"11:42\",\"11:43\",\"11:44\",\"11:45\",\"11:46\",\"11:47\",\"11:48\",\"11:49\",\"11:50\",\"11:51\",\"11:52\",\"11:53\",\"11:54\",\"11:55\",\"11:56\",\"11:57\",\"11:58\",\"11:59\",\"12:00\",\"12:01\",\"12:02\",\"12:03\",\"12:04\",\"12:05\",\"12:06\",\"12:07\",\"12:08\",\"12:09\",\"12:10\",\"12:11\",\"12:12\",\"12:13\",\"12:14\",\"12:15\",\"12:16\",\"12:17\",\"12:18\",\"12:19\",\"12:20\",\"12:21\",\"12:22\",\"12:23\",\"12:24\",\"12:25\",\"12:26\",\"12:27\",\"12:28\",\"12:29\",\"12:30\",\"12:31\",\"12:32\",\"12:33\",\"12:34\",\"12:35\",\"12:36\",\"12:37\",\"12:38\",\"12:39\",\"12:40\",\"12:41\",\"12:42\",\"12:43\",\"12:44\",\"12:45\",\"12:46\",\"12:47\",\"12:48\",\"12:49\",\"12:50\",\"12:51\",\"12:52\",\"12:53\",\"12:54\",\"12:55\",\"12:56\",\"12:57\",\"12:58\",\"12:59\",\"13:00\",\"13:01\",\"13:02\",\"13:03\",\"13:04\",\"13:05\",\"13:06\",\"13:07\",\"13:08\",\"13:09\",\"13:10\",\"13:11\",\"13:12\",\"13:13\",\"13:14\",\"13:15\",\"13:16\",\"13:17\",\"13:18\",\"13:19\",\"13:20\",\"13:21\",\"13:22\",\"13:23\",\"13:24\",\"13:25\",\"13:26\",\"13:27\",\"13:28\",\"13:29\",\"13:30\",\"13:31\",\"13:32\",\"13:33\",\"13:34\",\"13:35\",\"13:36\",\"13:37\",\"13:38\",\"13:39\",\"13:40\",\"13:41\",\"13:42\",\"13:43\",\"13:44\",\"13:45\",\"13:46\",\"13:47\",\"13:48\",\"13:49\",\"13:50\",\"13:51\",\"13:52\",\"13:53\",\"13:54\",\"13:55\",\"13:56\",\"13:57\",\"13:58\",\"13:59\",\"14:00\",\"14:01\",\"14:02\",\"14:03\",\"14:04\",\"14:05\",\"14:06\",\"14:07\",\"14:08\",\"14:09\",\"14:10\",\"14:11\",\"14:12\",\"14:13\",\"14:14\",\"14:15\",\"14:16\",\"14:17\",\"14:18\",\"14:19\",\"14:20\",\"14:21\",\"14:22\",\"14:23\",\"14:24\",\"14:25\",\"14:26\",\"14:27\",\"14:28\",\"14:29\",\"14:30\",\"14:31\",\"14:32\",\"14:33\",\"14:34\",\"14:35\",\"14:36\",\"14:37\",\"14:38\",\"14:39\",\"14:40\",\"14:41\",\"14:42\",\"14:43\",\"14:44\",\"14:45\",\"14:46\",\"14:47\",\"14:48\",\"14:49\",\"14:50\",\"14:51\",\"14:52\",\"14:53\",\"14:54\",\"14:55\",\"14:56\",\"14:57\",\"14:58\",\"14:59\"],\n",
"\"net_premium\":[-0.011325,0.031194,0.038596,0.029477999999999997,-0.086495,-0.39005799999999996,-0.559307,-0.698328,-0.5551349999999999,-0.483515,-0.474456,-0.500756,-0.5520269999999999,-0.631968,-0.587569,-0.5887939999999999,-0.612507,-0.6077279999999999,-0.6206699999999999,-0.610795,-0.611877,-0.6196349999999999,-0.615379,-0.684249,-0.680184,-0.728827,-0.702905,-0.703073,-0.672697,-0.409339,-0.412539,-0.420344,-0.42696399999999995,-0.43626899999999996,-0.44039999999999996,-0.479687,-0.48960499999999996,-0.49068999999999996,-0.44823799999999997,-0.44226099999999996,-0.447005,-0.45980099999999996,-0.47858199999999995,-0.47853199999999996,-0.48896799999999996,-0.47867899999999997,-0.566412,-0.587633,-0.9568939999999999,-0.940379,-0.550904,-0.580437,-0.5733269999999999,-0.577364,-0.57689,-0.563715,-0.6097,-0.589208,-0.762404,-0.7995249999999999,-1.1272879999999998,-1.108288,-1.1962089999999999,-1.254966,-1.261708,-1.249177,-1.266857,-1.3174219999999999,-1.3037299999999998,-1.315353,-1.32737,-1.350968,-1.37051,-1.341808,-1.322336,-1.339025,-1.4481309999999998,-1.4515289999999998,-1.4185569999999998,-1.4703439999999999,-1.467247,-1.50108,-1.537642,-1.526475,-1.538025,-1.52466,-1.526791,-1.492659,-1.5055349999999998,-1.540629,-1.446254,-1.45181,-1.4565979999999998,-1.4694889999999998,-1.476183,-1.448542,-1.47262,-1.469887,-1.093986,-1.070609,-0.788252,-0.7616569999999999,-0.756597,-0.735951,-0.6493709999999999,-0.6049709999999999,-0.5930529999999999,-0.5756669999999999,-0.5661729999999999,-0.567186,-0.449225,-0.467641,-0.508795,-0.53527,-0.525473,-0.512516,-0.42461,-0.349556,-0.336725,-0.246912,-0.187825,-0.076232,0.07246899999999999,0.145193,0.305372,0.33252,0.310649,0.276431,0.27152699999999996,0.200964,0.190907,0.029255,0.058948,0.056575,0.108761,-0.037534,-0.012756,0.038246999999999996,0.09490599999999999,-0.129859,-0.11351599999999999,-0.094137,-0.215907,-0.326106,-0.319513,-0.345914,-0.623788,-0.7043269999999999,-0.707691,-0.703225,-0.682801,-0.593892,-1.0106359999999999,-0.621018,-0.623737,-0.714287,-0.693458,-0.452717,-0.5052559999999999,-0.48960099999999995,-0.47638199999999997,-0.48761899999999997,-0.5316259999999999,-0.464802,-0.780087,-0.9296559999999999,-0.823463,-1.248083,-1.4301709999999999,-1.9783,-4.163773,-5.79978,-7.228777,-7.2273309999999995,-7.147378,-7.150885,-7.164127,-7.180016999999999,-7.162629,-7.155946999999999,-7.171190999999999,-7.174097,-7.174068,-7.183338,-7.2746569999999995,-7.268307999999999,-7.23041,-7.2946729999999995,-7.298571,-7.289193,-7.194667,-7.18964,-7.2140759999999995,-7.236974999999999,-7.243981,-7.257648,-7.254652999999999,-7.247114,-7.270123,-7.267494999999999,-7.274112,-7.274671,-7.289269,-7.302026,-7.442539999999999,-7.444980999999999,-7.374184,-7.375277,-7.366949,-7.379707,-7.426895,-7.43555,-7.452001999999999,-7.454809,-7.4480949999999995,-7.444154999999999,-7.443689999999999,-7.442597999999999,-7.501093,-7.489796999999999,-7.485658,-7.4852229999999995,-7.484559,-7.507423999999999,-7.503601,-7.503047,-7.509079,-7.5172099999999995,-7.516667,-7.504688,-7.5236019999999995,-7.519907,-7.515762,-7.532736,-7.450487,-7.296672999999999,-7.278543,-7.296177999999999,-7.192709,-7.178795999999999,-7.213907,-7.213884999999999,-7.173347,-7.132746,-7.183453999999999,-7.171412999999999,-7.243380999999999,-7.1570279999999995,-7.154236999999999,-7.153601,-7.1513469999999995,-7.146999,-7.1315409999999995,-7.172968,-7.118561,-7.952522999999999,-7.968588,-7.978903,-7.919986,-7.932067999999999,-7.944147999999999,-7.946903,-7.952839999999999,-8.000281,-7.997369,-7.941208,-7.976413,-7.976153999999999,-7.985659999999999,-7.981987999999999,-8.041518,-8.063305,-8.061497,-8.053913999999999,-8.061164,-8.068685,-8.027714,-8.067495,-8.072159,-8.116221,-8.179846,-8.217138,-8.278585,-8.298294,-8.351172,-8.389907,-8.402072,-8.425374999999999,-8.346611,-8.379000999999999,-8.358945,-8.353944,-8.30125,-8.286883999999999,-8.251241,-8.229654,-8.218311,-8.150539,-8.146920999999999,-8.142135999999999,-8.149383,-8.147852,-8.147575,-8.145169,-8.143673999999999,-8.160947,-8.124395999999999,-8.117897,-8.16211,-8.170142,-8.168809999999999,-8.175621,-8.174714999999999,-8.131128,-8.150549999999999,-8.134834,-8.194738,-8.158539,-8.362254,-8.371687,-8.365927,-8.347057999999999,-8.362677999999999,-8.351865,-8.354871,-8.363463,-8.346278,-8.345953,-8.323986,-8.333537999999999,-8.32718,-8.325873,-8.327335,-8.32983,-8.281072,-8.28351,-8.28204,-8.314619,-8.080625,-8.108604,-8.161571,-8.257612,-8.01503,-7.856574999999999,-7.873569,-8.13719,-8.136146,-8.107436,-8.109741999999999,-8.107826,-8.122299,-8.117253,-8.125036,-8.134805,-8.191538,-8.238633,-8.23132,-8.198051999999999,-8.227978,-8.416791,-8.612483,-8.487658999999999,-8.587216999999999,-8.7564,-9.40556,-9.395138,-9.39471,-9.370954,-9.434739,-9.615034,-8.924064999999999,-8.756295999999999,-8.788599999999999,-8.801124,-8.983948,-9.145285,-9.186041999999999,-9.209745999999999,-9.192863,-9.17611,-9.179784,-9.097733,-9.094336,-9.095761,-9.093964,-9.080822999999999,-9.03909,-9.041107,-9.04468,-9.007321,5.059999999999999E-4,-2.1899999999999998E-4,-0.008928,-0.016097,-0.017259,0.007316,0.012282999999999999,-0.006852,-0.029847,-0.042904,-0.112713,-0.10531,-0.09553099999999999,-0.081338,-0.100135,-0.110909,-0.11344399999999999,-0.107252,-0.109543,-0.120209,-0.10360699999999999,-0.11631499999999999,-0.128428,-0.125946,-0.12678999999999999,-0.120459,-0.127496,-0.12701099999999999,-0.135373,-0.140729,-0.10514699999999999,-0.10819999999999999,-0.11453999999999999,-0.106515,-0.11590299999999999,-0.106864,-0.10980899999999999,-0.24751299999999998,-0.283414,-0.287146,-0.285464,-0.299664,-0.31748499999999996,-0.31093499999999996,-0.282348,-0.29703599999999997,-0.302012,-0.30322299999999996,-0.299047,-0.298634,-0.314758,-0.318011,-0.319035,-0.319887,-0.320403,-0.31695799999999996,-0.307212,-0.307567,-0.219934,-0.205142,-0.17341099999999998,-0.41142999999999996,-0.47206099999999995,-0.44182299999999997,-0.445024,-0.455507,-0.458175,-0.449924,-0.44095599999999996,-0.445214,-0.516245,-0.49003399999999997,-0.480089,-0.481072,-0.470379,-0.46801299999999996,-0.472136,-0.469622,-0.482243,-0.483157,-0.483199,-0.48144899999999996,-0.47509799999999996,-0.477081,-0.472367,-0.468427,-0.5138349999999999,-0.5091,-0.5144759999999999,-0.552291,-0.536088,-0.524855,-0.524195,-0.522378,-0.515524,-0.5266379999999999,-0.531224,-0.563928,-0.573817,-0.5764819999999999,-0.589401,-0.627693,-0.67982,-0.7067249999999999,-0.7307199999999999,-0.7000689999999999,-0.635664,-0.63779,-0.637162,-0.6357539999999999,-0.6509769999999999,-0.656481,-0.644686,-0.706019,-0.708105,-0.707073,-0.701531,-0.704356,-0.708858,-0.709368,-0.932452,-0.9248179999999999,-0.891803,-0.915559,-0.9290849999999999,-0.933839,-0.9362739999999999,-0.75989,-0.771597,-0.749567,-0.8469059999999999,-0.840326,-0.840001,-0.8595889999999999,-0.8629279999999999,-0.8673919999999999,-0.9274629999999999,-0.953429,-1.002405,-1.00328,-1.012804,-1.023383,-0.873815,-0.8626579999999999,-0.870122,-0.858556,-0.8533729999999999,-0.855147,-0.8584849999999999,-0.8528469999999999,-0.8420289999999999,-0.8259179999999999,-0.8794919999999999,-0.847417,-0.8196899999999999,-0.8154389999999999,-0.815402,-0.8002279999999999,-0.7966169999999999,-0.790221,-0.8031809999999999,-0.8039339999999999,-0.848146,-0.832078,-0.8259949999999999,-0.796549,-0.9037879999999999,-0.912304,-0.756401,-0.6068319999999999,-0.581164,-0.5773889999999999,-0.5627289999999999,-0.557731,-0.641461,-0.746579,-0.7581899999999999,-0.758338,-0.757879,-0.757815,-0.75389,-0.8180189999999999,-0.817365,-0.8293849999999999,-0.844646,-0.861248,-0.86925,-0.868131,-0.875369,-0.871111,-0.872126,-0.8492109999999999,-0.851015,-0.909909,-0.92845,-0.937959,-0.9335749999999999,-0.865906,-0.8609789999999999,-0.8600329999999999,-0.860159,-0.876722,-0.842174,-0.839321,-0.834981,-0.847306,-0.850035,-0.854105,-0.842325,-0.839831,-0.8401879999999999,-0.8396129999999999,-0.824075,-0.831275,-0.8248719999999999,-0.824793,-0.8160999999999999,-0.8130339999999999,-0.597775,-0.5978319999999999,-0.596406,-0.596442,-0.6018359999999999,-0.65709,-0.656698,-0.656664,-0.653864,-0.640452,-0.640351,-0.640026,-0.637969,-0.6374,-0.637564,-0.635941,-0.6343679999999999,-0.588785,-0.588617,-0.546113,-0.544391,-0.545258,-0.5453399999999999,-0.539146,-0.5385829999999999,-0.5385599999999999,-0.539238,-0.537211,-0.5406989999999999,-0.5406989999999999,-0.5396099999999999,-0.540223,-0.540408,-0.594913,-0.598472,-0.567769,-0.5676439999999999,-0.570214,-0.570612,-0.554449,-0.5578679999999999,-0.5530269999999999,-0.544385,-0.5446679999999999,-0.543655,-0.536181,-0.537866,-0.537866,-0.516496,-0.521621,-0.520069,-0.520439,-0.508904,-0.49418199999999995,-0.49371499999999996,-0.493978,-0.494374,-0.494459,-0.47728,-0.473365,-0.472832,-0.465734,-0.463557,-0.43096199999999996,-0.087393,-0.08448499999999999,-0.068966,-0.068179,-0.065472,-0.062485,-0.061771,-0.064835,-0.063818,-0.069635,-0.051591,-0.044499,-0.050778,-0.058269999999999995,-0.057988,-0.059336999999999994,-0.043627,-0.035075999999999996,-0.035112,0.032487999999999996,0.039083,0.076459,0.073423,0.074062,0.075652,0.074748,0.10743899999999999,0.093014,0.092929,0.092933,0.09127299999999999,0.052412,0.052785,0.059518999999999996,0.062572,0.06489,0.06631999999999999,0.06414399999999999,0.065228,0.063147,0.063052,0.067541,0.07187299999999999,0.073849,0.086118,0.086699,0.08656599999999999,0.085921,0.088349,0.086569,0.08821,0.087542,0.087542,0.088942,0.07192599999999999,0.09590499999999999,0.087868,0.091788,0.093983,0.215471,0.24797,0.256822,0.191957,0.179802,0.186323,0.19649799999999998,0.19624999999999998,0.186518,0.19037199999999999,0.18175,0.191801,0.192772,0.192189,0.191413,0.184332,0.19843,0.198173,0.194242,0.19448,0.196126,0.198069,0.186528,0.17673899999999998,0.177361,0.188746,0.19462,0.179191,0.21698099999999998,0.241891,0.2374,0.239732,0.151531,0.15525,0.163597,0.12809099999999998,0.12520799999999999,0.121305,0.12572999999999998,0.14396499999999998,0.1456,0.142346,0.138032,0.13611499999999999,0.137569,0.12178499999999999,0.115495,0.12029,0.137325],\n",
"\"type\":[\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\"]\n",
"},\n",
"\"mapping\":{\n",
"\"x\":\"tape_dt_tz_str\",\n",
"\"y\":\"net_premium\",\n",
"\"color\":\"type\"\n",
"},\n",
"\"data_meta\":{\n",
"\"series_annotations\":[{\n",
"\"column\":\"tape_dt_tz\",\n",
"\"type\":\"datetime\"\n",
"}]\n",
"},\n",
"\"ggtitle\":{\n",
"\"text\":\"COIN Net Premium (in $M)\"\n",
"},\n",
"\"theme\":{\n",
"\"name\":\"none\",\n",
"\"line\":{\n",
"\"color\":\"#0d1117\",\n",
"\"size\":1.0,\n",
"\"blank\":false\n",
"},\n",
"\"rect\":{\n",
"\"fill\":\"#ffffff\",\n",
"\"color\":\"#0d1117\",\n",
"\"size\":1.0,\n",
"\"blank\":false\n",
"},\n",
"\"text\":{\n",
"\"color\":\"#0d1117\",\n",
"\"blank\":false\n",
"},\n",
"\"axis_ontop\":true,\n",
"\"axis_ticks\":{\n",
"\"color\":\"#161b22\",\n",
"\"blank\":false\n",
"},\n",
"\"legend_background\":{\n",
"\"size\":1.0,\n",
"\"blank\":false\n",
"},\n",
"\"legend_position\":\"none\",\n",
"\"panel_grid_major\":{\n",
"\"color\":\"#21262d\",\n",
"\"size\":0.5,\n",
"\"linetype\":\"dashed\",\n",
"\"blank\":false\n",
"},\n",
"\"panel_grid_minor\":{\n",
"\"blank\":true\n",
"},\n",
"\"plot_title\":{\n",
"\"color\":\"#0d1117\",\n",
"\"hjust\":0.5,\n",
"\"blank\":false\n",
"},\n",
"\"axis_tooltip\":{\n",
"\"color\":\"#161b22\",\n",
"\"blank\":false\n",
"},\n",
"\"tooltip\":{\n",
"\"color\":\"#21262d\",\n",
"\"blank\":false\n",
"},\n",
"\"axis_title_x\":{\n",
"\"blank\":true\n",
"},\n",
"\"axis_title_y\":{\n",
"\"blank\":true\n",
"}\n",
"},\n",
"\"kind\":\"plot\",\n",
"\"scales\":[{\n",
"\"name\":\"Time (America/Chicago)\",\n",
"\"aesthetic\":\"x\"\n",
"},{\n",
"\"name\":\"Net Premium\",\n",
"\"aesthetic\":\"y\"\n",
"},{\n",
"\"aesthetic\":\"color\",\n",
"\"breaks\":[\"Call\",\"Put\"],\n",
"\"values\":[\"#77bdfb\",\"#fa7970\"]\n",
"},{\n",
"\"aesthetic\":\"y\",\n",
"\"format\":\"{.2f}M\"\n",
"}],\n",
"\"layers\":[{\n",
"\"geom\":\"line\",\n",
"\"mapping\":{\n",
"},\n",
"\"data_meta\":{\n",
"},\n",
"\"size\":1.0,\n",
"\"data\":{\n",
"}\n",
"}],\n",
"\"metainfo_list\":[]\n",
"};\n",
" var plotContainer = document.getElementById(\"I1O6vI\");\n",
" window.letsPlotCall(function() {{\n",
" LetsPlot.buildPlotFromProcessedSpecs(plotSpec, -1, -1, plotContainer);\n",
" }});\n",
" })();\n",
" </script>"
]
},
"metadata": {},
"output_type": "display_data"
}
],
"source": [
"ticker = 'COIN'\n",
"\n",
"color_mapping = {\n",
" 'Call': theme_colors['blue'],\n",
" 'Put': theme_colors['red']\n",
"}\n",
"url = f'https://api.unusualwhales.com/api/stock/{ticker}/net-prem-ticks'\n",
"r = requests.get(url, headers=headers)\n",
"if r.status_code == 200:\n",
" df = expand_net_prem_ticks(r.json()['data'], 'America/Chicago')\n",
" plot_df = create_plot_df(df)\n",
" p = create_plot(\n",
" plot_df,\n",
" ticker,\n",
" 'America/Chicago',\n",
" color_mapping,\n",
" 1,\n",
" legend_position='none',\n",
" hide_axis_labels=True\n",
" )\n",
"else:\n",
" print(f'Error fetching data for {ticker}')\n",
"p.show()"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"**Create a Net Premium Flow plot dashboard for a group of 8 single stocks on Wed Oct 9th**\n",
"- This time let's go with the MAGMANTN (META, AAPL, GOOGL, MSFT, AMZN, NFLX, TSLA, and NVDA) group\n",
"- We will use `gggrid` to group the net cumulative premiums for each of the 8 charts together\n",
"- Call sellers stepped up early in both META and GOOGL, their call premium never recovered\n",
"- Big step-change up in MSFT Call buying at 9:45AM Chicago time but sellers battled back to roughly zero\n",
"- Call buyers consistent all day long in AMZN\n",
"- Steady Call buying in TSLA until about 12:30PM Chicago time before Call sellers steadily brought that cumulative number back down\n",
"- Steady Put selling in NVDA consistently throughout the day, big -$55M Call selling in the first 15 minutes of the session and the cumulative Call number never recovered"
]
},
{
"cell_type": "code",
"execution_count": 4,
"metadata": {},
"outputs": [
{
"data": {
"text/html": [
" <div id=\"pAwp2c\"></div>\n",
" <script type=\"text/javascript\" data-lets-plot-script=\"plot\">\n",
" (function() {\n",
" var plotSpec={\n",
"\"kind\":\"subplots\",\n",
"\"layout\":{\n",
"\"ncol\":4.0,\n",
"\"nrow\":2.0,\n",
"\"name\":\"grid\"\n",
"},\n",
"\"figures\":[{\n",
"\"data\":{\n",
"\"tape_dt_tz_str\":[\"08:30\",\"08:31\",\"08:32\",\"08:33\",\"08:34\",\"08:35\",\"08:36\",\"08:37\",\"08:38\",\"08:39\",\"08:40\",\"08:41\",\"08:42\",\"08:43\",\"08:44\",\"08:45\",\"08:46\",\"08:47\",\"08:48\",\"08:49\",\"08:50\",\"08:51\",\"08:52\",\"08:53\",\"08:54\",\"08:55\",\"08:56\",\"08:57\",\"08:58\",\"08:59\",\"09:00\",\"09:01\",\"09:02\",\"09:03\",\"09:04\",\"09:05\",\"09:06\",\"09:07\",\"09:08\",\"09:09\",\"09:10\",\"09:11\",\"09:12\",\"09:13\",\"09:14\",\"09:15\",\"09:16\",\"09:17\",\"09:18\",\"09:19\",\"09:20\",\"09:21\",\"09:22\",\"09:23\",\"09:24\",\"09:25\",\"09:26\",\"09:27\",\"09:28\",\"09:29\",\"09:30\",\"09:31\",\"09:32\",\"09:33\",\"09:34\",\"09:35\",\"09:36\",\"09:37\",\"09:38\",\"09:39\",\"09:40\",\"09:41\",\"09:42\",\"09:43\",\"09:44\",\"09:45\",\"09:46\",\"09:47\",\"09:48\",\"09:49\",\"09:50\",\"09:51\",\"09:52\",\"09:53\",\"09:54\",\"09:55\",\"09:56\",\"09:57\",\"09:58\",\"09:59\",\"10:00\",\"10:01\",\"10:02\",\"10:03\",\"10:04\",\"10:05\",\"10:06\",\"10:07\",\"10:08\",\"10:09\",\"10:10\",\"10:11\",\"10:12\",\"10:13\",\"10:14\",\"10:15\",\"10:16\",\"10:17\",\"10:18\",\"10:19\",\"10:20\",\"10:21\",\"10:22\",\"10:23\",\"10:24\",\"10:25\",\"10:26\",\"10:27\",\"10:28\",\"10:29\",\"10:30\",\"10:31\",\"10:32\",\"10:33\",\"10:34\",\"10:35\",\"10:36\",\"10:37\",\"10:38\",\"10:39\",\"10:40\",\"10:41\",\"10:42\",\"10:43\",\"10:44\",\"10:45\",\"10:46\",\"10:47\",\"10:48\",\"10:49\",\"10:50\",\"10:51\",\"10:52\",\"10:53\",\"10:54\",\"10:55\",\"10:56\",\"10:57\",\"10:58\",\"10:59\",\"11:00\",\"11:01\",\"11:02\",\"11:03\",\"11:04\",\"11:05\",\"11:06\",\"11:07\",\"11:08\",\"11:09\",\"11:10\",\"11:11\",\"11:12\",\"11:13\",\"11:14\",\"11:15\",\"11:16\",\"11:17\",\"11:18\",\"11:19\",\"11:20\",\"11:21\",\"11:22\",\"11:23\",\"11:24\",\"11:25\",\"11:26\",\"11:27\",\"11:28\",\"11:29\",\"11:30\",\"11:31\",\"11:32\",\"11:33\",\"11:34\",\"11:35\",\"11:36\",\"11:37\",\"11:38\",\"11:39\",\"11:40\",\"11:41\",\"11:42\",\"11:43\",\"11:44\",\"11:45\",\"11:46\",\"11:47\",\"11:48\",\"11:49\",\"11:50\",\"11:51\",\"11:52\",\"11:53\",\"11:54\",\"11:55\",\"11:56\",\"11:57\",\"11:58\",\"11:59\",\"12:00\",\"12:01\",\"12:02\",\"12:03\",\"12:04\",\"12:05\",\"12:06\",\"12:07\",\"12:08\",\"12:09\",\"12:10\",\"12:11\",\"12:12\",\"12:13\",\"12:14\",\"12:15\",\"12:16\",\"12:17\",\"12:18\",\"12:19\",\"12:20\",\"12:21\",\"12:22\",\"12:23\",\"12:24\",\"12:25\",\"12:26\",\"12:27\",\"12:28\",\"12:29\",\"12:30\",\"12:31\",\"12:32\",\"12:33\",\"12:34\",\"12:35\",\"12:36\",\"12:37\",\"12:38\",\"12:39\",\"12:40\",\"12:41\",\"12:42\",\"12:43\",\"12:44\",\"12:45\",\"12:46\",\"12:47\",\"12:48\",\"12:49\",\"12:50\",\"12:51\",\"12:52\",\"12:53\",\"12:54\",\"12:55\",\"12:56\",\"12:57\",\"12:58\",\"12:59\",\"13:00\",\"13:01\",\"13:02\",\"13:03\",\"13:04\",\"13:05\",\"13:06\",\"13:07\",\"13:08\",\"13:09\",\"13:10\",\"13:11\",\"13:12\",\"13:13\",\"13:14\",\"13:15\",\"13:16\",\"13:17\",\"13:18\",\"13:19\",\"13:20\",\"13:21\",\"13:22\",\"13:23\",\"13:24\",\"13:25\",\"13:26\",\"13:27\",\"13:28\",\"13:29\",\"13:30\",\"13:31\",\"13:32\",\"13:33\",\"13:34\",\"13:35\",\"13:36\",\"13:37\",\"13:38\",\"13:39\",\"13:40\",\"13:41\",\"13:42\",\"13:43\",\"13:44\",\"13:45\",\"13:46\",\"13:47\",\"13:48\",\"13:49\",\"13:50\",\"13:51\",\"13:52\",\"13:53\",\"13:54\",\"13:55\",\"13:56\",\"13:57\",\"13:58\",\"13:59\",\"14:00\",\"14:01\",\"14:02\",\"14:03\",\"14:04\",\"14:05\",\"14:06\",\"14:07\",\"14:08\",\"14:09\",\"14:10\",\"14:11\",\"14:12\",\"14:13\",\"14:14\",\"14:15\",\"14:16\",\"14:17\",\"14:18\",\"14:19\",\"14:20\",\"14:21\",\"14:22\",\"14:23\",\"14:24\",\"14:25\",\"14:26\",\"14:27\",\"14:28\",\"14:29\",\"14:30\",\"14:31\",\"14:32\",\"14:33\",\"14:34\",\"14:35\",\"14:36\",\"14:37\",\"14:38\",\"14:39\",\"14:40\",\"14:41\",\"14:42\",\"14:43\",\"14:44\",\"14:45\",\"14:46\",\"14:47\",\"14:48\",\"14:49\",\"14:50\",\"14:51\",\"14:52\",\"14:53\",\"14:54\",\"14:55\",\"14:56\",\"14:57\",\"14:58\",\"14:59\",\"08:30\",\"08:31\",\"08:32\",\"08:33\",\"08:34\",\"08:35\",\"08:36\",\"08:37\",\"08:38\",\"08:39\",\"08:40\",\"08:41\",\"08:42\",\"08:43\",\"08:44\",\"08:45\",\"08:46\",\"08:47\",\"08:48\",\"08:49\",\"08:50\",\"08:51\",\"08:52\",\"08:53\",\"08:54\",\"08:55\",\"08:56\",\"08:57\",\"08:58\",\"08:59\",\"09:00\",\"09:01\",\"09:02\",\"09:03\",\"09:04\",\"09:05\",\"09:06\",\"09:07\",\"09:08\",\"09:09\",\"09:10\",\"09:11\",\"09:12\",\"09:13\",\"09:14\",\"09:15\",\"09:16\",\"09:17\",\"09:18\",\"09:19\",\"09:20\",\"09:21\",\"09:22\",\"09:23\",\"09:24\",\"09:25\",\"09:26\",\"09:27\",\"09:28\",\"09:29\",\"09:30\",\"09:31\",\"09:32\",\"09:33\",\"09:34\",\"09:35\",\"09:36\",\"09:37\",\"09:38\",\"09:39\",\"09:40\",\"09:41\",\"09:42\",\"09:43\",\"09:44\",\"09:45\",\"09:46\",\"09:47\",\"09:48\",\"09:49\",\"09:50\",\"09:51\",\"09:52\",\"09:53\",\"09:54\",\"09:55\",\"09:56\",\"09:57\",\"09:58\",\"09:59\",\"10:00\",\"10:01\",\"10:02\",\"10:03\",\"10:04\",\"10:05\",\"10:06\",\"10:07\",\"10:08\",\"10:09\",\"10:10\",\"10:11\",\"10:12\",\"10:13\",\"10:14\",\"10:15\",\"10:16\",\"10:17\",\"10:18\",\"10:19\",\"10:20\",\"10:21\",\"10:22\",\"10:23\",\"10:24\",\"10:25\",\"10:26\",\"10:27\",\"10:28\",\"10:29\",\"10:30\",\"10:31\",\"10:32\",\"10:33\",\"10:34\",\"10:35\",\"10:36\",\"10:37\",\"10:38\",\"10:39\",\"10:40\",\"10:41\",\"10:42\",\"10:43\",\"10:44\",\"10:45\",\"10:46\",\"10:47\",\"10:48\",\"10:49\",\"10:50\",\"10:51\",\"10:52\",\"10:53\",\"10:54\",\"10:55\",\"10:56\",\"10:57\",\"10:58\",\"10:59\",\"11:00\",\"11:01\",\"11:02\",\"11:03\",\"11:04\",\"11:05\",\"11:06\",\"11:07\",\"11:08\",\"11:09\",\"11:10\",\"11:11\",\"11:12\",\"11:13\",\"11:14\",\"11:15\",\"11:16\",\"11:17\",\"11:18\",\"11:19\",\"11:20\",\"11:21\",\"11:22\",\"11:23\",\"11:24\",\"11:25\",\"11:26\",\"11:27\",\"11:28\",\"11:29\",\"11:30\",\"11:31\",\"11:32\",\"11:33\",\"11:34\",\"11:35\",\"11:36\",\"11:37\",\"11:38\",\"11:39\",\"11:40\",\"11:41\",\"11:42\",\"11:43\",\"11:44\",\"11:45\",\"11:46\",\"11:47\",\"11:48\",\"11:49\",\"11:50\",\"11:51\",\"11:52\",\"11:53\",\"11:54\",\"11:55\",\"11:56\",\"11:57\",\"11:58\",\"11:59\",\"12:00\",\"12:01\",\"12:02\",\"12:03\",\"12:04\",\"12:05\",\"12:06\",\"12:07\",\"12:08\",\"12:09\",\"12:10\",\"12:11\",\"12:12\",\"12:13\",\"12:14\",\"12:15\",\"12:16\",\"12:17\",\"12:18\",\"12:19\",\"12:20\",\"12:21\",\"12:22\",\"12:23\",\"12:24\",\"12:25\",\"12:26\",\"12:27\",\"12:28\",\"12:29\",\"12:30\",\"12:31\",\"12:32\",\"12:33\",\"12:34\",\"12:35\",\"12:36\",\"12:37\",\"12:38\",\"12:39\",\"12:40\",\"12:41\",\"12:42\",\"12:43\",\"12:44\",\"12:45\",\"12:46\",\"12:47\",\"12:48\",\"12:49\",\"12:50\",\"12:51\",\"12:52\",\"12:53\",\"12:54\",\"12:55\",\"12:56\",\"12:57\",\"12:58\",\"12:59\",\"13:00\",\"13:01\",\"13:02\",\"13:03\",\"13:04\",\"13:05\",\"13:06\",\"13:07\",\"13:08\",\"13:09\",\"13:10\",\"13:11\",\"13:12\",\"13:13\",\"13:14\",\"13:15\",\"13:16\",\"13:17\",\"13:18\",\"13:19\",\"13:20\",\"13:21\",\"13:22\",\"13:23\",\"13:24\",\"13:25\",\"13:26\",\"13:27\",\"13:28\",\"13:29\",\"13:30\",\"13:31\",\"13:32\",\"13:33\",\"13:34\",\"13:35\",\"13:36\",\"13:37\",\"13:38\",\"13:39\",\"13:40\",\"13:41\",\"13:42\",\"13:43\",\"13:44\",\"13:45\",\"13:46\",\"13:47\",\"13:48\",\"13:49\",\"13:50\",\"13:51\",\"13:52\",\"13:53\",\"13:54\",\"13:55\",\"13:56\",\"13:57\",\"13:58\",\"13:59\",\"14:00\",\"14:01\",\"14:02\",\"14:03\",\"14:04\",\"14:05\",\"14:06\",\"14:07\",\"14:08\",\"14:09\",\"14:10\",\"14:11\",\"14:12\",\"14:13\",\"14:14\",\"14:15\",\"14:16\",\"14:17\",\"14:18\",\"14:19\",\"14:20\",\"14:21\",\"14:22\",\"14:23\",\"14:24\",\"14:25\",\"14:26\",\"14:27\",\"14:28\",\"14:29\",\"14:30\",\"14:31\",\"14:32\",\"14:33\",\"14:34\",\"14:35\",\"14:36\",\"14:37\",\"14:38\",\"14:39\",\"14:40\",\"14:41\",\"14:42\",\"14:43\",\"14:44\",\"14:45\",\"14:46\",\"14:47\",\"14:48\",\"14:49\",\"14:50\",\"14:51\",\"14:52\",\"14:53\",\"14:54\",\"14:55\",\"14:56\",\"14:57\",\"14:58\",\"14:59\"],\n",
"\"net_premium\":[0.476705,0.422581,0.266379,0.351838,0.10259299999999999,0.063535,-0.071727,-0.10183299999999999,0.138782,-0.054293999999999995,-0.025665999999999998,-0.509779,-0.14480099999999999,-0.9043709999999999,-1.058408,-1.377697,-1.3067419999999998,-1.37604,-1.5100639999999999,-1.798652,-2.1326579999999997,-2.229835,-2.75513,-2.270874,-2.378449,-2.5586379999999997,-2.410786,-2.896868,-7.498711999999999,-7.5615879999999995,-7.522424999999999,-7.88481,-8.053563,-8.056735,-7.7936179999999995,-10.749626,-10.690923,-10.537538,-10.745922,-11.192779999999999,-11.259573999999999,-11.217471,-11.18745,-11.307326,-9.783508,-9.565059999999999,-9.6609,-9.344313,-9.489239999999999,-9.287913999999999,-9.068545,-8.890013,-8.870059,-8.701613,-8.519579,-8.194348,-7.891128999999999,-7.9958789999999995,-7.7066539999999994,-7.563611,-7.630008999999999,-7.633725999999999,-8.071302,-8.428506,-8.347902,-8.447519,-8.371431,-8.768866,-8.672131,-8.847529,-8.871179999999999,-8.713925,-9.683396,-9.829086,-9.943322,-10.015653,-10.064898,-10.031183,-10.071811,-10.102341,-10.17498,-10.129833,-10.21739,-10.369202,-10.337767999999999,-10.249875,-10.190042,-9.810983,-9.789451,-9.672229,-9.341199999999999,-9.294323,-9.225669,-9.273752,-9.257587,-9.170937,-14.730585,-17.143539999999998,-17.369688999999997,-17.45719,-17.528624999999998,-17.614136,-17.500615,-16.248922,-16.219074,-16.31037,-16.228749999999998,-16.179892,-16.210767,-16.147676,-16.151077,-16.110578999999998,-17.529761999999998,-17.497934,-17.468304,-17.402613,-17.495442999999998,-17.603804,-17.76116,-17.800024999999998,-17.687746999999998,-17.632908999999998,-17.632122,-17.617414,-17.63898,-17.616609,-17.419984,-17.381221999999998,-17.511001999999998,-17.496589999999998,-17.419871,-17.363671999999998,-17.407242999999998,-17.552858999999998,-17.807706,-17.748086999999998,-17.773699999999998,-17.837009,-17.791458,-17.88093,-17.854927,-17.867133,-17.876310999999998,-17.884397,-17.771314999999998,-17.715232,-17.776186,-17.784298,-17.665792,-17.547244,-17.57286,-17.562312,-17.710219,-17.666987,-17.695066999999998,-18.015451,-18.2698,-18.068797999999997,-18.067743,-18.052498,-18.060834,-18.180863,-18.207244,-18.371613999999997,-18.247322999999998,-18.202106999999998,-18.115479,-18.13132,-18.138904,-18.127622,-18.158535,-18.089245,-18.104591,-18.097268,-18.193423,-18.185192999999998,-18.212567999999997,-18.206028,-18.161362999999998,-18.161834,-18.213416,-17.932588,-17.966185,-18.01969,-18.097514999999998,-18.051855,-18.079576,-18.106255,-18.148671999999998,-18.173161,-18.138353,-18.160482,-18.193694999999998,-18.259503,-18.250442,-18.338918,-18.340792,-18.325825,-18.468536999999998,-18.540809,-18.553306,-18.502496999999998,-18.506778999999998,-18.54486,-18.586686,-18.578557999999997,-18.567299,-18.538739,-19.047134,-18.948303,-18.790292,-18.768091,-18.761025,-18.756937999999998,-18.616485,-18.675116,-18.650309999999998,-19.184001,-18.988436,-18.728688,-18.727202,-18.767364999999998,-18.60098,-18.632493,-18.663382,-18.569857,-18.467444,-18.530414999999998,-18.529792999999998,-18.635889,-18.642383,-18.669822999999997,-18.688491,-18.695534,-18.695798,-18.751956,-18.662353,-18.534592,-18.346602999999998,-19.201425999999998,-19.268299,-19.262317,-19.243665,-19.202102999999997,-19.215605999999998,-19.296086,-19.009666,-19.001005,-18.974072,-19.056286999999998,-18.422268,-18.444983999999998,-18.442867,-18.43374,-18.430899,-18.429472999999998,-18.439404,-18.522244,-18.518266,-18.400615,-18.409564,-18.992411,-18.726605,-18.711693,-18.631631,-18.684428,-18.663185,-18.529366,-18.492909,-18.408911,-18.328113,-18.276228,-18.31945,-18.424395,-18.419608999999998,-18.418429,-18.400889,-18.521186,-18.597027,-17.109234999999998,-17.088704,-17.179536,-17.185843,-17.284658999999998,-17.27837,-17.357141,-17.567567999999998,-17.509846,-17.507317,-17.376261,-17.280789,-17.245271,-17.277506,-17.12078,-16.975478,-16.885483,-16.835114,-16.823335,-16.11409,-15.998382,-15.954612,-15.816091,-16.081222,-16.071132,-16.032642,-16.113245,-15.938466,-15.900699999999999,-15.907822999999999,-15.876429,-15.643863999999999,-15.72382,-15.969327,-16.078809,-15.996051,-15.453719,-15.457367,-14.505726,-14.406039999999999,-14.311434,-14.290935999999999,-14.283475999999999,-14.453256,-14.416644,-14.511921,-14.55914,-14.639190999999999,-14.616366,-14.643061,-14.688341,-14.745975,-14.75638,-14.73163,-14.761375999999998,-14.702653999999999,-14.526534999999999,-14.621300999999999,-14.849929999999999,-14.782055,-14.796508,-14.751256999999999,-14.64757,-14.655501,-14.639685,-14.528316,-14.532713999999999,-14.541281999999999,-14.548297999999999,-14.595823,-14.543365999999999,-14.541335,-14.544633999999999,-14.476576999999999,-14.447405,-14.397641,-14.3941,-14.340610999999999,-14.130576999999999,-14.131794999999999,-14.150751999999999,-14.368198,-14.332673,-14.366885,-14.138810999999999,-14.229802999999999,-14.263539,-14.38594,-14.435296,-14.343197,-12.658906,-12.668185,-11.712439,-11.789651,-11.829134999999999,-11.856328999999999,-11.972216999999999,-11.966909999999999,-11.938524,-11.949401,-11.972655,-11.939952,-11.981131,-11.992281,-12.040413,-11.99287,-11.823406,-11.818322,-11.762488999999999,-9.941673999999999,-9.885681,0.209426,0.29073099999999996,0.268052,0.262753,0.351794,0.431274,0.566574,0.6883549999999999,0.660652,0.637388,0.533799,0.6525219999999999,1.2733809999999999,1.511204,1.633508,1.371483,1.557354,1.529893,1.5926019999999999,1.515911,1.5844639999999999,1.58333,2.610033,2.6211469999999997,2.4840899999999997,2.469295,2.270617,2.4606969999999997,2.4209899999999998,2.586443,2.872119,3.0565979999999997,3.1822779999999997,3.292362,3.213548,4.467701,4.51211,4.474072,4.654974,4.938001,4.899789,4.663523,4.520119,4.439261999999999,4.478039,4.389587,4.3956,4.282317,3.701111,3.644843,3.724337,3.713466,3.645934,3.6055919999999997,3.172005,3.143861,3.100313,3.093161,3.035542,3.028152,2.860703,2.99388,2.982474,3.0651789999999997,3.042385,3.084615,3.028596,3.097352,3.1351419999999997,3.1879679999999997,3.121343,3.181732,3.1519269999999997,3.188836,2.9039319999999997,2.935714,2.9769039999999998,2.987289,3.0650049999999998,3.103303,3.082227,3.3971329999999997,3.338049,3.281465,3.263632,3.2036189999999998,3.137517,3.133994,3.1222809999999996,3.081874,2.9878739999999997,3.0016209999999997,3.018652,3.00785,3.0405759999999997,3.2104679999999997,3.256865,3.268699,3.2748019999999998,3.3749629999999997,3.36441,3.3449069999999996,3.2356019999999996,3.224998,3.211744,3.2236019999999996,3.2065799999999998,3.199843,3.265271,3.257418,3.25329,3.265523,3.224507,3.228253,3.122865,2.975113,2.986412,2.9864949999999997,2.984855,3.0070959999999998,2.963097,2.9696759999999998,2.986173,2.992041,2.9403759999999997,2.9934149999999997,2.977111,2.9679539999999998,3.028329,3.060551,3.086109,3.07205,3.0766459999999998,3.244125,3.271201,3.325703,3.3274269999999997,3.334155,3.330357,3.336794,3.2757319999999996,3.267597,3.2259919999999997,3.318437,3.306545,3.3427179999999996,3.342454,3.326829,3.322176,3.318521,3.3193729999999997,3.031819,3.170759,3.50108,3.5103489999999997,3.325798,3.233536,3.0737039999999998,3.080934,3.084244,3.108088,3.1203079999999996,3.144881,3.26273,3.248682,3.310975,3.20198,3.2172899999999998,3.197304,3.185672,3.1629669999999996,3.1462939999999997,3.102932,3.284506,3.258183,3.259668,3.263302,3.2439999999999998,3.241592,3.255284,3.26071,3.2399549999999997,3.223111,3.231391,3.2665159999999998,3.261681,3.311984,3.315415,3.32,3.329341,3.3371869999999997,3.279331,3.240128,3.1989829999999997,3.159614,3.195602,3.209251,3.1801489999999997,3.3520589999999997,3.358967,3.3485669999999996,3.5009919999999997,3.4791969999999997,3.4966969999999997,3.5181769999999997,3.501629,3.490602,3.491546,2.54671,2.570319,2.568736,2.569325,2.558588,2.540502,2.4598839999999997,2.4475309999999997,2.3483039999999997,2.336651,2.323881,2.336893,2.3218229999999997,2.312942,2.234812,2.340318,2.309881,2.2450129999999997,2.244174,2.237035,2.2415689999999997,2.235417,2.2534199999999998,2.281258,2.2783439999999997,2.2619789999999997,2.295986,2.274396,2.176548,2.15083,2.161885,2.15143,2.179294,2.154069,2.1846099999999997,2.214779,2.224005,2.229619,2.225508,2.240001,2.220515,2.224322,2.2307669999999997,2.210231,2.213926,2.229806,2.2283429999999997,2.213907,2.21079,2.200853,2.150351,2.126101,2.1462879999999998,2.147243,2.151145,2.186498,2.2046769999999998,2.420083,2.313939,2.280594,2.2891179999999998,2.313936,2.296395,2.276643,2.269025,3.718543,3.8422129999999997,3.9428799999999997,3.9506639999999997,3.957458,4.015163,4.015165,4.085014999999999,4.324572,4.304602,4.349288,4.348171,4.358226999999999,4.351354,4.34947,4.349908999999999,4.343351,4.333504,4.331364,4.355507,4.346903,4.213672,4.092375,4.078883,4.041075,4.000414999999999,3.908093,3.877427,3.9914799999999997,3.992988,3.9858119999999997,3.9824469999999996,3.85106,3.823747,3.813004,3.80971,3.7569209999999997,3.741704,3.756881,3.725698,3.7384839999999997,3.6561399999999997,3.6302209999999997,4.3351939999999995,4.360271,4.371644,4.374025,4.3938049999999995,4.393765,4.413495,4.438111,4.499585,4.403309999999999,4.414732,4.421602,4.425113,4.4029929999999995,4.335846,4.471712999999999,4.450972999999999,4.467308,4.534416,4.511223,4.459811999999999,5.8107429999999995,5.922661,5.883347,5.884688,5.815938,5.820569,5.815155,5.832458,5.832231999999999,5.839942,5.804415,5.805530999999999,5.79123,5.631834,5.626675,5.636280999999999,5.632276999999999,5.640514,5.601668999999999,5.6096509999999995,5.502886,5.531935,5.525281,5.593338999999999,5.5555699999999995,5.446609,5.423754,5.493844,5.499572,5.5157799999999995,5.527448,5.53479,5.487551,5.4229259999999995,5.549344,5.5319449999999994,5.543175,5.62,5.585433999999999,5.5862229999999995,5.754023999999999,5.752326999999999,5.749031,5.770873,5.771986999999999,5.767729999999999,5.782395,5.831347,5.765797999999999,5.778408,5.775354,5.773556,5.786321999999999],\n",
"\"type\":[\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\"]\n",
"},\n",
"\"mapping\":{\n",
"\"x\":\"tape_dt_tz_str\",\n",
"\"y\":\"net_premium\",\n",
"\"color\":\"type\"\n",
"},\n",
"\"data_meta\":{\n",
"\"series_annotations\":[{\n",
"\"column\":\"tape_dt_tz\",\n",
"\"type\":\"datetime\"\n",
"}]\n",
"},\n",
"\"ggtitle\":{\n",
"\"text\":\"META Net Premium (in $M)\"\n",
"},\n",
"\"theme\":{\n",
"\"name\":\"none\",\n",
"\"line\":{\n",
"\"color\":\"#0d1117\",\n",
"\"size\":1.0,\n",
"\"blank\":false\n",
"},\n",
"\"rect\":{\n",
"\"fill\":\"#ffffff\",\n",
"\"color\":\"#0d1117\",\n",
"\"size\":1.0,\n",
"\"blank\":false\n",
"},\n",
"\"text\":{\n",
"\"color\":\"#0d1117\",\n",
"\"blank\":false\n",
"},\n",
"\"axis_ontop\":true,\n",
"\"axis_ticks\":{\n",
"\"color\":\"#161b22\",\n",
"\"blank\":false\n",
"},\n",
"\"legend_background\":{\n",
"\"size\":1.0,\n",
"\"blank\":false\n",
"},\n",
"\"legend_position\":\"none\",\n",
"\"panel_grid_major\":{\n",
"\"color\":\"#21262d\",\n",
"\"size\":0.5,\n",
"\"linetype\":\"dashed\",\n",
"\"blank\":false\n",
"},\n",
"\"panel_grid_minor\":{\n",
"\"blank\":true\n",
"},\n",
"\"plot_title\":{\n",
"\"color\":\"#0d1117\",\n",
"\"hjust\":0.5,\n",
"\"blank\":false\n",
"},\n",
"\"axis_tooltip\":{\n",
"\"color\":\"#161b22\",\n",
"\"blank\":false\n",
"},\n",
"\"tooltip\":{\n",
"\"color\":\"#21262d\",\n",
"\"blank\":false\n",
"},\n",
"\"axis_title_x\":{\n",
"\"blank\":true\n",
"},\n",
"\"axis_title_y\":{\n",
"\"blank\":true\n",
"}\n",
"},\n",
"\"kind\":\"plot\",\n",
"\"scales\":[{\n",
"\"name\":\"Time (America/Chicago)\",\n",
"\"aesthetic\":\"x\"\n",
"},{\n",
"\"name\":\"Net Premium\",\n",
"\"aesthetic\":\"y\"\n",
"},{\n",
"\"aesthetic\":\"color\",\n",
"\"breaks\":[\"Call\",\"Put\"],\n",
"\"values\":[\"#77bdfb\",\"#fa7970\"]\n",
"},{\n",
"\"aesthetic\":\"y\",\n",
"\"format\":\"{.2f}M\"\n",
"}],\n",
"\"layers\":[{\n",
"\"geom\":\"line\",\n",
"\"mapping\":{\n",
"},\n",
"\"data_meta\":{\n",
"},\n",
"\"size\":1.0,\n",
"\"data\":{\n",
"}\n",
"}],\n",
"\"metainfo_list\":[]\n",
"},{\n",
"\"data\":{\n",
"\"tape_dt_tz_str\":[\"08:30\",\"08:31\",\"08:32\",\"08:33\",\"08:34\",\"08:35\",\"08:36\",\"08:37\",\"08:38\",\"08:39\",\"08:40\",\"08:41\",\"08:42\",\"08:43\",\"08:44\",\"08:45\",\"08:46\",\"08:47\",\"08:48\",\"08:49\",\"08:50\",\"08:51\",\"08:52\",\"08:53\",\"08:54\",\"08:55\",\"08:56\",\"08:57\",\"08:58\",\"08:59\",\"09:00\",\"09:01\",\"09:02\",\"09:03\",\"09:04\",\"09:05\",\"09:06\",\"09:07\",\"09:08\",\"09:09\",\"09:10\",\"09:11\",\"09:12\",\"09:13\",\"09:14\",\"09:15\",\"09:16\",\"09:17\",\"09:18\",\"09:19\",\"09:20\",\"09:21\",\"09:22\",\"09:23\",\"09:24\",\"09:25\",\"09:26\",\"09:27\",\"09:28\",\"09:29\",\"09:30\",\"09:31\",\"09:32\",\"09:33\",\"09:34\",\"09:35\",\"09:36\",\"09:37\",\"09:38\",\"09:39\",\"09:40\",\"09:41\",\"09:42\",\"09:43\",\"09:44\",\"09:45\",\"09:46\",\"09:47\",\"09:48\",\"09:49\",\"09:50\",\"09:51\",\"09:52\",\"09:53\",\"09:54\",\"09:55\",\"09:56\",\"09:57\",\"09:58\",\"09:59\",\"10:00\",\"10:01\",\"10:02\",\"10:03\",\"10:04\",\"10:05\",\"10:06\",\"10:07\",\"10:08\",\"10:09\",\"10:10\",\"10:11\",\"10:12\",\"10:13\",\"10:14\",\"10:15\",\"10:16\",\"10:17\",\"10:18\",\"10:19\",\"10:20\",\"10:21\",\"10:22\",\"10:23\",\"10:24\",\"10:25\",\"10:26\",\"10:27\",\"10:28\",\"10:29\",\"10:30\",\"10:31\",\"10:32\",\"10:33\",\"10:34\",\"10:35\",\"10:36\",\"10:37\",\"10:38\",\"10:39\",\"10:40\",\"10:41\",\"10:42\",\"10:43\",\"10:44\",\"10:45\",\"10:46\",\"10:47\",\"10:48\",\"10:49\",\"10:50\",\"10:51\",\"10:52\",\"10:53\",\"10:54\",\"10:55\",\"10:56\",\"10:57\",\"10:58\",\"10:59\",\"11:00\",\"11:01\",\"11:02\",\"11:03\",\"11:04\",\"11:05\",\"11:06\",\"11:07\",\"11:08\",\"11:09\",\"11:10\",\"11:11\",\"11:12\",\"11:13\",\"11:14\",\"11:15\",\"11:16\",\"11:17\",\"11:18\",\"11:19\",\"11:20\",\"11:21\",\"11:22\",\"11:23\",\"11:24\",\"11:25\",\"11:26\",\"11:27\",\"11:28\",\"11:29\",\"11:30\",\"11:31\",\"11:32\",\"11:33\",\"11:34\",\"11:35\",\"11:36\",\"11:37\",\"11:38\",\"11:39\",\"11:40\",\"11:41\",\"11:42\",\"11:43\",\"11:44\",\"11:45\",\"11:46\",\"11:47\",\"11:48\",\"11:49\",\"11:50\",\"11:51\",\"11:52\",\"11:53\",\"11:54\",\"11:55\",\"11:56\",\"11:57\",\"11:58\",\"11:59\",\"12:00\",\"12:01\",\"12:02\",\"12:03\",\"12:04\",\"12:05\",\"12:06\",\"12:07\",\"12:08\",\"12:09\",\"12:10\",\"12:11\",\"12:12\",\"12:13\",\"12:14\",\"12:15\",\"12:16\",\"12:17\",\"12:18\",\"12:19\",\"12:20\",\"12:21\",\"12:22\",\"12:23\",\"12:24\",\"12:25\",\"12:26\",\"12:27\",\"12:28\",\"12:29\",\"12:30\",\"12:31\",\"12:32\",\"12:33\",\"12:34\",\"12:35\",\"12:36\",\"12:37\",\"12:38\",\"12:39\",\"12:40\",\"12:41\",\"12:42\",\"12:43\",\"12:44\",\"12:45\",\"12:46\",\"12:47\",\"12:48\",\"12:49\",\"12:50\",\"12:51\",\"12:52\",\"12:53\",\"12:54\",\"12:55\",\"12:56\",\"12:57\",\"12:58\",\"12:59\",\"13:00\",\"13:01\",\"13:02\",\"13:03\",\"13:04\",\"13:05\",\"13:06\",\"13:07\",\"13:08\",\"13:09\",\"13:10\",\"13:11\",\"13:12\",\"13:13\",\"13:14\",\"13:15\",\"13:16\",\"13:17\",\"13:18\",\"13:19\",\"13:20\",\"13:21\",\"13:22\",\"13:23\",\"13:24\",\"13:25\",\"13:26\",\"13:27\",\"13:28\",\"13:29\",\"13:30\",\"13:31\",\"13:32\",\"13:33\",\"13:34\",\"13:35\",\"13:36\",\"13:37\",\"13:38\",\"13:39\",\"13:40\",\"13:41\",\"13:42\",\"13:43\",\"13:44\",\"13:45\",\"13:46\",\"13:47\",\"13:48\",\"13:49\",\"13:50\",\"13:51\",\"13:52\",\"13:53\",\"13:54\",\"13:55\",\"13:56\",\"13:57\",\"13:58\",\"13:59\",\"14:00\",\"14:01\",\"14:02\",\"14:03\",\"14:04\",\"14:05\",\"14:06\",\"14:07\",\"14:08\",\"14:09\",\"14:10\",\"14:11\",\"14:12\",\"14:13\",\"14:14\",\"14:15\",\"14:16\",\"14:17\",\"14:18\",\"14:19\",\"14:20\",\"14:21\",\"14:22\",\"14:23\",\"14:24\",\"14:25\",\"14:26\",\"14:27\",\"14:28\",\"14:29\",\"14:30\",\"14:31\",\"14:32\",\"14:33\",\"14:34\",\"14:35\",\"14:36\",\"14:37\",\"14:38\",\"14:39\",\"14:40\",\"14:41\",\"14:42\",\"14:43\",\"14:44\",\"14:45\",\"14:46\",\"14:47\",\"14:48\",\"14:49\",\"14:50\",\"14:51\",\"14:52\",\"14:53\",\"14:54\",\"14:55\",\"14:56\",\"14:57\",\"14:58\",\"14:59\",\"08:30\",\"08:31\",\"08:32\",\"08:33\",\"08:34\",\"08:35\",\"08:36\",\"08:37\",\"08:38\",\"08:39\",\"08:40\",\"08:41\",\"08:42\",\"08:43\",\"08:44\",\"08:45\",\"08:46\",\"08:47\",\"08:48\",\"08:49\",\"08:50\",\"08:51\",\"08:52\",\"08:53\",\"08:54\",\"08:55\",\"08:56\",\"08:57\",\"08:58\",\"08:59\",\"09:00\",\"09:01\",\"09:02\",\"09:03\",\"09:04\",\"09:05\",\"09:06\",\"09:07\",\"09:08\",\"09:09\",\"09:10\",\"09:11\",\"09:12\",\"09:13\",\"09:14\",\"09:15\",\"09:16\",\"09:17\",\"09:18\",\"09:19\",\"09:20\",\"09:21\",\"09:22\",\"09:23\",\"09:24\",\"09:25\",\"09:26\",\"09:27\",\"09:28\",\"09:29\",\"09:30\",\"09:31\",\"09:32\",\"09:33\",\"09:34\",\"09:35\",\"09:36\",\"09:37\",\"09:38\",\"09:39\",\"09:40\",\"09:41\",\"09:42\",\"09:43\",\"09:44\",\"09:45\",\"09:46\",\"09:47\",\"09:48\",\"09:49\",\"09:50\",\"09:51\",\"09:52\",\"09:53\",\"09:54\",\"09:55\",\"09:56\",\"09:57\",\"09:58\",\"09:59\",\"10:00\",\"10:01\",\"10:02\",\"10:03\",\"10:04\",\"10:05\",\"10:06\",\"10:07\",\"10:08\",\"10:09\",\"10:10\",\"10:11\",\"10:12\",\"10:13\",\"10:14\",\"10:15\",\"10:16\",\"10:17\",\"10:18\",\"10:19\",\"10:20\",\"10:21\",\"10:22\",\"10:23\",\"10:24\",\"10:25\",\"10:26\",\"10:27\",\"10:28\",\"10:29\",\"10:30\",\"10:31\",\"10:32\",\"10:33\",\"10:34\",\"10:35\",\"10:36\",\"10:37\",\"10:38\",\"10:39\",\"10:40\",\"10:41\",\"10:42\",\"10:43\",\"10:44\",\"10:45\",\"10:46\",\"10:47\",\"10:48\",\"10:49\",\"10:50\",\"10:51\",\"10:52\",\"10:53\",\"10:54\",\"10:55\",\"10:56\",\"10:57\",\"10:58\",\"10:59\",\"11:00\",\"11:01\",\"11:02\",\"11:03\",\"11:04\",\"11:05\",\"11:06\",\"11:07\",\"11:08\",\"11:09\",\"11:10\",\"11:11\",\"11:12\",\"11:13\",\"11:14\",\"11:15\",\"11:16\",\"11:17\",\"11:18\",\"11:19\",\"11:20\",\"11:21\",\"11:22\",\"11:23\",\"11:24\",\"11:25\",\"11:26\",\"11:27\",\"11:28\",\"11:29\",\"11:30\",\"11:31\",\"11:32\",\"11:33\",\"11:34\",\"11:35\",\"11:36\",\"11:37\",\"11:38\",\"11:39\",\"11:40\",\"11:41\",\"11:42\",\"11:43\",\"11:44\",\"11:45\",\"11:46\",\"11:47\",\"11:48\",\"11:49\",\"11:50\",\"11:51\",\"11:52\",\"11:53\",\"11:54\",\"11:55\",\"11:56\",\"11:57\",\"11:58\",\"11:59\",\"12:00\",\"12:01\",\"12:02\",\"12:03\",\"12:04\",\"12:05\",\"12:06\",\"12:07\",\"12:08\",\"12:09\",\"12:10\",\"12:11\",\"12:12\",\"12:13\",\"12:14\",\"12:15\",\"12:16\",\"12:17\",\"12:18\",\"12:19\",\"12:20\",\"12:21\",\"12:22\",\"12:23\",\"12:24\",\"12:25\",\"12:26\",\"12:27\",\"12:28\",\"12:29\",\"12:30\",\"12:31\",\"12:32\",\"12:33\",\"12:34\",\"12:35\",\"12:36\",\"12:37\",\"12:38\",\"12:39\",\"12:40\",\"12:41\",\"12:42\",\"12:43\",\"12:44\",\"12:45\",\"12:46\",\"12:47\",\"12:48\",\"12:49\",\"12:50\",\"12:51\",\"12:52\",\"12:53\",\"12:54\",\"12:55\",\"12:56\",\"12:57\",\"12:58\",\"12:59\",\"13:00\",\"13:01\",\"13:02\",\"13:03\",\"13:04\",\"13:05\",\"13:06\",\"13:07\",\"13:08\",\"13:09\",\"13:10\",\"13:11\",\"13:12\",\"13:13\",\"13:14\",\"13:15\",\"13:16\",\"13:17\",\"13:18\",\"13:19\",\"13:20\",\"13:21\",\"13:22\",\"13:23\",\"13:24\",\"13:25\",\"13:26\",\"13:27\",\"13:28\",\"13:29\",\"13:30\",\"13:31\",\"13:32\",\"13:33\",\"13:34\",\"13:35\",\"13:36\",\"13:37\",\"13:38\",\"13:39\",\"13:40\",\"13:41\",\"13:42\",\"13:43\",\"13:44\",\"13:45\",\"13:46\",\"13:47\",\"13:48\",\"13:49\",\"13:50\",\"13:51\",\"13:52\",\"13:53\",\"13:54\",\"13:55\",\"13:56\",\"13:57\",\"13:58\",\"13:59\",\"14:00\",\"14:01\",\"14:02\",\"14:03\",\"14:04\",\"14:05\",\"14:06\",\"14:07\",\"14:08\",\"14:09\",\"14:10\",\"14:11\",\"14:12\",\"14:13\",\"14:14\",\"14:15\",\"14:16\",\"14:17\",\"14:18\",\"14:19\",\"14:20\",\"14:21\",\"14:22\",\"14:23\",\"14:24\",\"14:25\",\"14:26\",\"14:27\",\"14:28\",\"14:29\",\"14:30\",\"14:31\",\"14:32\",\"14:33\",\"14:34\",\"14:35\",\"14:36\",\"14:37\",\"14:38\",\"14:39\",\"14:40\",\"14:41\",\"14:42\",\"14:43\",\"14:44\",\"14:45\",\"14:46\",\"14:47\",\"14:48\",\"14:49\",\"14:50\",\"14:51\",\"14:52\",\"14:53\",\"14:54\",\"14:55\",\"14:56\",\"14:57\",\"14:58\",\"14:59\"],\n",
"\"net_premium\":[0.051104,0.062487999999999995,-0.040626999999999996,-0.006926,3.75E-4,-0.020242,0.010994,0.29284699999999997,0.791705,1.050262,0.994342,0.7049909999999999,0.777057,0.433531,0.51291,0.618773,0.6035809999999999,0.638281,0.616308,0.618502,0.748552,0.8344189999999999,0.8767269999999999,0.809966,0.895307,4.419296,4.42029,4.379789,4.360891,4.342282,4.340104999999999,4.524096,4.49585,4.5175339999999995,4.5114469999999995,4.36468,4.403878,4.442474,4.27361,4.170496,4.00701,4.085415,4.055594,4.025609,4.011843,3.985279,4.040478,4.043399,4.178434,4.453175,4.741961,4.6754869999999995,4.906993,5.034336,5.015047,5.001551999999999,5.1597789999999994,5.554099,5.743029,5.696537,5.66263,5.653051,6.166958999999999,6.27426,6.3525659999999995,6.5745629999999995,6.646566,6.446428,6.751466,6.927015,7.40252,7.299435,7.067892,6.950482999999999,7.009837,7.000115,6.863357,6.930876,6.898489,7.088908,7.406962,7.479566999999999,7.429520999999999,7.440512999999999,7.260024,7.290203,3.444073,3.492444,3.521822,3.723188,3.705971,3.8413579999999996,3.472723,3.4313409999999998,3.419823,3.4247549999999998,3.500229,3.623083,3.650388,3.816521,3.8369679999999997,4.299176,4.963534,4.984959,4.9241969999999995,4.859693,4.831256,4.793127999999999,4.570781,4.441476,4.2988859999999995,4.337276999999999,4.34477,4.3395779999999995,4.3555719999999996,4.597398,4.645287,4.564217999999999,4.571847,4.570762,4.5587409999999995,4.570357,4.464811,4.466127999999999,4.6299399999999995,4.654814,4.6991629999999995,4.971575,4.95644,4.965932,5.270924,5.632315999999999,5.765512999999999,5.655745,5.617916999999999,5.630552,5.616130999999999,5.622323,-0.561632,-0.788871,-0.695985,-0.754765,-0.75659,-0.8405809999999999,-0.8690779999999999,-0.818009,-0.8862789999999999,-0.951792,-0.9792109999999999,-1.016486,-1.1045589999999998,-1.254515,-1.229318,-1.286911,-1.528101,-1.35564,-1.378301,-1.373055,-1.4053099999999998,-1.4087349999999998,-1.443063,-1.3386909999999999,-1.3238159999999999,-1.529185,-1.551269,-1.566357,-1.693169,-1.7034639999999999,-1.696318,-1.536026,-1.643089,-1.55398,-1.5713679999999999,-1.573008,-1.441301,-1.451371,-1.4599339999999998,-1.4292589999999998,-1.4953459999999998,-1.209841,-1.1794369999999998,-0.749738,-0.6940189999999999,-0.6884979999999999,-0.675241,-0.614578,-0.65479,-0.661663,-0.486533,-0.003119,0.174264,0.14341199999999998,0.11773099999999999,0.087695,-0.021714999999999998,-0.007091,0.008541,0.075793,0.009727999999999999,0.06487899999999999,0.025025,0.007116,-0.016345,-0.151978,-0.17913199999999999,-0.446084,-0.451347,-0.456713,-0.5878519999999999,-0.553758,-0.566685,-0.589741,-0.6321169999999999,-0.5993109999999999,-0.5919749999999999,-0.6341319999999999,-0.619431,-0.677067,-0.6601079999999999,-0.673434,-0.67924,-0.7029569999999999,-0.6631929999999999,-0.687646,-0.676349,-0.5453979999999999,-0.473761,-0.48768399999999995,-0.478053,-0.5073139999999999,-0.53915,-0.566066,-0.6194769999999999,-0.6155229999999999,-0.5930949999999999,-0.601741,-0.607224,-0.5996659999999999,-0.5841459999999999,-0.61796,-0.6190019999999999,-0.565917,-0.567321,-0.6414869999999999,-0.6520349999999999,-0.660411,-0.6923119999999999,-0.698068,-0.7844019999999999,-0.783378,-1.216469,-1.212305,-1.223033,-1.394863,-1.482613,-1.5192189999999999,-1.55435,-1.562676,-1.5675869999999998,-1.580717,-1.635252,-1.7139179999999998,-1.870533,-1.966378,-2.126344,-2.187929,-2.4658029999999997,-2.4617809999999998,-2.466655,-2.47022,-2.532459,-2.523087,-2.5170879999999998,-2.507863,-2.492842,-2.511338,-2.493811,-2.526378,-2.497759,-2.507692,-2.4939709999999997,-2.497697,-2.488965,-2.4739519999999997,-2.4727259999999998,-2.4573609999999997,-2.479451,-2.491897,-2.463734,-1.7544899999999999,-1.7298879999999999,-1.562446,-1.480913,-1.315073,-1.146081,-0.9805769999999999,-0.6685169999999999,-0.500495,-0.206446,0.34011399999999997,0.265713,0.225544,0.234949,0.22028499999999998,0.231574,0.258876,0.074046,0.034901999999999996,0.010164,0.062312,0.212091,0.240808,0.224514,0.328781,0.38831099999999996,0.8023389999999999,0.7948989999999999,0.7547039999999999,0.7300709999999999,0.731661,0.664732,0.658847,0.6371319999999999,0.601183,0.37904299999999996,0.212499,0.18262899999999999,0.19292199999999998,0.16050299999999998,0.11841199999999999,0.075654,0.07091,0.046726,0.012683,0.007984,0.3167,0.31602199999999997,-2.76985,-2.7719989999999997,-2.806295,-2.8624739999999997,-2.88073,-2.905706,-2.950898,-2.936884,-2.967151,-2.943154,-2.959054,-2.92443,-2.923822,-2.964597,-3.002115,-3.061925,-3.0510859999999997,-3.132196,-2.3494289999999998,-2.282006,-2.124538,-2.196786,-2.185698,-2.18267,-2.323768,-2.263299,-2.078649,-2.040056,-2.075252,-2.020915,-2.0044969999999998,-1.9163279999999998,-1.997039,-2.0337609999999997,-1.996713,-2.0663489999999998,-1.989518,-2.118989,-1.951331,-1.9005429999999999,-1.922323,-1.833071,-2.171217,-2.213362,-2.137864,-2.137882,-2.0280299999999998,-2.031241,-2.0950379999999997,-2.244485,-1.876537,-1.700885,-1.7105249999999999,-0.215295,-0.201836,-0.245443,-0.341491,-0.34787999999999997,-0.42911499999999997,-0.503873,-0.524023,-0.520124,-0.587765,-0.578116,-0.653422,-0.578025,-0.39391099999999996,-0.390293,-0.423822,-0.44030199999999997,-0.452167,-0.398896,-0.39953099999999997,-0.46305799999999997,-0.504242,-0.522465,-0.5688989999999999,-0.5499649999999999,-0.530718,-0.536559,-0.527448,-0.549285,-0.5547719999999999,-0.56386,-0.548568,-0.54703,-0.506699,-0.667459,-0.6717679999999999,-0.6879839999999999,-0.706988,-0.6698189999999999,-0.62467,-0.511267,-0.5392899999999999,-0.561282,-0.5623699999999999,-0.5406989999999999,-0.505416,-0.530675,-0.52266,-0.58077,-0.616211,-0.727532,-0.751756,-0.808041,-0.815252,-0.801053,-0.787119,-0.816454,-0.918527,-0.950718,-0.9531649999999999,-0.9718709999999999,-1.044757,-1.316935,-1.262896,-1.164679,-1.299577,-1.308595,-1.332917,0.6000489999999999,0.527625,0.404151,0.412223,0.376538,0.629981,0.6123179999999999,0.582128,0.9478139999999999,0.945117,0.884799,0.826206,0.764077,0.795261,0.7091189999999999,0.668199,0.767802,0.757112,0.757404,0.655065,0.5622269999999999,0.530671,0.499847,0.555675,-1.5079719999999999,-1.541474,-1.551385,-1.5030219999999999,-1.494557,-1.489415,-2.67637,-2.6611949999999998,-2.759864,-2.798911,-2.8035159999999997,-2.8169299999999997,-2.858174,-3.12559,-3.149264,-3.1166039999999997,-3.145285,-3.05286,-3.073422,-3.1004359999999997,-3.1411879999999996,-3.174709,-3.172803,-3.178034,-3.187494,-3.312204,-3.297732,-3.377557,-3.3603889999999996,-3.3607869999999997,-4.106738,-4.119186,-4.113709,-4.146466,-5.136702,-5.193974,-5.151263,-5.151439,-5.2084399999999995,-5.276904,-5.363205,-5.356726,-5.365137,-5.366918,-5.348026,-5.400719,-5.417638999999999,-5.422696999999999,-5.621697999999999,-5.568591,-5.552597,-5.612744999999999,-5.607545,-5.601703,-5.604774,-5.576216,-5.580094,-5.571858,-5.213088,-5.1496889999999995,-4.9430499999999995,-5.036344,-4.6207389999999995,-4.601856,-4.561118,-4.614822,-4.598159,-4.6230519999999995,-4.63284,-4.81271,-4.8109519999999995,-4.806105,-4.80817,-4.780997,-4.832991,-4.884936,-4.865589,-4.866045,-4.87142,-4.927288,-4.934864999999999,-4.954355,-4.9697379999999995,-4.988694,-4.982895,-5.020919,-5.061993999999999,-5.115898,-5.131781,-5.135295,-5.141033999999999,-5.181937,-5.176475,-5.179118,-5.040793,-5.134522,-5.1779209999999996,-5.223719,-5.268839,-5.267326,-5.209705,-5.186349,-5.139441,-5.137678,-5.14229,-5.1403669999999995,-5.116626999999999,-5.123266,-5.121144,-5.108172,-5.085230999999999,-4.671456,-4.643134,-4.637156,-4.980269,-4.9823319999999995,-4.977321,-4.956865,-4.915297,-4.914535,-4.905073,-4.906185,-4.917949,-4.953247999999999,-4.970096,-4.980513999999999,-4.998011,-5.045914,-5.045612,-5.029316,-5.0527169999999995,-5.050571,-5.021662,-5.055497,-5.068225,-5.077564,-5.057951,-5.05821,-5.064452,-5.042466999999999,-5.0420609999999995,-5.0563709999999995,-5.081339,-5.070627,-5.079016,-5.0798879999999995,-5.050193,-5.058396999999999,-5.058482,-5.119198,-5.117408999999999,-5.136056,-5.131017,-5.124675,-5.126943,-5.136933,-5.107061,-5.096687,-5.115581,-5.148152,-5.14271,-5.145129,-5.188332,-5.192011,-5.19062,-5.18514,-5.179918,-5.166892,-4.477425,-4.461492,-4.404688,-4.387179,-4.382041,-4.372553,-4.429431999999999,-4.432123,-4.404987,-4.422609,-4.443045,-4.448672,-4.441028,-4.449383,-4.456853,-4.450506,-4.455772,-4.454642,-4.443645,-4.405044,-4.4090929999999995,-4.409267,-4.4123339999999995,-4.432086,-4.435983,-4.413555,-4.413423,-4.411739,-4.880034,-4.899289,-4.896965,-4.903891,-4.9282639999999995,-5.0185319999999995,-5.163228999999999,-5.233878,-5.263919,-5.305592,-5.4293819999999995,-5.443989999999999,-5.4345,-5.43342,-5.396019,-5.361441,-5.362965,-5.464481999999999,-5.431331999999999,-5.332037,-5.394642999999999,-5.462654,-5.478832,-5.494272,-5.506508999999999,-5.572042,-5.60358,-5.595342,-5.586075,-5.544245,-5.554968,-5.580610999999999,-5.587670999999999,-5.598953,-5.587254,-5.568057,-5.538457999999999,-5.509869,-5.485613,-5.46952,-5.464538,-5.313998,-5.377433,-5.376434,-5.389275,-5.3911739999999995,-5.3960289999999995,-5.36267,-5.3698999999999995,-5.253678,-5.299657,-5.294290999999999,-5.2819959999999995,-5.470727,-5.449478,-5.3828,-5.458716,-5.507936,-5.528223,-5.534015999999999,-5.554004,-5.575117,-5.58589,-5.615361,-5.63667,-5.636044,-5.64267,-5.622643,-5.581989,-5.586875,-5.574965,-5.569815999999999,-5.606668,-5.628642,-1.89329,-2.0046209999999998,-1.995429,-2.0152259999999997,-2.648246,-2.481604,-2.440187,-2.4563889999999997,-2.442024,-2.444279,-2.4395919999999998,-2.4600139999999997,-2.458325,-2.46344,-2.472515,-2.511241,-2.548699,-2.433017,-2.452018,-2.27025,-2.261472,-2.21595,-2.227516,-2.233621,-2.236366,-2.3058009999999998,-2.2899529999999997,-2.191826],\n",
"\"type\":[\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\"]\n",
"},\n",
"\"mapping\":{\n",
"\"x\":\"tape_dt_tz_str\",\n",
"\"y\":\"net_premium\",\n",
"\"color\":\"type\"\n",
"},\n",
"\"data_meta\":{\n",
"\"series_annotations\":[{\n",
"\"column\":\"tape_dt_tz\",\n",
"\"type\":\"datetime\"\n",
"}]\n",
"},\n",
"\"ggtitle\":{\n",
"\"text\":\"AAPL Net Premium (in $M)\"\n",
"},\n",
"\"theme\":{\n",
"\"name\":\"none\",\n",
"\"line\":{\n",
"\"color\":\"#0d1117\",\n",
"\"size\":1.0,\n",
"\"blank\":false\n",
"},\n",
"\"rect\":{\n",
"\"fill\":\"#ffffff\",\n",
"\"color\":\"#0d1117\",\n",
"\"size\":1.0,\n",
"\"blank\":false\n",
"},\n",
"\"text\":{\n",
"\"color\":\"#0d1117\",\n",
"\"blank\":false\n",
"},\n",
"\"axis_ontop\":true,\n",
"\"axis_ticks\":{\n",
"\"color\":\"#161b22\",\n",
"\"blank\":false\n",
"},\n",
"\"legend_background\":{\n",
"\"size\":1.0,\n",
"\"blank\":false\n",
"},\n",
"\"legend_position\":\"none\",\n",
"\"panel_grid_major\":{\n",
"\"color\":\"#21262d\",\n",
"\"size\":0.5,\n",
"\"linetype\":\"dashed\",\n",
"\"blank\":false\n",
"},\n",
"\"panel_grid_minor\":{\n",
"\"blank\":true\n",
"},\n",
"\"plot_title\":{\n",
"\"color\":\"#0d1117\",\n",
"\"hjust\":0.5,\n",
"\"blank\":false\n",
"},\n",
"\"axis_tooltip\":{\n",
"\"color\":\"#161b22\",\n",
"\"blank\":false\n",
"},\n",
"\"tooltip\":{\n",
"\"color\":\"#21262d\",\n",
"\"blank\":false\n",
"},\n",
"\"axis_title_x\":{\n",
"\"blank\":true\n",
"},\n",
"\"axis_title_y\":{\n",
"\"blank\":true\n",
"}\n",
"},\n",
"\"kind\":\"plot\",\n",
"\"scales\":[{\n",
"\"name\":\"Time (America/Chicago)\",\n",
"\"aesthetic\":\"x\"\n",
"},{\n",
"\"name\":\"Net Premium\",\n",
"\"aesthetic\":\"y\"\n",
"},{\n",
"\"aesthetic\":\"color\",\n",
"\"breaks\":[\"Call\",\"Put\"],\n",
"\"values\":[\"#77bdfb\",\"#fa7970\"]\n",
"},{\n",
"\"aesthetic\":\"y\",\n",
"\"format\":\"{.2f}M\"\n",
"}],\n",
"\"layers\":[{\n",
"\"geom\":\"line\",\n",
"\"mapping\":{\n",
"},\n",
"\"data_meta\":{\n",
"},\n",
"\"size\":1.0,\n",
"\"data\":{\n",
"}\n",
"}],\n",
"\"metainfo_list\":[]\n",
"},{\n",
"\"data\":{\n",
"\"tape_dt_tz_str\":[\"08:30\",\"08:31\",\"08:32\",\"08:33\",\"08:34\",\"08:35\",\"08:36\",\"08:37\",\"08:38\",\"08:39\",\"08:40\",\"08:41\",\"08:42\",\"08:43\",\"08:44\",\"08:45\",\"08:46\",\"08:47\",\"08:48\",\"08:49\",\"08:50\",\"08:51\",\"08:52\",\"08:53\",\"08:54\",\"08:55\",\"08:56\",\"08:57\",\"08:58\",\"08:59\",\"09:00\",\"09:01\",\"09:02\",\"09:03\",\"09:04\",\"09:05\",\"09:06\",\"09:07\",\"09:08\",\"09:09\",\"09:10\",\"09:11\",\"09:12\",\"09:13\",\"09:14\",\"09:15\",\"09:16\",\"09:17\",\"09:18\",\"09:19\",\"09:20\",\"09:21\",\"09:22\",\"09:23\",\"09:24\",\"09:25\",\"09:26\",\"09:27\",\"09:28\",\"09:29\",\"09:30\",\"09:31\",\"09:32\",\"09:33\",\"09:34\",\"09:35\",\"09:36\",\"09:37\",\"09:38\",\"09:39\",\"09:40\",\"09:41\",\"09:42\",\"09:43\",\"09:44\",\"09:45\",\"09:46\",\"09:47\",\"09:48\",\"09:49\",\"09:50\",\"09:51\",\"09:52\",\"09:53\",\"09:54\",\"09:55\",\"09:56\",\"09:57\",\"09:58\",\"09:59\",\"10:00\",\"10:01\",\"10:02\",\"10:03\",\"10:04\",\"10:05\",\"10:06\",\"10:07\",\"10:08\",\"10:09\",\"10:10\",\"10:11\",\"10:12\",\"10:13\",\"10:14\",\"10:15\",\"10:16\",\"10:17\",\"10:18\",\"10:19\",\"10:20\",\"10:21\",\"10:22\",\"10:23\",\"10:24\",\"10:25\",\"10:26\",\"10:27\",\"10:28\",\"10:29\",\"10:30\",\"10:31\",\"10:32\",\"10:33\",\"10:34\",\"10:35\",\"10:36\",\"10:37\",\"10:38\",\"10:39\",\"10:40\",\"10:41\",\"10:42\",\"10:43\",\"10:44\",\"10:45\",\"10:46\",\"10:47\",\"10:48\",\"10:49\",\"10:50\",\"10:51\",\"10:52\",\"10:53\",\"10:54\",\"10:55\",\"10:56\",\"10:57\",\"10:58\",\"10:59\",\"11:00\",\"11:01\",\"11:02\",\"11:03\",\"11:04\",\"11:05\",\"11:06\",\"11:07\",\"11:08\",\"11:09\",\"11:10\",\"11:11\",\"11:12\",\"11:13\",\"11:14\",\"11:15\",\"11:16\",\"11:17\",\"11:18\",\"11:19\",\"11:20\",\"11:21\",\"11:22\",\"11:23\",\"11:24\",\"11:25\",\"11:26\",\"11:27\",\"11:28\",\"11:29\",\"11:30\",\"11:31\",\"11:32\",\"11:33\",\"11:34\",\"11:35\",\"11:36\",\"11:37\",\"11:38\",\"11:39\",\"11:40\",\"11:41\",\"11:42\",\"11:43\",\"11:44\",\"11:45\",\"11:46\",\"11:47\",\"11:48\",\"11:49\",\"11:50\",\"11:51\",\"11:52\",\"11:53\",\"11:54\",\"11:55\",\"11:56\",\"11:57\",\"11:58\",\"11:59\",\"12:00\",\"12:01\",\"12:02\",\"12:03\",\"12:04\",\"12:05\",\"12:06\",\"12:07\",\"12:08\",\"12:09\",\"12:10\",\"12:11\",\"12:12\",\"12:13\",\"12:14\",\"12:15\",\"12:16\",\"12:17\",\"12:18\",\"12:19\",\"12:20\",\"12:21\",\"12:22\",\"12:23\",\"12:24\",\"12:25\",\"12:26\",\"12:27\",\"12:28\",\"12:29\",\"12:30\",\"12:31\",\"12:32\",\"12:33\",\"12:34\",\"12:35\",\"12:36\",\"12:37\",\"12:38\",\"12:39\",\"12:40\",\"12:41\",\"12:42\",\"12:43\",\"12:44\",\"12:45\",\"12:46\",\"12:47\",\"12:48\",\"12:49\",\"12:50\",\"12:51\",\"12:52\",\"12:53\",\"12:54\",\"12:55\",\"12:56\",\"12:57\",\"12:58\",\"12:59\",\"13:00\",\"13:01\",\"13:02\",\"13:03\",\"13:04\",\"13:05\",\"13:06\",\"13:07\",\"13:08\",\"13:09\",\"13:10\",\"13:11\",\"13:12\",\"13:13\",\"13:14\",\"13:15\",\"13:16\",\"13:17\",\"13:18\",\"13:19\",\"13:20\",\"13:21\",\"13:22\",\"13:23\",\"13:24\",\"13:25\",\"13:26\",\"13:27\",\"13:28\",\"13:29\",\"13:30\",\"13:31\",\"13:32\",\"13:33\",\"13:34\",\"13:35\",\"13:36\",\"13:37\",\"13:38\",\"13:39\",\"13:40\",\"13:41\",\"13:42\",\"13:43\",\"13:44\",\"13:45\",\"13:46\",\"13:47\",\"13:48\",\"13:49\",\"13:50\",\"13:51\",\"13:52\",\"13:53\",\"13:54\",\"13:55\",\"13:56\",\"13:57\",\"13:58\",\"13:59\",\"14:00\",\"14:01\",\"14:02\",\"14:03\",\"14:04\",\"14:05\",\"14:06\",\"14:07\",\"14:08\",\"14:09\",\"14:10\",\"14:11\",\"14:12\",\"14:13\",\"14:14\",\"14:15\",\"14:16\",\"14:17\",\"14:18\",\"14:19\",\"14:20\",\"14:21\",\"14:22\",\"14:23\",\"14:24\",\"14:25\",\"14:26\",\"14:27\",\"14:28\",\"14:29\",\"14:30\",\"14:31\",\"14:32\",\"14:33\",\"14:34\",\"14:35\",\"14:36\",\"14:37\",\"14:38\",\"14:39\",\"14:40\",\"14:41\",\"14:42\",\"14:43\",\"14:44\",\"14:45\",\"14:46\",\"14:47\",\"14:48\",\"14:49\",\"14:50\",\"14:51\",\"14:52\",\"14:53\",\"14:54\",\"14:55\",\"14:56\",\"14:57\",\"14:58\",\"14:59\",\"08:30\",\"08:31\",\"08:32\",\"08:33\",\"08:34\",\"08:35\",\"08:36\",\"08:37\",\"08:38\",\"08:39\",\"08:40\",\"08:41\",\"08:42\",\"08:43\",\"08:44\",\"08:45\",\"08:46\",\"08:47\",\"08:48\",\"08:49\",\"08:50\",\"08:51\",\"08:52\",\"08:53\",\"08:54\",\"08:55\",\"08:56\",\"08:57\",\"08:58\",\"08:59\",\"09:00\",\"09:01\",\"09:02\",\"09:03\",\"09:04\",\"09:05\",\"09:06\",\"09:07\",\"09:08\",\"09:09\",\"09:10\",\"09:11\",\"09:12\",\"09:13\",\"09:14\",\"09:15\",\"09:16\",\"09:17\",\"09:18\",\"09:19\",\"09:20\",\"09:21\",\"09:22\",\"09:23\",\"09:24\",\"09:25\",\"09:26\",\"09:27\",\"09:28\",\"09:29\",\"09:30\",\"09:31\",\"09:32\",\"09:33\",\"09:34\",\"09:35\",\"09:36\",\"09:37\",\"09:38\",\"09:39\",\"09:40\",\"09:41\",\"09:42\",\"09:43\",\"09:44\",\"09:45\",\"09:46\",\"09:47\",\"09:48\",\"09:49\",\"09:50\",\"09:51\",\"09:52\",\"09:53\",\"09:54\",\"09:55\",\"09:56\",\"09:57\",\"09:58\",\"09:59\",\"10:00\",\"10:01\",\"10:02\",\"10:03\",\"10:04\",\"10:05\",\"10:06\",\"10:07\",\"10:08\",\"10:09\",\"10:10\",\"10:11\",\"10:12\",\"10:13\",\"10:14\",\"10:15\",\"10:16\",\"10:17\",\"10:18\",\"10:19\",\"10:20\",\"10:21\",\"10:22\",\"10:23\",\"10:24\",\"10:25\",\"10:26\",\"10:27\",\"10:28\",\"10:29\",\"10:30\",\"10:31\",\"10:32\",\"10:33\",\"10:34\",\"10:35\",\"10:36\",\"10:37\",\"10:38\",\"10:39\",\"10:40\",\"10:41\",\"10:42\",\"10:43\",\"10:44\",\"10:45\",\"10:46\",\"10:47\",\"10:48\",\"10:49\",\"10:50\",\"10:51\",\"10:52\",\"10:53\",\"10:54\",\"10:55\",\"10:56\",\"10:57\",\"10:58\",\"10:59\",\"11:00\",\"11:01\",\"11:02\",\"11:03\",\"11:04\",\"11:05\",\"11:06\",\"11:07\",\"11:08\",\"11:09\",\"11:10\",\"11:11\",\"11:12\",\"11:13\",\"11:14\",\"11:15\",\"11:16\",\"11:17\",\"11:18\",\"11:19\",\"11:20\",\"11:21\",\"11:22\",\"11:23\",\"11:24\",\"11:25\",\"11:26\",\"11:27\",\"11:28\",\"11:29\",\"11:30\",\"11:31\",\"11:32\",\"11:33\",\"11:34\",\"11:35\",\"11:36\",\"11:37\",\"11:38\",\"11:39\",\"11:40\",\"11:41\",\"11:42\",\"11:43\",\"11:44\",\"11:45\",\"11:46\",\"11:47\",\"11:48\",\"11:49\",\"11:50\",\"11:51\",\"11:52\",\"11:53\",\"11:54\",\"11:55\",\"11:56\",\"11:57\",\"11:58\",\"11:59\",\"12:00\",\"12:01\",\"12:02\",\"12:03\",\"12:04\",\"12:05\",\"12:06\",\"12:07\",\"12:08\",\"12:09\",\"12:10\",\"12:11\",\"12:12\",\"12:13\",\"12:14\",\"12:15\",\"12:16\",\"12:17\",\"12:18\",\"12:19\",\"12:20\",\"12:21\",\"12:22\",\"12:23\",\"12:24\",\"12:25\",\"12:26\",\"12:27\",\"12:28\",\"12:29\",\"12:30\",\"12:31\",\"12:32\",\"12:33\",\"12:34\",\"12:35\",\"12:36\",\"12:37\",\"12:38\",\"12:39\",\"12:40\",\"12:41\",\"12:42\",\"12:43\",\"12:44\",\"12:45\",\"12:46\",\"12:47\",\"12:48\",\"12:49\",\"12:50\",\"12:51\",\"12:52\",\"12:53\",\"12:54\",\"12:55\",\"12:56\",\"12:57\",\"12:58\",\"12:59\",\"13:00\",\"13:01\",\"13:02\",\"13:03\",\"13:04\",\"13:05\",\"13:06\",\"13:07\",\"13:08\",\"13:09\",\"13:10\",\"13:11\",\"13:12\",\"13:13\",\"13:14\",\"13:15\",\"13:16\",\"13:17\",\"13:18\",\"13:19\",\"13:20\",\"13:21\",\"13:22\",\"13:23\",\"13:24\",\"13:25\",\"13:26\",\"13:27\",\"13:28\",\"13:29\",\"13:30\",\"13:31\",\"13:32\",\"13:33\",\"13:34\",\"13:35\",\"13:36\",\"13:37\",\"13:38\",\"13:39\",\"13:40\",\"13:41\",\"13:42\",\"13:43\",\"13:44\",\"13:45\",\"13:46\",\"13:47\",\"13:48\",\"13:49\",\"13:50\",\"13:51\",\"13:52\",\"13:53\",\"13:54\",\"13:55\",\"13:56\",\"13:57\",\"13:58\",\"13:59\",\"14:00\",\"14:01\",\"14:02\",\"14:03\",\"14:04\",\"14:05\",\"14:06\",\"14:07\",\"14:08\",\"14:09\",\"14:10\",\"14:11\",\"14:12\",\"14:13\",\"14:14\",\"14:15\",\"14:16\",\"14:17\",\"14:18\",\"14:19\",\"14:20\",\"14:21\",\"14:22\",\"14:23\",\"14:24\",\"14:25\",\"14:26\",\"14:27\",\"14:28\",\"14:29\",\"14:30\",\"14:31\",\"14:32\",\"14:33\",\"14:34\",\"14:35\",\"14:36\",\"14:37\",\"14:38\",\"14:39\",\"14:40\",\"14:41\",\"14:42\",\"14:43\",\"14:44\",\"14:45\",\"14:46\",\"14:47\",\"14:48\",\"14:49\",\"14:50\",\"14:51\",\"14:52\",\"14:53\",\"14:54\",\"14:55\",\"14:56\",\"14:57\",\"14:58\",\"14:59\"],\n",
"\"net_premium\":[0.038297,0.145368,0.105253,0.472649,0.487738,0.50567,0.8249759999999999,0.969892,0.969564,0.950577,0.9325939999999999,0.9363309999999999,0.9409909999999999,0.915638,0.901682,1.264109,1.303278,1.310012,1.2879779999999998,1.457382,1.477425,1.500648,1.4651539999999998,1.409922,0.9932599999999999,1.034657,0.8884489999999999,0.879316,0.738381,0.722255,0.724843,-2.6810419999999997,-2.7490069999999998,-2.7611529999999997,-2.578569,-2.5633239999999997,-2.659538,-2.7556249999999998,-3.344257,-3.143373,-2.990217,-2.9207479999999997,-2.86205,-2.708812,-2.695041,-2.680498,-2.7459059999999997,-2.445594,-2.4414439999999997,-2.462932,-2.658554,-2.690842,-2.671617,-2.665731,-2.628899,-2.608972,-2.460647,-2.3700769999999998,-2.413699,-2.510312,-2.5308699999999997,-2.522197,-2.5782089999999998,-2.526601,-2.5281059999999997,-2.67245,-2.877828,-2.801379,-2.7765519999999997,-2.793781,-2.904457,-2.923962,-2.866443,-2.891934,-2.9393219999999998,-2.942687,-3.076682,-3.1346089999999998,-3.1375189999999997,-3.120333,-3.1706309999999998,-3.190334,-3.242934,-3.256024,-3.38238,-3.385468,-3.375702,-3.3492349999999997,-3.360365,-3.3751119999999997,-3.2787539999999997,-3.302907,-3.382114,-3.399788,-3.3984129999999997,-3.4004269999999996,-3.414062,-3.405626,-3.4082339999999998,-3.422803,-3.4229939999999996,-3.465659,-3.461543,-3.525934,-3.5305779999999998,-3.637549,-3.657365,-3.653314,-3.6469959999999997,-3.644323,-3.6570679999999998,-3.7410409999999996,-3.751263,-3.677641,-3.670436,-3.595865,-5.407584,-6.327852999999999,-6.365551,-6.383533,-6.380871,-6.36496,-6.350766,-6.329327999999999,-6.284261,-6.3005629999999995,-6.52007,-6.512849999999999,-6.516826,-6.773435,-6.759021,-6.778432,-6.772291,-6.807049,-6.815525,-6.808229,-6.800793,-6.34847,-6.347459,-6.355010999999999,-6.408856999999999,-6.426908,-6.391188,-6.397562,-6.361854,-6.339759,-6.35,-6.341705999999999,-6.3200199999999995,-6.27752,-6.304278,-6.358499,-6.356224999999999,-6.359996,-6.297891,-6.363359,-6.35452,-6.39027,-6.401985,-6.407111,-6.412529,-6.376818999999999,-6.358687,-6.37601,-6.313171,-6.316261,-6.320415,-6.348959,-6.344996,-6.322499,-6.329028,-6.3386,-6.361847999999999,-6.361579,-6.355531999999999,-6.5635319999999995,-6.666576,-6.678169,-6.6777489999999995,-6.906766999999999,-6.930537999999999,-6.948751,-7.008361,-7.032490999999999,-7.190752,-7.208625,-7.176938,-7.1617109999999995,-7.185149999999999,-7.24773,-7.267691999999999,-7.269657,-7.299277999999999,-7.3104499999999994,-7.309092,-7.391642,-7.446381,-7.511278,-7.552604,-7.351782,-7.3441149999999995,-7.646306,-8.295941,-8.326088,-8.320001,-8.304726,-8.308948,-8.317794,-8.305689,-8.350197,-8.38003,-8.474079999999999,-8.368413,-8.352024,-8.347051,-8.338778,-8.346869,-8.385375999999999,-8.586395999999999,-8.608865999999999,-8.605392,-8.600002,-8.619997,-8.604619999999999,-8.656896,-8.625273,-8.604588,-8.682791,-8.702872,-8.679838,-8.703812,-8.690251,-8.700545,-8.696791,-8.69469,-8.693137,-8.649631,-8.64566,-8.619451999999999,-8.605011,-8.601562999999999,-8.577753,-8.557957,-8.550334,-8.484655,-8.458421,-8.441514999999999,-8.376306999999999,-8.387121,-8.352418,-8.305508,-8.399733,-8.401856,-8.397749,-8.539878,-8.543436,-8.575034,-8.570808,-8.525879999999999,-8.522217,-8.551888,-8.564282,-8.558011,-8.622489,-8.618164,-8.609831,-8.615152,-8.74936,-8.766567,-8.77787,-8.818764999999999,-8.822614999999999,-8.812825,-9.284198,-9.32584,-9.384579,-9.375527,-9.367529,-9.381509,-9.382334,-9.5095,-9.517268999999999,-9.553408,-9.573229,-9.566519999999999,-9.571906,-9.633481999999999,-9.651537,-9.669108999999999,-9.653183,-9.660152,-9.671168,-9.672129,-9.676492999999999,-9.66526,-9.657484,-9.494105,-9.473296,-9.681180999999999,-9.699731,-9.674897999999999,-9.662211,-9.665265,-9.679988,-9.72545,-9.719431,-9.705048,-9.704457,-9.711497999999999,-9.70673,-9.711129999999999,-9.685755,-9.680662,-9.693717,-9.667138,-9.680333,-9.677420999999999,-9.679098,-9.685032999999999,-9.685144,-9.655028999999999,-9.669133,-9.679719,-9.684199999999999,-9.679882,-9.684386,-9.719747,-9.762673,-9.771829,-9.799258,-9.907013,-9.951502,-9.944194,-9.939585,-9.948233,-9.961535999999999,-9.959996,-10.037376,-10.010561,-10.004406,-10.074626,-10.072042,-10.070528999999999,-10.073703,-10.057597,-10.059624,-10.025697,-10.026104,-10.031175,-10.042463999999999,-10.050633999999999,-10.013378999999999,-9.964031,-9.972819999999999,-9.440437,-9.437669,-9.475933999999999,-9.534347,-9.551198,-9.546522,-9.532551999999999,-9.53595,-9.471760999999999,-9.380858,-9.435747,-9.433449,-9.440536,-9.421122,-9.417103,-9.380519,-9.396241999999999,-9.392717,-9.393680999999999,-9.431754,-9.4194,-9.429556999999999,-9.471438,-9.471826,-9.446612,-9.495128,-9.397834,-9.288508,-9.273105,-9.269307999999999,-9.174987,-9.148759,-9.228936,-9.173949,-9.167240999999999,-9.042373,0.011311,0.18992599999999998,0.24187599999999998,0.20681,0.336566,0.355102,0.337474,0.30022699999999997,0.30567,0.29104399999999997,0.28781999999999996,0.283809,0.317123,0.303657,0.335628,0.370338,0.38037099999999996,0.43515499999999996,0.590811,0.5873229999999999,0.618147,0.6887749999999999,0.68777,0.737796,0.76627,0.741298,0.899728,0.91291,1.022703,0.997779,1.086476,1.111977,1.0893169999999999,1.110091,1.156172,1.2804179999999998,1.4526459999999999,1.42028,1.74325,1.683606,1.6047879999999999,1.570935,1.58269,1.561779,1.588506,1.5801129999999999,1.492495,1.5092459999999999,1.5241909999999999,1.477347,1.455055,1.479372,1.4746569999999999,1.474627,1.3607529999999999,1.594798,1.572266,1.515153,1.516052,1.551531,1.569251,1.5464689999999999,1.483689,1.4836699999999998,1.509124,1.506573,1.5009899999999998,1.5377509999999999,1.5614709999999998,1.554074,1.580253,1.567075,1.543817,1.529941,1.5249679999999999,1.582157,1.578685,1.588228,1.583186,1.60694,1.609421,1.644263,1.6611719999999999,1.671757,1.6352639999999998,1.629043,1.626882,1.6186079999999998,1.641529,1.640301,1.602671,1.6047509999999998,1.5726559999999998,1.560287,1.549215,1.5477809999999999,1.544611,1.548018,1.627924,1.624803,1.631499,1.625838,1.674841,1.6767589999999999,1.6808589999999999,1.611742,1.605824,1.620177,1.602674,1.6119759999999999,1.632933,1.683662,1.714851,1.717706,1.6708729999999998,1.659764,1.657611,1.666167,1.674957,1.651441,1.660031,1.655027,1.652825,1.636849,1.6341569999999999,1.621467,1.617479,1.6115629999999999,1.639184,1.501428,1.5025819999999999,1.498411,1.493692,1.4807709999999998,1.570911,1.570884,1.57127,1.571002,1.582183,1.582077,1.581008,1.585469,1.5691899999999999,1.567259,1.5166469999999999,1.505854,1.479031,1.475579,1.466478,1.462592,1.468977,1.480111,1.476565,1.481604,1.483944,1.4895619999999998,1.530285,1.5095889999999998,1.513406,1.537031,1.553712,1.5552089999999998,1.5698699999999999,1.566636,1.5815299999999999,1.549423,1.122155,1.0834629999999998,1.083488,1.083232,1.084524,1.086341,1.091186,1.10212,1.106276,1.1039349999999999,1.106504,1.114755,1.106663,1.1082809999999998,1.100795,1.1083479999999999,1.1059679999999998,1.153395,1.201516,1.2081169999999999,1.235812,1.241862,1.240586,1.24755,1.219735,1.224631,1.243356,1.316811,1.3054299999999999,1.301552,1.318083,1.308301,1.3370689999999998,1.355516,1.4305269999999999,1.4249779999999999,1.407333,1.3960139999999999,1.390647,1.396032,1.400261,1.39676,1.402971,1.3773259999999998,1.383934,1.395411,1.392348,1.3914119999999999,1.394309,1.380286,1.3810099999999998,1.3918709999999999,1.401088,1.4238659999999999,1.449617,1.448975,1.39617,1.3937439999999999,1.418262,1.417301,1.410698,1.4019359999999998,1.408188,1.403204,1.407089,1.3913,1.408332,1.41193,1.41144,1.414181,1.3949989999999999,1.377588,1.319164,1.329442,1.3326209999999998,1.324325,1.323467,1.3105959999999999,1.311895,1.313296,1.310478,1.310892,1.31331,1.31731,1.325397,1.332457,1.369664,1.358088,1.5283639999999998,1.5041449999999998,1.352018,1.35418,1.354846,1.353697,1.365019,1.3579219999999999,1.361432,1.396674,1.389025,1.385576,1.390359,1.399174,1.405243,1.3990719999999999,1.402668,1.404456,1.405521,1.417011,1.446958,1.4481579999999998,1.4490509999999999,1.447069,1.453743,1.4522789999999999,1.459037,1.5352729999999999,1.5624559999999998,1.5682829999999999,1.547521,1.55626,1.5642639999999999,1.599521,1.597041,1.578509,1.65205,1.643506,1.660696,1.604414,1.574274,1.5488469999999999,1.518001,1.514168,1.5113539999999999,1.517695,1.480534,1.49443,1.479253,1.711384,1.501032,1.5062449999999998,1.4984689999999998,1.499553,1.5009299999999999,1.354325,1.459009,1.45843,1.461901,1.4583009999999998,1.459204,1.4648649999999999,1.4658989999999998,1.4716939999999998,1.4713779999999999,1.4703519999999999,1.464848,2.128019,2.135977,2.1449979999999997,2.14898,2.148964,1.835807,1.879022,1.9074389999999999,1.8814199999999999,1.945498,1.974686,1.8435949999999999,1.858444,1.85987,1.8852209999999998,1.941666,2.212027,2.41051,2.423607,2.385053,2.384548,2.418554,2.409649,2.411635,2.409688,2.410094,2.576491,2.810937,2.782708,2.772397,2.745768,2.723989,2.7141409999999997,2.7054549999999997,2.720941,2.710787,3.9341199999999996,3.9371549999999997,3.944702,3.946268,3.950195,3.9444939999999997,3.933607,3.974207,3.9750579999999998,3.980968,3.975889,3.9780149999999996,3.9839849999999997,3.9838289999999996,3.981025,3.9874669999999997,3.9955459999999996,3.993365,4.0531559999999995,4.053558,4.086282,4.221475,4.2060699999999995,4.207884,4.209868999999999,4.194522,4.142211,4.210449,4.2066479999999995,4.219901999999999,4.189894,4.185536,4.177143],\n",
"\"type\":[\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\"]\n",
"},\n",
"\"mapping\":{\n",
"\"x\":\"tape_dt_tz_str\",\n",
"\"y\":\"net_premium\",\n",
"\"color\":\"type\"\n",
"},\n",
"\"data_meta\":{\n",
"\"series_annotations\":[{\n",
"\"column\":\"tape_dt_tz\",\n",
"\"type\":\"datetime\"\n",
"}]\n",
"},\n",
"\"ggtitle\":{\n",
"\"text\":\"GOOGL Net Premium (in $M)\"\n",
"},\n",
"\"theme\":{\n",
"\"name\":\"none\",\n",
"\"line\":{\n",
"\"color\":\"#0d1117\",\n",
"\"size\":1.0,\n",
"\"blank\":false\n",
"},\n",
"\"rect\":{\n",
"\"fill\":\"#ffffff\",\n",
"\"color\":\"#0d1117\",\n",
"\"size\":1.0,\n",
"\"blank\":false\n",
"},\n",
"\"text\":{\n",
"\"color\":\"#0d1117\",\n",
"\"blank\":false\n",
"},\n",
"\"axis_ontop\":true,\n",
"\"axis_ticks\":{\n",
"\"color\":\"#161b22\",\n",
"\"blank\":false\n",
"},\n",
"\"legend_background\":{\n",
"\"size\":1.0,\n",
"\"blank\":false\n",
"},\n",
"\"legend_position\":\"none\",\n",
"\"panel_grid_major\":{\n",
"\"color\":\"#21262d\",\n",
"\"size\":0.5,\n",
"\"linetype\":\"dashed\",\n",
"\"blank\":false\n",
"},\n",
"\"panel_grid_minor\":{\n",
"\"blank\":true\n",
"},\n",
"\"plot_title\":{\n",
"\"color\":\"#0d1117\",\n",
"\"hjust\":0.5,\n",
"\"blank\":false\n",
"},\n",
"\"axis_tooltip\":{\n",
"\"color\":\"#161b22\",\n",
"\"blank\":false\n",
"},\n",
"\"tooltip\":{\n",
"\"color\":\"#21262d\",\n",
"\"blank\":false\n",
"},\n",
"\"axis_title_x\":{\n",
"\"blank\":true\n",
"},\n",
"\"axis_title_y\":{\n",
"\"blank\":true\n",
"}\n",
"},\n",
"\"kind\":\"plot\",\n",
"\"scales\":[{\n",
"\"name\":\"Time (America/Chicago)\",\n",
"\"aesthetic\":\"x\"\n",
"},{\n",
"\"name\":\"Net Premium\",\n",
"\"aesthetic\":\"y\"\n",
"},{\n",
"\"aesthetic\":\"color\",\n",
"\"breaks\":[\"Call\",\"Put\"],\n",
"\"values\":[\"#77bdfb\",\"#fa7970\"]\n",
"},{\n",
"\"aesthetic\":\"y\",\n",
"\"format\":\"{.2f}M\"\n",
"}],\n",
"\"layers\":[{\n",
"\"geom\":\"line\",\n",
"\"mapping\":{\n",
"},\n",
"\"data_meta\":{\n",
"},\n",
"\"size\":1.0,\n",
"\"data\":{\n",
"}\n",
"}],\n",
"\"metainfo_list\":[]\n",
"},{\n",
"\"data\":{\n",
"\"tape_dt_tz_str\":[\"08:30\",\"08:31\",\"08:32\",\"08:33\",\"08:34\",\"08:35\",\"08:36\",\"08:37\",\"08:38\",\"08:39\",\"08:40\",\"08:41\",\"08:42\",\"08:43\",\"08:44\",\"08:45\",\"08:46\",\"08:47\",\"08:48\",\"08:49\",\"08:50\",\"08:51\",\"08:52\",\"08:53\",\"08:54\",\"08:55\",\"08:56\",\"08:57\",\"08:58\",\"08:59\",\"09:00\",\"09:01\",\"09:02\",\"09:03\",\"09:04\",\"09:05\",\"09:06\",\"09:07\",\"09:08\",\"09:09\",\"09:10\",\"09:11\",\"09:12\",\"09:13\",\"09:14\",\"09:15\",\"09:16\",\"09:17\",\"09:18\",\"09:19\",\"09:20\",\"09:21\",\"09:22\",\"09:23\",\"09:24\",\"09:25\",\"09:26\",\"09:27\",\"09:28\",\"09:29\",\"09:30\",\"09:31\",\"09:32\",\"09:33\",\"09:34\",\"09:35\",\"09:36\",\"09:37\",\"09:38\",\"09:39\",\"09:40\",\"09:41\",\"09:42\",\"09:43\",\"09:44\",\"09:45\",\"09:46\",\"09:47\",\"09:48\",\"09:49\",\"09:50\",\"09:51\",\"09:52\",\"09:53\",\"09:54\",\"09:55\",\"09:56\",\"09:57\",\"09:58\",\"09:59\",\"10:00\",\"10:01\",\"10:02\",\"10:03\",\"10:04\",\"10:05\",\"10:06\",\"10:07\",\"10:08\",\"10:09\",\"10:10\",\"10:11\",\"10:12\",\"10:13\",\"10:14\",\"10:15\",\"10:16\",\"10:17\",\"10:18\",\"10:19\",\"10:20\",\"10:21\",\"10:22\",\"10:23\",\"10:24\",\"10:25\",\"10:26\",\"10:27\",\"10:28\",\"10:29\",\"10:30\",\"10:31\",\"10:32\",\"10:33\",\"10:34\",\"10:35\",\"10:36\",\"10:37\",\"10:38\",\"10:39\",\"10:40\",\"10:41\",\"10:42\",\"10:43\",\"10:44\",\"10:45\",\"10:46\",\"10:47\",\"10:48\",\"10:49\",\"10:50\",\"10:51\",\"10:52\",\"10:53\",\"10:54\",\"10:55\",\"10:56\",\"10:57\",\"10:58\",\"10:59\",\"11:00\",\"11:01\",\"11:02\",\"11:03\",\"11:04\",\"11:05\",\"11:06\",\"11:07\",\"11:08\",\"11:09\",\"11:10\",\"11:11\",\"11:12\",\"11:13\",\"11:14\",\"11:15\",\"11:16\",\"11:17\",\"11:18\",\"11:19\",\"11:20\",\"11:21\",\"11:22\",\"11:23\",\"11:24\",\"11:25\",\"11:26\",\"11:27\",\"11:28\",\"11:29\",\"11:30\",\"11:31\",\"11:32\",\"11:33\",\"11:34\",\"11:35\",\"11:36\",\"11:37\",\"11:38\",\"11:39\",\"11:40\",\"11:41\",\"11:42\",\"11:43\",\"11:44\",\"11:45\",\"11:46\",\"11:47\",\"11:48\",\"11:49\",\"11:50\",\"11:51\",\"11:52\",\"11:53\",\"11:54\",\"11:55\",\"11:56\",\"11:57\",\"11:58\",\"11:59\",\"12:00\",\"12:01\",\"12:02\",\"12:03\",\"12:04\",\"12:05\",\"12:06\",\"12:07\",\"12:08\",\"12:09\",\"12:10\",\"12:11\",\"12:12\",\"12:13\",\"12:14\",\"12:15\",\"12:16\",\"12:17\",\"12:18\",\"12:19\",\"12:20\",\"12:21\",\"12:22\",\"12:23\",\"12:24\",\"12:25\",\"12:26\",\"12:27\",\"12:28\",\"12:29\",\"12:30\",\"12:31\",\"12:32\",\"12:33\",\"12:34\",\"12:35\",\"12:36\",\"12:37\",\"12:38\",\"12:39\",\"12:40\",\"12:41\",\"12:42\",\"12:43\",\"12:44\",\"12:45\",\"12:46\",\"12:47\",\"12:48\",\"12:49\",\"12:50\",\"12:51\",\"12:52\",\"12:53\",\"12:54\",\"12:55\",\"12:56\",\"12:57\",\"12:58\",\"12:59\",\"13:00\",\"13:01\",\"13:02\",\"13:03\",\"13:04\",\"13:05\",\"13:06\",\"13:07\",\"13:08\",\"13:09\",\"13:10\",\"13:11\",\"13:12\",\"13:13\",\"13:14\",\"13:15\",\"13:16\",\"13:17\",\"13:18\",\"13:19\",\"13:20\",\"13:21\",\"13:22\",\"13:23\",\"13:24\",\"13:25\",\"13:26\",\"13:27\",\"13:28\",\"13:29\",\"13:30\",\"13:31\",\"13:32\",\"13:33\",\"13:34\",\"13:35\",\"13:36\",\"13:37\",\"13:38\",\"13:39\",\"13:40\",\"13:41\",\"13:42\",\"13:43\",\"13:44\",\"13:45\",\"13:46\",\"13:47\",\"13:48\",\"13:49\",\"13:50\",\"13:51\",\"13:52\",\"13:53\",\"13:54\",\"13:55\",\"13:56\",\"13:57\",\"13:58\",\"13:59\",\"14:00\",\"14:01\",\"14:02\",\"14:03\",\"14:04\",\"14:05\",\"14:06\",\"14:07\",\"14:08\",\"14:09\",\"14:10\",\"14:11\",\"14:12\",\"14:13\",\"14:14\",\"14:15\",\"14:16\",\"14:17\",\"14:18\",\"14:19\",\"14:20\",\"14:21\",\"14:22\",\"14:23\",\"14:24\",\"14:25\",\"14:26\",\"14:27\",\"14:28\",\"14:29\",\"14:30\",\"14:31\",\"14:32\",\"14:33\",\"14:34\",\"14:35\",\"14:36\",\"14:37\",\"14:38\",\"14:39\",\"14:40\",\"14:41\",\"14:42\",\"14:43\",\"14:44\",\"14:45\",\"14:46\",\"14:47\",\"14:48\",\"14:49\",\"14:50\",\"14:51\",\"14:52\",\"14:53\",\"14:54\",\"14:55\",\"14:56\",\"14:57\",\"14:58\",\"14:59\",\"08:30\",\"08:31\",\"08:32\",\"08:33\",\"08:34\",\"08:35\",\"08:36\",\"08:37\",\"08:38\",\"08:39\",\"08:40\",\"08:41\",\"08:42\",\"08:43\",\"08:44\",\"08:45\",\"08:46\",\"08:47\",\"08:48\",\"08:49\",\"08:50\",\"08:51\",\"08:52\",\"08:53\",\"08:54\",\"08:55\",\"08:56\",\"08:57\",\"08:58\",\"08:59\",\"09:00\",\"09:01\",\"09:02\",\"09:03\",\"09:04\",\"09:05\",\"09:06\",\"09:07\",\"09:08\",\"09:09\",\"09:10\",\"09:11\",\"09:12\",\"09:13\",\"09:14\",\"09:15\",\"09:16\",\"09:17\",\"09:18\",\"09:19\",\"09:20\",\"09:21\",\"09:22\",\"09:23\",\"09:24\",\"09:25\",\"09:26\",\"09:27\",\"09:28\",\"09:29\",\"09:30\",\"09:31\",\"09:32\",\"09:33\",\"09:34\",\"09:35\",\"09:36\",\"09:37\",\"09:38\",\"09:39\",\"09:40\",\"09:41\",\"09:42\",\"09:43\",\"09:44\",\"09:45\",\"09:46\",\"09:47\",\"09:48\",\"09:49\",\"09:50\",\"09:51\",\"09:52\",\"09:53\",\"09:54\",\"09:55\",\"09:56\",\"09:57\",\"09:58\",\"09:59\",\"10:00\",\"10:01\",\"10:02\",\"10:03\",\"10:04\",\"10:05\",\"10:06\",\"10:07\",\"10:08\",\"10:09\",\"10:10\",\"10:11\",\"10:12\",\"10:13\",\"10:14\",\"10:15\",\"10:16\",\"10:17\",\"10:18\",\"10:19\",\"10:20\",\"10:21\",\"10:22\",\"10:23\",\"10:24\",\"10:25\",\"10:26\",\"10:27\",\"10:28\",\"10:29\",\"10:30\",\"10:31\",\"10:32\",\"10:33\",\"10:34\",\"10:35\",\"10:36\",\"10:37\",\"10:38\",\"10:39\",\"10:40\",\"10:41\",\"10:42\",\"10:43\",\"10:44\",\"10:45\",\"10:46\",\"10:47\",\"10:48\",\"10:49\",\"10:50\",\"10:51\",\"10:52\",\"10:53\",\"10:54\",\"10:55\",\"10:56\",\"10:57\",\"10:58\",\"10:59\",\"11:00\",\"11:01\",\"11:02\",\"11:03\",\"11:04\",\"11:05\",\"11:06\",\"11:07\",\"11:08\",\"11:09\",\"11:10\",\"11:11\",\"11:12\",\"11:13\",\"11:14\",\"11:15\",\"11:16\",\"11:17\",\"11:18\",\"11:19\",\"11:20\",\"11:21\",\"11:22\",\"11:23\",\"11:24\",\"11:25\",\"11:26\",\"11:27\",\"11:28\",\"11:29\",\"11:30\",\"11:31\",\"11:32\",\"11:33\",\"11:34\",\"11:35\",\"11:36\",\"11:37\",\"11:38\",\"11:39\",\"11:40\",\"11:41\",\"11:42\",\"11:43\",\"11:44\",\"11:45\",\"11:46\",\"11:47\",\"11:48\",\"11:49\",\"11:50\",\"11:51\",\"11:52\",\"11:53\",\"11:54\",\"11:55\",\"11:56\",\"11:57\",\"11:58\",\"11:59\",\"12:00\",\"12:01\",\"12:02\",\"12:03\",\"12:04\",\"12:05\",\"12:06\",\"12:07\",\"12:08\",\"12:09\",\"12:10\",\"12:11\",\"12:12\",\"12:13\",\"12:14\",\"12:15\",\"12:16\",\"12:17\",\"12:18\",\"12:19\",\"12:20\",\"12:21\",\"12:22\",\"12:23\",\"12:24\",\"12:25\",\"12:26\",\"12:27\",\"12:28\",\"12:29\",\"12:30\",\"12:31\",\"12:32\",\"12:33\",\"12:34\",\"12:35\",\"12:36\",\"12:37\",\"12:38\",\"12:39\",\"12:40\",\"12:41\",\"12:42\",\"12:43\",\"12:44\",\"12:45\",\"12:46\",\"12:47\",\"12:48\",\"12:49\",\"12:50\",\"12:51\",\"12:52\",\"12:53\",\"12:54\",\"12:55\",\"12:56\",\"12:57\",\"12:58\",\"12:59\",\"13:00\",\"13:01\",\"13:02\",\"13:03\",\"13:04\",\"13:05\",\"13:06\",\"13:07\",\"13:08\",\"13:09\",\"13:10\",\"13:11\",\"13:12\",\"13:13\",\"13:14\",\"13:15\",\"13:16\",\"13:17\",\"13:18\",\"13:19\",\"13:20\",\"13:21\",\"13:22\",\"13:23\",\"13:24\",\"13:25\",\"13:26\",\"13:27\",\"13:28\",\"13:29\",\"13:30\",\"13:31\",\"13:32\",\"13:33\",\"13:34\",\"13:35\",\"13:36\",\"13:37\",\"13:38\",\"13:39\",\"13:40\",\"13:41\",\"13:42\",\"13:43\",\"13:44\",\"13:45\",\"13:46\",\"13:47\",\"13:48\",\"13:49\",\"13:50\",\"13:51\",\"13:52\",\"13:53\",\"13:54\",\"13:55\",\"13:56\",\"13:57\",\"13:58\",\"13:59\",\"14:00\",\"14:01\",\"14:02\",\"14:03\",\"14:04\",\"14:05\",\"14:06\",\"14:07\",\"14:08\",\"14:09\",\"14:10\",\"14:11\",\"14:12\",\"14:13\",\"14:14\",\"14:15\",\"14:16\",\"14:17\",\"14:18\",\"14:19\",\"14:20\",\"14:21\",\"14:22\",\"14:23\",\"14:24\",\"14:25\",\"14:26\",\"14:27\",\"14:28\",\"14:29\",\"14:30\",\"14:31\",\"14:32\",\"14:33\",\"14:34\",\"14:35\",\"14:36\",\"14:37\",\"14:38\",\"14:39\",\"14:40\",\"14:41\",\"14:42\",\"14:43\",\"14:44\",\"14:45\",\"14:46\",\"14:47\",\"14:48\",\"14:49\",\"14:50\",\"14:51\",\"14:52\",\"14:53\",\"14:54\",\"14:55\",\"14:56\",\"14:57\",\"14:58\",\"14:59\"],\n",
"\"net_premium\":[0.09122899999999999,-0.22653099999999998,-0.253075,-0.27194199999999996,-0.30313799999999996,-0.351541,-0.45679899999999996,-0.521741,-0.8777809999999999,-0.878865,-0.7643249999999999,-0.7368509999999999,-0.852752,-1.278912,-1.118074,-1.129449,-1.226704,-1.150909,-0.9976809999999999,-1.0307039999999998,-1.005595,-1.041943,-1.4619659999999999,-1.455784,-1.4707,-1.5058909999999999,-1.489037,-1.492101,-1.480257,-1.485874,-1.326254,-1.270101,-1.262011,-1.2540639999999998,-1.1962789999999999,-1.025088,-0.370145,-0.32692299999999996,-0.45838399999999996,-0.555867,-0.26503899999999997,-0.298907,-0.352232,-0.409306,-0.42440999999999995,-0.598011,-0.696457,-0.698898,-0.8503959999999999,-0.599109,-0.44053899999999996,-0.47333,-0.5763159999999999,-0.615198,-0.580776,-0.613663,-0.632366,-0.701714,-0.7127129999999999,-0.7172569999999999,-0.7711319999999999,-0.6788679999999999,-0.646033,-0.540436,-0.588441,-0.442054,-0.269762,-0.372691,-0.42308999999999997,-0.352444,-0.39225499999999996,-0.42727299999999996,-0.472203,-0.6809459999999999,-0.5309349999999999,-0.564858,2.249457,3.606254,3.746902,3.777993,3.77555,3.77399,3.846336,3.777269,3.695149,3.895625,3.971144,4.067747,4.081869,4.122965,4.307539,4.277289,4.325374,4.5678019999999995,4.4304499999999996,4.525499,4.738568,4.292806,4.540378,4.152502,4.176661999999999,4.1508199999999995,4.301750999999999,4.238613,4.212442,4.139421,4.179599,4.164877,4.176028,4.193601,4.101991,4.3452839999999995,4.3477619999999995,4.570027,4.508838,4.540063,4.352082,4.292395,4.125234,4.108576,4.051868,4.221689,3.856495,3.9313529999999997,4.043157,4.096423,4.406427,4.42967,4.2623999999999995,4.210049,4.326433,4.454759999999999,4.461372,4.411074,4.330604999999999,4.348754,4.2482679999999995,4.248235,4.307092,4.368296,4.872744,4.882887,4.327553,4.4361429999999995,4.1038429999999995,4.027214,3.697761,3.742622,3.681907,3.494862,3.819238,4.11416,4.008628,3.8838999999999997,3.627786,3.466856,3.3354839999999997,3.3681349999999997,3.2605139999999997,3.280497,3.3876839999999997,3.36446,3.056495,2.84423,2.788245,2.669939,2.690395,2.579107,2.463276,2.381839,2.2285369999999998,2.28445,2.267439,2.18775,2.183939,2.199868,2.222665,2.232728,2.2372829999999997,2.396874,2.474205,2.2527369999999998,2.20338,2.119738,2.106175,2.097263,2.041508,2.088758,2.086095,2.018745,2.069998,2.522118,2.420306,2.343286,2.3370759999999997,2.313185,2.298352,2.295228,2.284163,2.258127,2.196145,2.094626,2.1112349999999998,2.062399,2.014512,2.001436,1.911103,1.982626,1.949176,1.760991,1.7732169999999998,1.7912279999999998,1.645849,1.631211,1.249849,1.14387,1.088011,1.230162,1.003824,1.042816,1.13119,1.118744,1.12456,1.111259,1.106752,1.061262,1.0256669999999999,1.008179,1.000715,1.079743,1.037355,1.052881,1.067057,1.304433,1.400418,1.394181,1.242438,1.257574,1.334701,1.297652,1.035677,1.015619,0.939657,0.9325739999999999,0.942534,0.988053,0.9712029999999999,0.950094,0.960799,0.9841799999999999,1.012909,1.100703,1.161233,1.051035,1.070362,1.06994,1.057261,1.049462,1.0668739999999999,1.043958,0.9479599999999999,0.8696689999999999,0.8371219999999999,0.5726559999999999,0.580776,0.592015,0.41531799999999996,0.589739,0.595236,0.584604,0.546098,0.596538,0.691321,0.683182,0.492664,0.531976,0.5655359999999999,0.547554,0.523523,0.514774,0.483989,0.489378,0.49794499999999997,0.497486,0.520933,0.308183,0.302294,0.419429,0.326166,0.454596,0.365029,0.307048,0.08019,0.149725,0.224024,0.9073089999999999,0.881477,1.01744,1.054487,1.046769,1.022533,1.0051029999999999,0.957032,0.949812,0.879092,0.8795919999999999,0.8624299999999999,0.87669,0.861265,0.825437,0.802275,0.8303109999999999,0.824255,0.7480789999999999,0.6911459999999999,0.488137,0.46884299999999995,0.470468,0.425546,0.424558,0.42179,0.44489199999999995,0.461682,0.396729,0.374866,0.338435,0.13869199999999998,0.16494799999999998,0.188597,0.193791,0.17280399999999999,0.168263,0.167486,0.173445,0.20596899999999999,0.297633,0.346865,0.066736,0.06597,0.029696999999999998,-0.038685,-0.09014899999999999,-0.17579799999999998,-0.161107,-0.161434,-0.179288,-0.190349,-0.199133,-0.21018599999999998,-0.21431799999999998,-0.047952999999999996,-0.019015999999999998,-0.029807999999999998,0.1654,0.147868,0.16014299999999998,0.136746,0.107193,0.108385,0.108053,0.134762,0.137038,0.163025,0.225707,0.241894,0.238508,0.226541,0.259108,0.24659899999999998,0.275897,0.219821,0.185605,0.154021,0.131769,0.114676,0.108678,0.264418,0.268435,0.30915899999999996,0.382762,0.348195,0.39743,0.440488,0.285284,0.255053,-0.05415,-0.071902,-0.21578799999999998,-0.167678,-0.263807,-0.334847,-0.309841,-0.314056,-0.309953,-0.338881,-0.367168,-0.363826,-0.4164,-0.38838799999999996,-0.372863,-0.415601,-0.37885399999999997,-0.367811,-0.374274,-0.383642,-0.38126099999999996,-0.390254,-0.388745,-0.381528,-0.38673399999999997,-0.389646,-0.38653899999999997,-0.383569,-0.390772,-0.018838999999999998,-0.023659,-0.026059,-0.016285,-0.0012959999999999998,0.04811,0.102531,0.104416,0.08653899999999999,0.07704899999999999,0.054833,0.080797,0.080514,0.08129,0.077198,0.060330999999999996,0.057990999999999994,0.044232,0.0044919999999999995,0.021858,0.009543,0.060542,0.110521,0.103823,0.023077,-0.023304,-0.0053809999999999995,-0.040388,-0.053030999999999995,-0.06364399999999999,-0.06877699999999999,-0.070684,-0.058107,-0.062545,-0.045936,-0.044766,-0.048387,-0.131798,-0.14321899999999999,-0.144127,-0.31105299999999997,-0.380853,-0.40538599999999997,-0.429623,-0.419332,-0.390765,-0.358131,-0.364141,-0.400547,-0.398364,-0.39592299999999997,-0.412717,-0.434509,-0.43754,-0.436745,-0.42593,-0.45975499999999997,-0.48098199999999997,-0.486992,-0.49352599999999996,-0.502234,-0.566519,-0.683066,0.983717,1.070803,1.057872,1.061801,1.0689499999999998,1.128673,1.1858739999999999,1.1782839999999999,1.184162,1.566557,1.493121,1.747437,1.6354959999999998,1.6571639999999999,1.666636,1.640261,1.6381649999999999,1.6340219999999999,1.6299819999999998,1.61585,1.624758,1.571967,1.585604,1.577715,1.503591,1.5064229999999998,1.502983,1.516274,1.495495,1.496281,1.476573,1.4679989999999998,1.459657,1.4516479999999998,1.465963,1.451592,1.45462,1.45208,1.557456,1.668415,1.852012,1.8576219999999999,1.8652499999999999,1.86028,1.8995499999999998,1.888188,1.8990159999999998,1.881934,1.877159,1.8623509999999999,1.8752849999999999,1.8524649999999998,1.5668989999999998,1.543714,1.5484229999999999,1.535418,1.4935829999999999,1.492873,1.5082769999999999,1.5380449999999999,1.4947329999999999,1.516047,1.507507,1.522054,1.5255029999999998,1.5265819999999999,1.5434789999999998,1.648903,1.7904339999999999,1.78185,1.770049,1.772684,1.7571379999999999,1.7578289999999999,1.750268,1.634139,1.6295629999999999,1.62479,2.409722,1.417436,1.36103,1.390798,1.3978869999999999,1.424412,1.435683,1.436669,1.409611,1.404431,1.3931719999999999,1.400127,1.480667,1.449273,1.416817,1.40073,1.482413,1.483294,1.5359669999999999,1.5244529999999998,1.530313,1.6245159999999998,1.600736,1.594277,1.5939409999999998,1.5864909999999999,1.6090069999999999,1.604228,1.6049909999999998,1.6503109999999999,1.651436,1.667438,1.656437,1.655565,1.657873,1.7271859999999999,1.739031,1.756054,1.7455109999999998,1.7913439999999998,1.7998919999999998,1.382429,1.38045,1.3880379999999999,1.3731799999999998,1.370329,1.392197,1.408437,1.39936,1.431292,1.439217,1.431768,1.414345,1.374931,1.401374,1.3701949999999998,1.377672,1.367653,1.3727319999999998,1.363786,1.3504429999999998,1.341545,1.3463539999999998,1.336013,1.303022,1.31036,1.304872,1.30945,1.2351569999999998,1.3782459999999999,1.351886,1.8083879999999999,1.804365,1.7970009999999998,1.8055359999999998,1.806139,1.509169,1.519372,1.501738,1.498883,1.504031,1.4997559999999999,1.506892,1.7174269999999998,1.717172,1.7141959999999998,1.724151,1.711519,1.691315,1.695717,1.698825,1.6991919999999998,1.6880979999999999,1.6642,1.6997609999999999,1.726308,1.724399,1.7036989999999999,2.0529319999999998,2.0405059999999997,1.921241,1.8632009999999999,1.8837,1.888434,1.889689,1.9038929999999998,1.894912,1.884391,1.8824049999999999,1.8858119999999998,1.8865029999999998,1.885259,1.887251,1.8576219999999999,1.836465,1.836952,1.8397189999999999,1.842039,1.842263,1.864698,1.867019,1.8954579999999999,1.8743049999999999,1.879624,1.847619,1.8475519999999999,1.856712,1.8677169999999998,1.864225,1.862242,1.857858,1.7965769999999999,1.779834,1.7689899999999998,1.770241,1.803415,1.8283669999999999,1.8527799999999999,1.858318,1.856696,1.837955,1.846379,1.839456,1.8336249999999998,1.8352389999999998,1.8231419999999998,1.8181779999999998,1.8222809999999998,1.8051229999999998,2.10237,2.015561,2.0174119999999998,2.013156,2.01384,2.008874,2.0534719999999997,2.053446,2.041036,2.035949,2.050022,2.050888,2.0755079999999997,1.6733149999999999,1.396418,1.577743,1.747288,1.937671,1.926329,2.102238,2.1065679999999998,2.096144,2.100216,2.2905409999999997,2.293068,2.2879389999999997,2.289562,2.282181,2.140752,2.135243,2.122446,2.121631,2.12183,2.1143549999999998,2.0940719999999997,2.095792,2.103892,1.954127,1.95135,2.032766,2.093298,2.061865,2.0634159999999997,2.75597,2.739138,2.739909,2.745558,2.7412799999999997,2.742448,2.7193959999999997,2.7110749999999997,2.709765,2.7125019999999997,2.7104,2.710336,2.7276789999999997,2.691331,3.017753,3.017909,3.0252589999999997,3.035882,3.035796,3.055528,3.056159,3.015764,3.035719,3.022337,3.024228,3.0386469999999997,3.1170709999999997,3.1401429999999997,3.1425389999999997,3.136776,3.138066,3.1185039999999997,2.912406],\n",
"\"type\":[\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\"]\n",
"},\n",
"\"mapping\":{\n",
"\"x\":\"tape_dt_tz_str\",\n",
"\"y\":\"net_premium\",\n",
"\"color\":\"type\"\n",
"},\n",
"\"data_meta\":{\n",
"\"series_annotations\":[{\n",
"\"column\":\"tape_dt_tz\",\n",
"\"type\":\"datetime\"\n",
"}]\n",
"},\n",
"\"ggtitle\":{\n",
"\"text\":\"MSFT Net Premium (in $M)\"\n",
"},\n",
"\"theme\":{\n",
"\"name\":\"none\",\n",
"\"line\":{\n",
"\"color\":\"#0d1117\",\n",
"\"size\":1.0,\n",
"\"blank\":false\n",
"},\n",
"\"rect\":{\n",
"\"fill\":\"#ffffff\",\n",
"\"color\":\"#0d1117\",\n",
"\"size\":1.0,\n",
"\"blank\":false\n",
"},\n",
"\"text\":{\n",
"\"color\":\"#0d1117\",\n",
"\"blank\":false\n",
"},\n",
"\"axis_ontop\":true,\n",
"\"axis_ticks\":{\n",
"\"color\":\"#161b22\",\n",
"\"blank\":false\n",
"},\n",
"\"legend_background\":{\n",
"\"size\":1.0,\n",
"\"blank\":false\n",
"},\n",
"\"legend_position\":\"none\",\n",
"\"panel_grid_major\":{\n",
"\"color\":\"#21262d\",\n",
"\"size\":0.5,\n",
"\"linetype\":\"dashed\",\n",
"\"blank\":false\n",
"},\n",
"\"panel_grid_minor\":{\n",
"\"blank\":true\n",
"},\n",
"\"plot_title\":{\n",
"\"color\":\"#0d1117\",\n",
"\"hjust\":0.5,\n",
"\"blank\":false\n",
"},\n",
"\"axis_tooltip\":{\n",
"\"color\":\"#161b22\",\n",
"\"blank\":false\n",
"},\n",
"\"tooltip\":{\n",
"\"color\":\"#21262d\",\n",
"\"blank\":false\n",
"},\n",
"\"axis_title_x\":{\n",
"\"blank\":true\n",
"},\n",
"\"axis_title_y\":{\n",
"\"blank\":true\n",
"}\n",
"},\n",
"\"kind\":\"plot\",\n",
"\"scales\":[{\n",
"\"name\":\"Time (America/Chicago)\",\n",
"\"aesthetic\":\"x\"\n",
"},{\n",
"\"name\":\"Net Premium\",\n",
"\"aesthetic\":\"y\"\n",
"},{\n",
"\"aesthetic\":\"color\",\n",
"\"breaks\":[\"Call\",\"Put\"],\n",
"\"values\":[\"#77bdfb\",\"#fa7970\"]\n",
"},{\n",
"\"aesthetic\":\"y\",\n",
"\"format\":\"{.2f}M\"\n",
"}],\n",
"\"layers\":[{\n",
"\"geom\":\"line\",\n",
"\"mapping\":{\n",
"},\n",
"\"data_meta\":{\n",
"},\n",
"\"size\":1.0,\n",
"\"data\":{\n",
"}\n",
"}],\n",
"\"metainfo_list\":[]\n",
"},{\n",
"\"data\":{\n",
"\"tape_dt_tz_str\":[\"08:30\",\"08:31\",\"08:32\",\"08:33\",\"08:34\",\"08:35\",\"08:36\",\"08:37\",\"08:38\",\"08:39\",\"08:40\",\"08:41\",\"08:42\",\"08:43\",\"08:44\",\"08:45\",\"08:46\",\"08:47\",\"08:48\",\"08:49\",\"08:50\",\"08:51\",\"08:52\",\"08:53\",\"08:54\",\"08:55\",\"08:56\",\"08:57\",\"08:58\",\"08:59\",\"09:00\",\"09:01\",\"09:02\",\"09:03\",\"09:04\",\"09:05\",\"09:06\",\"09:07\",\"09:08\",\"09:09\",\"09:10\",\"09:11\",\"09:12\",\"09:13\",\"09:14\",\"09:15\",\"09:16\",\"09:17\",\"09:18\",\"09:19\",\"09:20\",\"09:21\",\"09:22\",\"09:23\",\"09:24\",\"09:25\",\"09:26\",\"09:27\",\"09:28\",\"09:29\",\"09:30\",\"09:31\",\"09:32\",\"09:33\",\"09:34\",\"09:35\",\"09:36\",\"09:37\",\"09:38\",\"09:39\",\"09:40\",\"09:41\",\"09:42\",\"09:43\",\"09:44\",\"09:45\",\"09:46\",\"09:47\",\"09:48\",\"09:49\",\"09:50\",\"09:51\",\"09:52\",\"09:53\",\"09:54\",\"09:55\",\"09:56\",\"09:57\",\"09:58\",\"09:59\",\"10:00\",\"10:01\",\"10:02\",\"10:03\",\"10:04\",\"10:05\",\"10:06\",\"10:07\",\"10:08\",\"10:09\",\"10:10\",\"10:11\",\"10:12\",\"10:13\",\"10:14\",\"10:15\",\"10:16\",\"10:17\",\"10:18\",\"10:19\",\"10:20\",\"10:21\",\"10:22\",\"10:23\",\"10:24\",\"10:25\",\"10:26\",\"10:27\",\"10:28\",\"10:29\",\"10:30\",\"10:31\",\"10:32\",\"10:33\",\"10:34\",\"10:35\",\"10:36\",\"10:37\",\"10:38\",\"10:39\",\"10:40\",\"10:41\",\"10:42\",\"10:43\",\"10:44\",\"10:45\",\"10:46\",\"10:47\",\"10:48\",\"10:49\",\"10:50\",\"10:51\",\"10:52\",\"10:53\",\"10:54\",\"10:55\",\"10:56\",\"10:57\",\"10:58\",\"10:59\",\"11:00\",\"11:01\",\"11:02\",\"11:03\",\"11:04\",\"11:05\",\"11:06\",\"11:07\",\"11:08\",\"11:09\",\"11:10\",\"11:11\",\"11:12\",\"11:13\",\"11:14\",\"11:15\",\"11:16\",\"11:17\",\"11:18\",\"11:19\",\"11:20\",\"11:21\",\"11:22\",\"11:23\",\"11:24\",\"11:25\",\"11:26\",\"11:27\",\"11:28\",\"11:29\",\"11:30\",\"11:31\",\"11:32\",\"11:33\",\"11:34\",\"11:35\",\"11:36\",\"11:37\",\"11:38\",\"11:39\",\"11:40\",\"11:41\",\"11:42\",\"11:43\",\"11:44\",\"11:45\",\"11:46\",\"11:47\",\"11:48\",\"11:49\",\"11:50\",\"11:51\",\"11:52\",\"11:53\",\"11:54\",\"11:55\",\"11:56\",\"11:57\",\"11:58\",\"11:59\",\"12:00\",\"12:01\",\"12:02\",\"12:03\",\"12:04\",\"12:05\",\"12:06\",\"12:07\",\"12:08\",\"12:09\",\"12:10\",\"12:11\",\"12:12\",\"12:13\",\"12:14\",\"12:15\",\"12:16\",\"12:17\",\"12:18\",\"12:19\",\"12:20\",\"12:21\",\"12:22\",\"12:23\",\"12:24\",\"12:25\",\"12:26\",\"12:27\",\"12:28\",\"12:29\",\"12:30\",\"12:31\",\"12:32\",\"12:33\",\"12:34\",\"12:35\",\"12:36\",\"12:37\",\"12:38\",\"12:39\",\"12:40\",\"12:41\",\"12:42\",\"12:43\",\"12:44\",\"12:45\",\"12:46\",\"12:47\",\"12:48\",\"12:49\",\"12:50\",\"12:51\",\"12:52\",\"12:53\",\"12:54\",\"12:55\",\"12:56\",\"12:57\",\"12:58\",\"12:59\",\"13:00\",\"13:01\",\"13:02\",\"13:03\",\"13:04\",\"13:05\",\"13:06\",\"13:07\",\"13:08\",\"13:09\",\"13:10\",\"13:11\",\"13:12\",\"13:13\",\"13:14\",\"13:15\",\"13:16\",\"13:17\",\"13:18\",\"13:19\",\"13:20\",\"13:21\",\"13:22\",\"13:23\",\"13:24\",\"13:25\",\"13:26\",\"13:27\",\"13:28\",\"13:29\",\"13:30\",\"13:31\",\"13:32\",\"13:33\",\"13:34\",\"13:35\",\"13:36\",\"13:37\",\"13:38\",\"13:39\",\"13:40\",\"13:41\",\"13:42\",\"13:43\",\"13:44\",\"13:45\",\"13:46\",\"13:47\",\"13:48\",\"13:49\",\"13:50\",\"13:51\",\"13:52\",\"13:53\",\"13:54\",\"13:55\",\"13:56\",\"13:57\",\"13:58\",\"13:59\",\"14:00\",\"14:01\",\"14:02\",\"14:03\",\"14:04\",\"14:05\",\"14:06\",\"14:07\",\"14:08\",\"14:09\",\"14:10\",\"14:11\",\"14:12\",\"14:13\",\"14:14\",\"14:15\",\"14:16\",\"14:17\",\"14:18\",\"14:19\",\"14:20\",\"14:21\",\"14:22\",\"14:23\",\"14:24\",\"14:25\",\"14:26\",\"14:27\",\"14:28\",\"14:29\",\"14:30\",\"14:31\",\"14:32\",\"14:33\",\"14:34\",\"14:35\",\"14:36\",\"14:37\",\"14:38\",\"14:39\",\"14:40\",\"14:41\",\"14:42\",\"14:43\",\"14:44\",\"14:45\",\"14:46\",\"14:47\",\"14:48\",\"14:49\",\"14:50\",\"14:51\",\"14:52\",\"14:53\",\"14:54\",\"14:55\",\"14:56\",\"14:57\",\"14:58\",\"14:59\",\"08:30\",\"08:31\",\"08:32\",\"08:33\",\"08:34\",\"08:35\",\"08:36\",\"08:37\",\"08:38\",\"08:39\",\"08:40\",\"08:41\",\"08:42\",\"08:43\",\"08:44\",\"08:45\",\"08:46\",\"08:47\",\"08:48\",\"08:49\",\"08:50\",\"08:51\",\"08:52\",\"08:53\",\"08:54\",\"08:55\",\"08:56\",\"08:57\",\"08:58\",\"08:59\",\"09:00\",\"09:01\",\"09:02\",\"09:03\",\"09:04\",\"09:05\",\"09:06\",\"09:07\",\"09:08\",\"09:09\",\"09:10\",\"09:11\",\"09:12\",\"09:13\",\"09:14\",\"09:15\",\"09:16\",\"09:17\",\"09:18\",\"09:19\",\"09:20\",\"09:21\",\"09:22\",\"09:23\",\"09:24\",\"09:25\",\"09:26\",\"09:27\",\"09:28\",\"09:29\",\"09:30\",\"09:31\",\"09:32\",\"09:33\",\"09:34\",\"09:35\",\"09:36\",\"09:37\",\"09:38\",\"09:39\",\"09:40\",\"09:41\",\"09:42\",\"09:43\",\"09:44\",\"09:45\",\"09:46\",\"09:47\",\"09:48\",\"09:49\",\"09:50\",\"09:51\",\"09:52\",\"09:53\",\"09:54\",\"09:55\",\"09:56\",\"09:57\",\"09:58\",\"09:59\",\"10:00\",\"10:01\",\"10:02\",\"10:03\",\"10:04\",\"10:05\",\"10:06\",\"10:07\",\"10:08\",\"10:09\",\"10:10\",\"10:11\",\"10:12\",\"10:13\",\"10:14\",\"10:15\",\"10:16\",\"10:17\",\"10:18\",\"10:19\",\"10:20\",\"10:21\",\"10:22\",\"10:23\",\"10:24\",\"10:25\",\"10:26\",\"10:27\",\"10:28\",\"10:29\",\"10:30\",\"10:31\",\"10:32\",\"10:33\",\"10:34\",\"10:35\",\"10:36\",\"10:37\",\"10:38\",\"10:39\",\"10:40\",\"10:41\",\"10:42\",\"10:43\",\"10:44\",\"10:45\",\"10:46\",\"10:47\",\"10:48\",\"10:49\",\"10:50\",\"10:51\",\"10:52\",\"10:53\",\"10:54\",\"10:55\",\"10:56\",\"10:57\",\"10:58\",\"10:59\",\"11:00\",\"11:01\",\"11:02\",\"11:03\",\"11:04\",\"11:05\",\"11:06\",\"11:07\",\"11:08\",\"11:09\",\"11:10\",\"11:11\",\"11:12\",\"11:13\",\"11:14\",\"11:15\",\"11:16\",\"11:17\",\"11:18\",\"11:19\",\"11:20\",\"11:21\",\"11:22\",\"11:23\",\"11:24\",\"11:25\",\"11:26\",\"11:27\",\"11:28\",\"11:29\",\"11:30\",\"11:31\",\"11:32\",\"11:33\",\"11:34\",\"11:35\",\"11:36\",\"11:37\",\"11:38\",\"11:39\",\"11:40\",\"11:41\",\"11:42\",\"11:43\",\"11:44\",\"11:45\",\"11:46\",\"11:47\",\"11:48\",\"11:49\",\"11:50\",\"11:51\",\"11:52\",\"11:53\",\"11:54\",\"11:55\",\"11:56\",\"11:57\",\"11:58\",\"11:59\",\"12:00\",\"12:01\",\"12:02\",\"12:03\",\"12:04\",\"12:05\",\"12:06\",\"12:07\",\"12:08\",\"12:09\",\"12:10\",\"12:11\",\"12:12\",\"12:13\",\"12:14\",\"12:15\",\"12:16\",\"12:17\",\"12:18\",\"12:19\",\"12:20\",\"12:21\",\"12:22\",\"12:23\",\"12:24\",\"12:25\",\"12:26\",\"12:27\",\"12:28\",\"12:29\",\"12:30\",\"12:31\",\"12:32\",\"12:33\",\"12:34\",\"12:35\",\"12:36\",\"12:37\",\"12:38\",\"12:39\",\"12:40\",\"12:41\",\"12:42\",\"12:43\",\"12:44\",\"12:45\",\"12:46\",\"12:47\",\"12:48\",\"12:49\",\"12:50\",\"12:51\",\"12:52\",\"12:53\",\"12:54\",\"12:55\",\"12:56\",\"12:57\",\"12:58\",\"12:59\",\"13:00\",\"13:01\",\"13:02\",\"13:03\",\"13:04\",\"13:05\",\"13:06\",\"13:07\",\"13:08\",\"13:09\",\"13:10\",\"13:11\",\"13:12\",\"13:13\",\"13:14\",\"13:15\",\"13:16\",\"13:17\",\"13:18\",\"13:19\",\"13:20\",\"13:21\",\"13:22\",\"13:23\",\"13:24\",\"13:25\",\"13:26\",\"13:27\",\"13:28\",\"13:29\",\"13:30\",\"13:31\",\"13:32\",\"13:33\",\"13:34\",\"13:35\",\"13:36\",\"13:37\",\"13:38\",\"13:39\",\"13:40\",\"13:41\",\"13:42\",\"13:43\",\"13:44\",\"13:45\",\"13:46\",\"13:47\",\"13:48\",\"13:49\",\"13:50\",\"13:51\",\"13:52\",\"13:53\",\"13:54\",\"13:55\",\"13:56\",\"13:57\",\"13:58\",\"13:59\",\"14:00\",\"14:01\",\"14:02\",\"14:03\",\"14:04\",\"14:05\",\"14:06\",\"14:07\",\"14:08\",\"14:09\",\"14:10\",\"14:11\",\"14:12\",\"14:13\",\"14:14\",\"14:15\",\"14:16\",\"14:17\",\"14:18\",\"14:19\",\"14:20\",\"14:21\",\"14:22\",\"14:23\",\"14:24\",\"14:25\",\"14:26\",\"14:27\",\"14:28\",\"14:29\",\"14:30\",\"14:31\",\"14:32\",\"14:33\",\"14:34\",\"14:35\",\"14:36\",\"14:37\",\"14:38\",\"14:39\",\"14:40\",\"14:41\",\"14:42\",\"14:43\",\"14:44\",\"14:45\",\"14:46\",\"14:47\",\"14:48\",\"14:49\",\"14:50\",\"14:51\",\"14:52\",\"14:53\",\"14:54\",\"14:55\",\"14:56\",\"14:57\",\"14:58\",\"14:59\"],\n",
"\"net_premium\":[-0.019658,-0.033721,-0.186572,-0.253028,-0.252307,-0.42480799999999996,-0.517245,-0.222705,-0.226691,-0.216367,-0.101661,-0.195192,-0.127579,-0.20449699999999998,-0.115007,-0.116852,0.050797999999999996,0.10526999999999999,0.077317,-0.026524,-0.07242,-0.16183,-0.436202,-0.453285,-0.447747,-0.424546,-0.457449,-1.3525909999999999,-1.2894919999999999,-1.292698,-1.3160969999999999,-1.376293,-1.3877899999999999,-1.39737,-1.2318769999999999,-1.307011,-0.759139,-0.43082699999999996,-0.435201,-0.42289,-0.393407,-0.222791,-0.191832,0.035085,0.007991,0.021537999999999998,0.122114,0.227349,0.320287,0.33616999999999997,0.495359,0.290991,0.315102,0.341632,0.633151,0.61983,0.644623,0.941498,0.96248,1.4046539999999998,1.523896,1.545594,1.4598309999999999,1.422175,1.6985979999999998,1.7686549999999999,1.871074,1.8490469999999999,1.795601,1.7397399999999998,1.721882,1.746465,1.7480369999999998,1.551787,1.5901379999999998,1.53073,1.521669,1.61415,1.735217,1.735463,1.738955,1.7588,1.9651569999999998,1.879953,1.889624,2.1586909999999997,2.5335669999999997,2.585181,2.5679529999999997,2.7438919999999998,2.05003,2.3966659999999997,2.4961919999999997,2.416619,2.350356,2.407841,2.556555,2.54201,2.4901429999999998,2.506506,2.498151,2.475646,2.580469,2.82877,2.9381209999999998,3.152633,3.1843619999999997,3.1905159999999997,3.514119,3.526407,3.565629,3.440187,3.425977,3.2606129999999998,3.2473069999999997,3.2107029999999996,3.2327429999999997,3.6325019999999997,3.770054,3.739209,3.7431669999999997,3.7727779999999997,3.802911,3.827797,3.82164,3.83494,3.5993619999999997,3.5496839999999996,3.5061229999999997,3.077731,3.123062,3.130372,2.820702,2.806418,2.8453749999999998,3.160587,3.2933969999999997,3.065544,3.1130039999999997,3.0711489999999997,2.082061,2.2169019999999997,2.398063,2.4236429999999998,2.569946,2.7516689999999997,3.516209,3.6662589999999997,3.5341639999999996,3.352617,3.264504,3.3183,3.372873,3.337684,3.278193,2.955212,2.9734659999999997,2.801617,2.972009,3.031621,3.0403919999999998,3.029493,2.977621,3.128266,3.147401,3.139675,3.147869,3.115207,3.102932,3.090731,2.9605029999999997,3.046308,3.03666,3.046179,2.975911,2.9672579999999997,2.9662919999999997,3.0634799999999998,3.092203,3.092796,3.1675769999999996,3.155434,3.147471,3.165959,3.105976,3.1141829999999997,3.1071739999999997,2.991831,2.9387119999999998,2.9361479999999998,3.00412,2.9809379999999996,2.989703,2.9931929999999998,3.0027,3.0234159999999997,3.0191909999999997,3.0499669999999997,2.989322,2.9959059999999997,2.9992419999999997,3.0104659999999996,3.022649,3.011796,2.833329,2.809885,2.8127,2.5010369999999997,2.491532,2.590642,2.573344,2.586499,2.602379,2.610309,2.5950819999999997,2.361096,2.464568,2.461859,2.501268,2.503488,2.524559,2.541276,2.571023,2.5754539999999997,2.5978689999999998,2.5953779999999997,2.6635739999999997,2.6751799999999997,3.5407699999999998,3.6791519999999998,3.921337,4.2467559999999995,4.935327,5.30533,5.19368,5.231075,5.111168,5.099277,5.080736,5.047491,4.965479,4.7574879999999995,4.80816,4.9543669999999995,4.866315,4.820066,4.741363,4.7059619999999995,4.741042,4.552345,4.582961,4.584232,4.4723239999999995,4.41217,4.413906,4.367846,4.5103279999999994,4.528562,4.491953,4.525384,4.293329,4.279084,4.260821,4.113189,4.135183,4.144899,4.163666,4.171994,4.138479,4.181855,4.21873,4.258398,4.31163,4.296575,4.254179,4.255119,4.241244,4.201474,4.147186,4.16228,4.218637999999999,4.215279,4.223324,4.222704,4.225887999999999,4.221271,4.248517,4.244931,4.174265,4.18529,4.137906,4.1284849999999995,4.118137,4.119091,4.1214699999999995,4.252789,4.271603,4.262468999999999,4.467959,4.530336,4.560566,4.519407999999999,4.458359,4.440754,4.429956,4.421493,4.423846,4.4340139999999995,4.4228499999999995,4.381606,4.400681,4.468755,4.4681869999999995,4.4670939999999995,4.475834,4.486812,4.43665,4.48864,4.5446,4.622697,4.633007999999999,4.611613999999999,4.553907,4.519619,4.647146,4.651606999999999,4.545032,4.58451,4.624057,4.611103,4.568994,4.5084,4.515146,4.509952999999999,4.504498,4.559140999999999,4.548999,4.270804,4.163927999999999,4.144253,4.144215,4.14393,4.115085,4.036843999999999,3.9059809999999997,3.95743,3.960228,3.9741549999999997,4.051404,4.080566,4.153338,4.434991,4.435413,4.436152,4.6433349999999995,5.125786,5.1104199999999995,5.10527,5.1377489999999995,5.117757999999999,5.00782,5.0275549999999996,5.05844,5.341664,5.378197,5.619641,5.608232999999999,5.569719,5.553122,5.6377239999999995,5.763211999999999,5.74921,5.706861,5.669503,5.698612,5.758014999999999,5.744121,5.768454999999999,5.7492719999999995,5.623726,5.612048,5.640893999999999,5.607188,5.612704,5.640363,5.552273,5.412811,5.5947819999999995,5.567098,5.664847,0.044572,0.069828,0.091726,0.24196199999999998,0.256171,0.23757199999999998,0.252289,0.2006,0.147525,0.09494999999999999,0.046756,0.120366,0.11898199999999999,0.143445,0.14454599999999998,0.144462,-0.40205799999999997,-0.625626,-0.5906549999999999,-0.591228,-0.5539959999999999,-0.554825,-0.543592,-0.554763,-0.497366,-0.500768,-0.48103199999999996,-0.614478,-0.619154,-0.622288,-0.6376269999999999,-0.6044999999999999,-0.615081,-0.637158,-0.6545909999999999,-0.591515,-0.626482,-0.656025,-0.653786,-0.6402129999999999,-0.630837,-0.65464,-0.671163,-0.727001,-0.7091999999999999,-0.7216,-0.7413259999999999,-0.670562,-0.641813,-0.649587,-0.65499,-0.633819,-0.649834,-0.654247,-0.68865,-0.682669,-0.651936,-0.682542,-0.71159,-0.721305,-0.701453,-0.6407079999999999,-0.7150799999999999,-0.690766,-0.564562,-0.558933,-0.559898,-0.559174,-0.553537,-0.543505,-0.550874,-0.552829,-0.564421,-0.526269,-0.527314,-0.516708,-0.513686,-0.515107,-0.530963,-0.5422859999999999,-0.541111,-0.545439,-0.545125,-0.538426,-0.5443319999999999,-0.619371,-0.630779,-0.698359,-0.6710539999999999,-0.694592,-0.6576839999999999,-0.699529,-0.705106,-0.6807489999999999,-0.70399,-0.649741,-0.649608,-0.69178,-0.709098,-0.730084,-0.7252,-0.721159,-0.7853939999999999,-0.811261,-0.867433,-0.842324,-0.857779,-0.8776609999999999,-0.9298409999999999,-0.97649,-0.988826,-1.060959,-1.073497,-1.081834,-1.0914169999999999,-1.09279,-1.0865,-1.152169,-1.1376469999999999,-1.1213929999999999,-1.144896,-1.157382,-1.150262,-1.172661,-1.140525,-1.155538,-1.0963669999999999,-1.125708,-1.0891819999999999,-1.085206,-1.0797489999999998,-1.080064,-1.135268,-1.1536009999999999,-1.183096,-1.199765,-1.212662,-1.168286,-1.197514,-1.203684,-1.214161,-1.214753,-1.200143,-1.231507,-1.303313,-1.316887,-1.264068,-1.2541909999999998,-1.247707,-1.233865,-1.2358479999999998,-1.2349869999999998,-1.238867,-1.294231,-1.28995,-1.3028769999999998,-1.3022939999999998,-1.338906,-1.348129,-1.350538,-1.356399,-1.3729909999999999,-1.3723509999999999,-1.3776249999999999,-1.377797,-1.373421,-1.367133,-1.35029,-1.3535709999999999,-1.352616,-1.349165,-1.365907,-1.365939,-1.366623,-1.5575299999999999,-1.5560129999999999,-1.551424,-1.5591739999999998,-1.578863,-1.5808529999999998,-1.5846719999999999,-1.602248,-1.611476,-1.618482,-1.620636,-1.619438,-1.745946,-1.8014999999999999,-1.779585,-1.7672189999999999,-1.76582,-1.745615,-1.7576049999999999,-1.756935,-1.7990869999999999,-1.808085,-1.8077759999999998,-1.8300459999999998,-1.8152,-1.827993,-1.453403,-1.490599,-1.488522,-1.145657,-1.146909,-1.1199409999999999,-1.14202,-0.803353,-0.807855,-0.424845,-0.384637,-0.411415,-0.40940499999999996,-0.41079,-0.413705,-0.41527899999999995,-0.41841,-0.40862,-0.412863,-0.413133,-0.408468,-0.407309,-0.405165,-0.42704,-0.43632299999999996,-0.42961099999999997,-0.44517199999999996,-0.433259,-0.41547399999999995,-0.413946,-0.39835699999999996,-0.469725,-0.416138,-0.42460699999999996,-0.43545599999999995,-0.45081299999999996,-0.48796599999999996,-0.49802199999999996,-0.5338229999999999,-0.5503629999999999,-0.525351,-0.592841,-0.623501,-0.6829759999999999,-0.64864,-0.652469,-0.697793,-0.667747,-0.651671,-0.671589,-0.666017,-0.678882,-0.687524,-0.680202,-0.679751,-0.684095,-0.65772,-0.660756,-0.688696,-0.702869,-0.698256,-0.700722,-0.857128,-0.820221,-0.8250649999999999,-0.831676,-0.8326549999999999,-0.8361689999999999,-0.8369829999999999,-0.894735,-0.936627,-0.938828,-0.9205399999999999,-0.920939,-1.580692,-1.58381,-1.584543,-1.59353,-1.591929,-1.5916549999999998,-1.596822,-1.596893,-1.5660669999999999,-1.5665289999999998,-1.5495599999999998,-1.549351,-1.5518459999999998,-1.545464,-1.596898,-1.639883,-1.5632389999999998,-1.593504,-1.606919,-1.6044349999999998,-1.591634,-1.655325,-1.6212449999999998,-1.63597,-1.705515,-1.71972,-1.7334269999999998,-1.7369899999999998,-1.729164,-1.732551,-1.726414,-1.743835,-1.752319,-1.7475859999999999,-1.742607,-1.7357179999999999,-1.7066249999999998,-1.714643,-1.717012,-1.705449,-1.693813,-1.6972909999999999,-1.8674039999999998,-1.875241,-1.869665,-1.8670229999999999,-1.829689,-1.829928,-1.8169179999999998,-1.815969,-1.803831,-1.8041479999999999,-1.8042099999999999,-1.8066529999999998,-1.8063479999999998,-1.7941799999999999,-1.7951009999999998,-1.7876949999999998,-1.787987,-1.786868,-1.786046,-1.778807,-1.784052,-1.686839,-1.673208,-1.637846,-1.6394719999999998,-1.6356959999999998,-1.634024,-1.6341489999999999,-1.655529,-1.567815,-1.5763749999999999,-1.577726,-1.5360559999999999,-1.543283,-1.554925,-1.5780889999999999,-1.6111909999999998,-1.615429,-1.6195169999999999,-1.617632,-1.594735,-1.6182349999999999,-1.610442,-1.603441,-1.595338,-1.598631,-1.599724,-1.6367669999999999,-1.6018569999999999,-1.6040329999999998,-1.608212,-1.5942969999999999,-1.614099,-1.605038,-1.588684,-1.5939949999999998,-1.5913329999999999,-1.583798,-1.582663,-1.573059,-1.735096,-1.7646499999999998,-1.768009,-1.7616889999999998,-1.798306,-1.809842,-1.813645,-1.8089529999999998,-1.912497,-1.930169,-1.848102,-1.848965,-1.8209039999999999,-1.7866309999999999],\n",
"\"type\":[\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\"]\n",
"},\n",
"\"mapping\":{\n",
"\"x\":\"tape_dt_tz_str\",\n",
"\"y\":\"net_premium\",\n",
"\"color\":\"type\"\n",
"},\n",
"\"data_meta\":{\n",
"\"series_annotations\":[{\n",
"\"column\":\"tape_dt_tz\",\n",
"\"type\":\"datetime\"\n",
"}]\n",
"},\n",
"\"ggtitle\":{\n",
"\"text\":\"AMZN Net Premium (in $M)\"\n",
"},\n",
"\"theme\":{\n",
"\"name\":\"none\",\n",
"\"line\":{\n",
"\"color\":\"#0d1117\",\n",
"\"size\":1.0,\n",
"\"blank\":false\n",
"},\n",
"\"rect\":{\n",
"\"fill\":\"#ffffff\",\n",
"\"color\":\"#0d1117\",\n",
"\"size\":1.0,\n",
"\"blank\":false\n",
"},\n",
"\"text\":{\n",
"\"color\":\"#0d1117\",\n",
"\"blank\":false\n",
"},\n",
"\"axis_ontop\":true,\n",
"\"axis_ticks\":{\n",
"\"color\":\"#161b22\",\n",
"\"blank\":false\n",
"},\n",
"\"legend_background\":{\n",
"\"size\":1.0,\n",
"\"blank\":false\n",
"},\n",
"\"legend_position\":\"none\",\n",
"\"panel_grid_major\":{\n",
"\"color\":\"#21262d\",\n",
"\"size\":0.5,\n",
"\"linetype\":\"dashed\",\n",
"\"blank\":false\n",
"},\n",
"\"panel_grid_minor\":{\n",
"\"blank\":true\n",
"},\n",
"\"plot_title\":{\n",
"\"color\":\"#0d1117\",\n",
"\"hjust\":0.5,\n",
"\"blank\":false\n",
"},\n",
"\"axis_tooltip\":{\n",
"\"color\":\"#161b22\",\n",
"\"blank\":false\n",
"},\n",
"\"tooltip\":{\n",
"\"color\":\"#21262d\",\n",
"\"blank\":false\n",
"},\n",
"\"axis_title_x\":{\n",
"\"blank\":true\n",
"},\n",
"\"axis_title_y\":{\n",
"\"blank\":true\n",
"}\n",
"},\n",
"\"kind\":\"plot\",\n",
"\"scales\":[{\n",
"\"name\":\"Time (America/Chicago)\",\n",
"\"aesthetic\":\"x\"\n",
"},{\n",
"\"name\":\"Net Premium\",\n",
"\"aesthetic\":\"y\"\n",
"},{\n",
"\"aesthetic\":\"color\",\n",
"\"breaks\":[\"Call\",\"Put\"],\n",
"\"values\":[\"#77bdfb\",\"#fa7970\"]\n",
"},{\n",
"\"aesthetic\":\"y\",\n",
"\"format\":\"{.2f}M\"\n",
"}],\n",
"\"layers\":[{\n",
"\"geom\":\"line\",\n",
"\"mapping\":{\n",
"},\n",
"\"data_meta\":{\n",
"},\n",
"\"size\":1.0,\n",
"\"data\":{\n",
"}\n",
"}],\n",
"\"metainfo_list\":[]\n",
"},{\n",
"\"data\":{\n",
"\"tape_dt_tz_str\":[\"08:30\",\"08:31\",\"08:32\",\"08:33\",\"08:34\",\"08:35\",\"08:36\",\"08:37\",\"08:38\",\"08:39\",\"08:40\",\"08:41\",\"08:42\",\"08:43\",\"08:44\",\"08:45\",\"08:46\",\"08:47\",\"08:48\",\"08:49\",\"08:50\",\"08:51\",\"08:52\",\"08:53\",\"08:54\",\"08:55\",\"08:56\",\"08:57\",\"08:58\",\"08:59\",\"09:00\",\"09:01\",\"09:02\",\"09:03\",\"09:04\",\"09:05\",\"09:06\",\"09:07\",\"09:08\",\"09:09\",\"09:10\",\"09:11\",\"09:12\",\"09:13\",\"09:14\",\"09:15\",\"09:16\",\"09:17\",\"09:18\",\"09:19\",\"09:20\",\"09:21\",\"09:22\",\"09:23\",\"09:24\",\"09:25\",\"09:26\",\"09:27\",\"09:28\",\"09:29\",\"09:30\",\"09:31\",\"09:32\",\"09:33\",\"09:34\",\"09:35\",\"09:36\",\"09:37\",\"09:38\",\"09:39\",\"09:40\",\"09:41\",\"09:42\",\"09:43\",\"09:44\",\"09:45\",\"09:46\",\"09:47\",\"09:48\",\"09:49\",\"09:50\",\"09:51\",\"09:52\",\"09:53\",\"09:54\",\"09:55\",\"09:56\",\"09:57\",\"09:58\",\"09:59\",\"10:00\",\"10:01\",\"10:02\",\"10:03\",\"10:04\",\"10:05\",\"10:06\",\"10:07\",\"10:08\",\"10:09\",\"10:10\",\"10:11\",\"10:12\",\"10:13\",\"10:14\",\"10:15\",\"10:16\",\"10:17\",\"10:18\",\"10:19\",\"10:20\",\"10:21\",\"10:22\",\"10:23\",\"10:24\",\"10:25\",\"10:26\",\"10:27\",\"10:28\",\"10:29\",\"10:30\",\"10:31\",\"10:32\",\"10:33\",\"10:34\",\"10:35\",\"10:36\",\"10:37\",\"10:38\",\"10:39\",\"10:40\",\"10:41\",\"10:42\",\"10:43\",\"10:44\",\"10:45\",\"10:46\",\"10:47\",\"10:48\",\"10:49\",\"10:50\",\"10:51\",\"10:52\",\"10:53\",\"10:54\",\"10:55\",\"10:56\",\"10:57\",\"10:58\",\"10:59\",\"11:00\",\"11:01\",\"11:02\",\"11:03\",\"11:04\",\"11:05\",\"11:06\",\"11:07\",\"11:08\",\"11:09\",\"11:10\",\"11:11\",\"11:12\",\"11:13\",\"11:14\",\"11:15\",\"11:16\",\"11:17\",\"11:18\",\"11:19\",\"11:20\",\"11:21\",\"11:22\",\"11:23\",\"11:24\",\"11:25\",\"11:26\",\"11:27\",\"11:28\",\"11:29\",\"11:30\",\"11:31\",\"11:32\",\"11:33\",\"11:34\",\"11:35\",\"11:36\",\"11:37\",\"11:38\",\"11:39\",\"11:40\",\"11:41\",\"11:42\",\"11:43\",\"11:44\",\"11:45\",\"11:46\",\"11:47\",\"11:48\",\"11:49\",\"11:50\",\"11:51\",\"11:52\",\"11:53\",\"11:54\",\"11:55\",\"11:56\",\"11:57\",\"11:58\",\"11:59\",\"12:00\",\"12:01\",\"12:02\",\"12:03\",\"12:04\",\"12:05\",\"12:06\",\"12:07\",\"12:08\",\"12:09\",\"12:10\",\"12:11\",\"12:12\",\"12:13\",\"12:14\",\"12:15\",\"12:16\",\"12:17\",\"12:18\",\"12:19\",\"12:20\",\"12:21\",\"12:22\",\"12:23\",\"12:24\",\"12:25\",\"12:26\",\"12:27\",\"12:28\",\"12:29\",\"12:30\",\"12:31\",\"12:32\",\"12:33\",\"12:34\",\"12:35\",\"12:36\",\"12:37\",\"12:38\",\"12:39\",\"12:40\",\"12:41\",\"12:42\",\"12:43\",\"12:44\",\"12:45\",\"12:46\",\"12:47\",\"12:48\",\"12:49\",\"12:50\",\"12:51\",\"12:52\",\"12:53\",\"12:54\",\"12:55\",\"12:56\",\"12:57\",\"12:58\",\"12:59\",\"13:00\",\"13:01\",\"13:02\",\"13:03\",\"13:04\",\"13:05\",\"13:06\",\"13:07\",\"13:08\",\"13:09\",\"13:10\",\"13:11\",\"13:12\",\"13:13\",\"13:14\",\"13:15\",\"13:16\",\"13:17\",\"13:18\",\"13:19\",\"13:20\",\"13:21\",\"13:22\",\"13:23\",\"13:24\",\"13:25\",\"13:26\",\"13:27\",\"13:28\",\"13:29\",\"13:30\",\"13:31\",\"13:32\",\"13:33\",\"13:34\",\"13:35\",\"13:36\",\"13:37\",\"13:38\",\"13:39\",\"13:40\",\"13:41\",\"13:42\",\"13:43\",\"13:44\",\"13:45\",\"13:46\",\"13:47\",\"13:48\",\"13:49\",\"13:50\",\"13:51\",\"13:52\",\"13:53\",\"13:54\",\"13:55\",\"13:56\",\"13:57\",\"13:58\",\"13:59\",\"14:00\",\"14:01\",\"14:02\",\"14:03\",\"14:04\",\"14:05\",\"14:06\",\"14:07\",\"14:08\",\"14:09\",\"14:10\",\"14:11\",\"14:12\",\"14:13\",\"14:14\",\"14:15\",\"14:16\",\"14:17\",\"14:18\",\"14:19\",\"14:20\",\"14:21\",\"14:22\",\"14:23\",\"14:24\",\"14:25\",\"14:26\",\"14:27\",\"14:28\",\"14:29\",\"14:30\",\"14:31\",\"14:32\",\"14:33\",\"14:34\",\"14:35\",\"14:36\",\"14:37\",\"14:38\",\"14:39\",\"14:40\",\"14:41\",\"14:42\",\"14:43\",\"14:44\",\"14:45\",\"14:46\",\"14:47\",\"14:48\",\"14:49\",\"14:50\",\"14:51\",\"14:52\",\"14:53\",\"14:54\",\"14:55\",\"14:56\",\"14:57\",\"14:58\",\"14:59\",\"08:30\",\"08:31\",\"08:32\",\"08:33\",\"08:34\",\"08:35\",\"08:36\",\"08:37\",\"08:38\",\"08:39\",\"08:40\",\"08:41\",\"08:42\",\"08:43\",\"08:44\",\"08:45\",\"08:46\",\"08:47\",\"08:48\",\"08:49\",\"08:50\",\"08:51\",\"08:52\",\"08:53\",\"08:54\",\"08:55\",\"08:56\",\"08:57\",\"08:58\",\"08:59\",\"09:00\",\"09:01\",\"09:02\",\"09:03\",\"09:04\",\"09:05\",\"09:06\",\"09:07\",\"09:08\",\"09:09\",\"09:10\",\"09:11\",\"09:12\",\"09:13\",\"09:14\",\"09:15\",\"09:16\",\"09:17\",\"09:18\",\"09:19\",\"09:20\",\"09:21\",\"09:22\",\"09:23\",\"09:24\",\"09:25\",\"09:26\",\"09:27\",\"09:28\",\"09:29\",\"09:30\",\"09:31\",\"09:32\",\"09:33\",\"09:34\",\"09:35\",\"09:36\",\"09:37\",\"09:38\",\"09:39\",\"09:40\",\"09:41\",\"09:42\",\"09:43\",\"09:44\",\"09:45\",\"09:46\",\"09:47\",\"09:48\",\"09:49\",\"09:50\",\"09:51\",\"09:52\",\"09:53\",\"09:54\",\"09:55\",\"09:56\",\"09:57\",\"09:58\",\"09:59\",\"10:00\",\"10:01\",\"10:02\",\"10:03\",\"10:04\",\"10:05\",\"10:06\",\"10:07\",\"10:08\",\"10:09\",\"10:10\",\"10:11\",\"10:12\",\"10:13\",\"10:14\",\"10:15\",\"10:16\",\"10:17\",\"10:18\",\"10:19\",\"10:20\",\"10:21\",\"10:22\",\"10:23\",\"10:24\",\"10:25\",\"10:26\",\"10:27\",\"10:28\",\"10:29\",\"10:30\",\"10:31\",\"10:32\",\"10:33\",\"10:34\",\"10:35\",\"10:36\",\"10:37\",\"10:38\",\"10:39\",\"10:40\",\"10:41\",\"10:42\",\"10:43\",\"10:44\",\"10:45\",\"10:46\",\"10:47\",\"10:48\",\"10:49\",\"10:50\",\"10:51\",\"10:52\",\"10:53\",\"10:54\",\"10:55\",\"10:56\",\"10:57\",\"10:58\",\"10:59\",\"11:00\",\"11:01\",\"11:02\",\"11:03\",\"11:04\",\"11:05\",\"11:06\",\"11:07\",\"11:08\",\"11:09\",\"11:10\",\"11:11\",\"11:12\",\"11:13\",\"11:14\",\"11:15\",\"11:16\",\"11:17\",\"11:18\",\"11:19\",\"11:20\",\"11:21\",\"11:22\",\"11:23\",\"11:24\",\"11:25\",\"11:26\",\"11:27\",\"11:28\",\"11:29\",\"11:30\",\"11:31\",\"11:32\",\"11:33\",\"11:34\",\"11:35\",\"11:36\",\"11:37\",\"11:38\",\"11:39\",\"11:40\",\"11:41\",\"11:42\",\"11:43\",\"11:44\",\"11:45\",\"11:46\",\"11:47\",\"11:48\",\"11:49\",\"11:50\",\"11:51\",\"11:52\",\"11:53\",\"11:54\",\"11:55\",\"11:56\",\"11:57\",\"11:58\",\"11:59\",\"12:00\",\"12:01\",\"12:02\",\"12:03\",\"12:04\",\"12:05\",\"12:06\",\"12:07\",\"12:08\",\"12:09\",\"12:10\",\"12:11\",\"12:12\",\"12:13\",\"12:14\",\"12:15\",\"12:16\",\"12:17\",\"12:18\",\"12:19\",\"12:20\",\"12:21\",\"12:22\",\"12:23\",\"12:24\",\"12:25\",\"12:26\",\"12:27\",\"12:28\",\"12:29\",\"12:30\",\"12:31\",\"12:32\",\"12:33\",\"12:34\",\"12:35\",\"12:36\",\"12:37\",\"12:38\",\"12:39\",\"12:40\",\"12:41\",\"12:42\",\"12:43\",\"12:44\",\"12:45\",\"12:46\",\"12:47\",\"12:48\",\"12:49\",\"12:50\",\"12:51\",\"12:52\",\"12:53\",\"12:54\",\"12:55\",\"12:56\",\"12:57\",\"12:58\",\"12:59\",\"13:00\",\"13:01\",\"13:02\",\"13:03\",\"13:04\",\"13:05\",\"13:06\",\"13:07\",\"13:08\",\"13:09\",\"13:10\",\"13:11\",\"13:12\",\"13:13\",\"13:14\",\"13:15\",\"13:16\",\"13:17\",\"13:18\",\"13:19\",\"13:20\",\"13:21\",\"13:22\",\"13:23\",\"13:24\",\"13:25\",\"13:26\",\"13:27\",\"13:28\",\"13:29\",\"13:30\",\"13:31\",\"13:32\",\"13:33\",\"13:34\",\"13:35\",\"13:36\",\"13:37\",\"13:38\",\"13:39\",\"13:40\",\"13:41\",\"13:42\",\"13:43\",\"13:44\",\"13:45\",\"13:46\",\"13:47\",\"13:48\",\"13:49\",\"13:50\",\"13:51\",\"13:52\",\"13:53\",\"13:54\",\"13:55\",\"13:56\",\"13:57\",\"13:58\",\"13:59\",\"14:00\",\"14:01\",\"14:02\",\"14:03\",\"14:04\",\"14:05\",\"14:06\",\"14:07\",\"14:08\",\"14:09\",\"14:10\",\"14:11\",\"14:12\",\"14:13\",\"14:14\",\"14:15\",\"14:16\",\"14:17\",\"14:18\",\"14:19\",\"14:20\",\"14:21\",\"14:22\",\"14:23\",\"14:24\",\"14:25\",\"14:26\",\"14:27\",\"14:28\",\"14:29\",\"14:30\",\"14:31\",\"14:32\",\"14:33\",\"14:34\",\"14:35\",\"14:36\",\"14:37\",\"14:38\",\"14:39\",\"14:40\",\"14:41\",\"14:42\",\"14:43\",\"14:44\",\"14:45\",\"14:46\",\"14:47\",\"14:48\",\"14:49\",\"14:50\",\"14:51\",\"14:52\",\"14:53\",\"14:54\",\"14:55\",\"14:56\",\"14:57\",\"14:58\",\"14:59\"],\n",
"\"net_premium\":[-0.044531,-0.053874,-0.10241,-0.106525,-0.050887999999999996,-0.071154,0.013963999999999999,0.244632,0.31224199999999996,0.308166,0.36990999999999996,0.09555699999999999,-0.048697,-0.14224399999999998,-0.200088,-0.230377,-0.133826,-0.13999499999999998,-0.103561,-0.10490899999999999,-0.412477,-0.421878,-0.40191899999999997,-0.43165299999999995,-0.449745,-0.32670299999999997,-0.39277999999999996,-0.436855,-0.434529,-0.264523,-0.23007899999999998,-0.23508099999999998,-0.226292,-0.23568399999999998,-0.319116,-0.33577599999999996,-0.32805999999999996,-0.32245199999999996,-0.43822,-0.428073,-0.43052799999999997,-0.433484,-0.46756,-0.42885599999999996,-0.17876699999999998,-0.200426,-0.140488,-0.079119,-0.096942,0.159253,0.19969199999999998,0.174061,0.17107999999999998,0.146203,0.292983,0.29287799999999997,0.289931,0.314362,0.317745,0.308054,0.25595999999999997,0.262517,0.199122,0.20238399999999998,0.15959399999999999,0.04827,0.07529899999999999,0.061716,0.104769,0.108862,0.10890699999999999,0.025299,0.032063999999999995,0.004634999999999999,0.013642,0.011275,-0.020013,0.071153,0.032579,0.023149,-0.018047,-0.175932,-0.175025,-0.195327,-0.18801199999999998,-0.182477,-0.23203,-0.232378,-0.35092799999999996,-0.342761,-0.32883999999999997,-0.439533,-0.440139,-0.438048,-0.390646,-0.40932399999999997,-0.48467099999999996,-0.48170399999999997,-0.493714,-0.475968,-0.485741,-0.463864,-0.444967,-0.457445,-0.457404,-0.47839099999999996,-0.479108,-0.47814399999999996,-0.43010499999999996,-0.423442,-0.42566699999999996,-0.419531,-0.41078499999999996,-0.409918,-0.411916,-0.405421,-0.347144,-0.43651999999999996,-0.439187,-0.43604,-0.451438,-0.33044,-0.324092,-0.319837,-0.25189,-0.26475899999999997,-0.23555399999999999,-0.241191,-0.24148599999999998,-0.254285,-0.24529099999999998,-0.234322,-0.2341,-0.192876,-0.19677,-0.20192,-0.186961,-0.200738,-0.183501,-0.181526,-0.181562,-0.17918599999999998,-0.169457,-0.15404299999999999,-0.147041,-0.14944,-0.128856,-0.159294,-0.057878,-0.029293,-0.051323,-0.175208,-0.187498,-0.195324,-0.20105499999999998,-0.218028,-0.21461999999999998,-0.201844,-0.191626,-0.20248,-0.24120599999999998,-0.2041,-0.190345,-0.120928,-0.093454,-0.089892,-0.048847999999999996,-0.041082,-0.092037,-0.142067,-0.142741,-0.128165,-0.124472,-0.141435,-0.087585,-0.026066,-0.022858999999999997,-0.009524,-0.027673999999999997,-0.030046,0.004128,0.035585,-0.060487,-0.06928999999999999,-0.081478,-0.044892,-0.053005,-0.050351,-0.053774999999999996,-0.05694,-0.052084,-0.052084,-0.047964,-0.006762,0.003692,-0.017017,0.035785,0.04208,0.028933,0.028170999999999998,0.032480999999999996,0.031795,0.032515999999999996,0.029257,0.021314,0.041736999999999996,0.032237,0.060159,0.049392,0.047876999999999996,0.037211999999999995,0.041697,-0.014776,-0.028347999999999998,-0.029457999999999998,-0.029873,-0.030733,-0.034429999999999995,-0.037514,-0.043347,-0.021193,-0.027922,-0.010950999999999999,-0.006273,-0.007666999999999999,-0.036597,-0.036122,-0.09386699999999999,-0.130687,-0.15027,-0.15481899999999998,-0.19588699999999998,-0.158374,-0.158216,-0.155827,-0.11522199999999999,-0.10849299999999999,-0.10522,-0.12831299999999998,-0.12480799999999999,-0.16888399999999998,-0.214971,-0.09368399999999999,-0.00938,-0.17793399999999998,-0.449323,-0.308361,-0.487608,-0.48967,-0.5265259999999999,-0.524048,-0.5170819999999999,-0.520871,-0.50796,-0.516309,-0.500954,-0.5046229999999999,-0.505524,-0.537885,-0.5421549999999999,-0.532555,-0.531971,-0.5041869999999999,-0.49385999999999997,-0.49044899999999997,-0.48564399999999996,-0.503643,-0.498672,-0.41003599999999996,-0.405224,-0.404555,-0.413192,-0.40537999999999996,-0.314378,-0.144433,-0.126752,-0.15506699999999998,-0.17389,-0.191353,-0.17740399999999998,-0.17133199999999998,-0.163591,-0.176562,-0.129078,-0.11937299999999999,-0.11964899999999999,-0.12199399999999999,-0.121837,-0.1314,-0.1314,-0.12589,-0.130031,-0.130391,-0.12606599999999998,-0.120819,-0.037,6.34E-4,0.007475,0.084992,0.238779,0.20213799999999998,0.265106,0.28185699999999997,0.257312,0.23230599999999998,0.25560299999999997,0.231061,0.24326599999999998,0.186311,0.15093399999999998,0.061149999999999996,0.064106,0.056615,0.064749,0.147471,0.212242,0.26608699999999996,0.234565,0.18887099999999998,0.28330099999999997,0.29256499999999996,0.293719,0.295072,0.273095,0.27725299999999997,0.250234,0.239259,0.267351,0.24285199999999998,0.319307,0.25804299999999997,0.2342,0.232985,0.132692,0.13272699999999998,0.146312,0.13808299999999998,0.091898,0.097828,0.093276,0.115865,0.11648499999999999,0.10174899999999999,0.152667,0.203847,0.21720099999999998,0.21267799999999998,0.215031,0.341477,0.343719,0.399873,0.401594,0.383778,0.400717,0.437923,0.43019399999999997,0.353205,0.30461299999999997,-0.035747999999999995,-0.023955999999999998,-0.083628,-0.083157,-0.071999,-0.014757,-0.044121,-0.035872999999999995,0.100688,0.10852099999999999,0.069932,-0.026562,-0.017133,-0.012830999999999999,-0.066958,-0.074456,-0.072878,-0.049678,-0.037226999999999996,-0.043267,-0.034422,-0.08262,-0.652524,-0.569782,-0.530489,-0.530892,0.096359,0.050814,0.009608,-0.020301,-0.047208,0.020315,0.010584,0.16831,0.230103,0.197742,0.21034899999999998,0.228132,0.178539,-0.104487,-0.099129,-0.124917,-0.34785299999999997,-0.171151,-0.094192,-0.083544,-0.051984999999999996,0.015771,0.080761,0.076287,0.039567,0.071447,-0.008105,-0.011601,8.77E-4,-0.036707,-0.049638999999999996,-0.16584,-0.155409,0.037159,0.033552,0.17080399999999998,0.15806299999999998,0.163412,0.164016,0.17119199999999998,0.17726599999999998,0.17974199999999999,0.181799,0.122735,0.136493,0.148084,0.127434,0.12871,0.09685099999999999,0.12138399999999999,0.0943,0.105485,0.09773599999999999,0.007928,0.10427199999999999,-0.061562,-0.072437,-0.245748,-0.254426,-0.2532,-0.268158,-0.266264,-0.255256,-0.250222,-0.252928,-0.26859299999999997,-0.28110599999999997,-0.28113699999999997,-0.27221999999999996,-0.270523,-0.276041,-0.333163,-0.328028,-0.318333,-0.336244,-0.310397,-0.30728099999999997,-0.306312,-0.375529,-0.346916,-0.283794,-0.27677599999999997,-0.087045,-0.032293999999999996,-0.020571,-0.016205,-0.015073999999999999,-0.013411999999999999,-0.012131,-0.017609,0.013713,0.018522999999999998,0.017686,0.012029,0.009729999999999999,0.008251999999999999,-0.003062,0.020198999999999998,0.048489,0.06519699999999999,0.069157,0.062210999999999995,0.065632,0.073598,0.22366999999999998,0.22921799999999998,0.24953699999999998,0.228877,0.222849,0.22284299999999999,0.23817,0.234701,0.228512,0.22686299999999998,0.20404999999999998,0.203001,0.202531,0.19147899999999998,0.185025,0.18693099999999999,0.189047,0.188332,0.18971,0.202545,0.211196,0.178729,0.251664,0.222264,0.23643299999999998,0.204091,0.20798699999999998,0.21445499999999998,0.178249,0.230675,0.228491,0.246443,0.22986299999999998,0.222378,0.215224,0.11137699999999999,0.136395,0.123944,0.122413,-0.087641,-0.086257,-0.08843999999999999,-0.089364,-0.09078699999999999,-0.091538,-0.111583,-0.14093999999999998,-0.285832,-0.23746899999999999,-0.25984999999999997,-0.27014,-0.31566099999999997,-0.303648,-0.261723,-0.270324,-0.271799,-0.254423,-0.208846,-0.204309,-0.20734799999999998,-0.206085,-0.213575,-0.21895299999999998,-0.254501,-0.254807,-0.25720699999999996,-0.201866,-0.18964899999999998,-0.18981399999999998,-0.19253699999999999,-0.18922699999999998,0.098686,0.08708099999999999,0.081111,0.080342,0.07188699999999999,0.056084999999999996,0.042211,0.041714,0.064023,0.04928,0.360513,0.424218,0.405752,0.43616,0.444785,0.467585,0.44536899999999996,0.43510099999999996,0.433396,0.43304699999999996,0.43917399999999995,0.439953,0.438308,0.427707,0.41535099999999997,0.49212599999999995,0.33447699999999997,0.23974099999999998,0.251232,0.285641,0.300022,0.297417,0.298465,0.297112,0.31138899999999997,0.315194,0.31995999999999997,0.312046,0.308342,0.307896,0.305446,0.307901,0.31646599999999997,0.322571,0.326132,0.332532,0.327081,0.32974,0.321324,0.31261,0.31154899999999996,0.28198799999999996,0.280995,0.237,0.229701,0.226762,0.22411899999999998,0.177781,0.189874,0.193443,0.180998,0.184946,0.184884,0.19512,0.19541699999999998,0.057387,0.059080999999999995,-0.06729,-0.063626,-0.09807099999999999,-0.100765,-0.09866499999999999,-0.105089,-0.1513,-0.154646,-0.165552,-0.13466899999999998,-0.117487,-0.110426,-0.116199,-0.122943,-0.17177399999999998,-0.16872399999999999,-0.16738899999999998,-0.161426,-0.16234099999999999,-0.159855,-0.158308,-0.14917,-0.15778,-0.16497399999999998,-0.09469899999999999,-0.133546,-0.11957699999999999,-0.086597,-0.11757,-0.110027,-0.15995399999999999,-0.154021,-0.15423099999999998,-0.17010699999999998,-0.303514,-0.292386,-0.302045,-0.300936,-0.339312,-0.40509,-0.398725,-0.368676,-0.280601,-0.295488,-0.28477399999999997,-0.285719,-0.21862199999999998,-0.19994699999999999,-0.201704,-0.201513,-0.202423,-0.202113,-0.200063,-0.199988,-0.195128,-0.128972,-0.127199,-0.116951,-0.190025,-0.182473,-0.23385299999999998,-0.228375,-0.330401,-0.363911,-0.684522,-0.832289,-0.794198,-0.808078,-0.710491,-0.847416,-0.732316,-0.738512,-0.7295389999999999,-0.731455,-0.530485,-0.49589999999999995,-0.480201,-0.510494,-0.501637,-0.557699,-0.560035,-0.5482469999999999,-0.52805,-0.475139,-0.476332,-0.479576,-0.486083,-0.48539099999999996,-0.459184,-0.47969799999999996,-0.41079299999999996,-0.41641,-0.432895,-0.434212,-0.413701,-0.20366199999999998,-0.19158499999999998,-0.055743,-0.06954199999999999,-0.10532899999999999,-0.097664,-0.11316699999999999,-0.1231,-0.13647099999999998,-0.115017,-0.119361,-0.12451,-0.125616,-0.130597,-0.125244,-0.125969,-0.07535,-0.08372,-0.100995,-0.064497,-0.12125799999999999,-0.120803,-0.17294099999999998,-0.242583,-0.585675,-0.600108,-0.596297,-0.596885,-0.5851149999999999,-0.596536,-0.57543,-0.58946,-0.629394,-0.604345,-0.580527,-0.6475179999999999,-0.48572699999999996,-0.492401,-0.497845,-0.503242,-0.507473,-0.479132,-0.484542,-0.480931,-0.567579,-0.7182,-0.569939,-0.495755,-0.44492899999999996,-0.43809,-0.486465,-0.500198,-0.6255229999999999,-0.569628,-0.53471,-0.515737,-0.486056,-0.506238,-0.5208849999999999],\n",
"\"type\":[\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\"]\n",
"},\n",
"\"mapping\":{\n",
"\"x\":\"tape_dt_tz_str\",\n",
"\"y\":\"net_premium\",\n",
"\"color\":\"type\"\n",
"},\n",
"\"data_meta\":{\n",
"\"series_annotations\":[{\n",
"\"column\":\"tape_dt_tz\",\n",
"\"type\":\"datetime\"\n",
"}]\n",
"},\n",
"\"ggtitle\":{\n",
"\"text\":\"NFLX Net Premium (in $M)\"\n",
"},\n",
"\"theme\":{\n",
"\"name\":\"none\",\n",
"\"line\":{\n",
"\"color\":\"#0d1117\",\n",
"\"size\":1.0,\n",
"\"blank\":false\n",
"},\n",
"\"rect\":{\n",
"\"fill\":\"#ffffff\",\n",
"\"color\":\"#0d1117\",\n",
"\"size\":1.0,\n",
"\"blank\":false\n",
"},\n",
"\"text\":{\n",
"\"color\":\"#0d1117\",\n",
"\"blank\":false\n",
"},\n",
"\"axis_ontop\":true,\n",
"\"axis_ticks\":{\n",
"\"color\":\"#161b22\",\n",
"\"blank\":false\n",
"},\n",
"\"legend_background\":{\n",
"\"size\":1.0,\n",
"\"blank\":false\n",
"},\n",
"\"legend_position\":\"none\",\n",
"\"panel_grid_major\":{\n",
"\"color\":\"#21262d\",\n",
"\"size\":0.5,\n",
"\"linetype\":\"dashed\",\n",
"\"blank\":false\n",
"},\n",
"\"panel_grid_minor\":{\n",
"\"blank\":true\n",
"},\n",
"\"plot_title\":{\n",
"\"color\":\"#0d1117\",\n",
"\"hjust\":0.5,\n",
"\"blank\":false\n",
"},\n",
"\"axis_tooltip\":{\n",
"\"color\":\"#161b22\",\n",
"\"blank\":false\n",
"},\n",
"\"tooltip\":{\n",
"\"color\":\"#21262d\",\n",
"\"blank\":false\n",
"},\n",
"\"axis_title_x\":{\n",
"\"blank\":true\n",
"},\n",
"\"axis_title_y\":{\n",
"\"blank\":true\n",
"}\n",
"},\n",
"\"kind\":\"plot\",\n",
"\"scales\":[{\n",
"\"name\":\"Time (America/Chicago)\",\n",
"\"aesthetic\":\"x\"\n",
"},{\n",
"\"name\":\"Net Premium\",\n",
"\"aesthetic\":\"y\"\n",
"},{\n",
"\"aesthetic\":\"color\",\n",
"\"breaks\":[\"Call\",\"Put\"],\n",
"\"values\":[\"#77bdfb\",\"#fa7970\"]\n",
"},{\n",
"\"aesthetic\":\"y\",\n",
"\"format\":\"{.2f}M\"\n",
"}],\n",
"\"layers\":[{\n",
"\"geom\":\"line\",\n",
"\"mapping\":{\n",
"},\n",
"\"data_meta\":{\n",
"},\n",
"\"size\":1.0,\n",
"\"data\":{\n",
"}\n",
"}],\n",
"\"metainfo_list\":[]\n",
"},{\n",
"\"data\":{\n",
"\"tape_dt_tz_str\":[\"08:30\",\"08:31\",\"08:32\",\"08:33\",\"08:34\",\"08:35\",\"08:36\",\"08:37\",\"08:38\",\"08:39\",\"08:40\",\"08:41\",\"08:42\",\"08:43\",\"08:44\",\"08:45\",\"08:46\",\"08:47\",\"08:48\",\"08:49\",\"08:50\",\"08:51\",\"08:52\",\"08:53\",\"08:54\",\"08:55\",\"08:56\",\"08:57\",\"08:58\",\"08:59\",\"09:00\",\"09:01\",\"09:02\",\"09:03\",\"09:04\",\"09:05\",\"09:06\",\"09:07\",\"09:08\",\"09:09\",\"09:10\",\"09:11\",\"09:12\",\"09:13\",\"09:14\",\"09:15\",\"09:16\",\"09:17\",\"09:18\",\"09:19\",\"09:20\",\"09:21\",\"09:22\",\"09:23\",\"09:24\",\"09:25\",\"09:26\",\"09:27\",\"09:28\",\"09:29\",\"09:30\",\"09:31\",\"09:32\",\"09:33\",\"09:34\",\"09:35\",\"09:36\",\"09:37\",\"09:38\",\"09:39\",\"09:40\",\"09:41\",\"09:42\",\"09:43\",\"09:44\",\"09:45\",\"09:46\",\"09:47\",\"09:48\",\"09:49\",\"09:50\",\"09:51\",\"09:52\",\"09:53\",\"09:54\",\"09:55\",\"09:56\",\"09:57\",\"09:58\",\"09:59\",\"10:00\",\"10:01\",\"10:02\",\"10:03\",\"10:04\",\"10:05\",\"10:06\",\"10:07\",\"10:08\",\"10:09\",\"10:10\",\"10:11\",\"10:12\",\"10:13\",\"10:14\",\"10:15\",\"10:16\",\"10:17\",\"10:18\",\"10:19\",\"10:20\",\"10:21\",\"10:22\",\"10:23\",\"10:24\",\"10:25\",\"10:26\",\"10:27\",\"10:28\",\"10:29\",\"10:30\",\"10:31\",\"10:32\",\"10:33\",\"10:34\",\"10:35\",\"10:36\",\"10:37\",\"10:38\",\"10:39\",\"10:40\",\"10:41\",\"10:42\",\"10:43\",\"10:44\",\"10:45\",\"10:46\",\"10:47\",\"10:48\",\"10:49\",\"10:50\",\"10:51\",\"10:52\",\"10:53\",\"10:54\",\"10:55\",\"10:56\",\"10:57\",\"10:58\",\"10:59\",\"11:00\",\"11:01\",\"11:02\",\"11:03\",\"11:04\",\"11:05\",\"11:06\",\"11:07\",\"11:08\",\"11:09\",\"11:10\",\"11:11\",\"11:12\",\"11:13\",\"11:14\",\"11:15\",\"11:16\",\"11:17\",\"11:18\",\"11:19\",\"11:20\",\"11:21\",\"11:22\",\"11:23\",\"11:24\",\"11:25\",\"11:26\",\"11:27\",\"11:28\",\"11:29\",\"11:30\",\"11:31\",\"11:32\",\"11:33\",\"11:34\",\"11:35\",\"11:36\",\"11:37\",\"11:38\",\"11:39\",\"11:40\",\"11:41\",\"11:42\",\"11:43\",\"11:44\",\"11:45\",\"11:46\",\"11:47\",\"11:48\",\"11:49\",\"11:50\",\"11:51\",\"11:52\",\"11:53\",\"11:54\",\"11:55\",\"11:56\",\"11:57\",\"11:58\",\"11:59\",\"12:00\",\"12:01\",\"12:02\",\"12:03\",\"12:04\",\"12:05\",\"12:06\",\"12:07\",\"12:08\",\"12:09\",\"12:10\",\"12:11\",\"12:12\",\"12:13\",\"12:14\",\"12:15\",\"12:16\",\"12:17\",\"12:18\",\"12:19\",\"12:20\",\"12:21\",\"12:22\",\"12:23\",\"12:24\",\"12:25\",\"12:26\",\"12:27\",\"12:28\",\"12:29\",\"12:30\",\"12:31\",\"12:32\",\"12:33\",\"12:34\",\"12:35\",\"12:36\",\"12:37\",\"12:38\",\"12:39\",\"12:40\",\"12:41\",\"12:42\",\"12:43\",\"12:44\",\"12:45\",\"12:46\",\"12:47\",\"12:48\",\"12:49\",\"12:50\",\"12:51\",\"12:52\",\"12:53\",\"12:54\",\"12:55\",\"12:56\",\"12:57\",\"12:58\",\"12:59\",\"13:00\",\"13:01\",\"13:02\",\"13:03\",\"13:04\",\"13:05\",\"13:06\",\"13:07\",\"13:08\",\"13:09\",\"13:10\",\"13:11\",\"13:12\",\"13:13\",\"13:14\",\"13:15\",\"13:16\",\"13:17\",\"13:18\",\"13:19\",\"13:20\",\"13:21\",\"13:22\",\"13:23\",\"13:24\",\"13:25\",\"13:26\",\"13:27\",\"13:28\",\"13:29\",\"13:30\",\"13:31\",\"13:32\",\"13:33\",\"13:34\",\"13:35\",\"13:36\",\"13:37\",\"13:38\",\"13:39\",\"13:40\",\"13:41\",\"13:42\",\"13:43\",\"13:44\",\"13:45\",\"13:46\",\"13:47\",\"13:48\",\"13:49\",\"13:50\",\"13:51\",\"13:52\",\"13:53\",\"13:54\",\"13:55\",\"13:56\",\"13:57\",\"13:58\",\"13:59\",\"14:00\",\"14:01\",\"14:02\",\"14:03\",\"14:04\",\"14:05\",\"14:06\",\"14:07\",\"14:08\",\"14:09\",\"14:10\",\"14:11\",\"14:12\",\"14:13\",\"14:14\",\"14:15\",\"14:16\",\"14:17\",\"14:18\",\"14:19\",\"14:20\",\"14:21\",\"14:22\",\"14:23\",\"14:24\",\"14:25\",\"14:26\",\"14:27\",\"14:28\",\"14:29\",\"14:30\",\"14:31\",\"14:32\",\"14:33\",\"14:34\",\"14:35\",\"14:36\",\"14:37\",\"14:38\",\"14:39\",\"14:40\",\"14:41\",\"14:42\",\"14:43\",\"14:44\",\"14:45\",\"14:46\",\"14:47\",\"14:48\",\"14:49\",\"14:50\",\"14:51\",\"14:52\",\"14:53\",\"14:54\",\"14:55\",\"14:56\",\"14:57\",\"14:58\",\"14:59\",\"15:00\",\"08:30\",\"08:31\",\"08:32\",\"08:33\",\"08:34\",\"08:35\",\"08:36\",\"08:37\",\"08:38\",\"08:39\",\"08:40\",\"08:41\",\"08:42\",\"08:43\",\"08:44\",\"08:45\",\"08:46\",\"08:47\",\"08:48\",\"08:49\",\"08:50\",\"08:51\",\"08:52\",\"08:53\",\"08:54\",\"08:55\",\"08:56\",\"08:57\",\"08:58\",\"08:59\",\"09:00\",\"09:01\",\"09:02\",\"09:03\",\"09:04\",\"09:05\",\"09:06\",\"09:07\",\"09:08\",\"09:09\",\"09:10\",\"09:11\",\"09:12\",\"09:13\",\"09:14\",\"09:15\",\"09:16\",\"09:17\",\"09:18\",\"09:19\",\"09:20\",\"09:21\",\"09:22\",\"09:23\",\"09:24\",\"09:25\",\"09:26\",\"09:27\",\"09:28\",\"09:29\",\"09:30\",\"09:31\",\"09:32\",\"09:33\",\"09:34\",\"09:35\",\"09:36\",\"09:37\",\"09:38\",\"09:39\",\"09:40\",\"09:41\",\"09:42\",\"09:43\",\"09:44\",\"09:45\",\"09:46\",\"09:47\",\"09:48\",\"09:49\",\"09:50\",\"09:51\",\"09:52\",\"09:53\",\"09:54\",\"09:55\",\"09:56\",\"09:57\",\"09:58\",\"09:59\",\"10:00\",\"10:01\",\"10:02\",\"10:03\",\"10:04\",\"10:05\",\"10:06\",\"10:07\",\"10:08\",\"10:09\",\"10:10\",\"10:11\",\"10:12\",\"10:13\",\"10:14\",\"10:15\",\"10:16\",\"10:17\",\"10:18\",\"10:19\",\"10:20\",\"10:21\",\"10:22\",\"10:23\",\"10:24\",\"10:25\",\"10:26\",\"10:27\",\"10:28\",\"10:29\",\"10:30\",\"10:31\",\"10:32\",\"10:33\",\"10:34\",\"10:35\",\"10:36\",\"10:37\",\"10:38\",\"10:39\",\"10:40\",\"10:41\",\"10:42\",\"10:43\",\"10:44\",\"10:45\",\"10:46\",\"10:47\",\"10:48\",\"10:49\",\"10:50\",\"10:51\",\"10:52\",\"10:53\",\"10:54\",\"10:55\",\"10:56\",\"10:57\",\"10:58\",\"10:59\",\"11:00\",\"11:01\",\"11:02\",\"11:03\",\"11:04\",\"11:05\",\"11:06\",\"11:07\",\"11:08\",\"11:09\",\"11:10\",\"11:11\",\"11:12\",\"11:13\",\"11:14\",\"11:15\",\"11:16\",\"11:17\",\"11:18\",\"11:19\",\"11:20\",\"11:21\",\"11:22\",\"11:23\",\"11:24\",\"11:25\",\"11:26\",\"11:27\",\"11:28\",\"11:29\",\"11:30\",\"11:31\",\"11:32\",\"11:33\",\"11:34\",\"11:35\",\"11:36\",\"11:37\",\"11:38\",\"11:39\",\"11:40\",\"11:41\",\"11:42\",\"11:43\",\"11:44\",\"11:45\",\"11:46\",\"11:47\",\"11:48\",\"11:49\",\"11:50\",\"11:51\",\"11:52\",\"11:53\",\"11:54\",\"11:55\",\"11:56\",\"11:57\",\"11:58\",\"11:59\",\"12:00\",\"12:01\",\"12:02\",\"12:03\",\"12:04\",\"12:05\",\"12:06\",\"12:07\",\"12:08\",\"12:09\",\"12:10\",\"12:11\",\"12:12\",\"12:13\",\"12:14\",\"12:15\",\"12:16\",\"12:17\",\"12:18\",\"12:19\",\"12:20\",\"12:21\",\"12:22\",\"12:23\",\"12:24\",\"12:25\",\"12:26\",\"12:27\",\"12:28\",\"12:29\",\"12:30\",\"12:31\",\"12:32\",\"12:33\",\"12:34\",\"12:35\",\"12:36\",\"12:37\",\"12:38\",\"12:39\",\"12:40\",\"12:41\",\"12:42\",\"12:43\",\"12:44\",\"12:45\",\"12:46\",\"12:47\",\"12:48\",\"12:49\",\"12:50\",\"12:51\",\"12:52\",\"12:53\",\"12:54\",\"12:55\",\"12:56\",\"12:57\",\"12:58\",\"12:59\",\"13:00\",\"13:01\",\"13:02\",\"13:03\",\"13:04\",\"13:05\",\"13:06\",\"13:07\",\"13:08\",\"13:09\",\"13:10\",\"13:11\",\"13:12\",\"13:13\",\"13:14\",\"13:15\",\"13:16\",\"13:17\",\"13:18\",\"13:19\",\"13:20\",\"13:21\",\"13:22\",\"13:23\",\"13:24\",\"13:25\",\"13:26\",\"13:27\",\"13:28\",\"13:29\",\"13:30\",\"13:31\",\"13:32\",\"13:33\",\"13:34\",\"13:35\",\"13:36\",\"13:37\",\"13:38\",\"13:39\",\"13:40\",\"13:41\",\"13:42\",\"13:43\",\"13:44\",\"13:45\",\"13:46\",\"13:47\",\"13:48\",\"13:49\",\"13:50\",\"13:51\",\"13:52\",\"13:53\",\"13:54\",\"13:55\",\"13:56\",\"13:57\",\"13:58\",\"13:59\",\"14:00\",\"14:01\",\"14:02\",\"14:03\",\"14:04\",\"14:05\",\"14:06\",\"14:07\",\"14:08\",\"14:09\",\"14:10\",\"14:11\",\"14:12\",\"14:13\",\"14:14\",\"14:15\",\"14:16\",\"14:17\",\"14:18\",\"14:19\",\"14:20\",\"14:21\",\"14:22\",\"14:23\",\"14:24\",\"14:25\",\"14:26\",\"14:27\",\"14:28\",\"14:29\",\"14:30\",\"14:31\",\"14:32\",\"14:33\",\"14:34\",\"14:35\",\"14:36\",\"14:37\",\"14:38\",\"14:39\",\"14:40\",\"14:41\",\"14:42\",\"14:43\",\"14:44\",\"14:45\",\"14:46\",\"14:47\",\"14:48\",\"14:49\",\"14:50\",\"14:51\",\"14:52\",\"14:53\",\"14:54\",\"14:55\",\"14:56\",\"14:57\",\"14:58\",\"14:59\",\"15:00\"],\n",
"\"net_premium\":[1.303032,-0.35298799999999997,-1.573189,-2.809952,-4.369279,-4.10637,-4.675752999999999,-5.497103,-6.155800999999999,-6.425460999999999,-6.90496,-7.021996,-7.207952,-6.8894779999999995,-3.8720589999999997,-3.679877,-3.569273,-3.48431,-3.6700619999999997,-4.426901,-4.6140989999999995,-4.919498,-5.184203999999999,-5.448975,-5.564572999999999,-5.596009,-5.683205999999999,-5.286423999999999,-5.15322,-4.883537,-4.884702,-4.755764,-3.9074639999999996,-2.922989,-2.502679,-3.140506,-2.5231239999999997,-2.196876,-2.17481,-2.209221,-1.741223,-1.07198,-1.438415,-0.64554,-0.260459,3.2651559999999997,4.788148,4.945380999999999,4.992617999999999,4.213484,6.198173,5.519083,5.811046,6.151996,6.621417,7.933961,8.185307,9.383167,10.169884999999999,10.285793,10.562208,11.191445,11.451577,14.156302,15.527266,15.105383,15.081377999999999,14.998301999999999,14.888124999999999,14.999877999999999,15.403528,15.459192,14.798665,14.83617,14.812614,14.654,14.668508999999998,14.57826,14.584245999999998,14.404352,14.458153,17.09825,16.73892,16.562397,16.436159,16.520144,16.341815999999998,16.524945,16.809853999999998,16.818307,17.440251,17.225744,17.097428,16.974593,16.935315,16.774884,17.095709,18.901296,19.202600999999998,19.336515,19.31515,19.570069,19.949220999999998,20.322872999999998,20.162394,19.851323999999998,19.852365,20.015013,19.896812999999998,19.787619,19.628141,19.146278,18.848169,18.932731999999998,18.824147999999997,18.830636,18.67514,18.690057,18.829280999999998,18.850870999999998,18.870466999999998,19.990268999999998,19.460734,19.362904999999998,19.223941999999997,19.258118,19.727354,20.116061,19.92257,19.730275,20.022453,20.761302,21.214009,21.390811,21.388085999999998,21.352534,21.360818,21.377133999999998,21.294323,21.010295,21.019164,21.23584,21.512670999999997,21.484555999999998,21.639675999999998,21.759225999999998,23.732816,23.775513999999998,23.828471999999998,23.73772,23.627435,23.504344,24.469051999999998,24.511606999999998,24.386796,24.349943999999997,24.189605,24.585268,24.517595999999998,26.796481999999997,26.932910999999997,26.905389,26.319086,26.36684,26.133990999999998,25.475112,25.405293,25.248357,24.829302,24.47353,24.545572999999997,24.491792999999998,24.341437,24.292617,24.404346999999998,24.566729,24.764011999999997,25.021497,25.213594,25.840825,25.792254999999997,26.208092999999998,26.346104999999998,26.388835,26.14774,26.154069,26.421474999999997,26.582756,26.711039,26.550755,25.939968999999998,26.115288,26.147512,26.132941,26.573476,26.563779999999998,26.714581,26.900844,26.858197,26.873672,26.726537999999998,26.516026999999998,26.544081,26.437151,26.060712,26.226357999999998,26.236974999999997,26.239931,26.148222,26.323282,26.256978999999998,26.239437,26.185247,26.302391,26.632583999999998,26.801895,27.129503999999997,27.129898999999998,27.174325,27.016838,26.812326,26.798582,26.834218999999997,27.051714,27.273709,27.354934,27.257075,26.854121,26.961261999999998,26.746062,26.804886999999997,27.351146,27.662015999999998,27.646459999999998,27.684832999999998,27.439521,27.440779,27.17859,26.993216999999998,26.923327999999998,26.744025999999998,26.442503,26.194792,26.033981999999998,25.893399,25.032532,25.069416999999998,24.610571,24.884574999999998,24.901224,24.982295,24.830385999999997,23.866137,24.108731,24.234607,24.003999999999998,24.29387,24.213573,24.310931999999998,24.78274,24.754388,25.132690999999998,24.921789999999998,24.980411,25.039165999999998,25.260623,25.241939,25.345543,25.269102999999998,25.342181,25.152365,25.741778999999998,25.55987,25.588117,25.549301,25.51534,25.431931,25.408164,24.930422999999998,24.832964999999998,25.146953,25.423662,25.476119999999998,25.375168,25.491505,25.508674,25.425499,25.052108999999998,24.655492,24.34556,24.190345,23.999207,23.790985,23.731809,23.597835999999997,22.86254,22.474031999999998,22.429298,22.598599999999998,22.303988999999998,22.255613,22.220541,21.429658,21.712082,20.252350999999997,19.65888,18.961092,18.757505,18.703354,18.750677,18.583585,18.443219,18.389530999999998,18.385747,18.323463,19.579219,19.397115,19.342572,19.472528999999998,19.554983999999997,19.820791,20.491964,20.615232,21.012954999999998,20.768874999999998,20.277942,19.605781999999998,19.676386,19.743191,19.798277,19.854941999999998,19.692749,21.696678,21.97402,22.906596999999998,23.020742,22.597699,18.166468,18.178231,18.003431,18.000875,18.219284,18.066062,18.857198999999998,19.229582999999998,19.369062,19.398585,19.140622,19.285840999999998,18.745881999999998,17.849571,17.987379,18.225314,17.673775,16.879662,16.834910999999998,17.040693,17.082364,17.01098,17.154138,17.128956,16.717734,16.874174,16.055063999999998,16.011495999999998,16.968899999999998,16.02937,15.516651,14.975843999999999,15.019376999999999,14.852469,14.888022,14.935737999999999,14.871499,14.800438,14.829046,14.699480999999999,14.637388999999999,14.433898,14.526029999999999,13.677869,13.722323,13.893575,13.583703,13.469946,13.12693,12.347638,12.313794,11.805252999999999,11.361825999999999,11.359556999999999,-0.006839,2.195213,3.912184,4.025475,4.154294999999999,4.7746949999999995,4.864082,4.987191999999999,5.525105,5.318626,5.058218,4.8994159999999995,5.000864,5.0816419999999995,7.108025,6.854495999999999,6.0636969999999994,5.445137,5.470522,5.357498,5.491908,4.8496619999999995,5.222428,5.1314,5.431461,5.380243,5.411784,5.5161299999999995,5.306626,5.166551,5.255205999999999,4.953367,4.455134999999999,3.6142239999999997,3.1985829999999997,2.4535929999999997,2.182423,1.8604269999999998,2.526939,2.3699269999999997,2.195303,1.4168859999999999,1.278562,1.449776,1.4989249999999998,1.66679,1.709819,1.640671,1.3297809999999999,1.171235,0.633748,0.795221,0.624537,0.469419,0.5661619999999999,0.8992469999999999,0.9747579999999999,0.5802999999999999,0.521251,0.408053,0.696407,1.547049,1.534683,1.4408649999999998,1.41671,1.59477,1.74226,2.121276,1.978194,1.500751,1.723288,2.294476,2.492008,2.591989,2.7601809999999998,2.6908,2.763468,2.79662,3.0093289999999997,3.147309,2.940804,3.24184,3.374777,3.5164239999999998,3.487746,3.372373,3.1751549999999997,3.216993,3.157968,3.3337179999999997,3.15839,3.1802289999999998,2.945926,3.12165,3.333415,2.988099,3.24985,3.372,3.246302,3.0648389999999996,3.1507199999999997,3.1539949999999997,2.330996,2.2846349999999997,2.474068,2.5276579999999997,2.636951,2.718717,2.771439,3.366529,3.614947,3.989601,4.006142,3.789167,3.838872,3.988174,4.067272,4.338204,4.2261809999999995,4.629172,4.6201989999999995,4.588492,4.786395,4.809806,4.865743999999999,4.88559,4.815296,4.81664,4.840589,4.934024,5.283462999999999,5.366662,5.134009,4.988741999999999,4.9993549999999995,5.095279,5.180427,5.0478309999999995,5.068995,5.091849,4.984795,5.005148999999999,5.1688719999999995,5.175339,5.158405,5.165572,5.154633,5.28477,5.232915,5.258095,5.260107,5.297683,5.337009999999999,5.423856,5.573441,6.196933,5.751436,5.48193,5.593881,5.5440179999999994,5.493761,5.415508,5.334765,5.382566,5.461678,6.016826,6.106338,6.2010879999999995,6.171138,6.367583,6.1156109999999995,5.200894,5.366992,5.358,5.53003,5.363725,5.364701,5.269174,5.2559629999999995,5.161967,5.181109999999999,5.1484879999999995,5.959446,8.063695,8.339939,7.9136169999999995,7.685550999999999,7.618799,7.5942,7.558946,7.408468999999999,7.478142999999999,7.459122,7.311801,7.3029079999999995,7.287967999999999,7.350251999999999,7.634757,7.676063,7.742126,7.807366,7.848891999999999,7.851750999999999,7.818606,8.001261999999999,8.506024,7.893367,7.979794999999999,7.835374,7.784567,7.878587,7.924015,8.281212,8.233369999999999,8.232781,8.134763,8.018923,8.033306999999999,8.001555999999999,8.085715,8.092552999999999,8.179357,8.122929,8.032309,8.048722999999999,8.017484,7.992789999999999,8.202687,8.224423,8.031355,7.96781,7.989576,8.016499,8.020344999999999,8.112193999999999,7.74071,7.7683219999999995,7.848177,8.140395,8.211036,8.404399,8.04657,8.070342,8.13064,8.383832,8.541371,8.32081,8.172236999999999,8.177937,8.361952,8.325301,8.379512,8.297454,8.324800999999999,8.716514,8.86237,7.92554,8.214248999999999,8.217492,8.219054,8.341650999999999,8.336586,8.117426,8.180435,6.554202,6.17273,3.9418469999999997,3.8350299999999997,4.004315,3.995349,4.041716,4.348533,4.33087,4.322473,4.320542,4.357893,4.351309,4.340561999999999,4.659172,4.762306,4.780149,4.865298999999999,4.989510999999999,4.866601,4.8256,5.375893,5.635266,5.748519,6.1668389999999995,6.241822,6.240832,6.26791,6.402168,6.388776,6.460798,5.607081,5.4325149999999995,5.345517999999999,5.070543,4.916621,4.963166999999999,5.047196,5.051978999999999,5.107275,5.847627,5.9897339999999994,6.1329579999999995,6.166868,6.153809,5.960337,5.969056,5.523692,6.437993,6.5050859999999995,6.430096,6.492546,6.7589999999999995,6.819349,6.74928,6.662491999999999,6.529659,6.339612,6.312844,6.264438999999999,6.445640999999999,6.384615,6.239077,5.99066,6.371572,6.702381,6.7305459999999995,6.841196,7.040017,7.002958,6.922466,6.803357999999999,6.023117,6.372361,6.366238,6.588153999999999,6.661358,6.6916329999999995,5.698925,5.683523999999999,5.792667,5.816285,5.84736,5.726528999999999,5.659865,5.67833,5.99909,5.8742529999999995,5.830721,6.007607,5.631321,5.838056,5.685829,5.5804789999999995,5.606322,5.533866,5.456415,5.184786,5.243424999999999,5.185598,5.214378,5.256936,5.415204999999999,5.416328,5.993821,6.097608999999999,6.189795,6.207865,6.1616,6.164333999999999,4.962441999999999,4.528852,5.127289,5.195646,5.181419,5.416716999999999,5.3782499999999995,5.321261,5.4502109999999995,5.598221,5.4027829999999994,3.683265,3.294231,3.3102679999999998,4.230263,4.423577,4.423577],\n",
"\"type\":[\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\"]\n",
"},\n",
"\"mapping\":{\n",
"\"x\":\"tape_dt_tz_str\",\n",
"\"y\":\"net_premium\",\n",
"\"color\":\"type\"\n",
"},\n",
"\"data_meta\":{\n",
"\"series_annotations\":[{\n",
"\"column\":\"tape_dt_tz\",\n",
"\"type\":\"datetime\"\n",
"}]\n",
"},\n",
"\"ggtitle\":{\n",
"\"text\":\"TSLA Net Premium (in $M)\"\n",
"},\n",
"\"theme\":{\n",
"\"name\":\"none\",\n",
"\"line\":{\n",
"\"color\":\"#0d1117\",\n",
"\"size\":1.0,\n",
"\"blank\":false\n",
"},\n",
"\"rect\":{\n",
"\"fill\":\"#ffffff\",\n",
"\"color\":\"#0d1117\",\n",
"\"size\":1.0,\n",
"\"blank\":false\n",
"},\n",
"\"text\":{\n",
"\"color\":\"#0d1117\",\n",
"\"blank\":false\n",
"},\n",
"\"axis_ontop\":true,\n",
"\"axis_ticks\":{\n",
"\"color\":\"#161b22\",\n",
"\"blank\":false\n",
"},\n",
"\"legend_background\":{\n",
"\"size\":1.0,\n",
"\"blank\":false\n",
"},\n",
"\"legend_position\":\"none\",\n",
"\"panel_grid_major\":{\n",
"\"color\":\"#21262d\",\n",
"\"size\":0.5,\n",
"\"linetype\":\"dashed\",\n",
"\"blank\":false\n",
"},\n",
"\"panel_grid_minor\":{\n",
"\"blank\":true\n",
"},\n",
"\"plot_title\":{\n",
"\"color\":\"#0d1117\",\n",
"\"hjust\":0.5,\n",
"\"blank\":false\n",
"},\n",
"\"axis_tooltip\":{\n",
"\"color\":\"#161b22\",\n",
"\"blank\":false\n",
"},\n",
"\"tooltip\":{\n",
"\"color\":\"#21262d\",\n",
"\"blank\":false\n",
"},\n",
"\"axis_title_x\":{\n",
"\"blank\":true\n",
"},\n",
"\"axis_title_y\":{\n",
"\"blank\":true\n",
"}\n",
"},\n",
"\"kind\":\"plot\",\n",
"\"scales\":[{\n",
"\"name\":\"Time (America/Chicago)\",\n",
"\"aesthetic\":\"x\"\n",
"},{\n",
"\"name\":\"Net Premium\",\n",
"\"aesthetic\":\"y\"\n",
"},{\n",
"\"aesthetic\":\"color\",\n",
"\"breaks\":[\"Call\",\"Put\"],\n",
"\"values\":[\"#77bdfb\",\"#fa7970\"]\n",
"},{\n",
"\"aesthetic\":\"y\",\n",
"\"format\":\"{.2f}M\"\n",
"}],\n",
"\"layers\":[{\n",
"\"geom\":\"line\",\n",
"\"mapping\":{\n",
"},\n",
"\"data_meta\":{\n",
"},\n",
"\"size\":1.0,\n",
"\"data\":{\n",
"}\n",
"}],\n",
"\"metainfo_list\":[]\n",
"},{\n",
"\"data\":{\n",
"\"tape_dt_tz_str\":[\"08:30\",\"08:31\",\"08:32\",\"08:33\",\"08:34\",\"08:35\",\"08:36\",\"08:37\",\"08:38\",\"08:39\",\"08:40\",\"08:41\",\"08:42\",\"08:43\",\"08:44\",\"08:45\",\"08:46\",\"08:47\",\"08:48\",\"08:49\",\"08:50\",\"08:51\",\"08:52\",\"08:53\",\"08:54\",\"08:55\",\"08:56\",\"08:57\",\"08:58\",\"08:59\",\"09:00\",\"09:01\",\"09:02\",\"09:03\",\"09:04\",\"09:05\",\"09:06\",\"09:07\",\"09:08\",\"09:09\",\"09:10\",\"09:11\",\"09:12\",\"09:13\",\"09:14\",\"09:15\",\"09:16\",\"09:17\",\"09:18\",\"09:19\",\"09:20\",\"09:21\",\"09:22\",\"09:23\",\"09:24\",\"09:25\",\"09:26\",\"09:27\",\"09:28\",\"09:29\",\"09:30\",\"09:31\",\"09:32\",\"09:33\",\"09:34\",\"09:35\",\"09:36\",\"09:37\",\"09:38\",\"09:39\",\"09:40\",\"09:41\",\"09:42\",\"09:43\",\"09:44\",\"09:45\",\"09:46\",\"09:47\",\"09:48\",\"09:49\",\"09:50\",\"09:51\",\"09:52\",\"09:53\",\"09:54\",\"09:55\",\"09:56\",\"09:57\",\"09:58\",\"09:59\",\"10:00\",\"10:01\",\"10:02\",\"10:03\",\"10:04\",\"10:05\",\"10:06\",\"10:07\",\"10:08\",\"10:09\",\"10:10\",\"10:11\",\"10:12\",\"10:13\",\"10:14\",\"10:15\",\"10:16\",\"10:17\",\"10:18\",\"10:19\",\"10:20\",\"10:21\",\"10:22\",\"10:23\",\"10:24\",\"10:25\",\"10:26\",\"10:27\",\"10:28\",\"10:29\",\"10:30\",\"10:31\",\"10:32\",\"10:33\",\"10:34\",\"10:35\",\"10:36\",\"10:37\",\"10:38\",\"10:39\",\"10:40\",\"10:41\",\"10:42\",\"10:43\",\"10:44\",\"10:45\",\"10:46\",\"10:47\",\"10:48\",\"10:49\",\"10:50\",\"10:51\",\"10:52\",\"10:53\",\"10:54\",\"10:55\",\"10:56\",\"10:57\",\"10:58\",\"10:59\",\"11:00\",\"11:01\",\"11:02\",\"11:03\",\"11:04\",\"11:05\",\"11:06\",\"11:07\",\"11:08\",\"11:09\",\"11:10\",\"11:11\",\"11:12\",\"11:13\",\"11:14\",\"11:15\",\"11:16\",\"11:17\",\"11:18\",\"11:19\",\"11:20\",\"11:21\",\"11:22\",\"11:23\",\"11:24\",\"11:25\",\"11:26\",\"11:27\",\"11:28\",\"11:29\",\"11:30\",\"11:31\",\"11:32\",\"11:33\",\"11:34\",\"11:35\",\"11:36\",\"11:37\",\"11:38\",\"11:39\",\"11:40\",\"11:41\",\"11:42\",\"11:43\",\"11:44\",\"11:45\",\"11:46\",\"11:47\",\"11:48\",\"11:49\",\"11:50\",\"11:51\",\"11:52\",\"11:53\",\"11:54\",\"11:55\",\"11:56\",\"11:57\",\"11:58\",\"11:59\",\"12:00\",\"12:01\",\"12:02\",\"12:03\",\"12:04\",\"12:05\",\"12:06\",\"12:07\",\"12:08\",\"12:09\",\"12:10\",\"12:11\",\"12:12\",\"12:13\",\"12:14\",\"12:15\",\"12:16\",\"12:17\",\"12:18\",\"12:19\",\"12:20\",\"12:21\",\"12:22\",\"12:23\",\"12:24\",\"12:25\",\"12:26\",\"12:27\",\"12:28\",\"12:29\",\"12:30\",\"12:31\",\"12:32\",\"12:33\",\"12:34\",\"12:35\",\"12:36\",\"12:37\",\"12:38\",\"12:39\",\"12:40\",\"12:41\",\"12:42\",\"12:43\",\"12:44\",\"12:45\",\"12:46\",\"12:47\",\"12:48\",\"12:49\",\"12:50\",\"12:51\",\"12:52\",\"12:53\",\"12:54\",\"12:55\",\"12:56\",\"12:57\",\"12:58\",\"12:59\",\"13:00\",\"13:01\",\"13:02\",\"13:03\",\"13:04\",\"13:05\",\"13:06\",\"13:07\",\"13:08\",\"13:09\",\"13:10\",\"13:11\",\"13:12\",\"13:13\",\"13:14\",\"13:15\",\"13:16\",\"13:17\",\"13:18\",\"13:19\",\"13:20\",\"13:21\",\"13:22\",\"13:23\",\"13:24\",\"13:25\",\"13:26\",\"13:27\",\"13:28\",\"13:29\",\"13:30\",\"13:31\",\"13:32\",\"13:33\",\"13:34\",\"13:35\",\"13:36\",\"13:37\",\"13:38\",\"13:39\",\"13:40\",\"13:41\",\"13:42\",\"13:43\",\"13:44\",\"13:45\",\"13:46\",\"13:47\",\"13:48\",\"13:49\",\"13:50\",\"13:51\",\"13:52\",\"13:53\",\"13:54\",\"13:55\",\"13:56\",\"13:57\",\"13:58\",\"13:59\",\"14:00\",\"14:01\",\"14:02\",\"14:03\",\"14:04\",\"14:05\",\"14:06\",\"14:07\",\"14:08\",\"14:09\",\"14:10\",\"14:11\",\"14:12\",\"14:13\",\"14:14\",\"14:15\",\"14:16\",\"14:17\",\"14:18\",\"14:19\",\"14:20\",\"14:21\",\"14:22\",\"14:23\",\"14:24\",\"14:25\",\"14:26\",\"14:27\",\"14:28\",\"14:29\",\"14:30\",\"14:31\",\"14:32\",\"14:33\",\"14:34\",\"14:35\",\"14:36\",\"14:37\",\"14:38\",\"14:39\",\"14:40\",\"14:41\",\"14:42\",\"14:43\",\"14:44\",\"14:45\",\"14:46\",\"14:47\",\"14:48\",\"14:49\",\"14:50\",\"14:51\",\"14:52\",\"14:53\",\"14:54\",\"14:55\",\"14:56\",\"14:57\",\"14:58\",\"14:59\",\"08:30\",\"08:31\",\"08:32\",\"08:33\",\"08:34\",\"08:35\",\"08:36\",\"08:37\",\"08:38\",\"08:39\",\"08:40\",\"08:41\",\"08:42\",\"08:43\",\"08:44\",\"08:45\",\"08:46\",\"08:47\",\"08:48\",\"08:49\",\"08:50\",\"08:51\",\"08:52\",\"08:53\",\"08:54\",\"08:55\",\"08:56\",\"08:57\",\"08:58\",\"08:59\",\"09:00\",\"09:01\",\"09:02\",\"09:03\",\"09:04\",\"09:05\",\"09:06\",\"09:07\",\"09:08\",\"09:09\",\"09:10\",\"09:11\",\"09:12\",\"09:13\",\"09:14\",\"09:15\",\"09:16\",\"09:17\",\"09:18\",\"09:19\",\"09:20\",\"09:21\",\"09:22\",\"09:23\",\"09:24\",\"09:25\",\"09:26\",\"09:27\",\"09:28\",\"09:29\",\"09:30\",\"09:31\",\"09:32\",\"09:33\",\"09:34\",\"09:35\",\"09:36\",\"09:37\",\"09:38\",\"09:39\",\"09:40\",\"09:41\",\"09:42\",\"09:43\",\"09:44\",\"09:45\",\"09:46\",\"09:47\",\"09:48\",\"09:49\",\"09:50\",\"09:51\",\"09:52\",\"09:53\",\"09:54\",\"09:55\",\"09:56\",\"09:57\",\"09:58\",\"09:59\",\"10:00\",\"10:01\",\"10:02\",\"10:03\",\"10:04\",\"10:05\",\"10:06\",\"10:07\",\"10:08\",\"10:09\",\"10:10\",\"10:11\",\"10:12\",\"10:13\",\"10:14\",\"10:15\",\"10:16\",\"10:17\",\"10:18\",\"10:19\",\"10:20\",\"10:21\",\"10:22\",\"10:23\",\"10:24\",\"10:25\",\"10:26\",\"10:27\",\"10:28\",\"10:29\",\"10:30\",\"10:31\",\"10:32\",\"10:33\",\"10:34\",\"10:35\",\"10:36\",\"10:37\",\"10:38\",\"10:39\",\"10:40\",\"10:41\",\"10:42\",\"10:43\",\"10:44\",\"10:45\",\"10:46\",\"10:47\",\"10:48\",\"10:49\",\"10:50\",\"10:51\",\"10:52\",\"10:53\",\"10:54\",\"10:55\",\"10:56\",\"10:57\",\"10:58\",\"10:59\",\"11:00\",\"11:01\",\"11:02\",\"11:03\",\"11:04\",\"11:05\",\"11:06\",\"11:07\",\"11:08\",\"11:09\",\"11:10\",\"11:11\",\"11:12\",\"11:13\",\"11:14\",\"11:15\",\"11:16\",\"11:17\",\"11:18\",\"11:19\",\"11:20\",\"11:21\",\"11:22\",\"11:23\",\"11:24\",\"11:25\",\"11:26\",\"11:27\",\"11:28\",\"11:29\",\"11:30\",\"11:31\",\"11:32\",\"11:33\",\"11:34\",\"11:35\",\"11:36\",\"11:37\",\"11:38\",\"11:39\",\"11:40\",\"11:41\",\"11:42\",\"11:43\",\"11:44\",\"11:45\",\"11:46\",\"11:47\",\"11:48\",\"11:49\",\"11:50\",\"11:51\",\"11:52\",\"11:53\",\"11:54\",\"11:55\",\"11:56\",\"11:57\",\"11:58\",\"11:59\",\"12:00\",\"12:01\",\"12:02\",\"12:03\",\"12:04\",\"12:05\",\"12:06\",\"12:07\",\"12:08\",\"12:09\",\"12:10\",\"12:11\",\"12:12\",\"12:13\",\"12:14\",\"12:15\",\"12:16\",\"12:17\",\"12:18\",\"12:19\",\"12:20\",\"12:21\",\"12:22\",\"12:23\",\"12:24\",\"12:25\",\"12:26\",\"12:27\",\"12:28\",\"12:29\",\"12:30\",\"12:31\",\"12:32\",\"12:33\",\"12:34\",\"12:35\",\"12:36\",\"12:37\",\"12:38\",\"12:39\",\"12:40\",\"12:41\",\"12:42\",\"12:43\",\"12:44\",\"12:45\",\"12:46\",\"12:47\",\"12:48\",\"12:49\",\"12:50\",\"12:51\",\"12:52\",\"12:53\",\"12:54\",\"12:55\",\"12:56\",\"12:57\",\"12:58\",\"12:59\",\"13:00\",\"13:01\",\"13:02\",\"13:03\",\"13:04\",\"13:05\",\"13:06\",\"13:07\",\"13:08\",\"13:09\",\"13:10\",\"13:11\",\"13:12\",\"13:13\",\"13:14\",\"13:15\",\"13:16\",\"13:17\",\"13:18\",\"13:19\",\"13:20\",\"13:21\",\"13:22\",\"13:23\",\"13:24\",\"13:25\",\"13:26\",\"13:27\",\"13:28\",\"13:29\",\"13:30\",\"13:31\",\"13:32\",\"13:33\",\"13:34\",\"13:35\",\"13:36\",\"13:37\",\"13:38\",\"13:39\",\"13:40\",\"13:41\",\"13:42\",\"13:43\",\"13:44\",\"13:45\",\"13:46\",\"13:47\",\"13:48\",\"13:49\",\"13:50\",\"13:51\",\"13:52\",\"13:53\",\"13:54\",\"13:55\",\"13:56\",\"13:57\",\"13:58\",\"13:59\",\"14:00\",\"14:01\",\"14:02\",\"14:03\",\"14:04\",\"14:05\",\"14:06\",\"14:07\",\"14:08\",\"14:09\",\"14:10\",\"14:11\",\"14:12\",\"14:13\",\"14:14\",\"14:15\",\"14:16\",\"14:17\",\"14:18\",\"14:19\",\"14:20\",\"14:21\",\"14:22\",\"14:23\",\"14:24\",\"14:25\",\"14:26\",\"14:27\",\"14:28\",\"14:29\",\"14:30\",\"14:31\",\"14:32\",\"14:33\",\"14:34\",\"14:35\",\"14:36\",\"14:37\",\"14:38\",\"14:39\",\"14:40\",\"14:41\",\"14:42\",\"14:43\",\"14:44\",\"14:45\",\"14:46\",\"14:47\",\"14:48\",\"14:49\",\"14:50\",\"14:51\",\"14:52\",\"14:53\",\"14:54\",\"14:55\",\"14:56\",\"14:57\",\"14:58\",\"14:59\"],\n",
"\"net_premium\":[4.014158,3.770796,2.153098,3.235042,-4.044274,-6.870626,-13.399237,-19.781812,-24.615935,-27.396058,-40.731122,-47.313144,-53.207513999999996,-53.595278,-55.19437,-57.038855,-54.620194,-55.043471,-52.588722,-53.523444999999995,-53.847958999999996,-53.620388,-49.838096,-49.819471,-49.433414,-52.396104,-52.259536,-52.245498999999995,-51.201212999999996,-51.390305999999995,-51.598783,-52.184642999999994,-52.496905999999996,-52.579971,-52.378378,-54.673553,-53.157049,-52.305346,-54.026047999999996,-52.133244999999995,-51.805423999999995,-51.533425,-51.262048,-51.843143999999995,-52.001535,-50.218564,-50.635844999999996,-50.394495,-48.213767,-48.96471,-47.081275,-48.870362,-48.118615,-47.264928,-46.811102,-46.750662,-46.651872999999995,-44.624466,-44.296537,-44.767215,-45.387609999999995,-45.611291,-46.013349,-46.770494,-46.990829,-47.315425999999995,-50.662499999999994,-51.510556,-51.955005,-51.412757,-51.779458,-51.426096,-51.30354,-52.586835,-52.26139,-52.027727999999996,-52.383010999999996,-53.273592,-53.579487,-54.397059,-53.111582999999996,-53.810724,-63.217907999999994,-63.937314,-65.296005,-65.38413299999999,-65.719627,-65.575666,-64.069498,-64.308021,-63.070257,-63.306943,-62.782712999999994,-63.538137,-62.608503,-62.038776999999996,-61.804733,-61.949126,-62.098008,-62.114554999999996,-62.755134,-63.119091,-62.716421999999994,-63.024189,-63.083357,-63.307148,-62.783249999999995,-62.273585,-62.156845999999994,-62.018575999999996,-62.450874,-62.08537,-62.339952,-62.310390999999996,-62.460860999999994,-62.258644,-61.696721999999994,-61.868362,-61.984207999999995,-61.171668999999994,-60.790003,-61.138501999999995,-60.700616999999994,-60.663605,-60.544857,-60.848617999999995,-60.484514999999995,-60.694509999999994,-61.210809999999995,-61.869209999999995,-62.405829,-61.764472999999995,-62.089917,-61.969345999999994,-61.676607999999995,-61.624353,-62.029115999999995,-61.578323,-56.854245999999996,-57.470596,-55.626965999999996,-55.582103999999994,-55.846508,-56.586346,-56.016762,-55.874815,-56.016239,-56.558885,-56.419067999999996,-56.220828,-57.159800999999995,-58.344044999999994,-59.898331999999996,-60.944143999999994,-63.14212,-67.30944699999999,-65.178397,-65.321502,-65.043506,-64.754954,-65.28312,-58.315929999999994,-58.639826,-58.695926,-59.355689999999996,-60.430322999999994,-60.218332,-59.909585,-58.625484,-60.027626999999995,-60.236677,-57.708144999999995,-57.562746999999995,-56.950613999999995,-57.190973,-60.482772,-60.63352,-60.307874999999996,-58.472342999999995,-58.144903,-58.143231,-56.38456,-56.453055,-56.104879,-56.50524,-57.735886,-57.310888999999996,-56.846539,-54.571861,-54.62894,-54.373562,-54.208859,-54.279996,-54.010962,-53.75318,-53.977942999999996,-54.316209,-54.054803,-54.05419,-54.048033999999994,-54.058803,-54.140074,-54.204369,-57.305205,-59.129979999999996,-58.726791,-58.747972,-58.503167,-58.534549,-58.760689,-58.875198999999995,-58.927277,-58.706759999999996,-58.913819,-59.198536999999995,-59.201772999999996,-59.114323,-59.140353,-58.94437,-58.936077,-59.159982,-59.615758,-59.616868,-59.539280999999995,-59.601397999999996,-59.099944,-58.874254,-56.161953999999994,-55.984733999999996,-56.32871,-56.299279999999996,-56.114053999999996,-56.407889,-56.757197,-56.414873,-59.142599,-59.502081,-57.20375,-57.180803999999995,-57.356913,-59.078424999999996,-57.480447999999996,-57.211779,-55.153377,-55.582977,-55.714031999999996,-56.858933,-56.628589999999996,-55.045593999999994,-54.493883,-54.092479,-53.827642,-53.481604999999995,-53.163855999999996,-52.780013,-51.785467999999995,-51.246392,-51.21309,-51.090979,-50.811921999999996,-49.102287999999994,-49.064062,-49.348816,-50.302541999999995,-50.247923,-50.643501,-50.547525,-50.550717,-50.792842,-50.920142999999996,-51.066399,-51.079156999999995,-50.792119,-50.699858,-50.546741999999995,-50.515781999999994,-50.280967,-50.069638,-50.039209,-50.153867,-49.63908,-49.936592999999995,-49.330825999999995,-51.500659999999996,-51.520545999999996,-50.243597,-50.242996,-48.291737,-48.2425,-47.875980999999996,-48.109853,-49.093312,-44.63334,-44.505904,-42.600465,-41.646608,-44.829071,-42.315101,-39.050866,-38.396636,-38.060894999999995,-37.989813,-38.154588,-38.605798,-35.036674999999995,-35.154278,-34.806427,-34.795375,-34.807269,-35.043247,-34.92841,-34.744474,-37.382211,-37.647307999999995,-37.649674,-37.452625999999995,-37.614641,-37.552876999999995,-37.647134,-38.112128,-38.068294,-38.009586,-37.870835,-37.883945,-37.434407,-37.246964,-37.338193,-37.140387,-36.939515,-37.169691,-37.624673,-37.325153,-36.694271,-36.50634,-36.315225,-35.458131,-35.802672,-40.771743,-40.212798,-40.351039,-39.940431,-39.558341999999996,-39.670643,-39.736868,-39.889236,-39.324506,-39.199129,-38.491633,-38.983167,-39.831709,-40.355250999999996,-40.472677999999995,-40.532606,-40.467824,-40.651874,-39.607724999999995,-39.223234,-40.055870999999996,-38.401336,-38.589383,-39.197547,-38.137716,-37.892219,-37.259107,-37.149756,-37.104020999999996,-37.058276,-37.440594,-37.475539,-37.895409,-37.828430999999995,-38.100958,-36.857405,-37.189388,-37.136023,-37.148523,-35.863108,-36.009312,-35.992719,-36.197387,-36.185474,-35.306703,-35.216756,-35.578993,-35.798883,-35.977035,-36.473607,-36.354971,-36.801635,-36.826599,0.046008,-0.493826,-1.36995,-1.905033,-1.674844,-1.3479139999999998,-1.781742,-1.406687,-1.9697179999999999,-2.961753,-3.9066569999999996,-2.963621,-2.340024,-1.807891,-1.651181,-0.925516,-2.0037249999999998,-2.377971,-2.423748,-1.957384,-1.923004,-1.6712339999999999,-1.7498,-1.852817,-2.425598,-2.2996209999999997,-2.805088,-2.725473,-2.9935609999999997,-3.15032,-4.5316909999999995,-4.2479249999999995,-4.225477,-4.318938999999999,-5.420223,-5.134869999999999,-6.1641259999999996,-6.65668,-6.588041,-6.224171999999999,-6.352465,-6.414753,-6.482931,-6.567854,-6.663905,-7.193931999999999,-7.236268,-7.360214999999999,-7.448611,-7.653928,-8.988413,-9.108482,-10.402904999999999,-11.037101999999999,-11.650072999999999,-12.558418,-12.475178999999999,-14.185348,-14.410483,-14.567063,-14.738150999999998,-14.83284,-14.630671,-14.830814,-15.340378999999999,-15.423051999999998,-16.186381,-17.274276999999998,-17.727633,-18.309119,-18.177956,-18.223218,-18.358162,-18.386734,-18.603347,-19.587947,-19.34311,-19.181072,-19.439656,-19.312596,-19.604564,-19.608715,-20.610027,-21.211344,-22.05531,-22.132357,-22.26355,-23.570477,-23.905099999999997,-24.305294,-26.064304,-26.131090999999998,-26.492103999999998,-26.465918,-27.125739,-26.783844,-26.698131,-26.58953,-26.695987,-26.739282,-26.619581999999998,-26.663542999999997,-26.751345999999998,-26.338072999999998,-26.370359999999998,-26.329515999999998,-26.803053,-27.341413,-27.51195,-27.603081999999997,-27.629210999999998,-27.813439,-27.443762,-27.538473,-27.609593,-28.288266999999998,-28.226622,-28.277963999999997,-28.359461999999997,-27.232044,-27.46099,-27.267377,-27.085003,-27.089788,-27.128071,-27.843659,-28.804824,-28.854332,-28.915255,-29.067373999999997,-28.830361,-29.375857,-29.270754,-29.546066,-29.780141999999998,-29.800499,-29.318312,-29.569736,-31.022243999999997,-31.182346,-32.991171,-32.994564,-33.007013,-32.877244,-33.275394999999996,-33.634921,-33.911125999999996,-33.928539,-34.209505,-34.231718,-34.308667,-34.488772,-34.558040999999996,-33.772653,-33.575745999999995,-32.890978,-34.068234,-34.384844,-34.875242,-35.233019,-35.091242,-35.271625,-35.300498,-35.479448999999995,-35.272087,-34.954691,-36.045753,-36.208006,-36.449861,-36.255716,-37.039943,-38.702421,-39.099799,-39.019953,-38.965176,-39.199767,-39.24859,-39.759865999999995,-39.996514999999995,-40.128121,-40.082651,-40.427226999999995,-40.358326,-40.279334,-39.917622,-39.821303,-40.029696,-40.010064,-40.388712,-40.472907,-40.482191,-40.462475,-40.416987,-40.386717999999995,-40.424293999999996,-40.331795,-40.316865,-40.444202,-40.992402,-41.994237,-42.308229,-42.557672,-42.510127999999995,-42.33442,-42.554179999999995,-42.878749,-42.969609,-43.450755,-43.385898,-43.438216999999995,-43.387975999999995,-44.276584,-44.241664,-44.084468,-44.103192,-44.112409,-44.25954,-44.174786999999995,-44.183502,-44.257723999999996,-44.173308999999996,-44.197838999999995,-44.368657999999996,-44.453409,-44.461123,-46.15408,-46.682120999999995,-47.032241,-48.24652,-48.228424,-48.317281,-48.585533,-48.503614999999996,-48.906816,-50.289164,-49.058929,-49.274074,-49.365373,-49.449912,-49.34267,-49.353398,-49.994417999999996,-50.920629,-50.919998,-50.695980999999996,-51.013698,-51.40029,-51.42854,-51.433561999999995,-51.558205,-51.834702,-51.892067999999995,-51.910137999999996,-51.895759,-51.938116,-53.082648,-53.253474,-53.373762,-53.527381999999996,-53.589987,-53.632523,-53.464428999999996,-53.177572999999995,-52.596905,-52.704791,-52.628356,-52.6993,-52.948575,-53.072845,-53.126234,-53.21077,-53.173775,-53.228553,-53.224036,-53.376971999999995,-52.801581999999996,-52.153396,-52.152286,-52.201722999999994,-52.194497999999996,-52.165763999999996,-52.837117,-52.793594,-52.867152,-53.742186,-54.481612,-54.482155,-54.542576,-54.520253999999994,-54.525966999999994,-54.484505999999996,-54.407993,-54.28754,-54.47192,-54.543625999999996,-55.012978,-55.177682999999995,-55.493773999999995,-55.804106999999995,-55.286317,-54.996817,-54.726023999999995,-54.727796,-54.495677,-56.418476,-56.421543,-56.719823999999996,-56.731108,-56.713604999999994,-56.57407,-56.477560999999994,-56.348406,-56.346069,-56.371525,-56.388265999999994,-57.118449999999996,-57.085372,-56.986345,-56.981168,-57.13684,-57.107485,-57.150966999999994,-57.431833,-57.501101999999996,-57.446296,-57.965087999999994,-57.775222,-57.960136999999996,-58.196441,-58.184165,-58.444711,-58.596295999999995,-58.876526999999996,-58.985129,-59.12379,-59.170317999999995,-59.029954999999994,-58.81225,-58.841542999999994,-58.856396999999994,-58.429026,-58.972496,-59.318577,-59.313874,-59.352179,-59.419041,-59.38977,-59.405657999999995,-59.414434,-59.398885,-59.273941,-59.312628,-59.200998,-59.070603,-58.897946,-58.848648999999995,-58.859721,-58.9358,-58.95025,-59.091969,-59.507908,-59.729453,-59.791630999999995,-60.455703,-60.590322,-60.700694,-60.937469,-61.131099999999996,-61.316232,-61.397886,-61.223591,-61.109038,-61.163321999999994,-61.124624999999995,-60.778344,-60.847876,-60.9013,-60.954345999999994,-61.021805,-61.017225999999994,-61.119541999999996,-61.270120999999996,-61.262246,-61.131034,-61.154343999999995,-60.923292999999994,-60.933121,-60.8253,-60.814217,-60.770723],\n",
"\"type\":[\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Call\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\",\"Put\"]\n",
"},\n",
"\"mapping\":{\n",
"\"x\":\"tape_dt_tz_str\",\n",
"\"y\":\"net_premium\",\n",
"\"color\":\"type\"\n",
"},\n",
"\"data_meta\":{\n",
"\"series_annotations\":[{\n",
"\"column\":\"tape_dt_tz\",\n",
"\"type\":\"datetime\"\n",
"}]\n",
"},\n",
"\"ggtitle\":{\n",
"\"text\":\"NVDA Net Premium (in $M)\"\n",
"},\n",
"\"theme\":{\n",
"\"name\":\"none\",\n",
"\"line\":{\n",
"\"color\":\"#0d1117\",\n",
"\"size\":1.0,\n",
"\"blank\":false\n",
"},\n",
"\"rect\":{\n",
"\"fill\":\"#ffffff\",\n",
"\"color\":\"#0d1117\",\n",
"\"size\":1.0,\n",
"\"blank\":false\n",
"},\n",
"\"text\":{\n",
"\"color\":\"#0d1117\",\n",
"\"blank\":false\n",
"},\n",
"\"axis_ontop\":true,\n",
"\"axis_ticks\":{\n",
"\"color\":\"#161b22\",\n",
"\"blank\":false\n",
"},\n",
"\"legend_background\":{\n",
"\"size\":1.0,\n",
"\"blank\":false\n",
"},\n",
"\"legend_position\":\"none\",\n",
"\"panel_grid_major\":{\n",
"\"color\":\"#21262d\",\n",
"\"size\":0.5,\n",
"\"linetype\":\"dashed\",\n",
"\"blank\":false\n",
"},\n",
"\"panel_grid_minor\":{\n",
"\"blank\":true\n",
"},\n",
"\"plot_title\":{\n",
"\"color\":\"#0d1117\",\n",
"\"hjust\":0.5,\n",
"\"blank\":false\n",
"},\n",
"\"axis_tooltip\":{\n",
"\"color\":\"#161b22\",\n",
"\"blank\":false\n",
"},\n",
"\"tooltip\":{\n",
"\"color\":\"#21262d\",\n",
"\"blank\":false\n",
"},\n",
"\"axis_title_x\":{\n",
"\"blank\":true\n",
"},\n",
"\"axis_title_y\":{\n",
"\"blank\":true\n",
"}\n",
"},\n",
"\"kind\":\"plot\",\n",
"\"scales\":[{\n",
"\"name\":\"Time (America/Chicago)\",\n",
"\"aesthetic\":\"x\"\n",
"},{\n",
"\"name\":\"Net Premium\",\n",
"\"aesthetic\":\"y\"\n",
"},{\n",
"\"aesthetic\":\"color\",\n",
"\"breaks\":[\"Call\",\"Put\"],\n",
"\"values\":[\"#77bdfb\",\"#fa7970\"]\n",
"},{\n",
"\"aesthetic\":\"y\",\n",
"\"format\":\"{.2f}M\"\n",
"}],\n",
"\"layers\":[{\n",
"\"geom\":\"line\",\n",
"\"mapping\":{\n",
"},\n",
"\"data_meta\":{\n",
"},\n",
"\"size\":1.0,\n",
"\"data\":{\n",
"}\n",
"}],\n",
"\"metainfo_list\":[]\n",
"}]\n",
"};\n",
" var plotContainer = document.getElementById(\"pAwp2c\");\n",
" window.letsPlotCall(function() {{\n",
" LetsPlot.buildPlotFromProcessedSpecs(plotSpec, -1, -1, plotContainer);\n",
" }});\n",
" })();\n",
" </script>"
],
"text/plain": [
"<lets_plot.plot.subplots.SupPlotsSpec at 0x7f002ae6b8b0>"
]
},
"execution_count": 4,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"tickers = ['META', 'AAPL', 'GOOGL', 'MSFT', 'AMZN', 'NFLX', 'TSLA', 'NVDA']\n",
"\n",
"dfs = []\n",
"plot_dfs = []\n",
"plots = []\n",
"color_mapping = {\n",
" 'Call': theme_colors['blue'],\n",
" 'Put': theme_colors['red']\n",
"}\n",
"for ticker in tickers:\n",
" url = f'https://api.unusualwhales.com/api/stock/{ticker}/net-prem-ticks'\n",
" r = requests.get(url, headers=headers)\n",
"\n",
" if r.status_code == 200:\n",
" df = expand_net_prem_ticks(r.json()['data'], 'America/Chicago')\n",
" dfs.append(df)\n",
" plot_df = create_plot_df(df)\n",
" plot_dfs.append(plot_df)\n",
" p = create_plot(\n",
" plot_df,\n",
" ticker,\n",
" 'America/Chicago',\n",
" color_mapping,\n",
" 1,\n",
" legend_position='none',\n",
" hide_axis_labels=True\n",
" )\n",
" plots.append(p)\n",
" else:\n",
" print(f'Error fetching data for {ticker}')\n",
"gggrid(plots, ncol=4)"
]
}
],
"metadata": {
"kernelspec": {
"display_name": "dans-magic-house-uvW-KuUb-py3.10",
"language": "python",
"name": "python3"
},
"language_info": {
"codemirror_mode": {
"name": "ipython",
"version": 3
},
"file_extension": ".py",
"mimetype": "text/x-python",
"name": "python",
"nbconvert_exporter": "python",
"pygments_lexer": "ipython3",
"version": "3.10.12"
}
},
"nbformat": 4,
"nbformat_minor": 2
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment