Enhance backtesting functionality by adding date range parameters to load_data, improving ATR calculation, and refining trade logic with meta Supertrend signals. Update README with detailed usage instructions and requirements. Add CSV logging for trade results and performance metrics. Include ta library as a dependency in pyproject.toml.

This commit is contained in:
Simon Moisy
2025-08-12 10:33:17 +08:00
parent 56dca05a3e
commit 21b14d4fe4
4 changed files with 549 additions and 65 deletions

View File

@@ -4,4 +4,6 @@ version = "0.1.0"
description = "Add your description here"
readme = "README.md"
requires-python = ">=3.12"
dependencies = []
dependencies = [
"ta>=0.11.0",
]