DataExpConfig
dataclass backtide.backtest.DataExpConfig
Data settings for an experiment.
| Attributes |
instrument_type : str | InstrumentType, default="stocks"
The category of financial instrument.
symbols : list[str], default=[]
Ticker symbols included in the backtest.
full_history : bool, default=True
If
start_date : str | None, default=NoneTrue, use the maximum available history for every symbol.
ISO-8601 start date. Ignored when
end_date : str | None, default=Nonefull_history is True.
ISO-8601 end date. Ignored when
interval : Interval, default="1d"full_history is True.
Bar interval.
|
See Also
Exchange and execution settings for an experiment.
Complete configuration for a single backtest experiment.
Indicator settings for an experiment.
Methods
| to_dict | Convert to a dictionary. |
method backtide.backtestto_dict()
Convert to a dictionary.
| Returns |
dict
Self as dict.
|