{
    "Function": "setPricePointNext",
    "File": "contracts/market/OverlayV1PricePoint.sol",
    "Parent Contracts": [],
    "High-Level Calls": [],
    "Internal Calls": [
        "readPricePoint"
    ],
    "Library Calls": [],
    "Low-Level Calls": [],
    "Code": "function setPricePointNext(\n        PricePoint memory _pricePoint\n    ) internal {\n\n        _pricePoints.push(_pricePoint);\n\n        (   uint _bid, \n            uint _ask,  \n            uint _depth ) = readPricePoint(_pricePoint);\n\n        emit NewPricePoint(\n            _bid, \n            _ask, \n            _depth\n        );\n\n    }"
}