├── .gitignore ├── LICENSE.md ├── README.md ├── app ├── __init__.py ├── btcchina.py ├── collect_data │ ├── collect_btcc_books.py │ ├── collect_btcc_ticks.py │ ├── crawl_btcc_trades_history.py │ └── run_collect_scripts.sh ├── create_live_features.py ├── model │ ├── __init__.py │ ├── add_final_to_features.py │ ├── add_midx_to_features.py │ ├── features.py │ ├── features_parallel.py │ ├── full_create_features_and_train_script.sh │ ├── model.py │ ├── strategy.py │ └── strategy_multiple.py └── predict.py └── images └── bot.png /.gitignore: -------------------------------------------------------------------------------- 1 | data/ 2 | .idea 3 | *.pyc 4 | -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdeelMufti/CryptoBot/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdeelMufti/CryptoBot/HEAD/README.md -------------------------------------------------------------------------------- /app/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/btcchina.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdeelMufti/CryptoBot/HEAD/app/btcchina.py -------------------------------------------------------------------------------- /app/collect_data/collect_btcc_books.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdeelMufti/CryptoBot/HEAD/app/collect_data/collect_btcc_books.py -------------------------------------------------------------------------------- /app/collect_data/collect_btcc_ticks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdeelMufti/CryptoBot/HEAD/app/collect_data/collect_btcc_ticks.py -------------------------------------------------------------------------------- /app/collect_data/crawl_btcc_trades_history.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdeelMufti/CryptoBot/HEAD/app/collect_data/crawl_btcc_trades_history.py -------------------------------------------------------------------------------- /app/collect_data/run_collect_scripts.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdeelMufti/CryptoBot/HEAD/app/collect_data/run_collect_scripts.sh -------------------------------------------------------------------------------- /app/create_live_features.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdeelMufti/CryptoBot/HEAD/app/create_live_features.py -------------------------------------------------------------------------------- /app/model/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/model/add_final_to_features.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdeelMufti/CryptoBot/HEAD/app/model/add_final_to_features.py -------------------------------------------------------------------------------- /app/model/add_midx_to_features.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdeelMufti/CryptoBot/HEAD/app/model/add_midx_to_features.py -------------------------------------------------------------------------------- /app/model/features.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdeelMufti/CryptoBot/HEAD/app/model/features.py -------------------------------------------------------------------------------- /app/model/features_parallel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdeelMufti/CryptoBot/HEAD/app/model/features_parallel.py -------------------------------------------------------------------------------- /app/model/full_create_features_and_train_script.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdeelMufti/CryptoBot/HEAD/app/model/full_create_features_and_train_script.sh -------------------------------------------------------------------------------- /app/model/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdeelMufti/CryptoBot/HEAD/app/model/model.py -------------------------------------------------------------------------------- /app/model/strategy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdeelMufti/CryptoBot/HEAD/app/model/strategy.py -------------------------------------------------------------------------------- /app/model/strategy_multiple.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdeelMufti/CryptoBot/HEAD/app/model/strategy_multiple.py -------------------------------------------------------------------------------- /app/predict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdeelMufti/CryptoBot/HEAD/app/predict.py -------------------------------------------------------------------------------- /images/bot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdeelMufti/CryptoBot/HEAD/images/bot.png --------------------------------------------------------------------------------