├── .gitignore ├── LICENSE ├── README.md ├── api_auth.py ├── feed.py ├── gateway.py ├── main.py ├── order_book.py ├── requirements.txt ├── strategy.py └── ws_client.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bellyfat/mm-algo-prototype/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bellyfat/mm-algo-prototype/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bellyfat/mm-algo-prototype/HEAD/README.md -------------------------------------------------------------------------------- /api_auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bellyfat/mm-algo-prototype/HEAD/api_auth.py -------------------------------------------------------------------------------- /feed.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bellyfat/mm-algo-prototype/HEAD/feed.py -------------------------------------------------------------------------------- /gateway.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bellyfat/mm-algo-prototype/HEAD/gateway.py -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bellyfat/mm-algo-prototype/HEAD/main.py -------------------------------------------------------------------------------- /order_book.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bellyfat/mm-algo-prototype/HEAD/order_book.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bellyfat/mm-algo-prototype/HEAD/requirements.txt -------------------------------------------------------------------------------- /strategy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bellyfat/mm-algo-prototype/HEAD/strategy.py -------------------------------------------------------------------------------- /ws_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bellyfat/mm-algo-prototype/HEAD/ws_client.py --------------------------------------------------------------------------------