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

    Type Alias GetSweepResultData

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

    Type Declaration

    • Optionalobjective?: "sharpe" | "sortino" | "pnl" | "maxdd"
    • Optionalorder?: "ranked" | "natural"

      natural is stable materialisation order; ranked is the display view.

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