├── .gitignore ├── LICENSE.txt ├── README.md ├── aioquant ├── __init__.py ├── configure.py ├── const.py ├── error.py ├── heartbeat.py ├── order.py ├── platform │ ├── __init__.py │ ├── binance.py │ ├── huobi.py │ └── okex.py ├── quant.py ├── tasks.py └── utils │ ├── __init__.py │ ├── decorator.py │ ├── logger.py │ ├── tools.py │ └── web.py ├── docs ├── asset.md ├── configure │ ├── README.md │ └── config.json ├── faq.md ├── images │ ├── aioq_framework.jpg │ ├── aioq_framework2.png │ ├── login.png │ ├── rabbitmq_permission.png │ ├── rabbitmq_permission2.png │ └── userpage.png ├── market.md ├── others │ ├── locker.md │ ├── logger.md │ ├── rabbitmq_deploy.md │ └── tasks.md ├── requirements.txt └── trade.md ├── example └── demo │ ├── README.md │ ├── __init__.py │ ├── config.json │ ├── main.py │ └── strategy │ ├── __init__.py │ └── strategy.py └── setup.py /.gitignore: -------------------------------------------------------------------------------- 1 | .idea 2 | *.pyc 3 | .DS_Store 4 | build 5 | dist 6 | MANIFEST 7 | test 8 | scripts -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CongZhengithub/aioquant/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CongZhengithub/aioquant/HEAD/README.md -------------------------------------------------------------------------------- /aioquant/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CongZhengithub/aioquant/HEAD/aioquant/__init__.py -------------------------------------------------------------------------------- /aioquant/configure.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CongZhengithub/aioquant/HEAD/aioquant/configure.py -------------------------------------------------------------------------------- /aioquant/const.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CongZhengithub/aioquant/HEAD/aioquant/const.py -------------------------------------------------------------------------------- /aioquant/error.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CongZhengithub/aioquant/HEAD/aioquant/error.py -------------------------------------------------------------------------------- /aioquant/heartbeat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CongZhengithub/aioquant/HEAD/aioquant/heartbeat.py -------------------------------------------------------------------------------- /aioquant/order.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CongZhengithub/aioquant/HEAD/aioquant/order.py -------------------------------------------------------------------------------- /aioquant/platform/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aioquant/platform/binance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CongZhengithub/aioquant/HEAD/aioquant/platform/binance.py -------------------------------------------------------------------------------- /aioquant/platform/huobi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CongZhengithub/aioquant/HEAD/aioquant/platform/huobi.py -------------------------------------------------------------------------------- /aioquant/platform/okex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CongZhengithub/aioquant/HEAD/aioquant/platform/okex.py -------------------------------------------------------------------------------- /aioquant/quant.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CongZhengithub/aioquant/HEAD/aioquant/quant.py -------------------------------------------------------------------------------- /aioquant/tasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CongZhengithub/aioquant/HEAD/aioquant/tasks.py -------------------------------------------------------------------------------- /aioquant/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aioquant/utils/decorator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CongZhengithub/aioquant/HEAD/aioquant/utils/decorator.py -------------------------------------------------------------------------------- /aioquant/utils/logger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CongZhengithub/aioquant/HEAD/aioquant/utils/logger.py -------------------------------------------------------------------------------- /aioquant/utils/tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CongZhengithub/aioquant/HEAD/aioquant/utils/tools.py -------------------------------------------------------------------------------- /aioquant/utils/web.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CongZhengithub/aioquant/HEAD/aioquant/utils/web.py -------------------------------------------------------------------------------- /docs/asset.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CongZhengithub/aioquant/HEAD/docs/asset.md -------------------------------------------------------------------------------- /docs/configure/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CongZhengithub/aioquant/HEAD/docs/configure/README.md -------------------------------------------------------------------------------- /docs/configure/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CongZhengithub/aioquant/HEAD/docs/configure/config.json -------------------------------------------------------------------------------- /docs/faq.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CongZhengithub/aioquant/HEAD/docs/faq.md -------------------------------------------------------------------------------- /docs/images/aioq_framework.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CongZhengithub/aioquant/HEAD/docs/images/aioq_framework.jpg -------------------------------------------------------------------------------- /docs/images/aioq_framework2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CongZhengithub/aioquant/HEAD/docs/images/aioq_framework2.png -------------------------------------------------------------------------------- /docs/images/login.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CongZhengithub/aioquant/HEAD/docs/images/login.png -------------------------------------------------------------------------------- /docs/images/rabbitmq_permission.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CongZhengithub/aioquant/HEAD/docs/images/rabbitmq_permission.png -------------------------------------------------------------------------------- /docs/images/rabbitmq_permission2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CongZhengithub/aioquant/HEAD/docs/images/rabbitmq_permission2.png -------------------------------------------------------------------------------- /docs/images/userpage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CongZhengithub/aioquant/HEAD/docs/images/userpage.png -------------------------------------------------------------------------------- /docs/market.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CongZhengithub/aioquant/HEAD/docs/market.md -------------------------------------------------------------------------------- /docs/others/locker.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CongZhengithub/aioquant/HEAD/docs/others/locker.md -------------------------------------------------------------------------------- /docs/others/logger.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CongZhengithub/aioquant/HEAD/docs/others/logger.md -------------------------------------------------------------------------------- /docs/others/rabbitmq_deploy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CongZhengithub/aioquant/HEAD/docs/others/rabbitmq_deploy.md -------------------------------------------------------------------------------- /docs/others/tasks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CongZhengithub/aioquant/HEAD/docs/others/tasks.md -------------------------------------------------------------------------------- /docs/requirements.txt: -------------------------------------------------------------------------------- 1 | aioamqp==0.14.0 2 | aiohttp==3.6.2 3 | motor==2.0.0 -------------------------------------------------------------------------------- /docs/trade.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CongZhengithub/aioquant/HEAD/docs/trade.md -------------------------------------------------------------------------------- /example/demo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CongZhengithub/aioquant/HEAD/example/demo/README.md -------------------------------------------------------------------------------- /example/demo/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example/demo/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CongZhengithub/aioquant/HEAD/example/demo/config.json -------------------------------------------------------------------------------- /example/demo/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CongZhengithub/aioquant/HEAD/example/demo/main.py -------------------------------------------------------------------------------- /example/demo/strategy/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example/demo/strategy/strategy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CongZhengithub/aioquant/HEAD/example/demo/strategy/strategy.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CongZhengithub/aioquant/HEAD/setup.py --------------------------------------------------------------------------------