{
    "Function": "getRebalanceRange",
    "File": "contracts/test/LibraryWrapper.sol",
    "Parent Contracts": [
        "contracts/helpers/StrategyTypes.sol"
    ],
    "High-Level Calls": [
        "IStrategy",
        "StrategyLibrary"
    ],
    "Internal Calls": [],
    "Library Calls": [
        "getRange"
    ],
    "Low-Level Calls": [],
    "Code": "function getRebalanceRange(int256 expectedValue) external view returns (int256) {\n        uint256 range = strategy.rebalanceThreshold();\n        return StrategyLibrary.getRange(expectedValue, range);\n    }"
}