├── .ipynb_checkpoints ├── Procfile-checkpoint ├── README-checkpoint.md ├── app-checkpoint.py ├── backtesting-checkpoint.py ├── crypto_stream-checkpoint.py ├── models-checkpoint.py ├── requirements-checkpoint.txt ├── rf_model-checkpoint.py ├── rf_model_2-checkpoint.py ├── run-checkpoint.ipynb └── runtime-checkpoint.txt ├── Images ├── backtesting-configuration.png ├── backtesting-result.png ├── backtesting.gif ├── trading-bot.gif ├── trading-bot.png └── trading_crypto_bot.jpg ├── Procfile ├── README.md ├── __pycache__ ├── backtesting.cpython-37.pyc ├── crypto_stream.cpython-37.pyc ├── models.cpython-37.pyc ├── rf_model.cpython-37.pyc └── rf_model_2.cpython-37.pyc ├── algo_trader_history.sqlite ├── app.py ├── assets ├── .ipynb_checkpoints │ └── dash-new-logo-checkpoint.png ├── base-styles.css ├── dash-new-logo.png ├── favicon.ico ├── fonts.css └── spc-custom-styles.css ├── backtesting.py ├── crypto_stream.py ├── models.py ├── random_forest_model_1.joblib ├── random_forest_model_2.joblib ├── requirements.txt ├── rf_model.py ├── rf_model_2.py ├── run.ipynb └── runtime.txt /.ipynb_checkpoints/Procfile-checkpoint: -------------------------------------------------------------------------------- 1 | web: gunicorn app:server 2 | -------------------------------------------------------------------------------- /.ipynb_checkpoints/README-checkpoint.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kowsi/Mind-Bot-Algorithmic-Crypto-Trading-Bot/HEAD/.ipynb_checkpoints/README-checkpoint.md -------------------------------------------------------------------------------- /.ipynb_checkpoints/app-checkpoint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kowsi/Mind-Bot-Algorithmic-Crypto-Trading-Bot/HEAD/.ipynb_checkpoints/app-checkpoint.py -------------------------------------------------------------------------------- /.ipynb_checkpoints/backtesting-checkpoint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kowsi/Mind-Bot-Algorithmic-Crypto-Trading-Bot/HEAD/.ipynb_checkpoints/backtesting-checkpoint.py -------------------------------------------------------------------------------- /.ipynb_checkpoints/crypto_stream-checkpoint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kowsi/Mind-Bot-Algorithmic-Crypto-Trading-Bot/HEAD/.ipynb_checkpoints/crypto_stream-checkpoint.py -------------------------------------------------------------------------------- /.ipynb_checkpoints/models-checkpoint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kowsi/Mind-Bot-Algorithmic-Crypto-Trading-Bot/HEAD/.ipynb_checkpoints/models-checkpoint.py -------------------------------------------------------------------------------- /.ipynb_checkpoints/requirements-checkpoint.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kowsi/Mind-Bot-Algorithmic-Crypto-Trading-Bot/HEAD/.ipynb_checkpoints/requirements-checkpoint.txt -------------------------------------------------------------------------------- /.ipynb_checkpoints/rf_model-checkpoint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kowsi/Mind-Bot-Algorithmic-Crypto-Trading-Bot/HEAD/.ipynb_checkpoints/rf_model-checkpoint.py -------------------------------------------------------------------------------- /.ipynb_checkpoints/rf_model_2-checkpoint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kowsi/Mind-Bot-Algorithmic-Crypto-Trading-Bot/HEAD/.ipynb_checkpoints/rf_model_2-checkpoint.py -------------------------------------------------------------------------------- /.ipynb_checkpoints/run-checkpoint.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kowsi/Mind-Bot-Algorithmic-Crypto-Trading-Bot/HEAD/.ipynb_checkpoints/run-checkpoint.ipynb -------------------------------------------------------------------------------- /.ipynb_checkpoints/runtime-checkpoint.txt: -------------------------------------------------------------------------------- 1 | python-3.7.6 -------------------------------------------------------------------------------- /Images/backtesting-configuration.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kowsi/Mind-Bot-Algorithmic-Crypto-Trading-Bot/HEAD/Images/backtesting-configuration.png -------------------------------------------------------------------------------- /Images/backtesting-result.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kowsi/Mind-Bot-Algorithmic-Crypto-Trading-Bot/HEAD/Images/backtesting-result.png -------------------------------------------------------------------------------- /Images/backtesting.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kowsi/Mind-Bot-Algorithmic-Crypto-Trading-Bot/HEAD/Images/backtesting.gif -------------------------------------------------------------------------------- /Images/trading-bot.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kowsi/Mind-Bot-Algorithmic-Crypto-Trading-Bot/HEAD/Images/trading-bot.gif -------------------------------------------------------------------------------- /Images/trading-bot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kowsi/Mind-Bot-Algorithmic-Crypto-Trading-Bot/HEAD/Images/trading-bot.png -------------------------------------------------------------------------------- /Images/trading_crypto_bot.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kowsi/Mind-Bot-Algorithmic-Crypto-Trading-Bot/HEAD/Images/trading_crypto_bot.jpg -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- 1 | web: gunicorn app:server 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kowsi/Mind-Bot-Algorithmic-Crypto-Trading-Bot/HEAD/README.md -------------------------------------------------------------------------------- /__pycache__/backtesting.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kowsi/Mind-Bot-Algorithmic-Crypto-Trading-Bot/HEAD/__pycache__/backtesting.cpython-37.pyc -------------------------------------------------------------------------------- /__pycache__/crypto_stream.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kowsi/Mind-Bot-Algorithmic-Crypto-Trading-Bot/HEAD/__pycache__/crypto_stream.cpython-37.pyc -------------------------------------------------------------------------------- /__pycache__/models.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kowsi/Mind-Bot-Algorithmic-Crypto-Trading-Bot/HEAD/__pycache__/models.cpython-37.pyc -------------------------------------------------------------------------------- /__pycache__/rf_model.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kowsi/Mind-Bot-Algorithmic-Crypto-Trading-Bot/HEAD/__pycache__/rf_model.cpython-37.pyc -------------------------------------------------------------------------------- /__pycache__/rf_model_2.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kowsi/Mind-Bot-Algorithmic-Crypto-Trading-Bot/HEAD/__pycache__/rf_model_2.cpython-37.pyc -------------------------------------------------------------------------------- /algo_trader_history.sqlite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kowsi/Mind-Bot-Algorithmic-Crypto-Trading-Bot/HEAD/algo_trader_history.sqlite -------------------------------------------------------------------------------- /app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kowsi/Mind-Bot-Algorithmic-Crypto-Trading-Bot/HEAD/app.py -------------------------------------------------------------------------------- /assets/.ipynb_checkpoints/dash-new-logo-checkpoint.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kowsi/Mind-Bot-Algorithmic-Crypto-Trading-Bot/HEAD/assets/.ipynb_checkpoints/dash-new-logo-checkpoint.png -------------------------------------------------------------------------------- /assets/base-styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kowsi/Mind-Bot-Algorithmic-Crypto-Trading-Bot/HEAD/assets/base-styles.css -------------------------------------------------------------------------------- /assets/dash-new-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kowsi/Mind-Bot-Algorithmic-Crypto-Trading-Bot/HEAD/assets/dash-new-logo.png -------------------------------------------------------------------------------- /assets/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kowsi/Mind-Bot-Algorithmic-Crypto-Trading-Bot/HEAD/assets/favicon.ico -------------------------------------------------------------------------------- /assets/fonts.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kowsi/Mind-Bot-Algorithmic-Crypto-Trading-Bot/HEAD/assets/fonts.css -------------------------------------------------------------------------------- /assets/spc-custom-styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kowsi/Mind-Bot-Algorithmic-Crypto-Trading-Bot/HEAD/assets/spc-custom-styles.css -------------------------------------------------------------------------------- /backtesting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kowsi/Mind-Bot-Algorithmic-Crypto-Trading-Bot/HEAD/backtesting.py -------------------------------------------------------------------------------- /crypto_stream.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kowsi/Mind-Bot-Algorithmic-Crypto-Trading-Bot/HEAD/crypto_stream.py -------------------------------------------------------------------------------- /models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kowsi/Mind-Bot-Algorithmic-Crypto-Trading-Bot/HEAD/models.py -------------------------------------------------------------------------------- /random_forest_model_1.joblib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kowsi/Mind-Bot-Algorithmic-Crypto-Trading-Bot/HEAD/random_forest_model_1.joblib -------------------------------------------------------------------------------- /random_forest_model_2.joblib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kowsi/Mind-Bot-Algorithmic-Crypto-Trading-Bot/HEAD/random_forest_model_2.joblib -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kowsi/Mind-Bot-Algorithmic-Crypto-Trading-Bot/HEAD/requirements.txt -------------------------------------------------------------------------------- /rf_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kowsi/Mind-Bot-Algorithmic-Crypto-Trading-Bot/HEAD/rf_model.py -------------------------------------------------------------------------------- /rf_model_2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kowsi/Mind-Bot-Algorithmic-Crypto-Trading-Bot/HEAD/rf_model_2.py -------------------------------------------------------------------------------- /run.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kowsi/Mind-Bot-Algorithmic-Crypto-Trading-Bot/HEAD/run.ipynb -------------------------------------------------------------------------------- /runtime.txt: -------------------------------------------------------------------------------- 1 | python-3.7.6 --------------------------------------------------------------------------------