ExperimentResult
dataclass backtide.backtest.ExperimentResult
The complete result of a single experiment.
| Attributes |
Unique identifier of the experiment.
name : str
Human-readable name (mirrors the config).
tags : list[str]
Tags assigned to the experiment.
started_at : int
UTC timestamp when the run started (in Unix seconds).
finished_at : int
UTC timestamp when the run finished (in Unix seconds).
status : ExperimentStatus
The status with which the experiment ended. Possible values are:
strategies : list[RunResult]
One result entry per evaluated strategy.
warnings : list[str]
Non-fatal warnings emitted during the run.
|
See Also
Complete configuration for a single backtest experiment.
Run a backtest experiment with the provided configuration.
Result of running a single strategy as part of an experiment.