├── .gitignore ├── README.md ├── dashboard.py ├── example.py ├── requirements.txt └── vis.gif /.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitcheccles/tensortrade_dashboard/HEAD/README.md -------------------------------------------------------------------------------- /dashboard.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitcheccles/tensortrade_dashboard/HEAD/dashboard.py -------------------------------------------------------------------------------- /example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitcheccles/tensortrade_dashboard/HEAD/example.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | dash==1.14.0 2 | tensortrade==0.2.0-beta.2 3 | plotly==4.9.0 4 | -------------------------------------------------------------------------------- /vis.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitcheccles/tensortrade_dashboard/HEAD/vis.gif --------------------------------------------------------------------------------