Uses of Record Class
com.qtsurfer.api.sdk.BacktestRequest
Packages that use BacktestRequest
-
Uses of BacktestRequest in com.qtsurfer.api.sdk
Methods in com.qtsurfer.api.sdk that return BacktestRequestMethods in com.qtsurfer.api.sdk with parameters of type BacktestRequestModifier and TypeMethodDescriptionCompletableFuture<com.qtsurfer.api.client.model.ResultMap>QTSurfer.backtest(BacktestRequest request) Run the full compile → prepare → execute → await pipeline as a single future.CompletableFuture<com.qtsurfer.api.client.model.ResultMap>QTSurfer.backtest(BacktestRequest request, BacktestOptions options) Run the full compile → prepare → execute pipeline and resolve once the run reaches a terminal state (completed, failed, or canceled).Strategy.backtest(BacktestRequest request) Equivalent toStrategy.backtest(BacktestRequest, BacktestOptions)withBacktestOptions.defaults().Strategy.backtest(BacktestRequest request, BacktestOptions options) Run a backtest with this strategy.QTSurfer.compile(BacktestRequest request) Convenience: compile the strategy embedded in the given request.QTSurfer.compile(BacktestRequest request, BacktestOptions options) Convenience overload that compilesstrategy()with the given options, ignoring every other field of the request. -
Uses of BacktestRequest in com.qtsurfer.api.sdk.auth
Methods in com.qtsurfer.api.sdk.auth with parameters of type BacktestRequestModifier and TypeMethodDescriptionCompletableFuture<com.qtsurfer.api.client.model.ResultMap>AuthenticatedClient.backtest(BacktestRequest request) CompletableFuture<com.qtsurfer.api.client.model.ResultMap>AuthenticatedClient.backtest(BacktestRequest request, BacktestOptions opts) Run the full compile → prepare → execute pipeline and resolve once the run reaches a terminal state (completed, failed, or canceled).AuthenticatedClient.compile(BacktestRequest request) Convenience overload that compilesstrategy()withBacktestOptions.defaults(), ignoring every other field of the request.AuthenticatedClient.compile(BacktestRequest request, BacktestOptions opts) Convenience overload that compilesstrategy()with the given options, ignoring every other field of the request. -
Uses of BacktestRequest in com.qtsurfer.api.sdk.workflows
Methods in com.qtsurfer.api.sdk.workflows with parameters of type BacktestRequestModifier and TypeMethodDescriptionCompletableFuture<com.qtsurfer.api.client.model.ResultMap>BacktestWorkflow.runFull(BacktestRequest req, BacktestOptions opts) v0.1-compat shortcut: compile + prepare + execute + await, as a single future.BacktestWorkflow.submitExecution(Strategy strategy, BacktestRequest req, BacktestOptions opts) Prepare + submit execute for the given strategy.