Uses of Class
com.qtsurfer.api.client.invoker.ApiException
Packages that use ApiException
-
Uses of ApiException in com.qtsurfer.api.client.api
Methods in com.qtsurfer.api.client.api that return ApiExceptionModifier and TypeMethodDescriptionprotected ApiExceptionAuthApi.getApiException(String operationId, HttpResponse<InputStream> response) protected ApiExceptionBacktestingApi.getApiException(String operationId, HttpResponse<InputStream> response) protected ApiExceptionExchangeApi.getApiException(String operationId, HttpResponse<InputStream> response) protected ApiExceptionStrategyApi.getApiException(String operationId, HttpResponse<InputStream> response) Methods in com.qtsurfer.api.client.api that throw ApiExceptionModifier and TypeMethodDescriptionAuthApi.authenticate()Exchange API key for a short-lived JWT Exchanges a long-lived API key for a short-lived JWT used by every other endpoint.AuthApi.authenticateWithHttpInfo()Exchange API key for a short-lived JWT Exchanges a long-lived API key for a short-lived JWT used by every other endpoint.BacktestingApi.cancelBacktest(String exchangeId, DataSourceType type, String jobId) Cancel a running backtest execution Requests cancellation of the specified execution.BacktestingApi.cancelBacktestWithHttpInfo(String exchangeId, DataSourceType type, String jobId) Cancel a running backtest execution Requests cancellation of the specified execution.BacktestingApi.cancelSweep(String exchangeId, DataSourceType type, String requestId, String sweepId) Cancel a running parameter sweep Requests cancellation between parameter vectors.BacktestingApi.cancelSweepWithHttpInfo(String exchangeId, DataSourceType type, String requestId, String sweepId) Cancel a running parameter sweep Requests cancellation between parameter vectors.StrategyApi.compileStrategy(String body) Compile and register a strategy Compiles raw strategy source and registers it, returning its `strategyId`.StrategyApi.compileStrategyWithHttpInfo(String body) Compile and register a strategy Compiles raw strategy source and registers it, returning its `strategyId`.ExchangeApi.downloadKlines(String exchangeId, String base, String quote, String hour, String format) Download one hour of klines for an instrument as a Lastra segment Same shape and semantics as `/exchange/{exchangeId}/tickers/{base}/{quote}`, but serves klines (aggregated bars) instead of raw ticks.ExchangeApi.downloadKlinesWithHttpInfo(String exchangeId, String base, String quote, String hour, String format) Download one hour of klines for an instrument as a Lastra segment Same shape and semantics as `/exchange/{exchangeId}/tickers/{base}/{quote}`, but serves klines (aggregated bars) instead of raw ticks.ExchangeApi.downloadTickers(String exchangeId, String base, String quote, String hour, String format) Download one hour of tickers for an instrument as a Lastra segment Serves exactly one hour of raw ticker data for the given instrument on the requested exchange.ExchangeApi.downloadTickersWithHttpInfo(String exchangeId, String base, String quote, String hour, String format) Download one hour of tickers for an instrument as a Lastra segment Serves exactly one hour of raw ticker data for the given instrument on the requested exchange.BacktestingApi.executeBacktest(String exchangeId, DataSourceType type, ExecuteBacktestRequest executeBacktestRequest) Execute a compiled strategy against a prepared dataset Enqueues an execute task that runs the strategy identified by `strategyId` over the data prepared by the prepare job identified by `prepareJobId`.BacktestingApi.executeBacktestWithHttpInfo(String exchangeId, DataSourceType type, ExecuteBacktestRequest executeBacktestRequest) Execute a compiled strategy against a prepared dataset Enqueues an execute task that runs the strategy identified by `strategyId` over the data prepared by the prepare job identified by `prepareJobId`.BacktestingApi.executeSweep(String exchangeId, DataSourceType type, String requestId, ExecuteSweepRequest executeSweepRequest) Execute a parameter sweep over prepared data Runs a parameter matrix over the single immutable dataset identified by `requestId`.BacktestingApi.executeSweepWithHttpInfo(String exchangeId, DataSourceType type, String requestId, ExecuteSweepRequest executeSweepRequest) Execute a parameter sweep over prepared data Runs a parameter matrix over the single immutable dataset identified by `requestId`.BacktestingApi.getBacktestResult(String exchangeId, DataSourceType type, String jobId) Get the result of a backtest execution job Retrieves the current state and results of the execute job identified by `jobId`.BacktestingApi.getBacktestResultWithHttpInfo(String exchangeId, DataSourceType type, String jobId) Get the result of a backtest execution job Retrieves the current state and results of the execute job identified by `jobId`.BacktestingApi.getPrepareStatus(String exchangeId, DataSourceType type, String jobId) Get the status of a prepare job Retrieves the current state of the prepare job identified by `jobId`.BacktestingApi.getPrepareStatusWithHttpInfo(String exchangeId, DataSourceType type, String jobId) Get the status of a prepare job Retrieves the current state of the prepare job identified by `jobId`.StrategyApi.getStrategy(String strategyId) Get a strategy by id, including its validation state Reports that the strategy is registered — implied by a `200` at all — and what validating it found.StrategyApi.getStrategyWithHttpInfo(String strategyId) Get a strategy by id, including its validation state Reports that the strategy is registered — implied by a `200` at all — and what validating it found.BacktestingApi.getSweepResult(String exchangeId, DataSourceType type, String requestId, String sweepId, String objective, String order) Get sweep progress and results Returns incremental sweep progress.BacktestingApi.getSweepResultWithHttpInfo(String exchangeId, DataSourceType type, String requestId, String sweepId, String objective, String order) Get sweep progress and results Returns incremental sweep progress.ExchangeApi.listExchanges()List the available exchangesExchangeApi.listExchangesWithHttpInfo()List the available exchangesExchangeApi.listInstruments(String exchangeId) List an exchange's instruments (default spot segment) \"Give me binance instruments\" — returns the exchange's DEFAULT segment (`spot`) in `data`, each instrument with per-data-type coverage and market info.ExchangeApi.listInstrumentsWithHttpInfo(String exchangeId) List an exchange's instruments (default spot segment) \"Give me binance instruments\" — returns the exchange's DEFAULT segment (`spot`) in `data`, each instrument with per-data-type coverage and market info.ExchangeApi.listSegmentInstruments(String exchangeId, String segment) List an exchange segment's instruments Returns the instruments for one market segment of the exchange, each with per-data-type coverage and market info.ExchangeApi.listSegmentInstrumentsWithHttpInfo(String exchangeId, String segment) List an exchange segment's instruments Returns the instruments for one market segment of the exchange, each with per-data-type coverage and market info.BacktestingApi.prepareBacktest(String exchangeId, DataSourceType type, PrepareRequest prepareRequest) Prepare backtest data Enqueues a prepare task over the requested date range.BacktestingApi.prepareBacktestWithHttpInfo(String exchangeId, DataSourceType type, PrepareRequest prepareRequest) Prepare backtest data Enqueues a prepare task over the requested date range.StrategyApi.validateStrategy(String strategyId) Check that a registered strategy can actually run Instantiates the compiled class and drives it through a bounded synthetic series, so a wiring fault surfaces here instead of at your first backtest.StrategyApi.validateStrategyWithHttpInfo(String strategyId) Check that a registered strategy can actually run Instantiates the compiled class and drives it through a bounded synthetic series, so a wiring fault surfaces here instead of at your first backtest.