Plots


Jump to API response

This endpoint handles manipulation of Plotly plot files.

Reference

Authorization


Any user with or without a Plotly account may view public plots. For private plots, see authentication.

Actions


list

Listing all public plots can be done via a GET request to this endpoint. By default, plots will be listed in order of date created. The order_by query parameter is accepted at this endpoint. Currently, only ordering by views is supported. It is possible to filter the plots by quality with min_quality or max_quality as query parameter.

Example:

// GET https://api.plotly.com/v2/plots/ ---> 200

// GET https://api.plotly.com/v2/plots/?order_by=-views ---> 200

// GET https://api.plotly.com/v2/plots/?min_quality=5 ---> 200

// GET https://api.plotly.com/v2/plots/?max_quality=5 ---> 200

feed

Listing all handpicked feed plots can be done via a GET request to this endpoint. By default, plots will be listed in a random order.

Example:

// GET https://api.plotly.com/v2/plots/feed ---> 200

create

You can create new plot resources here. The only required field is 'figure'. Currently, the figure is restricted to only contain references to grid data. That is, this will fail if raw data arrays are passed in. To create and manipulate underlying grids for plots, see the grids endpoint.

Example:

// This fails because a figure field is required.
// POST https://api.plotly.com/v2/plots ---> 400 Bad Request
{}

// This fails because the figure has raw data
//POST https://api.plotly.com/v2/plots ---> 400 Bad Request
{
    "figure": {"data": [{"y": ['this', 'is', 'raw', 'data']}]}
}

// This succeeds because the figure has src keys, not raw data.
//POST https://api.plotly.com/v2/plots ---> 200 OK
{
    "figure": {"data": [{"ysrc": "sven:88:u8nd62"}]}
}

When creating a grid, you can optionally specify a source_fid to specify where a plot has come from:

  • source_fid: the fid of a plot that was copied (and presumably edited) to produce this one

detail

There is a lot of meta information stored about plot files including filename, title, share_url, and content_url to name a few.

This information can only be reached with a GET to this endpoint.

Example:

// GET https://api.plotly.com/v2/plots/iheartgraphs:90

content

The contents of a plot can be downloaded via the content resource. The plot content contains referenced grid/column data by default. If you wish to return the raw grid/column data, the inline_data=true query must be included in the request url. The Content-Type header will be appropriately set for the response body.

Alternatively, you can set ?map_data=unreadable to append a mapping of sources to data that belongs to grids which are unreadable for the requestor. This is useful when you have read access to another users plot, but that plot contains grid references which you don't have access to.

Examples:

// Returns referenced grid/column data
// GET https://api.plotly.com/v2/plots/iheartgraphs:90/content ---> 200 OK

// Returns full grid/column data
// GET https://api.plotly.com/v2/plots/iheartgraphs:90/content?inline_data=true ---> 200 OK

// Returns full grid/column data when requestor doesn't have permission
// to read the referenced grid.
// GET https://api.plotly.com/v2/plots/iheartgraphs:90/content?map_data=unreadable ---> 200 OK

GET /v2/plots/AlexanderS83:3/?format=api
HTTP 200 OK
Allow: GET, PUT, PATCH, DELETE, HEAD, OPTIONS
Content-Type: application/json
Vary: Accept

{
    "creation_time": "2019-12-07T00:39:11.751968Z",
    "comments": {
        "results": [],
        "count": 0
    },
    "parented": true,
    "embed_url": "https://chart-studio.plotly.com/~AlexanderS83/3.embed",
    "fid": "AlexanderS83:3",
    "filename": "Plot 3",
    "filetype": "plot",
    "img_url": "https://storage.googleapis.com/plotly-prod-images/AlexanderS83/3/9_BAOQ2J88MFENLWTND0H3BCSSSUE4UU.png",
    "image_urls": {
        "default": "https://storage.googleapis.com/plotly-prod-images/AlexanderS83/3/2_GEIL07SQ4S7DN7DUOK08MINCXLGNCG.png",
        "block-thumb": "https://storage.googleapis.com/plotly-prod-images/AlexanderS83/3/8_X0A6J106URFOHLIPZWYI5GC9BAQX8J.png",
        "list-thumb": "https://storage.googleapis.com/plotly-prod-images/AlexanderS83/3/9_BAOQ2J88MFENLWTND0H3BCSSSUE4UU.png"
    },
    "api_urls": {
        "files": "https://api.plotly.com/v2/files/AlexanderS83:3",
        "plots": "https://api.plotly.com/v2/plots/AlexanderS83:3",
        "parent": "https://api.plotly.com/v2/folders/home?user=AlexanderS83"
    },
    "owner": "AlexanderS83",
    "parent": -1,
    "preview": "",
    "referencers": [],
    "references": [],
    "title": "",
    "views": 1,
    "web_url": "https://chart-studio.plotly.com/~AlexanderS83/3/",
    "world_readable": true,
    "date_modified": "2019-12-07T00:39:11.766Z",
    "stars": {
        "results": [],
        "count": 0
    },
    "collaborators": {
        "results": [],
        "count": 0
    },
    "subfolder_count": null,
    "refresh_interval": null,
    "organize_view_url": "https://chart-studio.plotly.com/~AlexanderS83/3/",
    "current_user_permission": "read",
    "is_theme": null,
    "is_template": false,
    "autosize": true,
    "caption": "",
    "figure": {
        "data": [
            {
                "line": {
                    "dash": "solid",
                    "color": "black",
                    "shape": "spline",
                    "width": 3
                },
                "meta": {
                    "columnNames": {
                        "x": "data.0.x",
                        "y": "data.0.y"
                    }
                },
                "mode": "lines",
                "name": "SPX Px",
                "type": "scatter",
                "xsrc": "AlexanderS83:2:51617e",
                "ysrc": "AlexanderS83:2:2a9379",
                "xaxis": "x",
                "yaxis": "y",
                "contours": {
                    "end": 20,
                    "size": 2,
                    "start": 2
                },
                "bandwidth": 0,
                "boxpoints": false,
                "autocontour": true,
                "orientation": "v",
                "autocolorscale": true
            },
            {
                "line": {
                    "color": "rgb(235, 23, 196)",
                    "width": 2
                },
                "meta": {
                    "columnNames": {
                        "x": "data.1.x",
                        "y": "data.1.y"
                    }
                },
                "mode": "lines",
                "name": "High Gamma Strike",
                "type": "scatter",
                "xsrc": "AlexanderS83:2:1451b4",
                "ysrc": "AlexanderS83:2:22a872",
                "xaxis": "x",
                "yaxis": "y"
            },
            {
                "line": {
                    "color": "rgb(178, 178, 18)",
                    "width": 2
                },
                "meta": {
                    "columnNames": {
                        "x": "data.3.x",
                        "y": "data.3.y"
                    }
                },
                "mode": "lines",
                "name": "Volatility Trigger",
                "type": "scatter",
                "xsrc": "AlexanderS83:2:51c59e",
                "ysrc": "AlexanderS83:2:b73f99",
                "xaxis": "x",
                "yaxis": "y"
            },
            {
                "line": {
                    "color": "rgb(232, 15, 15)",
                    "width": 2
                },
                "meta": {
                    "columnNames": {
                        "x": "data.2.x",
                        "y": "data.2.y"
                    }
                },
                "mode": "lines",
                "name": "Resistance Strike",
                "type": "scatter",
                "xsrc": "AlexanderS83:2:adb520",
                "ysrc": "AlexanderS83:2:36e2d0",
                "xaxis": "x",
                "yaxis": "y",
                "visible": "legendonly"
            },
            {
                "line": {
                    "color": "rgb(9, 245, 202)",
                    "width": 2
                },
                "meta": {
                    "columnNames": {
                        "x": "data.4.x",
                        "y": "data.4.y"
                    }
                },
                "mode": "lines",
                "name": "Largest Put Wall",
                "type": "scatter",
                "xsrc": "AlexanderS83:2:e33379",
                "ysrc": "AlexanderS83:2:2d48ff",
                "xaxis": "x",
                "yaxis": "y"
            },
            {
                "line": {
                    "color": "black",
                    "width": 2
                },
                "meta": {
                    "columnNames": {
                        "x": "data.7.x",
                        "y": "data.7.y"
                    }
                },
                "mode": "lines",
                "name": "Call:Put Gamma Tilt",
                "type": "scatter",
                "xsrc": "AlexanderS83:2:6692f9",
                "ysrc": "AlexanderS83:2:3cf2de",
                "xaxis": "x4",
                "yaxis": "y4",
                "boxpoints": false,
                "autocolorscale": true
            },
            {
                "line": {
                    "color": "Purple",
                    "width": 2
                },
                "meta": {
                    "columnNames": {
                        "x": "data.8.x",
                        "y": "data.8.y"
                    }
                },
                "mode": "lines",
                "name": "Vol Trigger Drift",
                "type": "scatter",
                "xsrc": "AlexanderS83:2:97b511",
                "ysrc": "AlexanderS83:2:b367cb",
                "xaxis": "x5",
                "yaxis": "y5",
                "visible": true,
                "contours": {
                    "end": 16,
                    "size": 2,
                    "start": 2
                },
                "bandwidth": 0,
                "autocontour": true,
                "orientation": "v",
                "autocolorscale": true
            }
        ],
        "frames": [],
        "layout": {
            "scene": {
                "aspectmode": "auto",
                "aspectratio": {
                    "x": 1,
                    "y": 1,
                    "z": 1
                }
            },
            "title": {
                "text": "SpotGamma Model Backtest"
            },
            "xaxis": {
                "side": "bottom",
                "type": "date",
                "range": [
                    "2019-04-04",
                    "2019-12-05"
                ],
                "title": {
                    "text": "Date"
                },
                "anchor": "y",
                "domain": [
                    0,
                    1
                ],
                "autorange": true,
                "gridwidth": 1,
                "zerolinewidth": 1
            },
            "yaxis": {
                "type": "linear",
                "range": [
                    2727.5555555555557,
                    3176.4444444444443
                ],
                "title": {
                    "text": "S&P500 (SPX) Price Level"
                },
                "anchor": "x",
                "domain": [
                    0.7,
                    1
                ],
                "autorange": true
            },
            "xaxis4": {
                "type": "date",
                "range": [
                    "2019-04-04",
                    "2019-12-05"
                ],
                "anchor": "y4",
                "domain": [
                    0,
                    1
                ],
                "autorange": true
            },
            "xaxis5": {
                "type": "date",
                "range": [
                    "2019-04-04",
                    "2019-12-05"
                ],
                "anchor": "y5",
                "domain": [
                    0,
                    1
                ],
                "autorange": true
            },
            "yaxis4": {
                "type": "linear",
                "range": [
                    1.208888888888889,
                    3.031111111111111
                ],
                "anchor": "x4",
                "domain": [
                    0.5,
                    0.625
                ],
                "autorange": true
            },
            "yaxis5": {
                "type": "linear",
                "range": [
                    -0.03954224483358475,
                    0.03943824505844912
                ],
                "anchor": "x5",
                "domain": [
                    0.25,
                    0.375
                ],
                "autorange": true
            },
            "ternary": {},
            "template": {
                "data": {
                    "bar": [
                        {
                            "type": "bar",
                            "marker": {
                                "colorbar": {
                                    "ticks": "outside",
                                    "ticklen": 8,
                                    "tickcolor": "rgb(36,36,36)",
                                    "tickwidth": 2,
                                    "outlinewidth": 0
                                }
                            }
                        }
                    ],
                    "table": [
                        {
                            "type": "table",
                            "cells": {
                                "fill": {
                                    "color": "rgb(231,231,240)"
                                },
                                "line": {
                                    "color": "white"
                                }
                            },
                            "header": {
                                "fill": {
                                    "color": "rgb(183,183,191)"
                                },
                                "line": {
                                    "color": "white"
                                }
                            }
                        }
                    ],
                    "carpet": [
                        {
                            "type": "carpet",
                            "aaxis": {
                                "gridcolor": "white",
                                "linecolor": "white",
                                "endlinecolor": "rgb(36,36,36)",
                                "minorgridcolor": "white",
                                "startlinecolor": "rgb(36,36,36)"
                            },
                            "baxis": {
                                "gridcolor": "white",
                                "linecolor": "white",
                                "endlinecolor": "rgb(36,36,36)",
                                "minorgridcolor": "white",
                                "startlinecolor": "rgb(36,36,36)"
                            }
                        }
                    ],
                    "mesh3d": [
                        {
                            "type": "mesh3d",
                            "colorbar": {
                                "ticks": "outside",
                                "ticklen": 8,
                                "tickcolor": "rgb(36,36,36)",
                                "tickwidth": 2,
                                "outlinewidth": 0
                            }
                        }
                    ],
                    "contour": [
                        {
                            "type": "contour",
                            "colorbar": {
                                "ticks": "outside",
                                "ticklen": 8,
                                "tickcolor": "rgb(36,36,36)",
                                "tickwidth": 2,
                                "outlinewidth": 0
                            },
                            "autocolorscale": true
                        }
                    ],
                    "heatmap": [
                        {
                            "type": "heatmap",
                            "colorbar": {
                                "ticks": "outside",
                                "ticklen": 8,
                                "tickcolor": "rgb(36,36,36)",
                                "tickwidth": 2,
                                "outlinewidth": 0
                            },
                            "autocolorscale": true
                        }
                    ],
                    "scatter": [
                        {
                            "type": "scatter",
                            "marker": {
                                "colorbar": {
                                    "ticks": "outside",
                                    "ticklen": 8,
                                    "tickcolor": "rgb(36,36,36)",
                                    "tickwidth": 2,
                                    "outlinewidth": 0
                                }
                            }
                        }
                    ],
                    "surface": [
                        {
                            "type": "surface",
                            "colorbar": {
                                "ticks": "outside",
                                "ticklen": 8,
                                "tickcolor": "rgb(36,36,36)",
                                "tickwidth": 2,
                                "outlinewidth": 0
                            }
                        }
                    ],
                    "heatmapgl": [
                        {
                            "type": "heatmapgl",
                            "colorbar": {
                                "ticks": "outside",
                                "ticklen": 8,
                                "tickcolor": "rgb(36,36,36)",
                                "tickwidth": 2,
                                "outlinewidth": 0
                            }
                        }
                    ],
                    "histogram": [
                        {
                            "type": "histogram",
                            "marker": {
                                "colorbar": {
                                    "ticks": "outside",
                                    "ticklen": 8,
                                    "tickcolor": "rgb(36,36,36)",
                                    "tickwidth": 2,
                                    "outlinewidth": 0
                                }
                            }
                        }
                    ],
                    "parcoords": [
                        {
                            "line": {
                                "colorbar": {
                                    "ticks": "outside",
                                    "ticklen": 8,
                                    "tickcolor": "rgb(36,36,36)",
                                    "tickwidth": 2,
                                    "outlinewidth": 0
                                }
                            },
                            "type": "parcoords"
                        }
                    ],
                    "scatter3d": [
                        {
                            "type": "scatter3d",
                            "marker": {
                                "colorbar": {
                                    "ticks": "outside",
                                    "ticklen": 8,
                                    "tickcolor": "rgb(36,36,36)",
                                    "tickwidth": 2,
                                    "outlinewidth": 0
                                }
                            }
                        }
                    ],
                    "scattergl": [
                        {
                            "type": "scattergl",
                            "marker": {
                                "colorbar": {
                                    "ticks": "outside",
                                    "ticklen": 8,
                                    "tickcolor": "rgb(36,36,36)",
                                    "tickwidth": 2,
                                    "outlinewidth": 0
                                }
                            }
                        }
                    ],
                    "choropleth": [
                        {
                            "type": "choropleth",
                            "colorbar": {
                                "ticks": "outside",
                                "ticklen": 8,
                                "tickcolor": "rgb(36,36,36)",
                                "tickwidth": 2,
                                "outlinewidth": 0
                            }
                        }
                    ],
                    "scattergeo": [
                        {
                            "type": "scattergeo",
                            "marker": {
                                "colorbar": {
                                    "ticks": "outside",
                                    "ticklen": 8,
                                    "tickcolor": "rgb(36,36,36)",
                                    "tickwidth": 2,
                                    "outlinewidth": 0
                                }
                            }
                        }
                    ],
                    "histogram2d": [
                        {
                            "type": "histogram2d",
                            "colorbar": {
                                "ticks": "outside",
                                "ticklen": 8,
                                "tickcolor": "rgb(36,36,36)",
                                "tickwidth": 2,
                                "outlinewidth": 0
                            },
                            "autocolorscale": true
                        }
                    ],
                    "scatterpolar": [
                        {
                            "type": "scatterpolar",
                            "marker": {
                                "colorbar": {
                                    "ticks": "outside",
                                    "ticklen": 8,
                                    "tickcolor": "rgb(36,36,36)",
                                    "tickwidth": 2,
                                    "outlinewidth": 0
                                }
                            }
                        }
                    ],
                    "contourcarpet": [
                        {
                            "type": "contourcarpet",
                            "colorbar": {
                                "ticks": "outside",
                                "ticklen": 8,
                                "tickcolor": "rgb(36,36,36)",
                                "tickwidth": 2,
                                "outlinewidth": 0
                            }
                        }
                    ],
                    "scattercarpet": [
                        {
                            "type": "scattercarpet",
                            "marker": {
                                "colorbar": {
                                    "ticks": "outside",
                                    "ticklen": 8,
                                    "tickcolor": "rgb(36,36,36)",
                                    "tickwidth": 2,
                                    "outlinewidth": 0
                                }
                            }
                        }
                    ],
                    "scattermapbox": [
                        {
                            "type": "scattermapbox",
                            "marker": {
                                "colorbar": {
                                    "ticks": "outside",
                                    "ticklen": 8,
                                    "tickcolor": "rgb(36,36,36)",
                                    "tickwidth": 2,
                                    "outlinewidth": 0
                                }
                            }
                        }
                    ],
                    "scatterpolargl": [
                        {
                            "type": "scatterpolargl",
                            "marker": {
                                "colorbar": {
                                    "ticks": "outside",
                                    "ticklen": 8,
                                    "tickcolor": "rgb(36,36,36)",
                                    "tickwidth": 2,
                                    "outlinewidth": 0
                                }
                            }
                        }
                    ],
                    "scatterternary": [
                        {
                            "type": "scatterternary",
                            "marker": {
                                "colorbar": {
                                    "ticks": "outside",
                                    "ticklen": 8,
                                    "tickcolor": "rgb(36,36,36)",
                                    "tickwidth": 2,
                                    "outlinewidth": 0
                                }
                            }
                        }
                    ],
                    "histogram2dcontour": [
                        {
                            "type": "histogram2dcontour",
                            "colorbar": {
                                "ticks": "outside",
                                "ticklen": 8,
                                "tickcolor": "rgb(36,36,36)",
                                "tickwidth": 2,
                                "outlinewidth": 0
                            },
                            "autocolorscale": true
                        }
                    ]
                },
                "layout": {
                    "geo": {
                        "bgcolor": "white",
                        "showland": true,
                        "lakecolor": "white",
                        "landcolor": "rgb(234,234,242)",
                        "showlakes": true,
                        "subunitcolor": "white"
                    },
                    "font": {
                        "color": "rgb(36,36,36)"
                    },
                    "polar": {
                        "bgcolor": "rgb(234,234,242)",
                        "radialaxis": {
                            "ticks": "",
                            "showgrid": true,
                            "gridcolor": "white",
                            "linecolor": "white"
                        },
                        "angularaxis": {
                            "ticks": "",
                            "showgrid": true,
                            "gridcolor": "white",
                            "linecolor": "white"
                        }
                    },
                    "scene": {
                        "xaxis": {
                            "ticks": "",
                            "showgrid": true,
                            "gridcolor": "white",
                            "gridwidth": 2,
                            "linecolor": "white",
                            "zerolinecolor": "white",
                            "showbackground": true,
                            "backgroundcolor": "rgb(234,234,242)"
                        },
                        "yaxis": {
                            "ticks": "",
                            "showgrid": true,
                            "gridcolor": "white",
                            "gridwidth": 2,
                            "linecolor": "white",
                            "zerolinecolor": "white",
                            "showbackground": true,
                            "backgroundcolor": "rgb(234,234,242)"
                        },
                        "zaxis": {
                            "ticks": "",
                            "showgrid": true,
                            "gridcolor": "white",
                            "gridwidth": 2,
                            "linecolor": "white",
                            "zerolinecolor": "white",
                            "showbackground": true,
                            "backgroundcolor": "rgb(234,234,242)"
                        }
                    },
                    "xaxis": {
                        "ticks": "",
                        "showgrid": true,
                        "gridcolor": "white",
                        "linecolor": "white",
                        "automargin": true,
                        "zerolinecolor": "white"
                    },
                    "yaxis": {
                        "ticks": "",
                        "showgrid": true,
                        "gridcolor": "white",
                        "linecolor": "white",
                        "automargin": true,
                        "zerolinecolor": "white"
                    },
                    "ternary": {
                        "aaxis": {
                            "ticks": "",
                            "showgrid": true,
                            "gridcolor": "white",
                            "linecolor": "white"
                        },
                        "baxis": {
                            "ticks": "",
                            "showgrid": true,
                            "gridcolor": "white",
                            "linecolor": "white"
                        },
                        "caxis": {
                            "ticks": "",
                            "showgrid": true,
                            "gridcolor": "white",
                            "linecolor": "white"
                        },
                        "bgcolor": "rgb(234,234,242)"
                    },
                    "colorway": [
                        "rgb(76,114,176)",
                        "rgb(221,132,82)",
                        "rgb(85,168,104)",
                        "rgb(196,78,82)",
                        "rgb(129,114,179)",
                        "rgb(147,120,96)",
                        "rgb(218,139,195)",
                        "rgb(140,140,140)",
                        "rgb(204,185,116)",
                        "rgb(100,181,205)"
                    ],
                    "hovermode": "closest",
                    "colorscale": {
                        "diverging": [
                            [
                                0,
                                "#67001f"
                            ],
                            [
                                0.1,
                                "#b2182b"
                            ],
                            [
                                0.2,
                                "#d6604d"
                            ],
                            [
                                0.3,
                                "#f4a582"
                            ],
                            [
                                0.4,
                                "#fddbc7"
                            ],
                            [
                                0.5,
                                "#f7f7f7"
                            ],
                            [
                                0.6,
                                "#d1e5f0"
                            ],
                            [
                                0.7,
                                "#92c5de"
                            ],
                            [
                                0.8,
                                "#4393c3"
                            ],
                            [
                                0.9,
                                "#2166ac"
                            ],
                            [
                                1,
                                "#053061"
                            ]
                        ],
                        "sequential": [
                            [
                                0,
                                "rgb(2,4,25)"
                            ],
                            [
                                0.06274509803921569,
                                "rgb(24,15,41)"
                            ],
                            [
                                0.12549019607843137,
                                "rgb(47,23,57)"
                            ],
                            [
                                0.18823529411764706,
                                "rgb(71,28,72)"
                            ],
                            [
                                0.25098039215686274,
                                "rgb(97,30,82)"
                            ],
                            [
                                0.3137254901960784,
                                "rgb(123,30,89)"
                            ],
                            [
                                0.3764705882352941,
                                "rgb(150,27,91)"
                            ],
                            [
                                0.4392156862745098,
                                "rgb(177,22,88)"
                            ],
                            [
                                0.5019607843137255,
                                "rgb(203,26,79)"
                            ],
                            [
                                0.5647058823529412,
                                "rgb(223,47,67)"
                            ],
                            [
                                0.6274509803921569,
                                "rgb(236,76,61)"
                            ],
                            [
                                0.6901960784313725,
                                "rgb(242,107,73)"
                            ],
                            [
                                0.7529411764705882,
                                "rgb(244,135,95)"
                            ],
                            [
                                0.8156862745098039,
                                "rgb(245,162,122)"
                            ],
                            [
                                0.8784313725490196,
                                "rgb(246,188,153)"
                            ],
                            [
                                0.9411764705882353,
                                "rgb(247,212,187)"
                            ],
                            [
                                1,
                                "rgb(250,234,220)"
                            ]
                        ],
                        "sequentialminus": [
                            [
                                0,
                                "rgb(2,4,25)"
                            ],
                            [
                                0.06274509803921569,
                                "rgb(24,15,41)"
                            ],
                            [
                                0.12549019607843137,
                                "rgb(47,23,57)"
                            ],
                            [
                                0.18823529411764706,
                                "rgb(71,28,72)"
                            ],
                            [
                                0.25098039215686274,
                                "rgb(97,30,82)"
                            ],
                            [
                                0.3137254901960784,
                                "rgb(123,30,89)"
                            ],
                            [
                                0.3764705882352941,
                                "rgb(150,27,91)"
                            ],
                            [
                                0.4392156862745098,
                                "rgb(177,22,88)"
                            ],
                            [
                                0.5019607843137255,
                                "rgb(203,26,79)"
                            ],
                            [
                                0.5647058823529412,
                                "rgb(223,47,67)"
                            ],
                            [
                                0.6274509803921569,
                                "rgb(236,76,61)"
                            ],
                            [
                                0.6901960784313725,
                                "rgb(242,107,73)"
                            ],
                            [
                                0.7529411764705882,
                                "rgb(244,135,95)"
                            ],
                            [
                                0.8156862745098039,
                                "rgb(245,162,122)"
                            ],
                            [
                                0.8784313725490196,
                                "rgb(246,188,153)"
                            ],
                            [
                                0.9411764705882353,
                                "rgb(247,212,187)"
                            ],
                            [
                                1,
                                "rgb(250,234,220)"
                            ]
                        ]
                    },
                    "plot_bgcolor": "rgb(234,234,242)",
                    "paper_bgcolor": "white",
                    "shapedefaults": {
                        "line": {
                            "width": 0
                        },
                        "opacity": 0.5,
                        "fillcolor": "rgb(67,103,167)"
                    },
                    "annotationdefaults": {
                        "arrowcolor": "rgb(67,103,167)"
                    }
                },
                "themeRef": "SEABORN"
            },
            "annotations": [
                {
                    "x": 0.5,
                    "y": 0.9806629834254141,
                    "font": {
                        "size": 16
                    },
                    "text": "Spot Gamma Market Levels vs S&P500",
                    "xref": "paper",
                    "yref": "paper",
                    "xanchor": "center",
                    "yanchor": "bottom",
                    "showarrow": false
                },
                {
                    "x": 0.5,
                    "y": 0.6789473684210526,
                    "font": {
                        "size": 16
                    },
                    "text": "",
                    "xref": "paper",
                    "yref": "paper",
                    "xanchor": "center",
                    "yanchor": "bottom",
                    "showarrow": false
                },
                {
                    "x": 0.5,
                    "y": 0.4842105263157894,
                    "font": {
                        "size": 16
                    },
                    "text": "",
                    "xref": "paper",
                    "yref": "paper",
                    "xanchor": "center",
                    "yanchor": "bottom",
                    "showarrow": false
                },
                {
                    "x": 0.49295420231504783,
                    "y": 0.6025491906561985,
                    "font": {
                        "size": 16
                    },
                    "text": "Call:Put Gamma Tilt",
                    "xref": "paper",
                    "yref": "paper",
                    "xanchor": "center",
                    "yanchor": "bottom",
                    "showarrow": false
                },
                {
                    "x": 0.4944640161046804,
                    "y": 0.3498012988271785,
                    "font": {
                        "size": 16
                    },
                    "text": "SPX Drift From Zero Gamma",
                    "xref": "paper",
                    "yref": "paper",
                    "xanchor": "center",
                    "yanchor": "bottom",
                    "showarrow": false
                }
            ]
        }
    },
    "height": null,
    "width": null,
    "user": {
        "profile_url": "https://chart-studio.plotly.com/~AlexanderS83",
        "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/2.jpg",
        "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-7.jpg",
        "bio": "",
        "nickname": "",
        "website": "",
        "stream_tokens": null,
        "feature_set_id": null,
        "csrf_token": null,
        "date_joined": "2019-12-07 00:30:35",
        "mapbox_access_tokens": null,
        "has_password": null,
        "username": "AlexanderS83",
        "email": null,
        "is_active": null,
        "readonly": null,
        "is_dash_creator": null,
        "dash_created_count": null,
        "is_chart_creator": null,
        "charts_created_count": null
    }
}