├── .gitignore ├── README.md ├── backtest-buyhold.py ├── backtest-movingaverage.py ├── import_data.py ├── requirements.txt └── spy.csv /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackingthemarkets/pyalgotrade-tutorials/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackingthemarkets/pyalgotrade-tutorials/HEAD/README.md -------------------------------------------------------------------------------- /backtest-buyhold.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackingthemarkets/pyalgotrade-tutorials/HEAD/backtest-buyhold.py -------------------------------------------------------------------------------- /backtest-movingaverage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackingthemarkets/pyalgotrade-tutorials/HEAD/backtest-movingaverage.py -------------------------------------------------------------------------------- /import_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackingthemarkets/pyalgotrade-tutorials/HEAD/import_data.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackingthemarkets/pyalgotrade-tutorials/HEAD/requirements.txt -------------------------------------------------------------------------------- /spy.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackingthemarkets/pyalgotrade-tutorials/HEAD/spy.csv --------------------------------------------------------------------------------