Add initial implementation of backtesting framework with CLI interface. Introduce core modules for data loading, trade management, performance metrics, and logging. Include Supertrend indicator calculations and slippage estimation. Update .gitignore to exclude logs and CSV files.
This commit is contained in:
13
__init__.py
Normal file
13
__init__.py
Normal file
@@ -0,0 +1,13 @@
|
||||
from __future__ import annotations
|
||||
|
||||
__all__ = [
|
||||
"config",
|
||||
"data",
|
||||
"indicators",
|
||||
"market_costs",
|
||||
"intrabar",
|
||||
"trade",
|
||||
"metrics",
|
||||
"logging_utils",
|
||||
"backtest",
|
||||
]
|
||||
Reference in New Issue
Block a user