# Table of Contents * [backtest\_account](#backtest_account) * [BackTestAccount](#backtest_account.BackTestAccount) * [get\_dict](#backtest_account.BackTestAccount.get_dict) * [asdict](#backtest_account.BackTestAccount.asdict) * [set\_attrs](#backtest_account.BackTestAccount.set_attrs) # backtest\_account ## BackTestAccount Objects ```python @dataclass class BackTestAccount() ``` Account data for backtesting #### get\_dict ```python def get_dict(exclude: set = None, include: set = None) ``` Returns a dictionary of the account data. Using the exclude and include arguments, you can filter the data **Arguments**: - `exclude` _set_ - A set of keys to exclude - `include` _set_ - A set of keys to include #### asdict ```python def asdict() ``` Returns a dictionary of the account data #### set\_attrs ```python def set_attrs(**kwargs) ``` Se the attributes of the account data to the instance