This repository is a starter template for building and testing trading strategies with CI integration. Follow these steps to create your own copy and begin working:
- Go to trading-ci-lab
- Click the green “Use this template” button
- Name your new repository (e.g.,
ci-homework-01) - Choose Public or Private
- Click “Create repository from template”
git clone git@github.com:your-username/ci-homework-01.git
cd ci-homework-01If you're using HTTPS instead of SSH:
git clone https://github.com/your-username/ci-homework-01.git
pip install -r requirements.txtcoverage run -m pytest
coverage report -mTo view an interactive HTML report:
coverage html
open htmlcov/index.html # macOSgit add .
git commit -m "Implement strategy and tests"
git pushThen go to GitHub and open a Pull Request from your branch to main.