├── .github └── ISSUE_TEMPLATE │ └── bug_report.yml ├── .gitignore ├── LICENSE ├── README.md ├── bots ├── __init__.py ├── archived │ └── .gitignore ├── conf │ ├── controllers │ │ └── .gitignore │ └── scripts │ │ └── .gitignore ├── controllers │ ├── __init__.py │ ├── directional_trading │ │ ├── __init__.py │ │ ├── bollinger_v1.py │ │ ├── dman_v3.py │ │ ├── macd_bb_v1.py │ │ └── supertrend_v1.py │ ├── generic │ │ ├── __init__.py │ │ ├── arbitrage_controller.py │ │ ├── grid_strike.py │ │ ├── pmm.py │ │ ├── pmm_adjusted.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 │ │ └── .gitignore │ │ └── hummingbot_logs.yml ├── instances │ └── .gitignore └── scripts │ ├── __init__.py │ └── v2_with_controllers.py ├── credentials.yml ├── docker-compose-dydx.yml ├── docker-compose.yml ├── pages ├── __init__.py ├── config │ ├── __init__.py │ ├── bollinger_v1 │ │ ├── README.md │ │ ├── __init__.py │ │ ├── app.py │ │ └── user_inputs.py │ ├── dman_maker_v2 │ │ ├── README.md │ │ ├── __init__.py │ │ ├── app.py │ │ └── user_inputs.py │ ├── grid_strike │ │ ├── README.md │ │ ├── __init__.py │ │ ├── app.py │ │ └── user_inputs.py │ ├── kalman_filter_v1 │ │ ├── README.md │ │ ├── __init__.py │ │ └── app.py │ ├── macd_bb_v1 │ │ ├── README.md │ │ ├── __init__.py │ │ ├── app.py │ │ └── user_inputs.py │ ├── pmm_dynamic │ │ ├── README.md │ │ ├── __init__.py │ │ ├── app.py │ │ ├── spread_and_price_multipliers.py │ │ └── user_inputs.py │ ├── pmm_simple │ │ ├── README.md │ │ ├── __init__.py │ │ ├── app.py │ │ └── user_inputs.py │ ├── supertrend_v1 │ │ ├── README.md │ │ ├── __init__.py │ │ ├── app.py │ │ └── user_inputs.py │ ├── utils.py │ └── xemm_controller │ │ ├── README.md │ │ ├── __init__.py │ │ └── app.py ├── data │ ├── __init__.py │ ├── download_candles │ │ ├── README.md │ │ ├── __init__.py │ │ └── app.py │ └── tvl_vs_mcap │ │ ├── README.md │ │ ├── __init__.py │ │ └── app.py ├── landing.py ├── orchestration │ ├── __init__.py │ ├── archived_bots │ │ ├── README.md │ │ ├── __init__.py │ │ └── app.py │ ├── credentials │ │ ├── README.md │ │ ├── __init__.py │ │ └── app.py │ ├── file_manager │ │ ├── README.md │ │ ├── __init__.py │ │ └── app.py │ ├── instances │ │ ├── README.md │ │ ├── __init__.py │ │ └── app.py │ ├── launch_bot_v2 │ │ ├── README.md │ │ ├── __init__.py │ │ └── app.py │ ├── portfolio │ │ ├── README.md │ │ ├── __init__.py │ │ └── app.py │ └── trading │ │ ├── README.md │ │ ├── __init__.py │ │ └── app.py ├── performance │ ├── __init__.py │ └── bot_performance │ │ ├── README.md │ │ ├── __init__.py │ │ └── app.py └── permissions.py ├── setup.sh └── setup_dydx.sh /.github/ISSUE_TEMPLATE/bug_report.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hummingbot/deploy/HEAD/.github/ISSUE_TEMPLATE/bug_report.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hummingbot/deploy/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hummingbot/deploy/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hummingbot/deploy/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/deploy/HEAD/bots/controllers/directional_trading/bollinger_v1.py -------------------------------------------------------------------------------- /bots/controllers/directional_trading/dman_v3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hummingbot/deploy/HEAD/bots/controllers/directional_trading/dman_v3.py -------------------------------------------------------------------------------- /bots/controllers/directional_trading/macd_bb_v1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hummingbot/deploy/HEAD/bots/controllers/directional_trading/macd_bb_v1.py -------------------------------------------------------------------------------- /bots/controllers/directional_trading/supertrend_v1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hummingbot/deploy/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/deploy/HEAD/bots/controllers/generic/arbitrage_controller.py -------------------------------------------------------------------------------- /bots/controllers/generic/grid_strike.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hummingbot/deploy/HEAD/bots/controllers/generic/grid_strike.py -------------------------------------------------------------------------------- /bots/controllers/generic/pmm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hummingbot/deploy/HEAD/bots/controllers/generic/pmm.py -------------------------------------------------------------------------------- /bots/controllers/generic/pmm_adjusted.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hummingbot/deploy/HEAD/bots/controllers/generic/pmm_adjusted.py -------------------------------------------------------------------------------- /bots/controllers/generic/quantum_grid_allocator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hummingbot/deploy/HEAD/bots/controllers/generic/quantum_grid_allocator.py -------------------------------------------------------------------------------- /bots/controllers/generic/stat_arb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hummingbot/deploy/HEAD/bots/controllers/generic/stat_arb.py -------------------------------------------------------------------------------- /bots/controllers/generic/xemm_multiple_levels.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hummingbot/deploy/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/deploy/HEAD/bots/controllers/market_making/dman_maker_v2.py -------------------------------------------------------------------------------- /bots/controllers/market_making/pmm_dynamic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hummingbot/deploy/HEAD/bots/controllers/market_making/pmm_dynamic.py -------------------------------------------------------------------------------- /bots/controllers/market_making/pmm_simple.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hummingbot/deploy/HEAD/bots/controllers/market_making/pmm_simple.py -------------------------------------------------------------------------------- /bots/controllers/params_docs/controller_config_template_base.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hummingbot/deploy/HEAD/bots/controllers/params_docs/controller_config_template_base.md -------------------------------------------------------------------------------- /bots/controllers/params_docs/generic_pmm.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hummingbot/deploy/HEAD/bots/controllers/params_docs/generic_pmm.md -------------------------------------------------------------------------------- /bots/credentials/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bots/credentials/master_account/conf_client.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hummingbot/deploy/HEAD/bots/credentials/master_account/conf_client.yml -------------------------------------------------------------------------------- /bots/credentials/master_account/conf_fee_overrides.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hummingbot/deploy/HEAD/bots/credentials/master_account/conf_fee_overrides.yml -------------------------------------------------------------------------------- /bots/credentials/master_account/connectors/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bots/credentials/master_account/hummingbot_logs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hummingbot/deploy/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/deploy/HEAD/bots/scripts/v2_with_controllers.py -------------------------------------------------------------------------------- /credentials.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hummingbot/deploy/HEAD/credentials.yml -------------------------------------------------------------------------------- /docker-compose-dydx.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hummingbot/deploy/HEAD/docker-compose-dydx.yml -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hummingbot/deploy/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /pages/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pages/config/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pages/config/bollinger_v1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hummingbot/deploy/HEAD/pages/config/bollinger_v1/README.md -------------------------------------------------------------------------------- /pages/config/bollinger_v1/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pages/config/bollinger_v1/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hummingbot/deploy/HEAD/pages/config/bollinger_v1/app.py -------------------------------------------------------------------------------- /pages/config/bollinger_v1/user_inputs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hummingbot/deploy/HEAD/pages/config/bollinger_v1/user_inputs.py -------------------------------------------------------------------------------- /pages/config/dman_maker_v2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hummingbot/deploy/HEAD/pages/config/dman_maker_v2/README.md -------------------------------------------------------------------------------- /pages/config/dman_maker_v2/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pages/config/dman_maker_v2/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hummingbot/deploy/HEAD/pages/config/dman_maker_v2/app.py -------------------------------------------------------------------------------- /pages/config/dman_maker_v2/user_inputs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hummingbot/deploy/HEAD/pages/config/dman_maker_v2/user_inputs.py -------------------------------------------------------------------------------- /pages/config/grid_strike/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hummingbot/deploy/HEAD/pages/config/grid_strike/README.md -------------------------------------------------------------------------------- /pages/config/grid_strike/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pages/config/grid_strike/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hummingbot/deploy/HEAD/pages/config/grid_strike/app.py -------------------------------------------------------------------------------- /pages/config/grid_strike/user_inputs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hummingbot/deploy/HEAD/pages/config/grid_strike/user_inputs.py -------------------------------------------------------------------------------- /pages/config/kalman_filter_v1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hummingbot/deploy/HEAD/pages/config/kalman_filter_v1/README.md -------------------------------------------------------------------------------- /pages/config/kalman_filter_v1/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pages/config/kalman_filter_v1/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hummingbot/deploy/HEAD/pages/config/kalman_filter_v1/app.py -------------------------------------------------------------------------------- /pages/config/macd_bb_v1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hummingbot/deploy/HEAD/pages/config/macd_bb_v1/README.md -------------------------------------------------------------------------------- /pages/config/macd_bb_v1/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pages/config/macd_bb_v1/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hummingbot/deploy/HEAD/pages/config/macd_bb_v1/app.py -------------------------------------------------------------------------------- /pages/config/macd_bb_v1/user_inputs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hummingbot/deploy/HEAD/pages/config/macd_bb_v1/user_inputs.py -------------------------------------------------------------------------------- /pages/config/pmm_dynamic/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hummingbot/deploy/HEAD/pages/config/pmm_dynamic/README.md -------------------------------------------------------------------------------- /pages/config/pmm_dynamic/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pages/config/pmm_dynamic/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hummingbot/deploy/HEAD/pages/config/pmm_dynamic/app.py -------------------------------------------------------------------------------- /pages/config/pmm_dynamic/spread_and_price_multipliers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hummingbot/deploy/HEAD/pages/config/pmm_dynamic/spread_and_price_multipliers.py -------------------------------------------------------------------------------- /pages/config/pmm_dynamic/user_inputs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hummingbot/deploy/HEAD/pages/config/pmm_dynamic/user_inputs.py -------------------------------------------------------------------------------- /pages/config/pmm_simple/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hummingbot/deploy/HEAD/pages/config/pmm_simple/README.md -------------------------------------------------------------------------------- /pages/config/pmm_simple/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pages/config/pmm_simple/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hummingbot/deploy/HEAD/pages/config/pmm_simple/app.py -------------------------------------------------------------------------------- /pages/config/pmm_simple/user_inputs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hummingbot/deploy/HEAD/pages/config/pmm_simple/user_inputs.py -------------------------------------------------------------------------------- /pages/config/supertrend_v1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hummingbot/deploy/HEAD/pages/config/supertrend_v1/README.md -------------------------------------------------------------------------------- /pages/config/supertrend_v1/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pages/config/supertrend_v1/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hummingbot/deploy/HEAD/pages/config/supertrend_v1/app.py -------------------------------------------------------------------------------- /pages/config/supertrend_v1/user_inputs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hummingbot/deploy/HEAD/pages/config/supertrend_v1/user_inputs.py -------------------------------------------------------------------------------- /pages/config/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hummingbot/deploy/HEAD/pages/config/utils.py -------------------------------------------------------------------------------- /pages/config/xemm_controller/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hummingbot/deploy/HEAD/pages/config/xemm_controller/README.md -------------------------------------------------------------------------------- /pages/config/xemm_controller/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pages/config/xemm_controller/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hummingbot/deploy/HEAD/pages/config/xemm_controller/app.py -------------------------------------------------------------------------------- /pages/data/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pages/data/download_candles/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hummingbot/deploy/HEAD/pages/data/download_candles/README.md -------------------------------------------------------------------------------- /pages/data/download_candles/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pages/data/download_candles/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hummingbot/deploy/HEAD/pages/data/download_candles/app.py -------------------------------------------------------------------------------- /pages/data/tvl_vs_mcap/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hummingbot/deploy/HEAD/pages/data/tvl_vs_mcap/README.md -------------------------------------------------------------------------------- /pages/data/tvl_vs_mcap/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pages/data/tvl_vs_mcap/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hummingbot/deploy/HEAD/pages/data/tvl_vs_mcap/app.py -------------------------------------------------------------------------------- /pages/landing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hummingbot/deploy/HEAD/pages/landing.py -------------------------------------------------------------------------------- /pages/orchestration/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pages/orchestration/archived_bots/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hummingbot/deploy/HEAD/pages/orchestration/archived_bots/README.md -------------------------------------------------------------------------------- /pages/orchestration/archived_bots/__init__.py: -------------------------------------------------------------------------------- 1 | # Archived Bots Page Module -------------------------------------------------------------------------------- /pages/orchestration/archived_bots/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hummingbot/deploy/HEAD/pages/orchestration/archived_bots/app.py -------------------------------------------------------------------------------- /pages/orchestration/credentials/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hummingbot/deploy/HEAD/pages/orchestration/credentials/README.md -------------------------------------------------------------------------------- /pages/orchestration/credentials/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pages/orchestration/credentials/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hummingbot/deploy/HEAD/pages/orchestration/credentials/app.py -------------------------------------------------------------------------------- /pages/orchestration/file_manager/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hummingbot/deploy/HEAD/pages/orchestration/file_manager/README.md -------------------------------------------------------------------------------- /pages/orchestration/file_manager/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pages/orchestration/file_manager/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hummingbot/deploy/HEAD/pages/orchestration/file_manager/app.py -------------------------------------------------------------------------------- /pages/orchestration/instances/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hummingbot/deploy/HEAD/pages/orchestration/instances/README.md -------------------------------------------------------------------------------- /pages/orchestration/instances/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pages/orchestration/instances/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hummingbot/deploy/HEAD/pages/orchestration/instances/app.py -------------------------------------------------------------------------------- /pages/orchestration/launch_bot_v2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hummingbot/deploy/HEAD/pages/orchestration/launch_bot_v2/README.md -------------------------------------------------------------------------------- /pages/orchestration/launch_bot_v2/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pages/orchestration/launch_bot_v2/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hummingbot/deploy/HEAD/pages/orchestration/launch_bot_v2/app.py -------------------------------------------------------------------------------- /pages/orchestration/portfolio/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hummingbot/deploy/HEAD/pages/orchestration/portfolio/README.md -------------------------------------------------------------------------------- /pages/orchestration/portfolio/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pages/orchestration/portfolio/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hummingbot/deploy/HEAD/pages/orchestration/portfolio/app.py -------------------------------------------------------------------------------- /pages/orchestration/trading/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hummingbot/deploy/HEAD/pages/orchestration/trading/README.md -------------------------------------------------------------------------------- /pages/orchestration/trading/__init__.py: -------------------------------------------------------------------------------- 1 | # Trading page module -------------------------------------------------------------------------------- /pages/orchestration/trading/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hummingbot/deploy/HEAD/pages/orchestration/trading/app.py -------------------------------------------------------------------------------- /pages/performance/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pages/performance/bot_performance/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hummingbot/deploy/HEAD/pages/performance/bot_performance/README.md -------------------------------------------------------------------------------- /pages/performance/bot_performance/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pages/performance/bot_performance/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hummingbot/deploy/HEAD/pages/performance/bot_performance/app.py -------------------------------------------------------------------------------- /pages/permissions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hummingbot/deploy/HEAD/pages/permissions.py -------------------------------------------------------------------------------- /setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hummingbot/deploy/HEAD/setup.sh -------------------------------------------------------------------------------- /setup_dydx.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hummingbot/deploy/HEAD/setup_dydx.sh --------------------------------------------------------------------------------