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

    Type Alias ExecuteBacktestData

    type ExecuteBacktestData = {
        body: {
            prepareJobId: string;
            storeSignals?: boolean;
            strategyId: StrategyId;
        };
        path: { exchangeId: string; type: DataSourceType };
        query?: never;
        url: "/backtest/{exchangeId}/{type}/execute";
    }
    Index
    body: { prepareJobId: string; storeSignals?: boolean; strategyId: StrategyId }

    Execute task parameters

    Type Declaration

    • prepareJobId: string

      Job ID returned by POST /prepare (must be in Completed state)

    • OptionalstoreSignals?: boolean

      When true, the worker uploads emitted signals to object storage and the response includes signalsUrl / signalsId fields. Defaults to false.

    • strategyId: StrategyId
    path: { exchangeId: string; type: DataSourceType }

    Type Declaration

    • exchangeId: string

      ID of the exchange for the backtesting process

    • type: DataSourceType

      The type of data source to execute from

    query?: never
    url: "/backtest/{exchangeId}/{type}/execute"