Uses of Record Class
com.qtsurfer.api.sdk.BacktestOptions
Packages that use BacktestOptions
-
Uses of BacktestOptions in com.qtsurfer.api.sdk
Methods in com.qtsurfer.api.sdk that return BacktestOptionsModifier and TypeMethodDescriptionBacktestOptions.Builder.build()static BacktestOptionsBacktestOptions.defaults()Methods in com.qtsurfer.api.sdk with parameters of type BacktestOptionsModifier and TypeMethodDescriptionCompletableFuture<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, BacktestOptions options) Run a backtest with this strategy.QTSurfer.compile(BacktestRequest request, BacktestOptions options) Convenience overload that compilesBacktestRequest.strategy()with the given options, ignoring every other field of the request.QTSurfer.compile(String source, BacktestOptions options) Compile strategy source into a reusableStrategyhandle. -
Uses of BacktestOptions in com.qtsurfer.api.sdk.auth
Methods in com.qtsurfer.api.sdk.auth with parameters of type BacktestOptionsModifier and TypeMethodDescriptionCompletableFuture<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, BacktestOptions opts) Convenience overload that compilesBacktestRequest.strategy()with the given options, ignoring every other field of the request.AuthenticatedClient.compile(String source, BacktestOptions opts) Compile strategy source into a reusableStrategyhandle. -
Uses of BacktestOptions in com.qtsurfer.api.sdk.workflows
Methods in com.qtsurfer.api.sdk.workflows with parameters of type BacktestOptionsModifier and TypeMethodDescriptionBacktestWorkflow.compile(String source, BacktestOptions opts) Compile a strategy (synchronous on the wire) and return its handle.CompletableFuture<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.