Uses of Class
com.qtsurfer.api.sdk.Strategy
Packages that use Strategy
-
Uses of Strategy in com.qtsurfer.api.sdk
Methods in com.qtsurfer.api.sdk that return StrategyModifier and TypeMethodDescriptionBacktest.strategy()TheStrategythis backtest was run against.Methods in com.qtsurfer.api.sdk that return types with arguments of type StrategyModifier and TypeMethodDescriptionQTSurfer.compile(BacktestRequest request) Convenience: compile the strategy embedded in the given request.QTSurfer.compile(BacktestRequest request, BacktestOptions options) Convenience overload that compilesBacktestRequest.strategy()with the given options, ignoring every other field of the request.Compile a strategy source.QTSurfer.compile(String source, BacktestOptions options) Compile strategy source into a reusableStrategyhandle.Constructors in com.qtsurfer.api.sdk with parameters of type StrategyModifierConstructorDescriptionBacktest(String id, Strategy strategy, CompletableFuture<com.qtsurfer.api.client.model.ResultMap> result, Flow.Publisher<BacktestProgress> progress, AtomicReference<Backtest.State> state, Runnable cancelHook) Internal constructor used by the SDK workflow; not part of the public contract. -
Uses of Strategy in com.qtsurfer.api.sdk.auth
Methods in com.qtsurfer.api.sdk.auth that return types with arguments of type StrategyModifier and TypeMethodDescriptionAuthenticatedClient.compile(BacktestRequest request) Convenience overload that compilesBacktestRequest.strategy()withBacktestOptions.defaults(), ignoring every other field of the request.AuthenticatedClient.compile(BacktestRequest request, BacktestOptions opts) Convenience overload that compilesBacktestRequest.strategy()with the given options, ignoring every other field of the request.Equivalent toAuthenticatedClient.compile(String, BacktestOptions)withBacktestOptions.defaults().AuthenticatedClient.compile(String source, BacktestOptions opts) Compile strategy source into a reusableStrategyhandle. -
Uses of Strategy in com.qtsurfer.api.sdk.workflows
Methods in com.qtsurfer.api.sdk.workflows that return types with arguments of type StrategyModifier and TypeMethodDescriptionBacktestWorkflow.compile(String source, BacktestOptions opts) Compile a strategy (synchronous on the wire) and return its handle.Methods in com.qtsurfer.api.sdk.workflows with parameters of type StrategyModifier and TypeMethodDescriptionBacktestWorkflow.submitExecution(Strategy strategy, BacktestRequest req, BacktestOptions opts) Prepare + submit execute for the given strategy.