├── .gitignore ├── Hummingbot-Postprocess ├── README.md ├── hummingbot-postprocess.py ├── sample_analysis.png └── sample_plot.png ├── LICENSE ├── README.md ├── manage-bot-cycles ├── README.md ├── asd-eth-usdt_files │ └── hummingbot_conf │ │ ├── conf_client.yml │ │ ├── conf_fee_overrides.yml │ │ ├── hummingbot_logs.yml │ │ └── strategies │ │ └── conf_pure_mm_asd-eth-usdt.yml ├── bin-bnb-busd_files │ └── hummingbot_conf │ │ ├── conf_client.yml │ │ ├── conf_fee_overrides.yml │ │ ├── hummingbot_logs.yml │ │ └── strategies │ │ └── conf_pure_mm_bin-bnb-busd.yml ├── bots_to_run ├── init_and_run_bots.sh ├── kucoin-btc-usdt_files │ └── hummingbot_conf │ │ └── conf_pure_mm_kucoin-btc-usdt.yml ├── remove_bots.sh ├── start.sh └── update.sh └── pr-generator ├── README.md └── prgen /.gitignore: -------------------------------------------------------------------------------- 1 | *.log 2 | *.sqlite 3 | .password_verification 4 | hummingbot_logs -------------------------------------------------------------------------------- /Hummingbot-Postprocess/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hummingbot/community-tools/HEAD/Hummingbot-Postprocess/README.md -------------------------------------------------------------------------------- /Hummingbot-Postprocess/hummingbot-postprocess.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hummingbot/community-tools/HEAD/Hummingbot-Postprocess/hummingbot-postprocess.py -------------------------------------------------------------------------------- /Hummingbot-Postprocess/sample_analysis.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hummingbot/community-tools/HEAD/Hummingbot-Postprocess/sample_analysis.png -------------------------------------------------------------------------------- /Hummingbot-Postprocess/sample_plot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hummingbot/community-tools/HEAD/Hummingbot-Postprocess/sample_plot.png -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hummingbot/community-tools/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hummingbot/community-tools/HEAD/README.md -------------------------------------------------------------------------------- /manage-bot-cycles/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hummingbot/community-tools/HEAD/manage-bot-cycles/README.md -------------------------------------------------------------------------------- /manage-bot-cycles/asd-eth-usdt_files/hummingbot_conf/conf_client.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hummingbot/community-tools/HEAD/manage-bot-cycles/asd-eth-usdt_files/hummingbot_conf/conf_client.yml -------------------------------------------------------------------------------- /manage-bot-cycles/asd-eth-usdt_files/hummingbot_conf/conf_fee_overrides.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hummingbot/community-tools/HEAD/manage-bot-cycles/asd-eth-usdt_files/hummingbot_conf/conf_fee_overrides.yml -------------------------------------------------------------------------------- /manage-bot-cycles/asd-eth-usdt_files/hummingbot_conf/hummingbot_logs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hummingbot/community-tools/HEAD/manage-bot-cycles/asd-eth-usdt_files/hummingbot_conf/hummingbot_logs.yml -------------------------------------------------------------------------------- /manage-bot-cycles/asd-eth-usdt_files/hummingbot_conf/strategies/conf_pure_mm_asd-eth-usdt.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hummingbot/community-tools/HEAD/manage-bot-cycles/asd-eth-usdt_files/hummingbot_conf/strategies/conf_pure_mm_asd-eth-usdt.yml -------------------------------------------------------------------------------- /manage-bot-cycles/bin-bnb-busd_files/hummingbot_conf/conf_client.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hummingbot/community-tools/HEAD/manage-bot-cycles/bin-bnb-busd_files/hummingbot_conf/conf_client.yml -------------------------------------------------------------------------------- /manage-bot-cycles/bin-bnb-busd_files/hummingbot_conf/conf_fee_overrides.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hummingbot/community-tools/HEAD/manage-bot-cycles/bin-bnb-busd_files/hummingbot_conf/conf_fee_overrides.yml -------------------------------------------------------------------------------- /manage-bot-cycles/bin-bnb-busd_files/hummingbot_conf/hummingbot_logs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hummingbot/community-tools/HEAD/manage-bot-cycles/bin-bnb-busd_files/hummingbot_conf/hummingbot_logs.yml -------------------------------------------------------------------------------- /manage-bot-cycles/bin-bnb-busd_files/hummingbot_conf/strategies/conf_pure_mm_bin-bnb-busd.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hummingbot/community-tools/HEAD/manage-bot-cycles/bin-bnb-busd_files/hummingbot_conf/strategies/conf_pure_mm_bin-bnb-busd.yml -------------------------------------------------------------------------------- /manage-bot-cycles/bots_to_run: -------------------------------------------------------------------------------- 1 | asd-eth-usdt 2 | bin-bnb-busd -------------------------------------------------------------------------------- /manage-bot-cycles/init_and_run_bots.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hummingbot/community-tools/HEAD/manage-bot-cycles/init_and_run_bots.sh -------------------------------------------------------------------------------- /manage-bot-cycles/kucoin-btc-usdt_files/hummingbot_conf/conf_pure_mm_kucoin-btc-usdt.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hummingbot/community-tools/HEAD/manage-bot-cycles/kucoin-btc-usdt_files/hummingbot_conf/conf_pure_mm_kucoin-btc-usdt.yml -------------------------------------------------------------------------------- /manage-bot-cycles/remove_bots.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hummingbot/community-tools/HEAD/manage-bot-cycles/remove_bots.sh -------------------------------------------------------------------------------- /manage-bot-cycles/start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hummingbot/community-tools/HEAD/manage-bot-cycles/start.sh -------------------------------------------------------------------------------- /manage-bot-cycles/update.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hummingbot/community-tools/HEAD/manage-bot-cycles/update.sh -------------------------------------------------------------------------------- /pr-generator/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hummingbot/community-tools/HEAD/pr-generator/README.md -------------------------------------------------------------------------------- /pr-generator/prgen: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hummingbot/community-tools/HEAD/pr-generator/prgen --------------------------------------------------------------------------------