├── .dockerignore ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.yml │ └── feature_request.yml └── workflows │ └── docker_buildx_workflow.yml ├── .gitignore ├── .pre-commit-config.yaml ├── AGENTS.md ├── API_REFERENCE.md ├── CLAUDE.md ├── Dockerfile ├── GEMINI.md ├── LICENSE ├── Makefile ├── README.md ├── bots ├── __init__.py ├── archived │ └── .gitignore ├── conf │ ├── controllers │ │ └── .gitignore │ └── scripts │ │ └── .gitignore ├── controllers │ ├── __init__.py │ ├── directional_trading │ │ ├── __init__.py │ │ ├── bollinger_v1.py │ │ ├── bollingrid.py │ │ ├── dman_v3.py │ │ ├── macd_bb_v1.py │ │ └── supertrend_v1.py │ ├── generic │ │ ├── __init__.py │ │ ├── arbitrage_controller.py │ │ ├── grid_strike.py │ │ ├── multi_grid_strike.py │ │ ├── pmm.py │ │ ├── pmm_adjusted.py │ │ ├── pmm_mister.py │ │ ├── quantum_grid_allocator.py │ │ ├── stat_arb.py │ │ └── xemm_multiple_levels.py │ ├── market_making │ │ ├── __init__.py │ │ ├── dman_maker_v2.py │ │ ├── pmm_dynamic.py │ │ └── pmm_simple.py │ └── params_docs │ │ ├── controller_config_template_base.md │ │ └── generic_pmm.md ├── credentials │ ├── .gitignore │ └── master_account │ │ ├── conf_client.yml │ │ ├── conf_fee_overrides.yml │ │ ├── connectors │ │ ├── .dockerignore │ │ └── .gitignore │ │ └── hummingbot_logs.yml ├── instances │ └── .gitignore └── scripts │ ├── __init__.py │ └── v2_with_controllers.py ├── config.py ├── dashboard-credentials.yml ├── database ├── __init__.py ├── connection.py ├── models.py └── repositories │ ├── __init__.py │ ├── account_repository.py │ ├── bot_run_repository.py │ ├── funding_repository.py │ ├── gateway_clmm_repository.py │ ├── gateway_swap_repository.py │ ├── order_repository.py │ └── trade_repository.py ├── deps.py ├── docker-compose.yml ├── environment.yml ├── fix-database.sh ├── init-db.sql ├── main.py ├── models ├── __init__.py ├── accounts.py ├── archived_bots.py ├── backtesting.py ├── bot_orchestration.py ├── connectors.py ├── controllers.py ├── docker.py ├── gateway.py ├── gateway_trading.py ├── market_data.py ├── pagination.py ├── portfolio.py ├── scripts.py └── trading.py ├── pyproject.toml ├── routers ├── __init__.py ├── accounts.py ├── archived_bots.py ├── backtesting.py ├── bot_orchestration.py ├── connectors.py ├── controllers.py ├── docker.py ├── gateway.py ├── gateway_clmm.py ├── gateway_swap.py ├── market_data.py ├── portfolio.py ├── scripts.py └── trading.py ├── run.sh ├── services ├── __init__.py ├── accounts_service.py ├── bots_orchestrator.py ├── docker_service.py ├── funding_recorder.py ├── gateway_client.py ├── gateway_service.py ├── gateway_transaction_poller.py ├── market_data_feed_manager.py └── orders_recorder.py ├── setup.sh ├── test └── __init__.py └── utils ├── __init__.py ├── bot_archiver.py ├── connector_manager.py ├── file_system.py ├── hummingbot_api_config_adapter.py ├── hummingbot_database_reader.py ├── mqtt_manager.py └── security.py /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hummingbot/hummingbot-api/HEAD/.dockerignore -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hummingbot/hummingbot-api/HEAD/.github/ISSUE_TEMPLATE/bug_report.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hummingbot/hummingbot-api/HEAD/.github/ISSUE_TEMPLATE/feature_request.yml -------------------------------------------------------------------------------- /.github/workflows/docker_buildx_workflow.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hummingbot/hummingbot-api/HEAD/.github/workflows/docker_buildx_workflow.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hummingbot/hummingbot-api/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hummingbot/hummingbot-api/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /AGENTS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hummingbot/hummingbot-api/HEAD/AGENTS.md -------------------------------------------------------------------------------- /API_REFERENCE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hummingbot/hummingbot-api/HEAD/API_REFERENCE.md -------------------------------------------------------------------------------- /CLAUDE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hummingbot/hummingbot-api/HEAD/CLAUDE.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hummingbot/hummingbot-api/HEAD/Dockerfile -------------------------------------------------------------------------------- /GEMINI.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hummingbot/hummingbot-api/HEAD/GEMINI.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hummingbot/hummingbot-api/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hummingbot/hummingbot-api/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hummingbot/hummingbot-api/HEAD/README.md -------------------------------------------------------------------------------- /bots/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bots/archived/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bots/conf/controllers/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bots/conf/scripts/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bots/controllers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bots/controllers/directional_trading/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bots/controllers/directional_trading/bollinger_v1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hummingbot/hummingbot-api/HEAD/bots/controllers/directional_trading/bollinger_v1.py -------------------------------------------------------------------------------- /bots/controllers/directional_trading/bollingrid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hummingbot/hummingbot-api/HEAD/bots/controllers/directional_trading/bollingrid.py -------------------------------------------------------------------------------- /bots/controllers/directional_trading/dman_v3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hummingbot/hummingbot-api/HEAD/bots/controllers/directional_trading/dman_v3.py -------------------------------------------------------------------------------- /bots/controllers/directional_trading/macd_bb_v1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hummingbot/hummingbot-api/HEAD/bots/controllers/directional_trading/macd_bb_v1.py -------------------------------------------------------------------------------- /bots/controllers/directional_trading/supertrend_v1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hummingbot/hummingbot-api/HEAD/bots/controllers/directional_trading/supertrend_v1.py -------------------------------------------------------------------------------- /bots/controllers/generic/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bots/controllers/generic/arbitrage_controller.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hummingbot/hummingbot-api/HEAD/bots/controllers/generic/arbitrage_controller.py -------------------------------------------------------------------------------- /bots/controllers/generic/grid_strike.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hummingbot/hummingbot-api/HEAD/bots/controllers/generic/grid_strike.py -------------------------------------------------------------------------------- /bots/controllers/generic/multi_grid_strike.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hummingbot/hummingbot-api/HEAD/bots/controllers/generic/multi_grid_strike.py -------------------------------------------------------------------------------- /bots/controllers/generic/pmm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hummingbot/hummingbot-api/HEAD/bots/controllers/generic/pmm.py -------------------------------------------------------------------------------- /bots/controllers/generic/pmm_adjusted.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hummingbot/hummingbot-api/HEAD/bots/controllers/generic/pmm_adjusted.py -------------------------------------------------------------------------------- /bots/controllers/generic/pmm_mister.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hummingbot/hummingbot-api/HEAD/bots/controllers/generic/pmm_mister.py -------------------------------------------------------------------------------- /bots/controllers/generic/quantum_grid_allocator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hummingbot/hummingbot-api/HEAD/bots/controllers/generic/quantum_grid_allocator.py -------------------------------------------------------------------------------- /bots/controllers/generic/stat_arb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hummingbot/hummingbot-api/HEAD/bots/controllers/generic/stat_arb.py -------------------------------------------------------------------------------- /bots/controllers/generic/xemm_multiple_levels.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hummingbot/hummingbot-api/HEAD/bots/controllers/generic/xemm_multiple_levels.py -------------------------------------------------------------------------------- /bots/controllers/market_making/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bots/controllers/market_making/dman_maker_v2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hummingbot/hummingbot-api/HEAD/bots/controllers/market_making/dman_maker_v2.py -------------------------------------------------------------------------------- /bots/controllers/market_making/pmm_dynamic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hummingbot/hummingbot-api/HEAD/bots/controllers/market_making/pmm_dynamic.py -------------------------------------------------------------------------------- /bots/controllers/market_making/pmm_simple.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hummingbot/hummingbot-api/HEAD/bots/controllers/market_making/pmm_simple.py -------------------------------------------------------------------------------- /bots/controllers/params_docs/controller_config_template_base.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hummingbot/hummingbot-api/HEAD/bots/controllers/params_docs/controller_config_template_base.md -------------------------------------------------------------------------------- /bots/controllers/params_docs/generic_pmm.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hummingbot/hummingbot-api/HEAD/bots/controllers/params_docs/generic_pmm.md -------------------------------------------------------------------------------- /bots/credentials/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bots/credentials/master_account/conf_client.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hummingbot/hummingbot-api/HEAD/bots/credentials/master_account/conf_client.yml -------------------------------------------------------------------------------- /bots/credentials/master_account/conf_fee_overrides.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hummingbot/hummingbot-api/HEAD/bots/credentials/master_account/conf_fee_overrides.yml -------------------------------------------------------------------------------- /bots/credentials/master_account/connectors/.dockerignore: -------------------------------------------------------------------------------- 1 | *.yml -------------------------------------------------------------------------------- /bots/credentials/master_account/connectors/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bots/credentials/master_account/hummingbot_logs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hummingbot/hummingbot-api/HEAD/bots/credentials/master_account/hummingbot_logs.yml -------------------------------------------------------------------------------- /bots/instances/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bots/scripts/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bots/scripts/v2_with_controllers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hummingbot/hummingbot-api/HEAD/bots/scripts/v2_with_controllers.py -------------------------------------------------------------------------------- /config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hummingbot/hummingbot-api/HEAD/config.py -------------------------------------------------------------------------------- /dashboard-credentials.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hummingbot/hummingbot-api/HEAD/dashboard-credentials.yml -------------------------------------------------------------------------------- /database/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hummingbot/hummingbot-api/HEAD/database/__init__.py -------------------------------------------------------------------------------- /database/connection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hummingbot/hummingbot-api/HEAD/database/connection.py -------------------------------------------------------------------------------- /database/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hummingbot/hummingbot-api/HEAD/database/models.py -------------------------------------------------------------------------------- /database/repositories/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hummingbot/hummingbot-api/HEAD/database/repositories/__init__.py -------------------------------------------------------------------------------- /database/repositories/account_repository.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hummingbot/hummingbot-api/HEAD/database/repositories/account_repository.py -------------------------------------------------------------------------------- /database/repositories/bot_run_repository.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hummingbot/hummingbot-api/HEAD/database/repositories/bot_run_repository.py -------------------------------------------------------------------------------- /database/repositories/funding_repository.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hummingbot/hummingbot-api/HEAD/database/repositories/funding_repository.py -------------------------------------------------------------------------------- /database/repositories/gateway_clmm_repository.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hummingbot/hummingbot-api/HEAD/database/repositories/gateway_clmm_repository.py -------------------------------------------------------------------------------- /database/repositories/gateway_swap_repository.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hummingbot/hummingbot-api/HEAD/database/repositories/gateway_swap_repository.py -------------------------------------------------------------------------------- /database/repositories/order_repository.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hummingbot/hummingbot-api/HEAD/database/repositories/order_repository.py -------------------------------------------------------------------------------- /database/repositories/trade_repository.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hummingbot/hummingbot-api/HEAD/database/repositories/trade_repository.py -------------------------------------------------------------------------------- /deps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hummingbot/hummingbot-api/HEAD/deps.py -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hummingbot/hummingbot-api/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /environment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hummingbot/hummingbot-api/HEAD/environment.yml -------------------------------------------------------------------------------- /fix-database.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hummingbot/hummingbot-api/HEAD/fix-database.sh -------------------------------------------------------------------------------- /init-db.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hummingbot/hummingbot-api/HEAD/init-db.sql -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hummingbot/hummingbot-api/HEAD/main.py -------------------------------------------------------------------------------- /models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hummingbot/hummingbot-api/HEAD/models/__init__.py -------------------------------------------------------------------------------- /models/accounts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hummingbot/hummingbot-api/HEAD/models/accounts.py -------------------------------------------------------------------------------- /models/archived_bots.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hummingbot/hummingbot-api/HEAD/models/archived_bots.py -------------------------------------------------------------------------------- /models/backtesting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hummingbot/hummingbot-api/HEAD/models/backtesting.py -------------------------------------------------------------------------------- /models/bot_orchestration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hummingbot/hummingbot-api/HEAD/models/bot_orchestration.py -------------------------------------------------------------------------------- /models/connectors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hummingbot/hummingbot-api/HEAD/models/connectors.py -------------------------------------------------------------------------------- /models/controllers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hummingbot/hummingbot-api/HEAD/models/controllers.py -------------------------------------------------------------------------------- /models/docker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hummingbot/hummingbot-api/HEAD/models/docker.py -------------------------------------------------------------------------------- /models/gateway.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hummingbot/hummingbot-api/HEAD/models/gateway.py -------------------------------------------------------------------------------- /models/gateway_trading.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hummingbot/hummingbot-api/HEAD/models/gateway_trading.py -------------------------------------------------------------------------------- /models/market_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hummingbot/hummingbot-api/HEAD/models/market_data.py -------------------------------------------------------------------------------- /models/pagination.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hummingbot/hummingbot-api/HEAD/models/pagination.py -------------------------------------------------------------------------------- /models/portfolio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hummingbot/hummingbot-api/HEAD/models/portfolio.py -------------------------------------------------------------------------------- /models/scripts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hummingbot/hummingbot-api/HEAD/models/scripts.py -------------------------------------------------------------------------------- /models/trading.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hummingbot/hummingbot-api/HEAD/models/trading.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hummingbot/hummingbot-api/HEAD/pyproject.toml -------------------------------------------------------------------------------- /routers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /routers/accounts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hummingbot/hummingbot-api/HEAD/routers/accounts.py -------------------------------------------------------------------------------- /routers/archived_bots.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hummingbot/hummingbot-api/HEAD/routers/archived_bots.py -------------------------------------------------------------------------------- /routers/backtesting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hummingbot/hummingbot-api/HEAD/routers/backtesting.py -------------------------------------------------------------------------------- /routers/bot_orchestration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hummingbot/hummingbot-api/HEAD/routers/bot_orchestration.py -------------------------------------------------------------------------------- /routers/connectors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hummingbot/hummingbot-api/HEAD/routers/connectors.py -------------------------------------------------------------------------------- /routers/controllers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hummingbot/hummingbot-api/HEAD/routers/controllers.py -------------------------------------------------------------------------------- /routers/docker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hummingbot/hummingbot-api/HEAD/routers/docker.py -------------------------------------------------------------------------------- /routers/gateway.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hummingbot/hummingbot-api/HEAD/routers/gateway.py -------------------------------------------------------------------------------- /routers/gateway_clmm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hummingbot/hummingbot-api/HEAD/routers/gateway_clmm.py -------------------------------------------------------------------------------- /routers/gateway_swap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hummingbot/hummingbot-api/HEAD/routers/gateway_swap.py -------------------------------------------------------------------------------- /routers/market_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hummingbot/hummingbot-api/HEAD/routers/market_data.py -------------------------------------------------------------------------------- /routers/portfolio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hummingbot/hummingbot-api/HEAD/routers/portfolio.py -------------------------------------------------------------------------------- /routers/scripts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hummingbot/hummingbot-api/HEAD/routers/scripts.py -------------------------------------------------------------------------------- /routers/trading.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hummingbot/hummingbot-api/HEAD/routers/trading.py -------------------------------------------------------------------------------- /run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hummingbot/hummingbot-api/HEAD/run.sh -------------------------------------------------------------------------------- /services/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hummingbot/hummingbot-api/HEAD/services/__init__.py -------------------------------------------------------------------------------- /services/accounts_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hummingbot/hummingbot-api/HEAD/services/accounts_service.py -------------------------------------------------------------------------------- /services/bots_orchestrator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hummingbot/hummingbot-api/HEAD/services/bots_orchestrator.py -------------------------------------------------------------------------------- /services/docker_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hummingbot/hummingbot-api/HEAD/services/docker_service.py -------------------------------------------------------------------------------- /services/funding_recorder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hummingbot/hummingbot-api/HEAD/services/funding_recorder.py -------------------------------------------------------------------------------- /services/gateway_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hummingbot/hummingbot-api/HEAD/services/gateway_client.py -------------------------------------------------------------------------------- /services/gateway_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hummingbot/hummingbot-api/HEAD/services/gateway_service.py -------------------------------------------------------------------------------- /services/gateway_transaction_poller.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hummingbot/hummingbot-api/HEAD/services/gateway_transaction_poller.py -------------------------------------------------------------------------------- /services/market_data_feed_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hummingbot/hummingbot-api/HEAD/services/market_data_feed_manager.py -------------------------------------------------------------------------------- /services/orders_recorder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hummingbot/hummingbot-api/HEAD/services/orders_recorder.py -------------------------------------------------------------------------------- /setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hummingbot/hummingbot-api/HEAD/setup.sh -------------------------------------------------------------------------------- /test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /utils/bot_archiver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hummingbot/hummingbot-api/HEAD/utils/bot_archiver.py -------------------------------------------------------------------------------- /utils/connector_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hummingbot/hummingbot-api/HEAD/utils/connector_manager.py -------------------------------------------------------------------------------- /utils/file_system.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hummingbot/hummingbot-api/HEAD/utils/file_system.py -------------------------------------------------------------------------------- /utils/hummingbot_api_config_adapter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hummingbot/hummingbot-api/HEAD/utils/hummingbot_api_config_adapter.py -------------------------------------------------------------------------------- /utils/hummingbot_database_reader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hummingbot/hummingbot-api/HEAD/utils/hummingbot_database_reader.py -------------------------------------------------------------------------------- /utils/mqtt_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hummingbot/hummingbot-api/HEAD/utils/mqtt_manager.py -------------------------------------------------------------------------------- /utils/security.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hummingbot/hummingbot-api/HEAD/utils/security.py --------------------------------------------------------------------------------