@qtsurfer/api-client
    Preparing search index...

    Type Alias GetSweepSensitivityData

    type GetSweepSensitivityData = {
        body?: never;
        path: {
            exchangeId: string;
            requestId: string;
            sweepId: string;
            type: DataSourceType;
        };
        query?: { objective?: "sharpe"
        | "sortino"
        | "pnl"
        | "maxdd" };
        url: "/backtest/{exchangeId}/{type}/executeSweep/{requestId}/{sweepId}/sensitivity";
    }
    Index
    body?: never
    path: {
        exchangeId: string;
        requestId: string;
        sweepId: string;
        type: DataSourceType;
    }

    Type Declaration

    • exchangeId: string
    • requestId: string

      The jobId returned by POST /backtest/{exchangeId}/{type}/prepare.

    • sweepId: string
    • type: DataSourceType
    query?: { objective?: "sharpe" | "sortino" | "pnl" | "maxdd" }

    Type Declaration

    • Optionalobjective?: "sharpe" | "sortino" | "pnl" | "maxdd"

      Which metric to aggregate. Defaults to the objective the sweep was submitted with.

    url: "/backtest/{exchangeId}/{type}/executeSweep/{requestId}/{sweepId}/sensitivity"