This repo contains a dash app that analyzes strategies deployed in the Quantopian contest.
You can deploy the app simply by
- Copying this repo with
git clone https://github.com/OskarGottlieb/quantopian-contest
- Bulding the docker image
docker build . -t dashapp
- And then running the image with
docker run -p 80:8050 -d dashapp
I will add Volume blocks later on, so far the Docker implementation is rather naive - with every build, all the data needs to be downloaded from the scratch - the build therefore takes a while.
The app is currently running at http://178.128.225.136/ if you want to check it out.
- Improve the DockerFile
- Add more statistics - histogram of winnings, average time in contest, shortest time in contest until 1st place etc..
- Add automatic daily downloads of the .csv files - probably via Celery tasks
- Add support of Nginx as well as Docker-compose.