├── .dockerignore ├── .flake8 ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── exchange_request.md │ ├── feature_request.md │ └── scripts_request.md ├── pull_request_template.md └── workflows │ └── workflow.yml ├── .gitignore ├── .pre-commit-config.yaml ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── DATA_COLLECTION.md ├── DOCKER.md ├── Dockerfile ├── Dockerfile.arm ├── LICENSE ├── Makefile ├── README.md ├── assets ├── balancer_logo.svg ├── binance_perpetual_logo.png ├── binanceus_logo.png ├── bitfinex_logo.png ├── bitmax_logo.png ├── bittrex_logo.png ├── blocktane_logo.png ├── celo_logo.svg ├── cryptocom_logo.png ├── dolomite_logo.png ├── dydx_logo.png ├── eterbase_logo.png ├── huobi_logo.png ├── kraken_logo.png ├── kucoin_logo.png ├── liquid_logo.png ├── loopring_logo.png ├── okex_logo.png ├── radar_logo.png ├── terra_logo.png └── uniswap_logo.svg ├── bin ├── .gitignore ├── __init__.py ├── hummingbot.py ├── hummingbot_quickstart.py └── path_util.py ├── clean ├── compile ├── compile.bat ├── conf ├── .gitignore ├── __init__.py └── erc20_tokens_override.json ├── docker └── etc │ └── sudoers.d │ └── hummingbot ├── hooks ├── README.md └── build ├── hummingbot ├── README.md ├── VERSION ├── __init__.py ├── client │ ├── __init__.py │ ├── command │ │ ├── __init__.py │ │ ├── balance_command.py │ │ ├── config_command.py │ │ ├── connect_command.py │ │ ├── create_command.py │ │ ├── exit_command.py │ │ ├── export_command.py │ │ ├── generate_certs_command.py │ │ ├── get_balance_command.py │ │ ├── help_command.py │ │ ├── history_command.py │ │ ├── import_command.py │ │ ├── open_orders_command.py │ │ ├── order_book_command.py │ │ ├── paper_trade_command.py │ │ ├── pnl_command.py │ │ ├── silly_commands.py │ │ ├── silly_resources │ │ │ ├── dennis_1.txt │ │ │ ├── dennis_2.txt │ │ │ ├── dennis_3.txt │ │ │ ├── dennis_4.txt │ │ │ ├── dennis_loading_1.txt │ │ │ ├── dennis_loading_2.txt │ │ │ ├── dennis_loading_3.txt │ │ │ ├── dennis_loading_4.txt │ │ │ ├── hb_with_flower_1.txt │ │ │ ├── hb_with_flower_2.txt │ │ │ ├── hb_with_flower_up_close_1.txt │ │ │ ├── hb_with_flower_up_close_2.txt │ │ │ ├── hodl_and_hodl.txt │ │ │ ├── hodl_bitcoin.txt │ │ │ ├── hodl_stay_calm.txt │ │ │ ├── jack_1.txt │ │ │ ├── jack_2.txt │ │ │ ├── money-fly_1.txt │ │ │ ├── money-fly_2.txt │ │ │ ├── rein_1.txt │ │ │ ├── rein_2.txt │ │ │ ├── rein_3.txt │ │ │ ├── roger_1.txt │ │ │ ├── roger_2.txt │ │ │ ├── roger_3.txt │ │ │ ├── roger_4.txt │ │ │ └── roger_alert.txt │ │ ├── start_command.py │ │ ├── status_command.py │ │ ├── stop_command.py │ │ ├── ticker_command.py │ │ └── trades_command.py │ ├── config │ │ ├── config_crypt.py │ │ ├── config_helpers.py │ │ ├── config_methods.py │ │ ├── config_validators.py │ │ ├── config_var.py │ │ ├── fee_overrides_config_map.py │ │ ├── global_config_map.py │ │ └── security.py │ ├── data_type │ │ ├── __init__.py │ │ └── currency_amount.py │ ├── errors.py │ ├── hummingbot_application.py │ ├── performance.py │ ├── performance_analysis.py │ ├── platform.py │ ├── settings.py │ └── ui │ │ ├── __init__.py │ │ ├── completer.py │ │ ├── custom_widgets.py │ │ ├── hummingbot_cli.py │ │ ├── interface_utils.py │ │ ├── keybindings.py │ │ ├── layout.py │ │ ├── parser.py │ │ ├── scroll_handlers.py │ │ ├── stdout_redirection.py │ │ └── style.py ├── connector │ ├── __init__.py │ ├── connector │ │ ├── __init__.py │ │ ├── balancer │ │ │ ├── __init__.py │ │ │ ├── balancer_connector.py │ │ │ ├── balancer_in_flight_order.py │ │ │ ├── balancer_utils.py │ │ │ ├── dummy.pxd │ │ │ └── dummy.pyx │ │ ├── terra │ │ │ ├── __init__.py │ │ │ ├── dummy.pxd │ │ │ ├── dummy.pyx │ │ │ ├── terra_connector.py │ │ │ ├── terra_in_flight_order.py │ │ │ └── terra_utils.py │ │ └── uniswap │ │ │ ├── __init__.py │ │ │ ├── dummy.pxd │ │ │ ├── dummy.pyx │ │ │ ├── uniswap_connector.py │ │ │ ├── uniswap_in_flight_order.py │ │ │ └── uniswap_utils.py │ ├── connector_base.pxd │ ├── connector_base.pyx │ ├── connector_status.py │ ├── derivative │ │ ├── __init__.py │ │ ├── binance_perpetual │ │ │ ├── __init__.py │ │ │ ├── binance_perpetual_api_order_book_data_source.py │ │ │ ├── binance_perpetual_derivative.py │ │ │ ├── binance_perpetual_in_flight_order.py │ │ │ ├── binance_perpetual_order_book.py │ │ │ ├── binance_perpetual_order_book_tracker.py │ │ │ ├── binance_perpetual_user_stream_data_source.py │ │ │ ├── binance_perpetual_user_stream_tracker.py │ │ │ ├── binance_perpetual_utils.py │ │ │ ├── constants.py │ │ │ ├── dummy.pxd │ │ │ └── dummy.pyx │ │ └── position.py │ ├── derivative_base.py │ ├── exchange │ │ ├── __init__.py │ │ ├── bamboo_relay │ │ │ ├── __init__.py │ │ │ ├── bamboo_relay_active_order_tracker.pxd │ │ │ ├── bamboo_relay_active_order_tracker.pyx │ │ │ ├── bamboo_relay_api_order_book_data_source.py │ │ │ ├── bamboo_relay_constants.py │ │ │ ├── bamboo_relay_exchange.pxd │ │ │ ├── bamboo_relay_exchange.pyx │ │ │ ├── bamboo_relay_in_flight_order.pxd │ │ │ ├── bamboo_relay_in_flight_order.pyx │ │ │ ├── bamboo_relay_order_book.pxd │ │ │ ├── bamboo_relay_order_book.pyx │ │ │ ├── bamboo_relay_order_book_message.py │ │ │ ├── bamboo_relay_order_book_tracker.py │ │ │ ├── bamboo_relay_order_book_tracker_entry.py │ │ │ └── bamboo_relay_utils.py │ │ ├── binance │ │ │ ├── __init__.py │ │ │ ├── binance_api_order_book_data_source.py │ │ │ ├── binance_api_user_stream_data_source.py │ │ │ ├── binance_exchange.pxd │ │ │ ├── binance_exchange.pyx │ │ │ ├── binance_helper.py │ │ │ ├── binance_in_flight_order.pxd │ │ │ ├── binance_in_flight_order.pyx │ │ │ ├── binance_order_book.pxd │ │ │ ├── binance_order_book.pyx │ │ │ ├── binance_order_book_tracker.py │ │ │ ├── binance_time.py │ │ │ ├── binance_user_stream_tracker.py │ │ │ └── binance_utils.py │ │ ├── bitfinex │ │ │ ├── __init__.py │ │ │ ├── bitfinex_active_order_tracker.pxd │ │ │ ├── bitfinex_active_order_tracker.pyx │ │ │ ├── bitfinex_api_order_book_data_source.py │ │ │ ├── bitfinex_api_user_stream_data_source.py │ │ │ ├── bitfinex_auth.py │ │ │ ├── bitfinex_exchange.pxd │ │ │ ├── bitfinex_exchange.pyx │ │ │ ├── bitfinex_in_flight_order.pxd │ │ │ ├── bitfinex_in_flight_order.pyx │ │ │ ├── bitfinex_order_book.pxd │ │ │ ├── bitfinex_order_book.pyx │ │ │ ├── bitfinex_order_book_message.py │ │ │ ├── bitfinex_order_book_tracker.py │ │ │ ├── bitfinex_order_book_tracker_entry.py │ │ │ ├── bitfinex_user_stream_tracker.py │ │ │ ├── bitfinex_utils.py │ │ │ └── bitfinex_websocket.py │ │ ├── bitmax │ │ │ ├── __init__.py │ │ │ ├── bitmax_active_order_tracker.pxd │ │ │ ├── bitmax_active_order_tracker.pyx │ │ │ ├── bitmax_api_order_book_data_source.py │ │ │ ├── bitmax_api_user_stream_data_source.py │ │ │ ├── bitmax_auth.py │ │ │ ├── bitmax_constants.py │ │ │ ├── bitmax_exchange.py │ │ │ ├── bitmax_in_flight_order.py │ │ │ ├── bitmax_order_book.py │ │ │ ├── bitmax_order_book_message.py │ │ │ ├── bitmax_order_book_tracker.py │ │ │ ├── bitmax_order_book_tracker_entry.py │ │ │ ├── bitmax_user_stream_tracker.py │ │ │ └── bitmax_utils.py │ │ ├── bittrex │ │ │ ├── __init__.py │ │ │ ├── bittrex_active_order_tracker.pxd │ │ │ ├── bittrex_active_order_tracker.pyx │ │ │ ├── bittrex_api_order_book_data_source.py │ │ │ ├── bittrex_api_user_stream_data_source.py │ │ │ ├── bittrex_auth.py │ │ │ ├── bittrex_exchange.pxd │ │ │ ├── bittrex_exchange.pyx │ │ │ ├── bittrex_in_flight_order.pxd │ │ │ ├── bittrex_in_flight_order.pyx │ │ │ ├── bittrex_order_book.pxd │ │ │ ├── bittrex_order_book.pyx │ │ │ ├── bittrex_order_book_message.py │ │ │ ├── bittrex_order_book_tracker.py │ │ │ ├── bittrex_order_book_tracker_entry.py │ │ │ ├── bittrex_user_stream_tracker.py │ │ │ └── bittrex_utils.py │ │ ├── blocktane │ │ │ ├── __init__.py │ │ │ ├── blocktane_active_order_tracker.pxd │ │ │ ├── blocktane_active_order_tracker.pyx │ │ │ ├── blocktane_api_order_book_data_source.py │ │ │ ├── blocktane_api_user_stream_data_source.py │ │ │ ├── blocktane_auth.py │ │ │ ├── blocktane_exchange.pxd │ │ │ ├── blocktane_exchange.pyx │ │ │ ├── blocktane_in_flight_order.pxd │ │ │ ├── blocktane_in_flight_order.pyx │ │ │ ├── blocktane_order_book.pxd │ │ │ ├── blocktane_order_book.pyx │ │ │ ├── blocktane_order_book_tracker.py │ │ │ ├── blocktane_user_stream_tracker.py │ │ │ └── blocktane_utils.py │ │ ├── coinbase_pro │ │ │ ├── __init__.py │ │ │ ├── coinbase_pro_active_order_tracker.pxd │ │ │ ├── coinbase_pro_active_order_tracker.pyx │ │ │ ├── coinbase_pro_api_order_book_data_source.py │ │ │ ├── coinbase_pro_api_user_stream_data_source.py │ │ │ ├── coinbase_pro_auth.py │ │ │ ├── coinbase_pro_exchange.pxd │ │ │ ├── coinbase_pro_exchange.pyx │ │ │ ├── coinbase_pro_in_flight_order.pxd │ │ │ ├── coinbase_pro_in_flight_order.pyx │ │ │ ├── coinbase_pro_order_book.pxd │ │ │ ├── coinbase_pro_order_book.pyx │ │ │ ├── coinbase_pro_order_book_message.py │ │ │ ├── coinbase_pro_order_book_tracker.py │ │ │ ├── coinbase_pro_order_book_tracker_entry.py │ │ │ ├── coinbase_pro_user_stream_tracker.py │ │ │ └── coinbase_pro_utils.py │ │ ├── crypto_com │ │ │ ├── __init__.py │ │ │ ├── crypto_com_active_order_tracker.pxd │ │ │ ├── crypto_com_active_order_tracker.pyx │ │ │ ├── crypto_com_api_order_book_data_source.py │ │ │ ├── crypto_com_api_user_stream_data_source.py │ │ │ ├── crypto_com_auth.py │ │ │ ├── crypto_com_constants.py │ │ │ ├── crypto_com_exchange.py │ │ │ ├── crypto_com_in_flight_order.py │ │ │ ├── crypto_com_order_book.py │ │ │ ├── crypto_com_order_book_message.py │ │ │ ├── crypto_com_order_book_tracker.py │ │ │ ├── crypto_com_order_book_tracker_entry.py │ │ │ ├── crypto_com_user_stream_tracker.py │ │ │ ├── crypto_com_utils.py │ │ │ └── crypto_com_websocket.py │ │ ├── dolomite │ │ │ ├── __init__.py │ │ │ ├── dolomite_active_order_tracker.pxd │ │ │ ├── dolomite_active_order_tracker.pyx │ │ │ ├── dolomite_api_order_book_data_source.py │ │ │ ├── dolomite_exchange.pxd │ │ │ ├── dolomite_exchange.pyx │ │ │ ├── dolomite_in_flight_order.pxd │ │ │ ├── dolomite_in_flight_order.pyx │ │ │ ├── dolomite_order_book.pxd │ │ │ ├── dolomite_order_book.pyx │ │ │ ├── dolomite_order_book_message.py │ │ │ ├── dolomite_order_book_tracker.py │ │ │ ├── dolomite_order_book_tracker_entry.py │ │ │ ├── dolomite_util.pxd │ │ │ ├── dolomite_util.pyx │ │ │ └── dolomite_utils.py │ │ ├── dydx │ │ │ ├── __init__.py │ │ │ ├── dydx_active_order_tracker.pxd │ │ │ ├── dydx_active_order_tracker.pyx │ │ │ ├── dydx_api_order_book_data_source.py │ │ │ ├── dydx_api_token_configuration_data_source.py │ │ │ ├── dydx_api_user_stream_data_source.py │ │ │ ├── dydx_auth.py │ │ │ ├── dydx_client_wrapper.py │ │ │ ├── dydx_exchange.pxd │ │ │ ├── dydx_exchange.pyx │ │ │ ├── dydx_fill_report.pxd │ │ │ ├── dydx_fill_report.pyx │ │ │ ├── dydx_in_flight_order.pxd │ │ │ ├── dydx_in_flight_order.pyx │ │ │ ├── dydx_order_book.pxd │ │ │ ├── dydx_order_book.pyx │ │ │ ├── dydx_order_book_message.py │ │ │ ├── dydx_order_book_tracker.py │ │ │ ├── dydx_order_book_tracker_entry.py │ │ │ ├── dydx_order_status.py │ │ │ ├── dydx_user_stream_tracker.py │ │ │ └── dydx_utils.py │ │ ├── eterbase │ │ │ ├── __init__.py │ │ │ ├── eterbase_active_order_tracker.pxd │ │ │ ├── eterbase_active_order_tracker.pyx │ │ │ ├── eterbase_api_order_book_data_source.py │ │ │ ├── eterbase_api_user_stream_data_source.py │ │ │ ├── eterbase_auth.py │ │ │ ├── eterbase_constants.py │ │ │ ├── eterbase_exchange.pxd │ │ │ ├── eterbase_exchange.pyx │ │ │ ├── eterbase_in_flight_order.pxd │ │ │ ├── eterbase_in_flight_order.pyx │ │ │ ├── eterbase_order_book.pxd │ │ │ ├── eterbase_order_book.pyx │ │ │ ├── eterbase_order_book_message.py │ │ │ ├── eterbase_order_book_tracker.py │ │ │ ├── eterbase_order_book_tracker_entry.py │ │ │ ├── eterbase_trading_rule.pxd │ │ │ ├── eterbase_trading_rule.pyx │ │ │ ├── eterbase_user_stream_tracker.py │ │ │ └── eterbase_utils.py │ │ ├── huobi │ │ │ ├── __init__.py │ │ │ ├── huobi_api_order_book_data_source.py │ │ │ ├── huobi_api_user_stream_data_source.py │ │ │ ├── huobi_auth.py │ │ │ ├── huobi_exchange.pxd │ │ │ ├── huobi_exchange.pyx │ │ │ ├── huobi_in_flight_order.pxd │ │ │ ├── huobi_in_flight_order.pyx │ │ │ ├── huobi_order_book.pxd │ │ │ ├── huobi_order_book.pyx │ │ │ ├── huobi_order_book_tracker.py │ │ │ ├── huobi_user_stream_tracker.py │ │ │ └── huobi_utils.py │ │ ├── kraken │ │ │ ├── __init__.py │ │ │ ├── kraken_api_order_book_data_source.py │ │ │ ├── kraken_api_user_stream_data_source.py │ │ │ ├── kraken_auth.py │ │ │ ├── kraken_constants.py │ │ │ ├── kraken_exchange.pxd │ │ │ ├── kraken_exchange.pyx │ │ │ ├── kraken_in_flight_order.pxd │ │ │ ├── kraken_in_flight_order.pyx │ │ │ ├── kraken_order_book.pxd │ │ │ ├── kraken_order_book.pyx │ │ │ ├── kraken_order_book_tracker.py │ │ │ ├── kraken_tracking_nonce.py │ │ │ ├── kraken_user_stream_tracker.py │ │ │ └── kraken_utils.py │ │ ├── kucoin │ │ │ ├── __init__.py │ │ │ ├── kucoin_active_order_tracker.pxd │ │ │ ├── kucoin_active_order_tracker.pyx │ │ │ ├── kucoin_api_order_book_data_source.py │ │ │ ├── kucoin_api_user_stream_data_source.py │ │ │ ├── kucoin_auth.py │ │ │ ├── kucoin_exchange.pxd │ │ │ ├── kucoin_exchange.pyx │ │ │ ├── kucoin_in_flight_order.pxd │ │ │ ├── kucoin_in_flight_order.pyx │ │ │ ├── kucoin_order_book.pxd │ │ │ ├── kucoin_order_book.pyx │ │ │ ├── kucoin_order_book_message.py │ │ │ ├── kucoin_order_book_tracker.py │ │ │ ├── kucoin_order_book_tracker_entry.py │ │ │ ├── kucoin_user_stream_tracker.py │ │ │ └── kucoin_utils.py │ │ ├── liquid │ │ │ ├── __init__.py │ │ │ ├── constants.py │ │ │ ├── liquid_api_order_book_data_source.py │ │ │ ├── liquid_api_user_stream_data_source.py │ │ │ ├── liquid_auth.py │ │ │ ├── liquid_exchange.pxd │ │ │ ├── liquid_exchange.pyx │ │ │ ├── liquid_in_flight_order.pxd │ │ │ ├── liquid_in_flight_order.pyx │ │ │ ├── liquid_order_book.pxd │ │ │ ├── liquid_order_book.pyx │ │ │ ├── liquid_order_book_message.py │ │ │ ├── liquid_order_book_tracker.py │ │ │ ├── liquid_order_book_tracker_entry.py │ │ │ ├── liquid_user_stream_tracker.py │ │ │ └── liquid_utils.py │ │ ├── loopring │ │ │ ├── __init__.py │ │ │ ├── loopring_active_order_tracker.pxd │ │ │ ├── loopring_active_order_tracker.pyx │ │ │ ├── loopring_api_order_book_data_source.py │ │ │ ├── loopring_api_token_configuration_data_source.py │ │ │ ├── loopring_api_user_stream_data_source.py │ │ │ ├── loopring_auth.py │ │ │ ├── loopring_exchange.pxd │ │ │ ├── loopring_exchange.pyx │ │ │ ├── loopring_in_flight_order.pxd │ │ │ ├── loopring_in_flight_order.pyx │ │ │ ├── loopring_order_book.pxd │ │ │ ├── loopring_order_book.pyx │ │ │ ├── loopring_order_book_message.py │ │ │ ├── loopring_order_book_tracker.py │ │ │ ├── loopring_order_book_tracker_entry.py │ │ │ ├── loopring_order_status.py │ │ │ ├── loopring_user_stream_tracker.py │ │ │ └── loopring_utils.py │ │ ├── okex │ │ │ ├── README.md │ │ │ ├── __init__.py │ │ │ ├── constants.py │ │ │ ├── okex_api_order_book_data_source.py │ │ │ ├── okex_api_user_stream_data_source.py │ │ │ ├── okex_auth.py │ │ │ ├── okex_exchange.pxd │ │ │ ├── okex_exchange.pyx │ │ │ ├── okex_in_flight_order.pxd │ │ │ ├── okex_in_flight_order.pyx │ │ │ ├── okex_order_book.pxd │ │ │ ├── okex_order_book.pyx │ │ │ ├── okex_order_book_tracker.py │ │ │ ├── okex_user_stream_tracker.py │ │ │ └── okex_utils.py │ │ ├── paper_trade │ │ │ ├── __init__.py │ │ │ ├── market_config.py │ │ │ ├── paper_trade_exchange.pxd │ │ │ ├── paper_trade_exchange.pyx │ │ │ └── trading_pair.py │ │ └── radar_relay │ │ │ ├── __init__.py │ │ │ ├── radar_relay_active_order_tracker.pxd │ │ │ ├── radar_relay_active_order_tracker.pyx │ │ │ ├── radar_relay_api_order_book_data_source.py │ │ │ ├── radar_relay_exchange.pxd │ │ │ ├── radar_relay_exchange.pyx │ │ │ ├── radar_relay_in_flight_order.pxd │ │ │ ├── radar_relay_in_flight_order.pyx │ │ │ ├── radar_relay_order_book.pxd │ │ │ ├── radar_relay_order_book.pyx │ │ │ ├── radar_relay_order_book_message.py │ │ │ ├── radar_relay_order_book_tracker.py │ │ │ ├── radar_relay_order_book_tracker_entry.py │ │ │ └── radar_relay_utils.py │ ├── exchange_base.pxd │ ├── exchange_base.pyx │ ├── in_flight_order_base.pxd │ ├── in_flight_order_base.pyx │ ├── markets_recorder.py │ ├── mock_api_order_book_data_source.py │ ├── trading_rule.pxd │ ├── trading_rule.pyx │ └── utils.py ├── core │ ├── PyRef.pxd │ ├── Utils.pxd │ ├── __init__.py │ ├── clock.pxd │ ├── clock.pyx │ ├── clock_mode.py │ ├── cpp │ │ ├── .gitignore │ │ ├── LimitOrder.cpp │ │ ├── LimitOrder.h │ │ ├── OrderBookEntry.cpp │ │ ├── OrderBookEntry.h │ │ ├── OrderExpirationEntry.cpp │ │ ├── OrderExpirationEntry.h │ │ ├── PyRef.cpp │ │ ├── PyRef.h │ │ ├── TestOrderBookEntry.cpp │ │ ├── Utils.cpp │ │ ├── Utils.h │ │ └── compile.sh │ ├── data_type │ │ ├── LimitOrder.pxd │ │ ├── OrderBookEntry.pxd │ │ ├── OrderExpirationEntry.pxd │ │ ├── __init__.py │ │ ├── cancellation_result.py │ │ ├── common.py │ │ ├── composite_order_book.pxd │ │ ├── composite_order_book.pyx │ │ ├── limit_order.pxd │ │ ├── limit_order.pyx │ │ ├── market_order.py │ │ ├── order_book.pxd │ │ ├── order_book.pyx │ │ ├── order_book_message.py │ │ ├── order_book_query_result.pxd │ │ ├── order_book_query_result.pyx │ │ ├── order_book_row.py │ │ ├── order_book_tracker.py │ │ ├── order_book_tracker_data_source.py │ │ ├── order_book_tracker_entry.py │ │ ├── order_expiration_entry.pxd │ │ ├── order_expiration_entry.pyx │ │ ├── remote_api_order_book_data_source.py │ │ ├── trade.py │ │ ├── transaction_tracker.pxd │ │ ├── transaction_tracker.pyx │ │ ├── user_stream_tracker.py │ │ └── user_stream_tracker_data_source.py │ ├── event │ │ ├── __init__.py │ │ ├── event_forwarder.py │ │ ├── event_listener.pxd │ │ ├── event_listener.pyx │ │ ├── event_logger.pxd │ │ ├── event_logger.pyx │ │ ├── event_reporter.pxd │ │ ├── event_reporter.pyx │ │ └── events.py │ ├── management │ │ ├── __init__.py │ │ ├── console.py │ │ └── diagnosis.py │ ├── network_base.py │ ├── network_iterator.pxd │ ├── network_iterator.pyx │ ├── pubsub.pxd │ ├── pubsub.pyx │ ├── py_time_iterator.pxd │ ├── py_time_iterator.pyx │ ├── time_iterator.pxd │ ├── time_iterator.pyx │ └── utils │ │ ├── __init__.py │ │ ├── async_call_scheduler.py │ │ ├── async_retry.py │ │ ├── async_utils.py │ │ ├── asyncio_throttle.py │ │ ├── download_token_addresses.py │ │ ├── estimate_fee.py │ │ ├── eth_gas_station_lookup.py │ │ ├── ethereum.py │ │ ├── kill_switch.py │ │ ├── market_price.py │ │ ├── ssl_cert.py │ │ ├── ssl_client_request.py │ │ ├── tracking_nonce.py │ │ ├── trading_pair_fetcher.py │ │ └── wallet_setup.py ├── data_feed │ ├── coin_cap_data_feed.py │ ├── coin_gecko_data_feed.py │ ├── custom_api_data_feed.py │ └── data_feed_base.py ├── exceptions.py ├── logger │ ├── __init__.py │ ├── application_warning.py │ ├── cli_handler.py │ ├── log_server_client.py │ ├── logger.py │ ├── reporting_proxy_handler.py │ └── struct_logger.py ├── market │ ├── __init__.py │ ├── celo │ │ ├── celo_cli.py │ │ └── celo_data_types.py │ ├── deposit_info.pxd │ ├── deposit_info.pyx │ ├── eterbase │ │ └── __init__.py │ ├── market_base.pxd │ └── market_base.pyx ├── model │ ├── __init__.py │ ├── db_migration │ │ ├── __init__.py │ │ ├── base_transformation.py │ │ ├── migrator.py │ │ └── transformations.py │ ├── inventory_cost.py │ ├── market_state.py │ ├── metadata.py │ ├── order.py │ ├── order_status.py │ ├── sql_connection_manager.py │ └── trade_fill.py ├── notifier │ ├── __init__.py │ ├── notifier_base.py │ └── telegram_notifier.py ├── script │ ├── __init__.py │ ├── script_base.py │ ├── script_interface.py │ ├── script_iterator.pxd │ ├── script_iterator.pyx │ └── script_process.py ├── strategy │ ├── __init__.py │ ├── amm_arb │ │ ├── __init__.py │ │ ├── amm_arb.py │ │ ├── amm_arb_config_map.py │ │ ├── data_types.py │ │ ├── dummy.pxd │ │ ├── dummy.pyx │ │ ├── start.py │ │ └── utils.py │ ├── arbitrage │ │ ├── __init__.py │ │ ├── arbitrage.pxd │ │ ├── arbitrage.pyx │ │ ├── arbitrage_config_map.py │ │ ├── arbitrage_market_pair.py │ │ └── start.py │ ├── celo_arb │ │ ├── __init__.py │ │ ├── celo_arb.pxd │ │ ├── celo_arb.pyx │ │ ├── celo_arb_config_map.py │ │ └── start.py │ ├── cross_exchange_market_making │ │ ├── __init__.py │ │ ├── cross_exchange_market_making.pxd │ │ ├── cross_exchange_market_making.pyx │ │ ├── cross_exchange_market_making_config_map.py │ │ ├── cross_exchange_market_pair.py │ │ ├── order_id_market_pair_tracker.pxd │ │ ├── order_id_market_pair_tracker.pyx │ │ └── start.py │ ├── dev_0_hello_world │ │ ├── __init__.py │ │ ├── dev_0_hello_world.pxd │ │ ├── dev_0_hello_world.pyx │ │ ├── dev_0_hello_world_config_map.py │ │ └── start.py │ ├── dev_1_get_order_book │ │ ├── __init__.py │ │ ├── dev_1_get_order_book.pxd │ │ ├── dev_1_get_order_book.pyx │ │ ├── dev_1_get_order_book_config_map.py │ │ └── start.py │ ├── dev_2_perform_trade │ │ ├── __init__.py │ │ ├── dev_2_perform_trade.pxd │ │ ├── dev_2_perform_trade.pyx │ │ ├── dev_2_perform_trade_config_map.py │ │ └── start.py │ ├── dev_4_twap │ │ ├── __init__.py │ │ ├── dev_4_twap.pxd │ │ ├── dev_4_twap.pyx │ │ ├── dev_4_twap_config_map.py │ │ └── start.py │ ├── dev_5_vwap │ │ ├── __init__.py │ │ ├── dev_5_vwap.pxd │ │ ├── dev_5_vwap.pyx │ │ ├── dev_5_vwap_config_map.py │ │ └── start.py │ ├── dev_simple_trade │ │ ├── __init__.py │ │ ├── dev_simple_trade.pxd │ │ ├── dev_simple_trade.pyx │ │ ├── dev_simple_trade_config_map.py │ │ └── start.py │ ├── liquidity_mining │ │ ├── __init__.py │ │ ├── data_types.py │ │ ├── dummy.pxd │ │ ├── dummy.pyx │ │ ├── liquidity_mining.py │ │ ├── liquidity_mining_config_map.py │ │ └── start.py │ ├── market_trading_pair_tuple.py │ ├── order_tracker.pxd │ ├── order_tracker.pyx │ ├── perpetual_market_making │ │ ├── __init__.py │ │ ├── api_asset_price_delegate.pxd │ │ ├── api_asset_price_delegate.pyx │ │ ├── asset_price_delegate.pxd │ │ ├── asset_price_delegate.pyx │ │ ├── data_types.py │ │ ├── order_book_asset_price_delegate.pxd │ │ ├── order_book_asset_price_delegate.pyx │ │ ├── perpetual_market_making.pxd │ │ ├── perpetual_market_making.pyx │ │ ├── perpetual_market_making_config_map.py │ │ ├── perpetual_market_making_order_tracker.pxd │ │ ├── perpetual_market_making_order_tracker.pyx │ │ └── start.py │ ├── pure_market_making │ │ ├── __init__.py │ │ ├── api_asset_price_delegate.pxd │ │ ├── api_asset_price_delegate.pyx │ │ ├── asset_price_delegate.pxd │ │ ├── asset_price_delegate.pyx │ │ ├── data_types.py │ │ ├── inventory_cost_price_delegate.py │ │ ├── inventory_skew_calculator.pxd │ │ ├── inventory_skew_calculator.pyx │ │ ├── order_book_asset_price_delegate.pxd │ │ ├── order_book_asset_price_delegate.pyx │ │ ├── pure_market_making.pxd │ │ ├── pure_market_making.pyx │ │ ├── pure_market_making_config_map.py │ │ ├── pure_market_making_order_tracker.pxd │ │ ├── pure_market_making_order_tracker.pyx │ │ └── start.py │ ├── strategy_base.pxd │ ├── strategy_base.pyx │ ├── strategy_py_base.pxd │ └── strategy_py_base.pyx ├── templates │ ├── conf_amm_arb_strategy_TEMPLATE.yml │ ├── conf_arbitrage_strategy_TEMPLATE.yml │ ├── conf_celo_arb_strategy_TEMPLATE.yml │ ├── conf_cross_exchange_market_making_strategy_TEMPLATE.yml │ ├── conf_dev_0_hello_world_strategy_TEMPLATE.yml │ ├── conf_dev_1_get_order_book_strategy_TEMPLATE.yml │ ├── conf_dev_2_perform_trade_strategy_TEMPLATE.yml │ ├── conf_dev_4_twap_strategy_TEMPLATE.yml │ ├── conf_dev_5_vwap_strategy_TEMPLATE.yml │ ├── conf_dev_simple_trade_strategy_TEMPLATE.yml │ ├── conf_fee_overrides_TEMPLATE.yml │ ├── conf_global_TEMPLATE.yml │ ├── conf_liquidity_mining_strategy_TEMPLATE.yml │ ├── conf_perpetual_market_making_strategy_TEMPLATE.yml │ ├── conf_pure_market_making_strategy_TEMPLATE.yml │ ├── hummingbot_logs_TEMPLATE.yml │ └── test_templates │ │ ├── binance_secret_TEMPLATE.py │ │ └── web3_wallet_secret_TEMPLATE.py ├── user │ └── user_balances.py └── wallet │ ├── __init__.py │ ├── ethereum │ ├── __init__.py │ ├── erc20_token.py │ ├── ethereum_chain.py │ ├── mock_wallet.pxd │ ├── mock_wallet.pyx │ ├── token_abi │ │ ├── dai_abi.json │ │ ├── erc20_abi.json │ │ ├── mkr_abi.json │ │ └── weth_contract_abi.json │ ├── watcher │ │ ├── __init__.py │ │ ├── account_balance_watcher.py │ │ ├── base_watcher.py │ │ ├── contract_event_logs.py │ │ ├── erc20_events_watcher.py │ │ ├── incoming_eth_watcher.py │ │ ├── new_blocks_watcher.py │ │ ├── websocket_watcher.py │ │ ├── weth_watcher.py │ │ └── zeroex_fill_watcher.py │ ├── web3_wallet.pxd │ ├── web3_wallet.pyx │ ├── web3_wallet_backend.py │ └── zero_ex │ │ ├── zero_ex_coordinator_abi_v3.json │ │ ├── zero_ex_coordinator_registry_abi_v3.json │ │ ├── zero_ex_coordinator_v3.py │ │ ├── zero_ex_custom_utils_v3.py │ │ ├── zero_ex_exchange_abi_v3.json │ │ ├── zero_ex_exchange_v3.py │ │ └── zero_ex_transaction_encoder_v3.py │ ├── wallet_base.pxd │ └── wallet_base.pyx ├── install ├── installation ├── README.md ├── docker-commands │ ├── README.md │ ├── connect.sh │ ├── create-gateway.sh │ ├── create-web3.sh │ ├── create.sh │ ├── start.sh │ ├── update-gateway.sh │ ├── update-web3.sh │ └── update.sh ├── install-docker │ ├── README.md │ ├── install-docker-centos.sh │ ├── install-docker-debian.sh │ └── install-docker-ubuntu.sh └── install-from-source │ ├── README.md │ ├── install-source-centos.sh │ ├── install-source-debian.sh │ ├── install-source-macOS.sh │ ├── install-source-ubuntu.sh │ ├── install-source-windows.sh │ └── update.sh ├── jenkins ├── test-branch.jdp ├── test-pr.jdp └── tests │ ├── exchanges │ ├── test-binance-market.jdp │ ├── test-bittrex-market.jdp │ ├── test-coinbase_pro-market.jdp │ ├── test-huobi-market.jdp │ ├── test-kucoin-market.jdp │ └── test-liquid-market.jdp │ └── strategies │ ├── test-arbitrage.jdp │ ├── test-pure_mm.jdp │ └── test-xemm.jdp ├── logs └── .gitignore ├── pyinstaller ├── .gitignore ├── Hummingbot.app.template │ └── Contents │ │ ├── Info.plist │ │ ├── MacOS │ │ └── Application Stub │ │ ├── Resources │ │ ├── Hummingbot.icns │ │ ├── ar.lproj │ │ │ └── InfoPlist.strings │ │ ├── ca.lproj │ │ │ └── InfoPlist.strings │ │ ├── cs.lproj │ │ │ └── InfoPlist.strings │ │ ├── da.lproj │ │ │ └── InfoPlist.strings │ │ ├── de.lproj │ │ │ └── InfoPlist.strings │ │ ├── el.lproj │ │ │ └── InfoPlist.strings │ │ ├── en.lproj │ │ │ └── InfoPlist.strings │ │ ├── en_AU.lproj │ │ │ └── InfoPlist.strings │ │ ├── en_GB.lproj │ │ │ └── InfoPlist.strings │ │ ├── es.lproj │ │ │ └── InfoPlist.strings │ │ ├── es_419.lproj │ │ │ └── InfoPlist.strings │ │ ├── fi.lproj │ │ │ └── InfoPlist.strings │ │ ├── fr.lproj │ │ │ └── InfoPlist.strings │ │ ├── fr_CA.lproj │ │ │ └── InfoPlist.strings │ │ ├── he.lproj │ │ │ └── InfoPlist.strings │ │ ├── hi.lproj │ │ │ └── InfoPlist.strings │ │ ├── hr.lproj │ │ │ └── InfoPlist.strings │ │ ├── hu.lproj │ │ │ └── InfoPlist.strings │ │ ├── id.lproj │ │ │ └── InfoPlist.strings │ │ ├── it.lproj │ │ │ └── InfoPlist.strings │ │ ├── ja.lproj │ │ │ └── InfoPlist.strings │ │ ├── ko.lproj │ │ │ └── InfoPlist.strings │ │ ├── ms.lproj │ │ │ └── InfoPlist.strings │ │ ├── nl.lproj │ │ │ └── InfoPlist.strings │ │ ├── no.lproj │ │ │ └── InfoPlist.strings │ │ ├── pl.lproj │ │ │ └── InfoPlist.strings │ │ ├── pt.lproj │ │ │ └── InfoPlist.strings │ │ ├── pt_PT.lproj │ │ │ └── InfoPlist.strings │ │ ├── ro.lproj │ │ │ └── InfoPlist.strings │ │ ├── ru.lproj │ │ │ └── InfoPlist.strings │ │ ├── sk.lproj │ │ │ └── InfoPlist.strings │ │ ├── sv.lproj │ │ │ └── InfoPlist.strings │ │ ├── th.lproj │ │ │ └── InfoPlist.strings │ │ ├── tr.lproj │ │ │ └── InfoPlist.strings │ │ ├── uk.lproj │ │ │ └── InfoPlist.strings │ │ ├── vi.lproj │ │ │ └── InfoPlist.strings │ │ ├── zh_CN.lproj │ │ │ └── InfoPlist.strings │ │ ├── zh_HK.lproj │ │ │ └── InfoPlist.strings │ │ └── zh_TW.lproj │ │ │ └── InfoPlist.strings │ │ └── document.wflow ├── README.md ├── __init__.py ├── bot.spec ├── build ├── hummingbot.ico ├── icon.xcf └── windows_installer.nsi ├── pyproject.toml ├── redist └── VC_redist.x64.exe ├── scripts ├── dynamic_price_band_script.py ├── hello_world_script.py ├── inv_skew_using_spread_script.py ├── ping_pong_script.py ├── price_band_script.py ├── spreads_adjusted_on_volatility_script.py └── update_parameters_test_script.py ├── setup.py ├── setup ├── environment-linux.yml ├── environment-win64.yml ├── environment.yml └── requirements-arm.txt ├── test ├── README.md ├── __init__.py ├── connector │ ├── __init__.py │ ├── connector │ │ ├── balancer │ │ │ └── test_balancer_connector.py │ │ ├── terra │ │ │ └── test_terra_connector.py │ │ └── uniswap │ │ │ └── test_uniswap_connector.py │ ├── exchange │ │ ├── __init__.py │ │ ├── bitmax │ │ │ ├── .gitignore │ │ │ ├── __init__.py │ │ │ ├── test_bitmax_auth.py │ │ │ ├── test_bitmax_exchange.py │ │ │ ├── test_bitmax_order_book_tracker.py │ │ │ └── test_bitmax_user_stream_tracker.py │ │ └── crypto_com │ │ │ ├── __init__.py │ │ │ ├── fixture.py │ │ │ ├── test_crypto_com_auth.py │ │ │ ├── test_crypto_com_exchange.py │ │ │ ├── test_crypto_com_order_book_tracker.py │ │ │ └── test_crypto_com_user_stream_tracker.py │ └── test_connector_base.py ├── debug_aiohttp_gather.py ├── debug_arbitrage.py ├── debug_cross_exchange_market_making.py ├── integration │ ├── .gitignore │ ├── README.md │ ├── __init__.py │ ├── assets │ │ └── mock_data │ │ │ ├── fixture_binance.py │ │ │ ├── fixture_bittrex.py │ │ │ ├── fixture_celo.py │ │ │ ├── fixture_coinbase_pro.py │ │ │ ├── fixture_configs.py │ │ │ ├── fixture_dydx.py │ │ │ ├── fixture_exchange_prices.py │ │ │ ├── fixture_huobi.py │ │ │ ├── fixture_kucoin.py │ │ │ ├── fixture_liquid.py │ │ │ └── fixture_okex.py │ ├── humming_web_app.py │ ├── humming_ws_server.py │ ├── huobi_mock_api.py │ ├── test_bamboo_relay_market_coordinated.py │ ├── test_bamboo_relay_market_uncoordinated.py │ ├── test_bamboo_relay_order_book_tracker.py │ ├── test_binance_market.py │ ├── test_binance_order_book_tracker.py │ ├── test_binance_perpetual_market.py │ ├── test_binance_perpetual_order_book_tracker.py │ ├── test_binance_perpetual_user_stream_tracker.py │ ├── test_binance_user_stream_tracker.py │ ├── test_bitfinex_api_order_book_data_source.py │ ├── test_bitfinex_auth.py │ ├── test_bitfinex_market.py │ ├── test_bitfinex_order_book_tracker.py │ ├── test_bitfinex_user_steam_tracker.py │ ├── test_bittrex_market.py │ ├── test_bittrex_order_book_tracker.py │ ├── test_bittrex_user_stream_tracker.py │ ├── test_celo_cli.py │ ├── test_coin_gecko_api_data_feed.py │ ├── test_coinbase_pro_active_order_tracker.py │ ├── test_coinbase_pro_market.py │ ├── test_coinbase_pro_order_book_tracker.py │ ├── test_coinbase_pro_user_stream_tracker.py │ ├── test_composite_order_book.py │ ├── test_config_process.py │ ├── test_dolomite_market.py │ ├── test_dolomite_order_book_tracker.py │ ├── test_dydx_api_order_book_data_source.py │ ├── test_dydx_market.py │ ├── test_dydx_order_book_tracker.py │ ├── test_dydx_user_stream_tracker.py │ ├── test_eterbase_active_order_tracker.py │ ├── test_eterbase_market.py │ ├── test_eterbase_order_book_tracker.py │ ├── test_eterbase_user_stream_tracker.py │ ├── test_huobi_market.py │ ├── test_huobi_market_mock.py │ ├── test_huobi_order_book_tracker.py │ ├── test_huobi_user_stream_tracker.py │ ├── test_kraken_api_order_book_data_source.py │ ├── test_kraken_api_user_stream_data_source.py │ ├── test_kraken_market.py │ ├── test_kraken_order_book_tracker.py │ ├── test_kraken_user_stream_tracker.py │ ├── test_kucoin_market.py │ ├── test_kucoin_order_book_tracker.py │ ├── test_kucoin_user_stream_tracker.py │ ├── test_liquid_api_order_book_data_source_adhoc.py │ ├── test_liquid_market.py │ ├── test_liquid_order_book_tracker.py │ ├── test_liquid_user_stream_tracker.py │ ├── test_loopring_api_order_book_data_source.py │ ├── test_loopring_market.py │ ├── test_loopring_order_book_tracker.py │ ├── test_loopring_token_configuration_data_source.py │ ├── test_loopring_user_stream_tracker.py │ ├── test_okex_api_order_book_data_source.py │ ├── test_okex_auth.py │ ├── test_okex_market.py │ ├── test_order_book.py │ ├── test_order_expiration.py │ ├── test_paper_trade_market.py │ ├── test_radar_relay_market.py │ ├── test_radar_relay_order_book_tracker.py │ └── test_web3_wallet.py ├── strategy │ └── amm_arb │ │ ├── test_amm_arb.py │ │ └── test_utils.py ├── test_arbitrage.py ├── test_async_ttl_cache.py ├── test_celo_arb.py ├── test_config_security.py ├── test_config_templates.py ├── test_cross_exchange_market_making.py ├── test_inventory_cost_price_delegate.py ├── test_inventory_skew_calculator.py ├── test_perform_trade.py ├── test_performance_metrics.py ├── test_pmm.py ├── test_pmm_ping_pong.py ├── test_pmm_refresh_tolerance.py ├── test_pmm_take_if_cross.py ├── test_script_base.py ├── test_script_iterator.py ├── test_simple_trade.py ├── test_trade_performance_analysis.py ├── test_twap.py └── test_vwap.py └── uninstall /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/.dockerignore -------------------------------------------------------------------------------- /.flake8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/.flake8 -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/exchange_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/.github/ISSUE_TEMPLATE/exchange_request.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/scripts_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/.github/ISSUE_TEMPLATE/scripts_request.md -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/workflows/workflow.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/.github/workflows/workflow.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /DATA_COLLECTION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/DATA_COLLECTION.md -------------------------------------------------------------------------------- /DOCKER.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/DOCKER.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/Dockerfile -------------------------------------------------------------------------------- /Dockerfile.arm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/Dockerfile.arm -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/README.md -------------------------------------------------------------------------------- /assets/balancer_logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/assets/balancer_logo.svg -------------------------------------------------------------------------------- /assets/binance_perpetual_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/assets/binance_perpetual_logo.png -------------------------------------------------------------------------------- /assets/binanceus_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/assets/binanceus_logo.png -------------------------------------------------------------------------------- /assets/bitfinex_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/assets/bitfinex_logo.png -------------------------------------------------------------------------------- /assets/bitmax_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/assets/bitmax_logo.png -------------------------------------------------------------------------------- /assets/bittrex_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/assets/bittrex_logo.png -------------------------------------------------------------------------------- /assets/blocktane_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/assets/blocktane_logo.png -------------------------------------------------------------------------------- /assets/celo_logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/assets/celo_logo.svg -------------------------------------------------------------------------------- /assets/cryptocom_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/assets/cryptocom_logo.png -------------------------------------------------------------------------------- /assets/dolomite_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/assets/dolomite_logo.png -------------------------------------------------------------------------------- /assets/dydx_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/assets/dydx_logo.png -------------------------------------------------------------------------------- /assets/eterbase_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/assets/eterbase_logo.png -------------------------------------------------------------------------------- /assets/huobi_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/assets/huobi_logo.png -------------------------------------------------------------------------------- /assets/kraken_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/assets/kraken_logo.png -------------------------------------------------------------------------------- /assets/kucoin_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/assets/kucoin_logo.png -------------------------------------------------------------------------------- /assets/liquid_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/assets/liquid_logo.png -------------------------------------------------------------------------------- /assets/loopring_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/assets/loopring_logo.png -------------------------------------------------------------------------------- /assets/okex_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/assets/okex_logo.png -------------------------------------------------------------------------------- /assets/radar_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/assets/radar_logo.png -------------------------------------------------------------------------------- /assets/terra_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/assets/terra_logo.png -------------------------------------------------------------------------------- /assets/uniswap_logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/assets/uniswap_logo.svg -------------------------------------------------------------------------------- /bin/.gitignore: -------------------------------------------------------------------------------- 1 | dev.py -------------------------------------------------------------------------------- /bin/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bin/hummingbot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/bin/hummingbot.py -------------------------------------------------------------------------------- /bin/hummingbot_quickstart.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/bin/hummingbot_quickstart.py -------------------------------------------------------------------------------- /bin/path_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/bin/path_util.py -------------------------------------------------------------------------------- /clean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/clean -------------------------------------------------------------------------------- /compile: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | cd $(dirname "$0") 4 | 5 | python setup.py build_ext --inplace 6 | -------------------------------------------------------------------------------- /compile.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | python setup.py build_ext --inplace -j 8 4 | -------------------------------------------------------------------------------- /conf/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/conf/.gitignore -------------------------------------------------------------------------------- /conf/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/conf/__init__.py -------------------------------------------------------------------------------- /conf/erc20_tokens_override.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/conf/erc20_tokens_override.json -------------------------------------------------------------------------------- /docker/etc/sudoers.d/hummingbot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/docker/etc/sudoers.d/hummingbot -------------------------------------------------------------------------------- /hooks/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hooks/README.md -------------------------------------------------------------------------------- /hooks/build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hooks/build -------------------------------------------------------------------------------- /hummingbot/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/README.md -------------------------------------------------------------------------------- /hummingbot/VERSION: -------------------------------------------------------------------------------- 1 | 0.36.0 2 | -------------------------------------------------------------------------------- /hummingbot/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/__init__.py -------------------------------------------------------------------------------- /hummingbot/client/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/client/__init__.py -------------------------------------------------------------------------------- /hummingbot/client/command/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/client/command/__init__.py -------------------------------------------------------------------------------- /hummingbot/client/command/balance_command.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/client/command/balance_command.py -------------------------------------------------------------------------------- /hummingbot/client/command/config_command.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/client/command/config_command.py -------------------------------------------------------------------------------- /hummingbot/client/command/connect_command.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/client/command/connect_command.py -------------------------------------------------------------------------------- /hummingbot/client/command/create_command.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/client/command/create_command.py -------------------------------------------------------------------------------- /hummingbot/client/command/exit_command.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/client/command/exit_command.py -------------------------------------------------------------------------------- /hummingbot/client/command/export_command.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/client/command/export_command.py -------------------------------------------------------------------------------- /hummingbot/client/command/generate_certs_command.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/client/command/generate_certs_command.py -------------------------------------------------------------------------------- /hummingbot/client/command/get_balance_command.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/client/command/get_balance_command.py -------------------------------------------------------------------------------- /hummingbot/client/command/help_command.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/client/command/help_command.py -------------------------------------------------------------------------------- /hummingbot/client/command/history_command.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/client/command/history_command.py -------------------------------------------------------------------------------- /hummingbot/client/command/import_command.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/client/command/import_command.py -------------------------------------------------------------------------------- /hummingbot/client/command/open_orders_command.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/client/command/open_orders_command.py -------------------------------------------------------------------------------- /hummingbot/client/command/order_book_command.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/client/command/order_book_command.py -------------------------------------------------------------------------------- /hummingbot/client/command/paper_trade_command.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/client/command/paper_trade_command.py -------------------------------------------------------------------------------- /hummingbot/client/command/pnl_command.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/client/command/pnl_command.py -------------------------------------------------------------------------------- /hummingbot/client/command/silly_commands.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/client/command/silly_commands.py -------------------------------------------------------------------------------- /hummingbot/client/command/silly_resources/dennis_1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/client/command/silly_resources/dennis_1.txt -------------------------------------------------------------------------------- /hummingbot/client/command/silly_resources/dennis_2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/client/command/silly_resources/dennis_2.txt -------------------------------------------------------------------------------- /hummingbot/client/command/silly_resources/dennis_3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/client/command/silly_resources/dennis_3.txt -------------------------------------------------------------------------------- /hummingbot/client/command/silly_resources/dennis_4.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/client/command/silly_resources/dennis_4.txt -------------------------------------------------------------------------------- /hummingbot/client/command/silly_resources/dennis_loading_1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/client/command/silly_resources/dennis_loading_1.txt -------------------------------------------------------------------------------- /hummingbot/client/command/silly_resources/dennis_loading_2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/client/command/silly_resources/dennis_loading_2.txt -------------------------------------------------------------------------------- /hummingbot/client/command/silly_resources/dennis_loading_3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/client/command/silly_resources/dennis_loading_3.txt -------------------------------------------------------------------------------- /hummingbot/client/command/silly_resources/dennis_loading_4.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/client/command/silly_resources/dennis_loading_4.txt -------------------------------------------------------------------------------- /hummingbot/client/command/silly_resources/hb_with_flower_1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/client/command/silly_resources/hb_with_flower_1.txt -------------------------------------------------------------------------------- /hummingbot/client/command/silly_resources/hb_with_flower_2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/client/command/silly_resources/hb_with_flower_2.txt -------------------------------------------------------------------------------- /hummingbot/client/command/silly_resources/hodl_and_hodl.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/client/command/silly_resources/hodl_and_hodl.txt -------------------------------------------------------------------------------- /hummingbot/client/command/silly_resources/hodl_bitcoin.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/client/command/silly_resources/hodl_bitcoin.txt -------------------------------------------------------------------------------- /hummingbot/client/command/silly_resources/hodl_stay_calm.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/client/command/silly_resources/hodl_stay_calm.txt -------------------------------------------------------------------------------- /hummingbot/client/command/silly_resources/jack_1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/client/command/silly_resources/jack_1.txt -------------------------------------------------------------------------------- /hummingbot/client/command/silly_resources/jack_2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/client/command/silly_resources/jack_2.txt -------------------------------------------------------------------------------- /hummingbot/client/command/silly_resources/money-fly_1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/client/command/silly_resources/money-fly_1.txt -------------------------------------------------------------------------------- /hummingbot/client/command/silly_resources/money-fly_2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/client/command/silly_resources/money-fly_2.txt -------------------------------------------------------------------------------- /hummingbot/client/command/silly_resources/rein_1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/client/command/silly_resources/rein_1.txt -------------------------------------------------------------------------------- /hummingbot/client/command/silly_resources/rein_2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/client/command/silly_resources/rein_2.txt -------------------------------------------------------------------------------- /hummingbot/client/command/silly_resources/rein_3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/client/command/silly_resources/rein_3.txt -------------------------------------------------------------------------------- /hummingbot/client/command/silly_resources/roger_1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/client/command/silly_resources/roger_1.txt -------------------------------------------------------------------------------- /hummingbot/client/command/silly_resources/roger_2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/client/command/silly_resources/roger_2.txt -------------------------------------------------------------------------------- /hummingbot/client/command/silly_resources/roger_3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/client/command/silly_resources/roger_3.txt -------------------------------------------------------------------------------- /hummingbot/client/command/silly_resources/roger_4.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/client/command/silly_resources/roger_4.txt -------------------------------------------------------------------------------- /hummingbot/client/command/silly_resources/roger_alert.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/client/command/silly_resources/roger_alert.txt -------------------------------------------------------------------------------- /hummingbot/client/command/start_command.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/client/command/start_command.py -------------------------------------------------------------------------------- /hummingbot/client/command/status_command.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/client/command/status_command.py -------------------------------------------------------------------------------- /hummingbot/client/command/stop_command.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/client/command/stop_command.py -------------------------------------------------------------------------------- /hummingbot/client/command/ticker_command.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/client/command/ticker_command.py -------------------------------------------------------------------------------- /hummingbot/client/command/trades_command.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/client/command/trades_command.py -------------------------------------------------------------------------------- /hummingbot/client/config/config_crypt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/client/config/config_crypt.py -------------------------------------------------------------------------------- /hummingbot/client/config/config_helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/client/config/config_helpers.py -------------------------------------------------------------------------------- /hummingbot/client/config/config_methods.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/client/config/config_methods.py -------------------------------------------------------------------------------- /hummingbot/client/config/config_validators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/client/config/config_validators.py -------------------------------------------------------------------------------- /hummingbot/client/config/config_var.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/client/config/config_var.py -------------------------------------------------------------------------------- /hummingbot/client/config/fee_overrides_config_map.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/client/config/fee_overrides_config_map.py -------------------------------------------------------------------------------- /hummingbot/client/config/global_config_map.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/client/config/global_config_map.py -------------------------------------------------------------------------------- /hummingbot/client/config/security.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/client/config/security.py -------------------------------------------------------------------------------- /hummingbot/client/data_type/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /hummingbot/client/data_type/currency_amount.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/client/data_type/currency_amount.py -------------------------------------------------------------------------------- /hummingbot/client/errors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/client/errors.py -------------------------------------------------------------------------------- /hummingbot/client/hummingbot_application.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/client/hummingbot_application.py -------------------------------------------------------------------------------- /hummingbot/client/performance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/client/performance.py -------------------------------------------------------------------------------- /hummingbot/client/performance_analysis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/client/performance_analysis.py -------------------------------------------------------------------------------- /hummingbot/client/platform.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/client/platform.py -------------------------------------------------------------------------------- /hummingbot/client/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/client/settings.py -------------------------------------------------------------------------------- /hummingbot/client/ui/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/client/ui/__init__.py -------------------------------------------------------------------------------- /hummingbot/client/ui/completer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/client/ui/completer.py -------------------------------------------------------------------------------- /hummingbot/client/ui/custom_widgets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/client/ui/custom_widgets.py -------------------------------------------------------------------------------- /hummingbot/client/ui/hummingbot_cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/client/ui/hummingbot_cli.py -------------------------------------------------------------------------------- /hummingbot/client/ui/interface_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/client/ui/interface_utils.py -------------------------------------------------------------------------------- /hummingbot/client/ui/keybindings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/client/ui/keybindings.py -------------------------------------------------------------------------------- /hummingbot/client/ui/layout.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/client/ui/layout.py -------------------------------------------------------------------------------- /hummingbot/client/ui/parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/client/ui/parser.py -------------------------------------------------------------------------------- /hummingbot/client/ui/scroll_handlers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/client/ui/scroll_handlers.py -------------------------------------------------------------------------------- /hummingbot/client/ui/stdout_redirection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/client/ui/stdout_redirection.py -------------------------------------------------------------------------------- /hummingbot/client/ui/style.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/client/ui/style.py -------------------------------------------------------------------------------- /hummingbot/connector/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /hummingbot/connector/connector/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /hummingbot/connector/connector/balancer/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /hummingbot/connector/connector/balancer/balancer_connector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/connector/connector/balancer/balancer_connector.py -------------------------------------------------------------------------------- /hummingbot/connector/connector/balancer/balancer_in_flight_order.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/connector/connector/balancer/balancer_in_flight_order.py -------------------------------------------------------------------------------- /hummingbot/connector/connector/balancer/balancer_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/connector/connector/balancer/balancer_utils.py -------------------------------------------------------------------------------- /hummingbot/connector/connector/balancer/dummy.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/connector/connector/balancer/dummy.pxd -------------------------------------------------------------------------------- /hummingbot/connector/connector/balancer/dummy.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/connector/connector/balancer/dummy.pyx -------------------------------------------------------------------------------- /hummingbot/connector/connector/terra/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /hummingbot/connector/connector/terra/dummy.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/connector/connector/terra/dummy.pxd -------------------------------------------------------------------------------- /hummingbot/connector/connector/terra/dummy.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/connector/connector/terra/dummy.pyx -------------------------------------------------------------------------------- /hummingbot/connector/connector/terra/terra_connector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/connector/connector/terra/terra_connector.py -------------------------------------------------------------------------------- /hummingbot/connector/connector/terra/terra_in_flight_order.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/connector/connector/terra/terra_in_flight_order.py -------------------------------------------------------------------------------- /hummingbot/connector/connector/terra/terra_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/connector/connector/terra/terra_utils.py -------------------------------------------------------------------------------- /hummingbot/connector/connector/uniswap/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /hummingbot/connector/connector/uniswap/dummy.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/connector/connector/uniswap/dummy.pxd -------------------------------------------------------------------------------- /hummingbot/connector/connector/uniswap/dummy.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/connector/connector/uniswap/dummy.pyx -------------------------------------------------------------------------------- /hummingbot/connector/connector/uniswap/uniswap_connector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/connector/connector/uniswap/uniswap_connector.py -------------------------------------------------------------------------------- /hummingbot/connector/connector/uniswap/uniswap_in_flight_order.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/connector/connector/uniswap/uniswap_in_flight_order.py -------------------------------------------------------------------------------- /hummingbot/connector/connector/uniswap/uniswap_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/connector/connector/uniswap/uniswap_utils.py -------------------------------------------------------------------------------- /hummingbot/connector/connector_base.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/connector/connector_base.pxd -------------------------------------------------------------------------------- /hummingbot/connector/connector_base.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/connector/connector_base.pyx -------------------------------------------------------------------------------- /hummingbot/connector/connector_status.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/connector/connector_status.py -------------------------------------------------------------------------------- /hummingbot/connector/derivative/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /hummingbot/connector/derivative/binance_perpetual/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /hummingbot/connector/derivative/binance_perpetual/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/connector/derivative/binance_perpetual/constants.py -------------------------------------------------------------------------------- /hummingbot/connector/derivative/binance_perpetual/dummy.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/connector/derivative/binance_perpetual/dummy.pxd -------------------------------------------------------------------------------- /hummingbot/connector/derivative/binance_perpetual/dummy.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/connector/derivative/binance_perpetual/dummy.pyx -------------------------------------------------------------------------------- /hummingbot/connector/derivative/position.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/connector/derivative/position.py -------------------------------------------------------------------------------- /hummingbot/connector/derivative_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/connector/derivative_base.py -------------------------------------------------------------------------------- /hummingbot/connector/exchange/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /hummingbot/connector/exchange/bamboo_relay/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /hummingbot/connector/exchange/bamboo_relay/bamboo_relay_constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/connector/exchange/bamboo_relay/bamboo_relay_constants.py -------------------------------------------------------------------------------- /hummingbot/connector/exchange/bamboo_relay/bamboo_relay_exchange.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/connector/exchange/bamboo_relay/bamboo_relay_exchange.pxd -------------------------------------------------------------------------------- /hummingbot/connector/exchange/bamboo_relay/bamboo_relay_exchange.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/connector/exchange/bamboo_relay/bamboo_relay_exchange.pyx -------------------------------------------------------------------------------- /hummingbot/connector/exchange/bamboo_relay/bamboo_relay_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/connector/exchange/bamboo_relay/bamboo_relay_utils.py -------------------------------------------------------------------------------- /hummingbot/connector/exchange/binance/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /hummingbot/connector/exchange/binance/binance_exchange.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/connector/exchange/binance/binance_exchange.pxd -------------------------------------------------------------------------------- /hummingbot/connector/exchange/binance/binance_exchange.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/connector/exchange/binance/binance_exchange.pyx -------------------------------------------------------------------------------- /hummingbot/connector/exchange/binance/binance_helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/connector/exchange/binance/binance_helper.py -------------------------------------------------------------------------------- /hummingbot/connector/exchange/binance/binance_in_flight_order.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/connector/exchange/binance/binance_in_flight_order.pxd -------------------------------------------------------------------------------- /hummingbot/connector/exchange/binance/binance_in_flight_order.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/connector/exchange/binance/binance_in_flight_order.pyx -------------------------------------------------------------------------------- /hummingbot/connector/exchange/binance/binance_order_book.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/connector/exchange/binance/binance_order_book.pxd -------------------------------------------------------------------------------- /hummingbot/connector/exchange/binance/binance_order_book.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/connector/exchange/binance/binance_order_book.pyx -------------------------------------------------------------------------------- /hummingbot/connector/exchange/binance/binance_order_book_tracker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/connector/exchange/binance/binance_order_book_tracker.py -------------------------------------------------------------------------------- /hummingbot/connector/exchange/binance/binance_time.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/connector/exchange/binance/binance_time.py -------------------------------------------------------------------------------- /hummingbot/connector/exchange/binance/binance_user_stream_tracker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/connector/exchange/binance/binance_user_stream_tracker.py -------------------------------------------------------------------------------- /hummingbot/connector/exchange/binance/binance_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/connector/exchange/binance/binance_utils.py -------------------------------------------------------------------------------- /hummingbot/connector/exchange/bitfinex/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/connector/exchange/bitfinex/__init__.py -------------------------------------------------------------------------------- /hummingbot/connector/exchange/bitfinex/bitfinex_auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/connector/exchange/bitfinex/bitfinex_auth.py -------------------------------------------------------------------------------- /hummingbot/connector/exchange/bitfinex/bitfinex_exchange.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/connector/exchange/bitfinex/bitfinex_exchange.pxd -------------------------------------------------------------------------------- /hummingbot/connector/exchange/bitfinex/bitfinex_exchange.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/connector/exchange/bitfinex/bitfinex_exchange.pyx -------------------------------------------------------------------------------- /hummingbot/connector/exchange/bitfinex/bitfinex_in_flight_order.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/connector/exchange/bitfinex/bitfinex_in_flight_order.pxd -------------------------------------------------------------------------------- /hummingbot/connector/exchange/bitfinex/bitfinex_in_flight_order.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/connector/exchange/bitfinex/bitfinex_in_flight_order.pyx -------------------------------------------------------------------------------- /hummingbot/connector/exchange/bitfinex/bitfinex_order_book.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/connector/exchange/bitfinex/bitfinex_order_book.pxd -------------------------------------------------------------------------------- /hummingbot/connector/exchange/bitfinex/bitfinex_order_book.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/connector/exchange/bitfinex/bitfinex_order_book.pyx -------------------------------------------------------------------------------- /hummingbot/connector/exchange/bitfinex/bitfinex_order_book_message.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/connector/exchange/bitfinex/bitfinex_order_book_message.py -------------------------------------------------------------------------------- /hummingbot/connector/exchange/bitfinex/bitfinex_order_book_tracker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/connector/exchange/bitfinex/bitfinex_order_book_tracker.py -------------------------------------------------------------------------------- /hummingbot/connector/exchange/bitfinex/bitfinex_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/connector/exchange/bitfinex/bitfinex_utils.py -------------------------------------------------------------------------------- /hummingbot/connector/exchange/bitfinex/bitfinex_websocket.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/connector/exchange/bitfinex/bitfinex_websocket.py -------------------------------------------------------------------------------- /hummingbot/connector/exchange/bitmax/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /hummingbot/connector/exchange/bitmax/bitmax_active_order_tracker.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/connector/exchange/bitmax/bitmax_active_order_tracker.pxd -------------------------------------------------------------------------------- /hummingbot/connector/exchange/bitmax/bitmax_active_order_tracker.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/connector/exchange/bitmax/bitmax_active_order_tracker.pyx -------------------------------------------------------------------------------- /hummingbot/connector/exchange/bitmax/bitmax_auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/connector/exchange/bitmax/bitmax_auth.py -------------------------------------------------------------------------------- /hummingbot/connector/exchange/bitmax/bitmax_constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/connector/exchange/bitmax/bitmax_constants.py -------------------------------------------------------------------------------- /hummingbot/connector/exchange/bitmax/bitmax_exchange.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/connector/exchange/bitmax/bitmax_exchange.py -------------------------------------------------------------------------------- /hummingbot/connector/exchange/bitmax/bitmax_in_flight_order.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/connector/exchange/bitmax/bitmax_in_flight_order.py -------------------------------------------------------------------------------- /hummingbot/connector/exchange/bitmax/bitmax_order_book.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/connector/exchange/bitmax/bitmax_order_book.py -------------------------------------------------------------------------------- /hummingbot/connector/exchange/bitmax/bitmax_order_book_message.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/connector/exchange/bitmax/bitmax_order_book_message.py -------------------------------------------------------------------------------- /hummingbot/connector/exchange/bitmax/bitmax_order_book_tracker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/connector/exchange/bitmax/bitmax_order_book_tracker.py -------------------------------------------------------------------------------- /hummingbot/connector/exchange/bitmax/bitmax_user_stream_tracker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/connector/exchange/bitmax/bitmax_user_stream_tracker.py -------------------------------------------------------------------------------- /hummingbot/connector/exchange/bitmax/bitmax_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/connector/exchange/bitmax/bitmax_utils.py -------------------------------------------------------------------------------- /hummingbot/connector/exchange/bittrex/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /hummingbot/connector/exchange/bittrex/bittrex_auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/connector/exchange/bittrex/bittrex_auth.py -------------------------------------------------------------------------------- /hummingbot/connector/exchange/bittrex/bittrex_exchange.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/connector/exchange/bittrex/bittrex_exchange.pxd -------------------------------------------------------------------------------- /hummingbot/connector/exchange/bittrex/bittrex_exchange.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/connector/exchange/bittrex/bittrex_exchange.pyx -------------------------------------------------------------------------------- /hummingbot/connector/exchange/bittrex/bittrex_in_flight_order.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/connector/exchange/bittrex/bittrex_in_flight_order.pxd -------------------------------------------------------------------------------- /hummingbot/connector/exchange/bittrex/bittrex_in_flight_order.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/connector/exchange/bittrex/bittrex_in_flight_order.pyx -------------------------------------------------------------------------------- /hummingbot/connector/exchange/bittrex/bittrex_order_book.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/connector/exchange/bittrex/bittrex_order_book.pxd -------------------------------------------------------------------------------- /hummingbot/connector/exchange/bittrex/bittrex_order_book.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/connector/exchange/bittrex/bittrex_order_book.pyx -------------------------------------------------------------------------------- /hummingbot/connector/exchange/bittrex/bittrex_order_book_message.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/connector/exchange/bittrex/bittrex_order_book_message.py -------------------------------------------------------------------------------- /hummingbot/connector/exchange/bittrex/bittrex_order_book_tracker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/connector/exchange/bittrex/bittrex_order_book_tracker.py -------------------------------------------------------------------------------- /hummingbot/connector/exchange/bittrex/bittrex_user_stream_tracker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/connector/exchange/bittrex/bittrex_user_stream_tracker.py -------------------------------------------------------------------------------- /hummingbot/connector/exchange/bittrex/bittrex_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/connector/exchange/bittrex/bittrex_utils.py -------------------------------------------------------------------------------- /hummingbot/connector/exchange/blocktane/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /hummingbot/connector/exchange/blocktane/blocktane_auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/connector/exchange/blocktane/blocktane_auth.py -------------------------------------------------------------------------------- /hummingbot/connector/exchange/blocktane/blocktane_exchange.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/connector/exchange/blocktane/blocktane_exchange.pxd -------------------------------------------------------------------------------- /hummingbot/connector/exchange/blocktane/blocktane_exchange.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/connector/exchange/blocktane/blocktane_exchange.pyx -------------------------------------------------------------------------------- /hummingbot/connector/exchange/blocktane/blocktane_in_flight_order.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/connector/exchange/blocktane/blocktane_in_flight_order.pxd -------------------------------------------------------------------------------- /hummingbot/connector/exchange/blocktane/blocktane_in_flight_order.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/connector/exchange/blocktane/blocktane_in_flight_order.pyx -------------------------------------------------------------------------------- /hummingbot/connector/exchange/blocktane/blocktane_order_book.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/connector/exchange/blocktane/blocktane_order_book.pxd -------------------------------------------------------------------------------- /hummingbot/connector/exchange/blocktane/blocktane_order_book.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/connector/exchange/blocktane/blocktane_order_book.pyx -------------------------------------------------------------------------------- /hummingbot/connector/exchange/blocktane/blocktane_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/connector/exchange/blocktane/blocktane_utils.py -------------------------------------------------------------------------------- /hummingbot/connector/exchange/coinbase_pro/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /hummingbot/connector/exchange/coinbase_pro/coinbase_pro_auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/connector/exchange/coinbase_pro/coinbase_pro_auth.py -------------------------------------------------------------------------------- /hummingbot/connector/exchange/coinbase_pro/coinbase_pro_exchange.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/connector/exchange/coinbase_pro/coinbase_pro_exchange.pxd -------------------------------------------------------------------------------- /hummingbot/connector/exchange/coinbase_pro/coinbase_pro_exchange.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/connector/exchange/coinbase_pro/coinbase_pro_exchange.pyx -------------------------------------------------------------------------------- /hummingbot/connector/exchange/coinbase_pro/coinbase_pro_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/connector/exchange/coinbase_pro/coinbase_pro_utils.py -------------------------------------------------------------------------------- /hummingbot/connector/exchange/crypto_com/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /hummingbot/connector/exchange/crypto_com/crypto_com_auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/connector/exchange/crypto_com/crypto_com_auth.py -------------------------------------------------------------------------------- /hummingbot/connector/exchange/crypto_com/crypto_com_constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/connector/exchange/crypto_com/crypto_com_constants.py -------------------------------------------------------------------------------- /hummingbot/connector/exchange/crypto_com/crypto_com_exchange.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/connector/exchange/crypto_com/crypto_com_exchange.py -------------------------------------------------------------------------------- /hummingbot/connector/exchange/crypto_com/crypto_com_order_book.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/connector/exchange/crypto_com/crypto_com_order_book.py -------------------------------------------------------------------------------- /hummingbot/connector/exchange/crypto_com/crypto_com_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/connector/exchange/crypto_com/crypto_com_utils.py -------------------------------------------------------------------------------- /hummingbot/connector/exchange/crypto_com/crypto_com_websocket.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/connector/exchange/crypto_com/crypto_com_websocket.py -------------------------------------------------------------------------------- /hummingbot/connector/exchange/dolomite/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /hummingbot/connector/exchange/dolomite/dolomite_exchange.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/connector/exchange/dolomite/dolomite_exchange.pxd -------------------------------------------------------------------------------- /hummingbot/connector/exchange/dolomite/dolomite_exchange.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/connector/exchange/dolomite/dolomite_exchange.pyx -------------------------------------------------------------------------------- /hummingbot/connector/exchange/dolomite/dolomite_in_flight_order.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/connector/exchange/dolomite/dolomite_in_flight_order.pxd -------------------------------------------------------------------------------- /hummingbot/connector/exchange/dolomite/dolomite_in_flight_order.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/connector/exchange/dolomite/dolomite_in_flight_order.pyx -------------------------------------------------------------------------------- /hummingbot/connector/exchange/dolomite/dolomite_order_book.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/connector/exchange/dolomite/dolomite_order_book.pxd -------------------------------------------------------------------------------- /hummingbot/connector/exchange/dolomite/dolomite_order_book.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/connector/exchange/dolomite/dolomite_order_book.pyx -------------------------------------------------------------------------------- /hummingbot/connector/exchange/dolomite/dolomite_order_book_message.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/connector/exchange/dolomite/dolomite_order_book_message.py -------------------------------------------------------------------------------- /hummingbot/connector/exchange/dolomite/dolomite_order_book_tracker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/connector/exchange/dolomite/dolomite_order_book_tracker.py -------------------------------------------------------------------------------- /hummingbot/connector/exchange/dolomite/dolomite_util.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/connector/exchange/dolomite/dolomite_util.pxd -------------------------------------------------------------------------------- /hummingbot/connector/exchange/dolomite/dolomite_util.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/connector/exchange/dolomite/dolomite_util.pyx -------------------------------------------------------------------------------- /hummingbot/connector/exchange/dolomite/dolomite_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/connector/exchange/dolomite/dolomite_utils.py -------------------------------------------------------------------------------- /hummingbot/connector/exchange/dydx/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /hummingbot/connector/exchange/dydx/dydx_active_order_tracker.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/connector/exchange/dydx/dydx_active_order_tracker.pxd -------------------------------------------------------------------------------- /hummingbot/connector/exchange/dydx/dydx_active_order_tracker.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/connector/exchange/dydx/dydx_active_order_tracker.pyx -------------------------------------------------------------------------------- /hummingbot/connector/exchange/dydx/dydx_api_order_book_data_source.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/connector/exchange/dydx/dydx_api_order_book_data_source.py -------------------------------------------------------------------------------- /hummingbot/connector/exchange/dydx/dydx_auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/connector/exchange/dydx/dydx_auth.py -------------------------------------------------------------------------------- /hummingbot/connector/exchange/dydx/dydx_client_wrapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/connector/exchange/dydx/dydx_client_wrapper.py -------------------------------------------------------------------------------- /hummingbot/connector/exchange/dydx/dydx_exchange.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/connector/exchange/dydx/dydx_exchange.pxd -------------------------------------------------------------------------------- /hummingbot/connector/exchange/dydx/dydx_exchange.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/connector/exchange/dydx/dydx_exchange.pyx -------------------------------------------------------------------------------- /hummingbot/connector/exchange/dydx/dydx_fill_report.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/connector/exchange/dydx/dydx_fill_report.pxd -------------------------------------------------------------------------------- /hummingbot/connector/exchange/dydx/dydx_fill_report.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/connector/exchange/dydx/dydx_fill_report.pyx -------------------------------------------------------------------------------- /hummingbot/connector/exchange/dydx/dydx_in_flight_order.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/connector/exchange/dydx/dydx_in_flight_order.pxd -------------------------------------------------------------------------------- /hummingbot/connector/exchange/dydx/dydx_in_flight_order.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/connector/exchange/dydx/dydx_in_flight_order.pyx -------------------------------------------------------------------------------- /hummingbot/connector/exchange/dydx/dydx_order_book.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/connector/exchange/dydx/dydx_order_book.pxd -------------------------------------------------------------------------------- /hummingbot/connector/exchange/dydx/dydx_order_book.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/connector/exchange/dydx/dydx_order_book.pyx -------------------------------------------------------------------------------- /hummingbot/connector/exchange/dydx/dydx_order_book_message.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/connector/exchange/dydx/dydx_order_book_message.py -------------------------------------------------------------------------------- /hummingbot/connector/exchange/dydx/dydx_order_book_tracker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/connector/exchange/dydx/dydx_order_book_tracker.py -------------------------------------------------------------------------------- /hummingbot/connector/exchange/dydx/dydx_order_book_tracker_entry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/connector/exchange/dydx/dydx_order_book_tracker_entry.py -------------------------------------------------------------------------------- /hummingbot/connector/exchange/dydx/dydx_order_status.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/connector/exchange/dydx/dydx_order_status.py -------------------------------------------------------------------------------- /hummingbot/connector/exchange/dydx/dydx_user_stream_tracker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/connector/exchange/dydx/dydx_user_stream_tracker.py -------------------------------------------------------------------------------- /hummingbot/connector/exchange/dydx/dydx_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/connector/exchange/dydx/dydx_utils.py -------------------------------------------------------------------------------- /hummingbot/connector/exchange/eterbase/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /hummingbot/connector/exchange/eterbase/eterbase_auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/connector/exchange/eterbase/eterbase_auth.py -------------------------------------------------------------------------------- /hummingbot/connector/exchange/eterbase/eterbase_constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/connector/exchange/eterbase/eterbase_constants.py -------------------------------------------------------------------------------- /hummingbot/connector/exchange/eterbase/eterbase_exchange.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/connector/exchange/eterbase/eterbase_exchange.pxd -------------------------------------------------------------------------------- /hummingbot/connector/exchange/eterbase/eterbase_exchange.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/connector/exchange/eterbase/eterbase_exchange.pyx -------------------------------------------------------------------------------- /hummingbot/connector/exchange/eterbase/eterbase_in_flight_order.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/connector/exchange/eterbase/eterbase_in_flight_order.pxd -------------------------------------------------------------------------------- /hummingbot/connector/exchange/eterbase/eterbase_in_flight_order.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/connector/exchange/eterbase/eterbase_in_flight_order.pyx -------------------------------------------------------------------------------- /hummingbot/connector/exchange/eterbase/eterbase_order_book.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/connector/exchange/eterbase/eterbase_order_book.pxd -------------------------------------------------------------------------------- /hummingbot/connector/exchange/eterbase/eterbase_order_book.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/connector/exchange/eterbase/eterbase_order_book.pyx -------------------------------------------------------------------------------- /hummingbot/connector/exchange/eterbase/eterbase_order_book_message.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/connector/exchange/eterbase/eterbase_order_book_message.py -------------------------------------------------------------------------------- /hummingbot/connector/exchange/eterbase/eterbase_order_book_tracker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/connector/exchange/eterbase/eterbase_order_book_tracker.py -------------------------------------------------------------------------------- /hummingbot/connector/exchange/eterbase/eterbase_trading_rule.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/connector/exchange/eterbase/eterbase_trading_rule.pxd -------------------------------------------------------------------------------- /hummingbot/connector/exchange/eterbase/eterbase_trading_rule.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/connector/exchange/eterbase/eterbase_trading_rule.pyx -------------------------------------------------------------------------------- /hummingbot/connector/exchange/eterbase/eterbase_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/connector/exchange/eterbase/eterbase_utils.py -------------------------------------------------------------------------------- /hummingbot/connector/exchange/huobi/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /hummingbot/connector/exchange/huobi/huobi_auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/connector/exchange/huobi/huobi_auth.py -------------------------------------------------------------------------------- /hummingbot/connector/exchange/huobi/huobi_exchange.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/connector/exchange/huobi/huobi_exchange.pxd -------------------------------------------------------------------------------- /hummingbot/connector/exchange/huobi/huobi_exchange.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/connector/exchange/huobi/huobi_exchange.pyx -------------------------------------------------------------------------------- /hummingbot/connector/exchange/huobi/huobi_in_flight_order.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/connector/exchange/huobi/huobi_in_flight_order.pxd -------------------------------------------------------------------------------- /hummingbot/connector/exchange/huobi/huobi_in_flight_order.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/connector/exchange/huobi/huobi_in_flight_order.pyx -------------------------------------------------------------------------------- /hummingbot/connector/exchange/huobi/huobi_order_book.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/connector/exchange/huobi/huobi_order_book.pxd -------------------------------------------------------------------------------- /hummingbot/connector/exchange/huobi/huobi_order_book.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/connector/exchange/huobi/huobi_order_book.pyx -------------------------------------------------------------------------------- /hummingbot/connector/exchange/huobi/huobi_order_book_tracker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/connector/exchange/huobi/huobi_order_book_tracker.py -------------------------------------------------------------------------------- /hummingbot/connector/exchange/huobi/huobi_user_stream_tracker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/connector/exchange/huobi/huobi_user_stream_tracker.py -------------------------------------------------------------------------------- /hummingbot/connector/exchange/huobi/huobi_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/connector/exchange/huobi/huobi_utils.py -------------------------------------------------------------------------------- /hummingbot/connector/exchange/kraken/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /hummingbot/connector/exchange/kraken/kraken_auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/connector/exchange/kraken/kraken_auth.py -------------------------------------------------------------------------------- /hummingbot/connector/exchange/kraken/kraken_constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/connector/exchange/kraken/kraken_constants.py -------------------------------------------------------------------------------- /hummingbot/connector/exchange/kraken/kraken_exchange.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/connector/exchange/kraken/kraken_exchange.pxd -------------------------------------------------------------------------------- /hummingbot/connector/exchange/kraken/kraken_exchange.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/connector/exchange/kraken/kraken_exchange.pyx -------------------------------------------------------------------------------- /hummingbot/connector/exchange/kraken/kraken_in_flight_order.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/connector/exchange/kraken/kraken_in_flight_order.pxd -------------------------------------------------------------------------------- /hummingbot/connector/exchange/kraken/kraken_in_flight_order.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/connector/exchange/kraken/kraken_in_flight_order.pyx -------------------------------------------------------------------------------- /hummingbot/connector/exchange/kraken/kraken_order_book.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/connector/exchange/kraken/kraken_order_book.pxd -------------------------------------------------------------------------------- /hummingbot/connector/exchange/kraken/kraken_order_book.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/connector/exchange/kraken/kraken_order_book.pyx -------------------------------------------------------------------------------- /hummingbot/connector/exchange/kraken/kraken_order_book_tracker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/connector/exchange/kraken/kraken_order_book_tracker.py -------------------------------------------------------------------------------- /hummingbot/connector/exchange/kraken/kraken_tracking_nonce.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/connector/exchange/kraken/kraken_tracking_nonce.py -------------------------------------------------------------------------------- /hummingbot/connector/exchange/kraken/kraken_user_stream_tracker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/connector/exchange/kraken/kraken_user_stream_tracker.py -------------------------------------------------------------------------------- /hummingbot/connector/exchange/kraken/kraken_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/connector/exchange/kraken/kraken_utils.py -------------------------------------------------------------------------------- /hummingbot/connector/exchange/kucoin/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /hummingbot/connector/exchange/kucoin/kucoin_auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/connector/exchange/kucoin/kucoin_auth.py -------------------------------------------------------------------------------- /hummingbot/connector/exchange/kucoin/kucoin_exchange.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/connector/exchange/kucoin/kucoin_exchange.pxd -------------------------------------------------------------------------------- /hummingbot/connector/exchange/kucoin/kucoin_exchange.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/connector/exchange/kucoin/kucoin_exchange.pyx -------------------------------------------------------------------------------- /hummingbot/connector/exchange/kucoin/kucoin_in_flight_order.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/connector/exchange/kucoin/kucoin_in_flight_order.pxd -------------------------------------------------------------------------------- /hummingbot/connector/exchange/kucoin/kucoin_in_flight_order.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/connector/exchange/kucoin/kucoin_in_flight_order.pyx -------------------------------------------------------------------------------- /hummingbot/connector/exchange/kucoin/kucoin_order_book.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/connector/exchange/kucoin/kucoin_order_book.pxd -------------------------------------------------------------------------------- /hummingbot/connector/exchange/kucoin/kucoin_order_book.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/connector/exchange/kucoin/kucoin_order_book.pyx -------------------------------------------------------------------------------- /hummingbot/connector/exchange/kucoin/kucoin_order_book_message.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/connector/exchange/kucoin/kucoin_order_book_message.py -------------------------------------------------------------------------------- /hummingbot/connector/exchange/kucoin/kucoin_order_book_tracker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/connector/exchange/kucoin/kucoin_order_book_tracker.py -------------------------------------------------------------------------------- /hummingbot/connector/exchange/kucoin/kucoin_user_stream_tracker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/connector/exchange/kucoin/kucoin_user_stream_tracker.py -------------------------------------------------------------------------------- /hummingbot/connector/exchange/kucoin/kucoin_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/connector/exchange/kucoin/kucoin_utils.py -------------------------------------------------------------------------------- /hummingbot/connector/exchange/liquid/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /hummingbot/connector/exchange/liquid/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/connector/exchange/liquid/constants.py -------------------------------------------------------------------------------- /hummingbot/connector/exchange/liquid/liquid_auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/connector/exchange/liquid/liquid_auth.py -------------------------------------------------------------------------------- /hummingbot/connector/exchange/liquid/liquid_exchange.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/connector/exchange/liquid/liquid_exchange.pxd -------------------------------------------------------------------------------- /hummingbot/connector/exchange/liquid/liquid_exchange.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/connector/exchange/liquid/liquid_exchange.pyx -------------------------------------------------------------------------------- /hummingbot/connector/exchange/liquid/liquid_in_flight_order.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/connector/exchange/liquid/liquid_in_flight_order.pxd -------------------------------------------------------------------------------- /hummingbot/connector/exchange/liquid/liquid_in_flight_order.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/connector/exchange/liquid/liquid_in_flight_order.pyx -------------------------------------------------------------------------------- /hummingbot/connector/exchange/liquid/liquid_order_book.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/connector/exchange/liquid/liquid_order_book.pxd -------------------------------------------------------------------------------- /hummingbot/connector/exchange/liquid/liquid_order_book.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/connector/exchange/liquid/liquid_order_book.pyx -------------------------------------------------------------------------------- /hummingbot/connector/exchange/liquid/liquid_order_book_message.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/connector/exchange/liquid/liquid_order_book_message.py -------------------------------------------------------------------------------- /hummingbot/connector/exchange/liquid/liquid_order_book_tracker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/connector/exchange/liquid/liquid_order_book_tracker.py -------------------------------------------------------------------------------- /hummingbot/connector/exchange/liquid/liquid_user_stream_tracker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/connector/exchange/liquid/liquid_user_stream_tracker.py -------------------------------------------------------------------------------- /hummingbot/connector/exchange/liquid/liquid_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/connector/exchange/liquid/liquid_utils.py -------------------------------------------------------------------------------- /hummingbot/connector/exchange/loopring/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /hummingbot/connector/exchange/loopring/loopring_auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/connector/exchange/loopring/loopring_auth.py -------------------------------------------------------------------------------- /hummingbot/connector/exchange/loopring/loopring_exchange.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/connector/exchange/loopring/loopring_exchange.pxd -------------------------------------------------------------------------------- /hummingbot/connector/exchange/loopring/loopring_exchange.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/connector/exchange/loopring/loopring_exchange.pyx -------------------------------------------------------------------------------- /hummingbot/connector/exchange/loopring/loopring_order_book.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/connector/exchange/loopring/loopring_order_book.pxd -------------------------------------------------------------------------------- /hummingbot/connector/exchange/loopring/loopring_order_book.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/connector/exchange/loopring/loopring_order_book.pyx -------------------------------------------------------------------------------- /hummingbot/connector/exchange/loopring/loopring_order_status.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/connector/exchange/loopring/loopring_order_status.py -------------------------------------------------------------------------------- /hummingbot/connector/exchange/loopring/loopring_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/connector/exchange/loopring/loopring_utils.py -------------------------------------------------------------------------------- /hummingbot/connector/exchange/okex/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/connector/exchange/okex/README.md -------------------------------------------------------------------------------- /hummingbot/connector/exchange/okex/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /hummingbot/connector/exchange/okex/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/connector/exchange/okex/constants.py -------------------------------------------------------------------------------- /hummingbot/connector/exchange/okex/okex_auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/connector/exchange/okex/okex_auth.py -------------------------------------------------------------------------------- /hummingbot/connector/exchange/okex/okex_exchange.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/connector/exchange/okex/okex_exchange.pxd -------------------------------------------------------------------------------- /hummingbot/connector/exchange/okex/okex_exchange.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/connector/exchange/okex/okex_exchange.pyx -------------------------------------------------------------------------------- /hummingbot/connector/exchange/okex/okex_in_flight_order.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/connector/exchange/okex/okex_in_flight_order.pxd -------------------------------------------------------------------------------- /hummingbot/connector/exchange/okex/okex_in_flight_order.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/connector/exchange/okex/okex_in_flight_order.pyx -------------------------------------------------------------------------------- /hummingbot/connector/exchange/okex/okex_order_book.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/connector/exchange/okex/okex_order_book.pxd -------------------------------------------------------------------------------- /hummingbot/connector/exchange/okex/okex_order_book.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/connector/exchange/okex/okex_order_book.pyx -------------------------------------------------------------------------------- /hummingbot/connector/exchange/okex/okex_order_book_tracker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/connector/exchange/okex/okex_order_book_tracker.py -------------------------------------------------------------------------------- /hummingbot/connector/exchange/okex/okex_user_stream_tracker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/connector/exchange/okex/okex_user_stream_tracker.py -------------------------------------------------------------------------------- /hummingbot/connector/exchange/okex/okex_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/connector/exchange/okex/okex_utils.py -------------------------------------------------------------------------------- /hummingbot/connector/exchange/paper_trade/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/connector/exchange/paper_trade/__init__.py -------------------------------------------------------------------------------- /hummingbot/connector/exchange/paper_trade/market_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/connector/exchange/paper_trade/market_config.py -------------------------------------------------------------------------------- /hummingbot/connector/exchange/paper_trade/paper_trade_exchange.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/connector/exchange/paper_trade/paper_trade_exchange.pxd -------------------------------------------------------------------------------- /hummingbot/connector/exchange/paper_trade/paper_trade_exchange.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/connector/exchange/paper_trade/paper_trade_exchange.pyx -------------------------------------------------------------------------------- /hummingbot/connector/exchange/paper_trade/trading_pair.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/connector/exchange/paper_trade/trading_pair.py -------------------------------------------------------------------------------- /hummingbot/connector/exchange/radar_relay/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /hummingbot/connector/exchange/radar_relay/radar_relay_exchange.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/connector/exchange/radar_relay/radar_relay_exchange.pxd -------------------------------------------------------------------------------- /hummingbot/connector/exchange/radar_relay/radar_relay_exchange.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/connector/exchange/radar_relay/radar_relay_exchange.pyx -------------------------------------------------------------------------------- /hummingbot/connector/exchange/radar_relay/radar_relay_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/connector/exchange/radar_relay/radar_relay_utils.py -------------------------------------------------------------------------------- /hummingbot/connector/exchange_base.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/connector/exchange_base.pxd -------------------------------------------------------------------------------- /hummingbot/connector/exchange_base.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/connector/exchange_base.pyx -------------------------------------------------------------------------------- /hummingbot/connector/in_flight_order_base.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/connector/in_flight_order_base.pxd -------------------------------------------------------------------------------- /hummingbot/connector/in_flight_order_base.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/connector/in_flight_order_base.pyx -------------------------------------------------------------------------------- /hummingbot/connector/markets_recorder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/connector/markets_recorder.py -------------------------------------------------------------------------------- /hummingbot/connector/mock_api_order_book_data_source.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/connector/mock_api_order_book_data_source.py -------------------------------------------------------------------------------- /hummingbot/connector/trading_rule.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/connector/trading_rule.pxd -------------------------------------------------------------------------------- /hummingbot/connector/trading_rule.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/connector/trading_rule.pyx -------------------------------------------------------------------------------- /hummingbot/connector/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/connector/utils.py -------------------------------------------------------------------------------- /hummingbot/core/PyRef.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/core/PyRef.pxd -------------------------------------------------------------------------------- /hummingbot/core/Utils.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/core/Utils.pxd -------------------------------------------------------------------------------- /hummingbot/core/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /hummingbot/core/clock.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/core/clock.pxd -------------------------------------------------------------------------------- /hummingbot/core/clock.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/core/clock.pyx -------------------------------------------------------------------------------- /hummingbot/core/clock_mode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/core/clock_mode.py -------------------------------------------------------------------------------- /hummingbot/core/cpp/.gitignore: -------------------------------------------------------------------------------- 1 | /*.o 2 | /TestOrderBookEntry 3 | -------------------------------------------------------------------------------- /hummingbot/core/cpp/LimitOrder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/core/cpp/LimitOrder.cpp -------------------------------------------------------------------------------- /hummingbot/core/cpp/LimitOrder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/core/cpp/LimitOrder.h -------------------------------------------------------------------------------- /hummingbot/core/cpp/OrderBookEntry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/core/cpp/OrderBookEntry.cpp -------------------------------------------------------------------------------- /hummingbot/core/cpp/OrderBookEntry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/core/cpp/OrderBookEntry.h -------------------------------------------------------------------------------- /hummingbot/core/cpp/OrderExpirationEntry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/core/cpp/OrderExpirationEntry.cpp -------------------------------------------------------------------------------- /hummingbot/core/cpp/OrderExpirationEntry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/core/cpp/OrderExpirationEntry.h -------------------------------------------------------------------------------- /hummingbot/core/cpp/PyRef.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/core/cpp/PyRef.cpp -------------------------------------------------------------------------------- /hummingbot/core/cpp/PyRef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/core/cpp/PyRef.h -------------------------------------------------------------------------------- /hummingbot/core/cpp/TestOrderBookEntry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/core/cpp/TestOrderBookEntry.cpp -------------------------------------------------------------------------------- /hummingbot/core/cpp/Utils.cpp: -------------------------------------------------------------------------------- 1 | #include "Utils.h" 2 | -------------------------------------------------------------------------------- /hummingbot/core/cpp/Utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/core/cpp/Utils.h -------------------------------------------------------------------------------- /hummingbot/core/cpp/compile.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/core/cpp/compile.sh -------------------------------------------------------------------------------- /hummingbot/core/data_type/LimitOrder.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/core/data_type/LimitOrder.pxd -------------------------------------------------------------------------------- /hummingbot/core/data_type/OrderBookEntry.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/core/data_type/OrderBookEntry.pxd -------------------------------------------------------------------------------- /hummingbot/core/data_type/OrderExpirationEntry.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/core/data_type/OrderExpirationEntry.pxd -------------------------------------------------------------------------------- /hummingbot/core/data_type/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /hummingbot/core/data_type/cancellation_result.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/core/data_type/cancellation_result.py -------------------------------------------------------------------------------- /hummingbot/core/data_type/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/core/data_type/common.py -------------------------------------------------------------------------------- /hummingbot/core/data_type/composite_order_book.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/core/data_type/composite_order_book.pxd -------------------------------------------------------------------------------- /hummingbot/core/data_type/composite_order_book.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/core/data_type/composite_order_book.pyx -------------------------------------------------------------------------------- /hummingbot/core/data_type/limit_order.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/core/data_type/limit_order.pxd -------------------------------------------------------------------------------- /hummingbot/core/data_type/limit_order.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/core/data_type/limit_order.pyx -------------------------------------------------------------------------------- /hummingbot/core/data_type/market_order.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/core/data_type/market_order.py -------------------------------------------------------------------------------- /hummingbot/core/data_type/order_book.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/core/data_type/order_book.pxd -------------------------------------------------------------------------------- /hummingbot/core/data_type/order_book.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/core/data_type/order_book.pyx -------------------------------------------------------------------------------- /hummingbot/core/data_type/order_book_message.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/core/data_type/order_book_message.py -------------------------------------------------------------------------------- /hummingbot/core/data_type/order_book_query_result.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/core/data_type/order_book_query_result.pxd -------------------------------------------------------------------------------- /hummingbot/core/data_type/order_book_query_result.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/core/data_type/order_book_query_result.pyx -------------------------------------------------------------------------------- /hummingbot/core/data_type/order_book_row.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/core/data_type/order_book_row.py -------------------------------------------------------------------------------- /hummingbot/core/data_type/order_book_tracker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/core/data_type/order_book_tracker.py -------------------------------------------------------------------------------- /hummingbot/core/data_type/order_book_tracker_data_source.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/core/data_type/order_book_tracker_data_source.py -------------------------------------------------------------------------------- /hummingbot/core/data_type/order_book_tracker_entry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/core/data_type/order_book_tracker_entry.py -------------------------------------------------------------------------------- /hummingbot/core/data_type/order_expiration_entry.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/core/data_type/order_expiration_entry.pxd -------------------------------------------------------------------------------- /hummingbot/core/data_type/order_expiration_entry.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/core/data_type/order_expiration_entry.pyx -------------------------------------------------------------------------------- /hummingbot/core/data_type/remote_api_order_book_data_source.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/core/data_type/remote_api_order_book_data_source.py -------------------------------------------------------------------------------- /hummingbot/core/data_type/trade.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/core/data_type/trade.py -------------------------------------------------------------------------------- /hummingbot/core/data_type/transaction_tracker.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/core/data_type/transaction_tracker.pxd -------------------------------------------------------------------------------- /hummingbot/core/data_type/transaction_tracker.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/core/data_type/transaction_tracker.pyx -------------------------------------------------------------------------------- /hummingbot/core/data_type/user_stream_tracker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/core/data_type/user_stream_tracker.py -------------------------------------------------------------------------------- /hummingbot/core/data_type/user_stream_tracker_data_source.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/core/data_type/user_stream_tracker_data_source.py -------------------------------------------------------------------------------- /hummingbot/core/event/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /hummingbot/core/event/event_forwarder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/core/event/event_forwarder.py -------------------------------------------------------------------------------- /hummingbot/core/event/event_listener.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/core/event/event_listener.pxd -------------------------------------------------------------------------------- /hummingbot/core/event/event_listener.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/core/event/event_listener.pyx -------------------------------------------------------------------------------- /hummingbot/core/event/event_logger.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/core/event/event_logger.pxd -------------------------------------------------------------------------------- /hummingbot/core/event/event_logger.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/core/event/event_logger.pyx -------------------------------------------------------------------------------- /hummingbot/core/event/event_reporter.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/core/event/event_reporter.pxd -------------------------------------------------------------------------------- /hummingbot/core/event/event_reporter.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/core/event/event_reporter.pyx -------------------------------------------------------------------------------- /hummingbot/core/event/events.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/core/event/events.py -------------------------------------------------------------------------------- /hummingbot/core/management/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /hummingbot/core/management/console.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/core/management/console.py -------------------------------------------------------------------------------- /hummingbot/core/management/diagnosis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/core/management/diagnosis.py -------------------------------------------------------------------------------- /hummingbot/core/network_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/core/network_base.py -------------------------------------------------------------------------------- /hummingbot/core/network_iterator.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/core/network_iterator.pxd -------------------------------------------------------------------------------- /hummingbot/core/network_iterator.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/core/network_iterator.pyx -------------------------------------------------------------------------------- /hummingbot/core/pubsub.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/core/pubsub.pxd -------------------------------------------------------------------------------- /hummingbot/core/pubsub.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/core/pubsub.pyx -------------------------------------------------------------------------------- /hummingbot/core/py_time_iterator.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/core/py_time_iterator.pxd -------------------------------------------------------------------------------- /hummingbot/core/py_time_iterator.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/core/py_time_iterator.pyx -------------------------------------------------------------------------------- /hummingbot/core/time_iterator.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/core/time_iterator.pxd -------------------------------------------------------------------------------- /hummingbot/core/time_iterator.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/core/time_iterator.pyx -------------------------------------------------------------------------------- /hummingbot/core/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/core/utils/__init__.py -------------------------------------------------------------------------------- /hummingbot/core/utils/async_call_scheduler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/core/utils/async_call_scheduler.py -------------------------------------------------------------------------------- /hummingbot/core/utils/async_retry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/core/utils/async_retry.py -------------------------------------------------------------------------------- /hummingbot/core/utils/async_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/core/utils/async_utils.py -------------------------------------------------------------------------------- /hummingbot/core/utils/asyncio_throttle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/core/utils/asyncio_throttle.py -------------------------------------------------------------------------------- /hummingbot/core/utils/download_token_addresses.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/core/utils/download_token_addresses.py -------------------------------------------------------------------------------- /hummingbot/core/utils/estimate_fee.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/core/utils/estimate_fee.py -------------------------------------------------------------------------------- /hummingbot/core/utils/eth_gas_station_lookup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/core/utils/eth_gas_station_lookup.py -------------------------------------------------------------------------------- /hummingbot/core/utils/ethereum.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/core/utils/ethereum.py -------------------------------------------------------------------------------- /hummingbot/core/utils/kill_switch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/core/utils/kill_switch.py -------------------------------------------------------------------------------- /hummingbot/core/utils/market_price.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/core/utils/market_price.py -------------------------------------------------------------------------------- /hummingbot/core/utils/ssl_cert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/core/utils/ssl_cert.py -------------------------------------------------------------------------------- /hummingbot/core/utils/ssl_client_request.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/core/utils/ssl_client_request.py -------------------------------------------------------------------------------- /hummingbot/core/utils/tracking_nonce.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/core/utils/tracking_nonce.py -------------------------------------------------------------------------------- /hummingbot/core/utils/trading_pair_fetcher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/core/utils/trading_pair_fetcher.py -------------------------------------------------------------------------------- /hummingbot/core/utils/wallet_setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/core/utils/wallet_setup.py -------------------------------------------------------------------------------- /hummingbot/data_feed/coin_cap_data_feed.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/data_feed/coin_cap_data_feed.py -------------------------------------------------------------------------------- /hummingbot/data_feed/coin_gecko_data_feed.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/data_feed/coin_gecko_data_feed.py -------------------------------------------------------------------------------- /hummingbot/data_feed/custom_api_data_feed.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/data_feed/custom_api_data_feed.py -------------------------------------------------------------------------------- /hummingbot/data_feed/data_feed_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/data_feed/data_feed_base.py -------------------------------------------------------------------------------- /hummingbot/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/exceptions.py -------------------------------------------------------------------------------- /hummingbot/logger/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/logger/__init__.py -------------------------------------------------------------------------------- /hummingbot/logger/application_warning.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/logger/application_warning.py -------------------------------------------------------------------------------- /hummingbot/logger/cli_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/logger/cli_handler.py -------------------------------------------------------------------------------- /hummingbot/logger/log_server_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/logger/log_server_client.py -------------------------------------------------------------------------------- /hummingbot/logger/logger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/logger/logger.py -------------------------------------------------------------------------------- /hummingbot/logger/reporting_proxy_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/logger/reporting_proxy_handler.py -------------------------------------------------------------------------------- /hummingbot/logger/struct_logger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/logger/struct_logger.py -------------------------------------------------------------------------------- /hummingbot/market/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /hummingbot/market/celo/celo_cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/market/celo/celo_cli.py -------------------------------------------------------------------------------- /hummingbot/market/celo/celo_data_types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/market/celo/celo_data_types.py -------------------------------------------------------------------------------- /hummingbot/market/deposit_info.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/market/deposit_info.pxd -------------------------------------------------------------------------------- /hummingbot/market/deposit_info.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/market/deposit_info.pyx -------------------------------------------------------------------------------- /hummingbot/market/eterbase/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /hummingbot/market/market_base.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/market/market_base.pxd -------------------------------------------------------------------------------- /hummingbot/market/market_base.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/market/market_base.pyx -------------------------------------------------------------------------------- /hummingbot/model/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/model/__init__.py -------------------------------------------------------------------------------- /hummingbot/model/db_migration/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /hummingbot/model/db_migration/base_transformation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/model/db_migration/base_transformation.py -------------------------------------------------------------------------------- /hummingbot/model/db_migration/migrator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/model/db_migration/migrator.py -------------------------------------------------------------------------------- /hummingbot/model/db_migration/transformations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/model/db_migration/transformations.py -------------------------------------------------------------------------------- /hummingbot/model/inventory_cost.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/model/inventory_cost.py -------------------------------------------------------------------------------- /hummingbot/model/market_state.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/model/market_state.py -------------------------------------------------------------------------------- /hummingbot/model/metadata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/model/metadata.py -------------------------------------------------------------------------------- /hummingbot/model/order.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/model/order.py -------------------------------------------------------------------------------- /hummingbot/model/order_status.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/model/order_status.py -------------------------------------------------------------------------------- /hummingbot/model/sql_connection_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/model/sql_connection_manager.py -------------------------------------------------------------------------------- /hummingbot/model/trade_fill.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/model/trade_fill.py -------------------------------------------------------------------------------- /hummingbot/notifier/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /hummingbot/notifier/notifier_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/notifier/notifier_base.py -------------------------------------------------------------------------------- /hummingbot/notifier/telegram_notifier.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/notifier/telegram_notifier.py -------------------------------------------------------------------------------- /hummingbot/script/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /hummingbot/script/script_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/script/script_base.py -------------------------------------------------------------------------------- /hummingbot/script/script_interface.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/script/script_interface.py -------------------------------------------------------------------------------- /hummingbot/script/script_iterator.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/script/script_iterator.pxd -------------------------------------------------------------------------------- /hummingbot/script/script_iterator.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/script/script_iterator.pyx -------------------------------------------------------------------------------- /hummingbot/script/script_process.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/script/script_process.py -------------------------------------------------------------------------------- /hummingbot/strategy/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /hummingbot/strategy/amm_arb/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /hummingbot/strategy/amm_arb/amm_arb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/strategy/amm_arb/amm_arb.py -------------------------------------------------------------------------------- /hummingbot/strategy/amm_arb/amm_arb_config_map.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/strategy/amm_arb/amm_arb_config_map.py -------------------------------------------------------------------------------- /hummingbot/strategy/amm_arb/data_types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/strategy/amm_arb/data_types.py -------------------------------------------------------------------------------- /hummingbot/strategy/amm_arb/dummy.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/strategy/amm_arb/dummy.pxd -------------------------------------------------------------------------------- /hummingbot/strategy/amm_arb/dummy.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/strategy/amm_arb/dummy.pyx -------------------------------------------------------------------------------- /hummingbot/strategy/amm_arb/start.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/strategy/amm_arb/start.py -------------------------------------------------------------------------------- /hummingbot/strategy/amm_arb/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/strategy/amm_arb/utils.py -------------------------------------------------------------------------------- /hummingbot/strategy/arbitrage/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/strategy/arbitrage/__init__.py -------------------------------------------------------------------------------- /hummingbot/strategy/arbitrage/arbitrage.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/strategy/arbitrage/arbitrage.pxd -------------------------------------------------------------------------------- /hummingbot/strategy/arbitrage/arbitrage.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/strategy/arbitrage/arbitrage.pyx -------------------------------------------------------------------------------- /hummingbot/strategy/arbitrage/arbitrage_config_map.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/strategy/arbitrage/arbitrage_config_map.py -------------------------------------------------------------------------------- /hummingbot/strategy/arbitrage/arbitrage_market_pair.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/strategy/arbitrage/arbitrage_market_pair.py -------------------------------------------------------------------------------- /hummingbot/strategy/arbitrage/start.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/strategy/arbitrage/start.py -------------------------------------------------------------------------------- /hummingbot/strategy/celo_arb/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /hummingbot/strategy/celo_arb/celo_arb.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/strategy/celo_arb/celo_arb.pxd -------------------------------------------------------------------------------- /hummingbot/strategy/celo_arb/celo_arb.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/strategy/celo_arb/celo_arb.pyx -------------------------------------------------------------------------------- /hummingbot/strategy/celo_arb/celo_arb_config_map.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/strategy/celo_arb/celo_arb_config_map.py -------------------------------------------------------------------------------- /hummingbot/strategy/celo_arb/start.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/strategy/celo_arb/start.py -------------------------------------------------------------------------------- /hummingbot/strategy/cross_exchange_market_making/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/strategy/cross_exchange_market_making/__init__.py -------------------------------------------------------------------------------- /hummingbot/strategy/cross_exchange_market_making/start.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/strategy/cross_exchange_market_making/start.py -------------------------------------------------------------------------------- /hummingbot/strategy/dev_0_hello_world/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/strategy/dev_0_hello_world/__init__.py -------------------------------------------------------------------------------- /hummingbot/strategy/dev_0_hello_world/dev_0_hello_world.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/strategy/dev_0_hello_world/dev_0_hello_world.pxd -------------------------------------------------------------------------------- /hummingbot/strategy/dev_0_hello_world/dev_0_hello_world.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/strategy/dev_0_hello_world/dev_0_hello_world.pyx -------------------------------------------------------------------------------- /hummingbot/strategy/dev_0_hello_world/start.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/strategy/dev_0_hello_world/start.py -------------------------------------------------------------------------------- /hummingbot/strategy/dev_1_get_order_book/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/strategy/dev_1_get_order_book/__init__.py -------------------------------------------------------------------------------- /hummingbot/strategy/dev_1_get_order_book/dev_1_get_order_book.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/strategy/dev_1_get_order_book/dev_1_get_order_book.pxd -------------------------------------------------------------------------------- /hummingbot/strategy/dev_1_get_order_book/dev_1_get_order_book.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/strategy/dev_1_get_order_book/dev_1_get_order_book.pyx -------------------------------------------------------------------------------- /hummingbot/strategy/dev_1_get_order_book/start.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/strategy/dev_1_get_order_book/start.py -------------------------------------------------------------------------------- /hummingbot/strategy/dev_2_perform_trade/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/strategy/dev_2_perform_trade/__init__.py -------------------------------------------------------------------------------- /hummingbot/strategy/dev_2_perform_trade/dev_2_perform_trade.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/strategy/dev_2_perform_trade/dev_2_perform_trade.pxd -------------------------------------------------------------------------------- /hummingbot/strategy/dev_2_perform_trade/dev_2_perform_trade.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/strategy/dev_2_perform_trade/dev_2_perform_trade.pyx -------------------------------------------------------------------------------- /hummingbot/strategy/dev_2_perform_trade/start.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/strategy/dev_2_perform_trade/start.py -------------------------------------------------------------------------------- /hummingbot/strategy/dev_4_twap/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/strategy/dev_4_twap/__init__.py -------------------------------------------------------------------------------- /hummingbot/strategy/dev_4_twap/dev_4_twap.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/strategy/dev_4_twap/dev_4_twap.pxd -------------------------------------------------------------------------------- /hummingbot/strategy/dev_4_twap/dev_4_twap.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/strategy/dev_4_twap/dev_4_twap.pyx -------------------------------------------------------------------------------- /hummingbot/strategy/dev_4_twap/dev_4_twap_config_map.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/strategy/dev_4_twap/dev_4_twap_config_map.py -------------------------------------------------------------------------------- /hummingbot/strategy/dev_4_twap/start.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/strategy/dev_4_twap/start.py -------------------------------------------------------------------------------- /hummingbot/strategy/dev_5_vwap/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/strategy/dev_5_vwap/__init__.py -------------------------------------------------------------------------------- /hummingbot/strategy/dev_5_vwap/dev_5_vwap.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/strategy/dev_5_vwap/dev_5_vwap.pxd -------------------------------------------------------------------------------- /hummingbot/strategy/dev_5_vwap/dev_5_vwap.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/strategy/dev_5_vwap/dev_5_vwap.pyx -------------------------------------------------------------------------------- /hummingbot/strategy/dev_5_vwap/dev_5_vwap_config_map.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/strategy/dev_5_vwap/dev_5_vwap_config_map.py -------------------------------------------------------------------------------- /hummingbot/strategy/dev_5_vwap/start.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/strategy/dev_5_vwap/start.py -------------------------------------------------------------------------------- /hummingbot/strategy/dev_simple_trade/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/strategy/dev_simple_trade/__init__.py -------------------------------------------------------------------------------- /hummingbot/strategy/dev_simple_trade/dev_simple_trade.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/strategy/dev_simple_trade/dev_simple_trade.pxd -------------------------------------------------------------------------------- /hummingbot/strategy/dev_simple_trade/dev_simple_trade.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/strategy/dev_simple_trade/dev_simple_trade.pyx -------------------------------------------------------------------------------- /hummingbot/strategy/dev_simple_trade/start.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/strategy/dev_simple_trade/start.py -------------------------------------------------------------------------------- /hummingbot/strategy/liquidity_mining/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /hummingbot/strategy/liquidity_mining/data_types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/strategy/liquidity_mining/data_types.py -------------------------------------------------------------------------------- /hummingbot/strategy/liquidity_mining/dummy.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/strategy/liquidity_mining/dummy.pxd -------------------------------------------------------------------------------- /hummingbot/strategy/liquidity_mining/dummy.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/strategy/liquidity_mining/dummy.pyx -------------------------------------------------------------------------------- /hummingbot/strategy/liquidity_mining/liquidity_mining.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/strategy/liquidity_mining/liquidity_mining.py -------------------------------------------------------------------------------- /hummingbot/strategy/liquidity_mining/start.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/strategy/liquidity_mining/start.py -------------------------------------------------------------------------------- /hummingbot/strategy/market_trading_pair_tuple.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/strategy/market_trading_pair_tuple.py -------------------------------------------------------------------------------- /hummingbot/strategy/order_tracker.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/strategy/order_tracker.pxd -------------------------------------------------------------------------------- /hummingbot/strategy/order_tracker.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/strategy/order_tracker.pyx -------------------------------------------------------------------------------- /hummingbot/strategy/perpetual_market_making/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/strategy/perpetual_market_making/__init__.py -------------------------------------------------------------------------------- /hummingbot/strategy/perpetual_market_making/data_types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/strategy/perpetual_market_making/data_types.py -------------------------------------------------------------------------------- /hummingbot/strategy/perpetual_market_making/start.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/strategy/perpetual_market_making/start.py -------------------------------------------------------------------------------- /hummingbot/strategy/pure_market_making/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/strategy/pure_market_making/__init__.py -------------------------------------------------------------------------------- /hummingbot/strategy/pure_market_making/asset_price_delegate.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/strategy/pure_market_making/asset_price_delegate.pxd -------------------------------------------------------------------------------- /hummingbot/strategy/pure_market_making/asset_price_delegate.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/strategy/pure_market_making/asset_price_delegate.pyx -------------------------------------------------------------------------------- /hummingbot/strategy/pure_market_making/data_types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/strategy/pure_market_making/data_types.py -------------------------------------------------------------------------------- /hummingbot/strategy/pure_market_making/pure_market_making.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/strategy/pure_market_making/pure_market_making.pxd -------------------------------------------------------------------------------- /hummingbot/strategy/pure_market_making/pure_market_making.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/strategy/pure_market_making/pure_market_making.pyx -------------------------------------------------------------------------------- /hummingbot/strategy/pure_market_making/start.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/strategy/pure_market_making/start.py -------------------------------------------------------------------------------- /hummingbot/strategy/strategy_base.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/strategy/strategy_base.pxd -------------------------------------------------------------------------------- /hummingbot/strategy/strategy_base.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/strategy/strategy_base.pyx -------------------------------------------------------------------------------- /hummingbot/strategy/strategy_py_base.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/strategy/strategy_py_base.pxd -------------------------------------------------------------------------------- /hummingbot/strategy/strategy_py_base.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/strategy/strategy_py_base.pyx -------------------------------------------------------------------------------- /hummingbot/templates/conf_amm_arb_strategy_TEMPLATE.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/templates/conf_amm_arb_strategy_TEMPLATE.yml -------------------------------------------------------------------------------- /hummingbot/templates/conf_arbitrage_strategy_TEMPLATE.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/templates/conf_arbitrage_strategy_TEMPLATE.yml -------------------------------------------------------------------------------- /hummingbot/templates/conf_celo_arb_strategy_TEMPLATE.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/templates/conf_celo_arb_strategy_TEMPLATE.yml -------------------------------------------------------------------------------- /hummingbot/templates/conf_dev_0_hello_world_strategy_TEMPLATE.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/templates/conf_dev_0_hello_world_strategy_TEMPLATE.yml -------------------------------------------------------------------------------- /hummingbot/templates/conf_dev_4_twap_strategy_TEMPLATE.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/templates/conf_dev_4_twap_strategy_TEMPLATE.yml -------------------------------------------------------------------------------- /hummingbot/templates/conf_dev_5_vwap_strategy_TEMPLATE.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/templates/conf_dev_5_vwap_strategy_TEMPLATE.yml -------------------------------------------------------------------------------- /hummingbot/templates/conf_dev_simple_trade_strategy_TEMPLATE.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/templates/conf_dev_simple_trade_strategy_TEMPLATE.yml -------------------------------------------------------------------------------- /hummingbot/templates/conf_fee_overrides_TEMPLATE.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/templates/conf_fee_overrides_TEMPLATE.yml -------------------------------------------------------------------------------- /hummingbot/templates/conf_global_TEMPLATE.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/templates/conf_global_TEMPLATE.yml -------------------------------------------------------------------------------- /hummingbot/templates/conf_liquidity_mining_strategy_TEMPLATE.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/templates/conf_liquidity_mining_strategy_TEMPLATE.yml -------------------------------------------------------------------------------- /hummingbot/templates/conf_pure_market_making_strategy_TEMPLATE.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/templates/conf_pure_market_making_strategy_TEMPLATE.yml -------------------------------------------------------------------------------- /hummingbot/templates/hummingbot_logs_TEMPLATE.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/templates/hummingbot_logs_TEMPLATE.yml -------------------------------------------------------------------------------- /hummingbot/templates/test_templates/binance_secret_TEMPLATE.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/templates/test_templates/binance_secret_TEMPLATE.py -------------------------------------------------------------------------------- /hummingbot/templates/test_templates/web3_wallet_secret_TEMPLATE.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/templates/test_templates/web3_wallet_secret_TEMPLATE.py -------------------------------------------------------------------------------- /hummingbot/user/user_balances.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/user/user_balances.py -------------------------------------------------------------------------------- /hummingbot/wallet/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /hummingbot/wallet/ethereum/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /hummingbot/wallet/ethereum/erc20_token.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/wallet/ethereum/erc20_token.py -------------------------------------------------------------------------------- /hummingbot/wallet/ethereum/ethereum_chain.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/wallet/ethereum/ethereum_chain.py -------------------------------------------------------------------------------- /hummingbot/wallet/ethereum/mock_wallet.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/wallet/ethereum/mock_wallet.pxd -------------------------------------------------------------------------------- /hummingbot/wallet/ethereum/mock_wallet.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/wallet/ethereum/mock_wallet.pyx -------------------------------------------------------------------------------- /hummingbot/wallet/ethereum/token_abi/dai_abi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/wallet/ethereum/token_abi/dai_abi.json -------------------------------------------------------------------------------- /hummingbot/wallet/ethereum/token_abi/erc20_abi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/wallet/ethereum/token_abi/erc20_abi.json -------------------------------------------------------------------------------- /hummingbot/wallet/ethereum/token_abi/mkr_abi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/wallet/ethereum/token_abi/mkr_abi.json -------------------------------------------------------------------------------- /hummingbot/wallet/ethereum/token_abi/weth_contract_abi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/wallet/ethereum/token_abi/weth_contract_abi.json -------------------------------------------------------------------------------- /hummingbot/wallet/ethereum/watcher/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/wallet/ethereum/watcher/__init__.py -------------------------------------------------------------------------------- /hummingbot/wallet/ethereum/watcher/account_balance_watcher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/wallet/ethereum/watcher/account_balance_watcher.py -------------------------------------------------------------------------------- /hummingbot/wallet/ethereum/watcher/base_watcher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/wallet/ethereum/watcher/base_watcher.py -------------------------------------------------------------------------------- /hummingbot/wallet/ethereum/watcher/contract_event_logs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/wallet/ethereum/watcher/contract_event_logs.py -------------------------------------------------------------------------------- /hummingbot/wallet/ethereum/watcher/erc20_events_watcher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/wallet/ethereum/watcher/erc20_events_watcher.py -------------------------------------------------------------------------------- /hummingbot/wallet/ethereum/watcher/incoming_eth_watcher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/wallet/ethereum/watcher/incoming_eth_watcher.py -------------------------------------------------------------------------------- /hummingbot/wallet/ethereum/watcher/new_blocks_watcher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/wallet/ethereum/watcher/new_blocks_watcher.py -------------------------------------------------------------------------------- /hummingbot/wallet/ethereum/watcher/websocket_watcher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/wallet/ethereum/watcher/websocket_watcher.py -------------------------------------------------------------------------------- /hummingbot/wallet/ethereum/watcher/weth_watcher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/wallet/ethereum/watcher/weth_watcher.py -------------------------------------------------------------------------------- /hummingbot/wallet/ethereum/watcher/zeroex_fill_watcher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/wallet/ethereum/watcher/zeroex_fill_watcher.py -------------------------------------------------------------------------------- /hummingbot/wallet/ethereum/web3_wallet.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/wallet/ethereum/web3_wallet.pxd -------------------------------------------------------------------------------- /hummingbot/wallet/ethereum/web3_wallet.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/wallet/ethereum/web3_wallet.pyx -------------------------------------------------------------------------------- /hummingbot/wallet/ethereum/web3_wallet_backend.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/wallet/ethereum/web3_wallet_backend.py -------------------------------------------------------------------------------- /hummingbot/wallet/ethereum/zero_ex/zero_ex_coordinator_abi_v3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/wallet/ethereum/zero_ex/zero_ex_coordinator_abi_v3.json -------------------------------------------------------------------------------- /hummingbot/wallet/ethereum/zero_ex/zero_ex_coordinator_v3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/wallet/ethereum/zero_ex/zero_ex_coordinator_v3.py -------------------------------------------------------------------------------- /hummingbot/wallet/ethereum/zero_ex/zero_ex_custom_utils_v3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/wallet/ethereum/zero_ex/zero_ex_custom_utils_v3.py -------------------------------------------------------------------------------- /hummingbot/wallet/ethereum/zero_ex/zero_ex_exchange_abi_v3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/wallet/ethereum/zero_ex/zero_ex_exchange_abi_v3.json -------------------------------------------------------------------------------- /hummingbot/wallet/ethereum/zero_ex/zero_ex_exchange_v3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/wallet/ethereum/zero_ex/zero_ex_exchange_v3.py -------------------------------------------------------------------------------- /hummingbot/wallet/wallet_base.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/wallet/wallet_base.pxd -------------------------------------------------------------------------------- /hummingbot/wallet/wallet_base.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/hummingbot/wallet/wallet_base.pyx -------------------------------------------------------------------------------- /install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/install -------------------------------------------------------------------------------- /installation/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/installation/README.md -------------------------------------------------------------------------------- /installation/docker-commands/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/installation/docker-commands/README.md -------------------------------------------------------------------------------- /installation/docker-commands/connect.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/installation/docker-commands/connect.sh -------------------------------------------------------------------------------- /installation/docker-commands/create-gateway.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/installation/docker-commands/create-gateway.sh -------------------------------------------------------------------------------- /installation/docker-commands/create-web3.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/installation/docker-commands/create-web3.sh -------------------------------------------------------------------------------- /installation/docker-commands/create.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/installation/docker-commands/create.sh -------------------------------------------------------------------------------- /installation/docker-commands/start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/installation/docker-commands/start.sh -------------------------------------------------------------------------------- /installation/docker-commands/update-gateway.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/installation/docker-commands/update-gateway.sh -------------------------------------------------------------------------------- /installation/docker-commands/update-web3.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/installation/docker-commands/update-web3.sh -------------------------------------------------------------------------------- /installation/docker-commands/update.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/installation/docker-commands/update.sh -------------------------------------------------------------------------------- /installation/install-docker/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/installation/install-docker/README.md -------------------------------------------------------------------------------- /installation/install-docker/install-docker-centos.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/installation/install-docker/install-docker-centos.sh -------------------------------------------------------------------------------- /installation/install-docker/install-docker-debian.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/installation/install-docker/install-docker-debian.sh -------------------------------------------------------------------------------- /installation/install-docker/install-docker-ubuntu.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/installation/install-docker/install-docker-ubuntu.sh -------------------------------------------------------------------------------- /installation/install-from-source/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/installation/install-from-source/README.md -------------------------------------------------------------------------------- /installation/install-from-source/install-source-centos.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/installation/install-from-source/install-source-centos.sh -------------------------------------------------------------------------------- /installation/install-from-source/install-source-debian.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/installation/install-from-source/install-source-debian.sh -------------------------------------------------------------------------------- /installation/install-from-source/install-source-macOS.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/installation/install-from-source/install-source-macOS.sh -------------------------------------------------------------------------------- /installation/install-from-source/install-source-ubuntu.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/installation/install-from-source/install-source-ubuntu.sh -------------------------------------------------------------------------------- /installation/install-from-source/install-source-windows.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/installation/install-from-source/install-source-windows.sh -------------------------------------------------------------------------------- /installation/install-from-source/update.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/installation/install-from-source/update.sh -------------------------------------------------------------------------------- /jenkins/test-branch.jdp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/jenkins/test-branch.jdp -------------------------------------------------------------------------------- /jenkins/test-pr.jdp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/jenkins/test-pr.jdp -------------------------------------------------------------------------------- /jenkins/tests/exchanges/test-binance-market.jdp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/jenkins/tests/exchanges/test-binance-market.jdp -------------------------------------------------------------------------------- /jenkins/tests/exchanges/test-bittrex-market.jdp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/jenkins/tests/exchanges/test-bittrex-market.jdp -------------------------------------------------------------------------------- /jenkins/tests/exchanges/test-coinbase_pro-market.jdp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/jenkins/tests/exchanges/test-coinbase_pro-market.jdp -------------------------------------------------------------------------------- /jenkins/tests/exchanges/test-huobi-market.jdp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/jenkins/tests/exchanges/test-huobi-market.jdp -------------------------------------------------------------------------------- /jenkins/tests/exchanges/test-kucoin-market.jdp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/jenkins/tests/exchanges/test-kucoin-market.jdp -------------------------------------------------------------------------------- /jenkins/tests/exchanges/test-liquid-market.jdp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/jenkins/tests/exchanges/test-liquid-market.jdp -------------------------------------------------------------------------------- /jenkins/tests/strategies/test-arbitrage.jdp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/jenkins/tests/strategies/test-arbitrage.jdp -------------------------------------------------------------------------------- /jenkins/tests/strategies/test-pure_mm.jdp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/jenkins/tests/strategies/test-pure_mm.jdp -------------------------------------------------------------------------------- /jenkins/tests/strategies/test-xemm.jdp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/jenkins/tests/strategies/test-xemm.jdp -------------------------------------------------------------------------------- /logs/.gitignore: -------------------------------------------------------------------------------- 1 | /* 2 | -------------------------------------------------------------------------------- /pyinstaller/.gitignore: -------------------------------------------------------------------------------- 1 | /Setup.exe 2 | -------------------------------------------------------------------------------- /pyinstaller/Hummingbot.app.template/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/pyinstaller/Hummingbot.app.template/Contents/Info.plist -------------------------------------------------------------------------------- /pyinstaller/Hummingbot.app.template/Contents/document.wflow: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/pyinstaller/Hummingbot.app.template/Contents/document.wflow -------------------------------------------------------------------------------- /pyinstaller/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/pyinstaller/README.md -------------------------------------------------------------------------------- /pyinstaller/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pyinstaller/bot.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/pyinstaller/bot.spec -------------------------------------------------------------------------------- /pyinstaller/build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/pyinstaller/build -------------------------------------------------------------------------------- /pyinstaller/hummingbot.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/pyinstaller/hummingbot.ico -------------------------------------------------------------------------------- /pyinstaller/icon.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/pyinstaller/icon.xcf -------------------------------------------------------------------------------- /pyinstaller/windows_installer.nsi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/pyinstaller/windows_installer.nsi -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/pyproject.toml -------------------------------------------------------------------------------- /redist/VC_redist.x64.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/redist/VC_redist.x64.exe -------------------------------------------------------------------------------- /scripts/dynamic_price_band_script.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/scripts/dynamic_price_band_script.py -------------------------------------------------------------------------------- /scripts/hello_world_script.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/scripts/hello_world_script.py -------------------------------------------------------------------------------- /scripts/inv_skew_using_spread_script.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/scripts/inv_skew_using_spread_script.py -------------------------------------------------------------------------------- /scripts/ping_pong_script.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/scripts/ping_pong_script.py -------------------------------------------------------------------------------- /scripts/price_band_script.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/scripts/price_band_script.py -------------------------------------------------------------------------------- /scripts/spreads_adjusted_on_volatility_script.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/scripts/spreads_adjusted_on_volatility_script.py -------------------------------------------------------------------------------- /scripts/update_parameters_test_script.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/scripts/update_parameters_test_script.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/setup.py -------------------------------------------------------------------------------- /setup/environment-linux.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/setup/environment-linux.yml -------------------------------------------------------------------------------- /setup/environment-win64.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/setup/environment-win64.yml -------------------------------------------------------------------------------- /setup/environment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/setup/environment.yml -------------------------------------------------------------------------------- /setup/requirements-arm.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/setup/requirements-arm.txt -------------------------------------------------------------------------------- /test/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/test/README.md -------------------------------------------------------------------------------- /test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/connector/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/connector/connector/balancer/test_balancer_connector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/test/connector/connector/balancer/test_balancer_connector.py -------------------------------------------------------------------------------- /test/connector/connector/terra/test_terra_connector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/test/connector/connector/terra/test_terra_connector.py -------------------------------------------------------------------------------- /test/connector/connector/uniswap/test_uniswap_connector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/test/connector/connector/uniswap/test_uniswap_connector.py -------------------------------------------------------------------------------- /test/connector/exchange/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/connector/exchange/bitmax/.gitignore: -------------------------------------------------------------------------------- 1 | backups -------------------------------------------------------------------------------- /test/connector/exchange/bitmax/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/connector/exchange/bitmax/test_bitmax_auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/test/connector/exchange/bitmax/test_bitmax_auth.py -------------------------------------------------------------------------------- /test/connector/exchange/bitmax/test_bitmax_exchange.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/test/connector/exchange/bitmax/test_bitmax_exchange.py -------------------------------------------------------------------------------- /test/connector/exchange/bitmax/test_bitmax_order_book_tracker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/test/connector/exchange/bitmax/test_bitmax_order_book_tracker.py -------------------------------------------------------------------------------- /test/connector/exchange/bitmax/test_bitmax_user_stream_tracker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/test/connector/exchange/bitmax/test_bitmax_user_stream_tracker.py -------------------------------------------------------------------------------- /test/connector/exchange/crypto_com/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/connector/exchange/crypto_com/fixture.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/test/connector/exchange/crypto_com/fixture.py -------------------------------------------------------------------------------- /test/connector/exchange/crypto_com/test_crypto_com_auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/test/connector/exchange/crypto_com/test_crypto_com_auth.py -------------------------------------------------------------------------------- /test/connector/exchange/crypto_com/test_crypto_com_exchange.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/test/connector/exchange/crypto_com/test_crypto_com_exchange.py -------------------------------------------------------------------------------- /test/connector/test_connector_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/test/connector/test_connector_base.py -------------------------------------------------------------------------------- /test/debug_aiohttp_gather.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/test/debug_aiohttp_gather.py -------------------------------------------------------------------------------- /test/debug_arbitrage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/test/debug_arbitrage.py -------------------------------------------------------------------------------- /test/debug_cross_exchange_market_making.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/test/debug_cross_exchange_market_making.py -------------------------------------------------------------------------------- /test/integration/.gitignore: -------------------------------------------------------------------------------- 1 | /*.sqlite 2 | -------------------------------------------------------------------------------- /test/integration/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/test/integration/README.md -------------------------------------------------------------------------------- /test/integration/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/integration/assets/mock_data/fixture_binance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/test/integration/assets/mock_data/fixture_binance.py -------------------------------------------------------------------------------- /test/integration/assets/mock_data/fixture_bittrex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/test/integration/assets/mock_data/fixture_bittrex.py -------------------------------------------------------------------------------- /test/integration/assets/mock_data/fixture_celo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/test/integration/assets/mock_data/fixture_celo.py -------------------------------------------------------------------------------- /test/integration/assets/mock_data/fixture_coinbase_pro.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/test/integration/assets/mock_data/fixture_coinbase_pro.py -------------------------------------------------------------------------------- /test/integration/assets/mock_data/fixture_configs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/test/integration/assets/mock_data/fixture_configs.py -------------------------------------------------------------------------------- /test/integration/assets/mock_data/fixture_dydx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/test/integration/assets/mock_data/fixture_dydx.py -------------------------------------------------------------------------------- /test/integration/assets/mock_data/fixture_exchange_prices.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/test/integration/assets/mock_data/fixture_exchange_prices.py -------------------------------------------------------------------------------- /test/integration/assets/mock_data/fixture_huobi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/test/integration/assets/mock_data/fixture_huobi.py -------------------------------------------------------------------------------- /test/integration/assets/mock_data/fixture_kucoin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/test/integration/assets/mock_data/fixture_kucoin.py -------------------------------------------------------------------------------- /test/integration/assets/mock_data/fixture_liquid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/test/integration/assets/mock_data/fixture_liquid.py -------------------------------------------------------------------------------- /test/integration/assets/mock_data/fixture_okex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/test/integration/assets/mock_data/fixture_okex.py -------------------------------------------------------------------------------- /test/integration/humming_web_app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/test/integration/humming_web_app.py -------------------------------------------------------------------------------- /test/integration/humming_ws_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/test/integration/humming_ws_server.py -------------------------------------------------------------------------------- /test/integration/huobi_mock_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/test/integration/huobi_mock_api.py -------------------------------------------------------------------------------- /test/integration/test_bamboo_relay_market_coordinated.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/test/integration/test_bamboo_relay_market_coordinated.py -------------------------------------------------------------------------------- /test/integration/test_bamboo_relay_market_uncoordinated.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/test/integration/test_bamboo_relay_market_uncoordinated.py -------------------------------------------------------------------------------- /test/integration/test_bamboo_relay_order_book_tracker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/test/integration/test_bamboo_relay_order_book_tracker.py -------------------------------------------------------------------------------- /test/integration/test_binance_market.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/test/integration/test_binance_market.py -------------------------------------------------------------------------------- /test/integration/test_binance_order_book_tracker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/test/integration/test_binance_order_book_tracker.py -------------------------------------------------------------------------------- /test/integration/test_binance_perpetual_market.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/test/integration/test_binance_perpetual_market.py -------------------------------------------------------------------------------- /test/integration/test_binance_perpetual_order_book_tracker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/test/integration/test_binance_perpetual_order_book_tracker.py -------------------------------------------------------------------------------- /test/integration/test_binance_perpetual_user_stream_tracker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/test/integration/test_binance_perpetual_user_stream_tracker.py -------------------------------------------------------------------------------- /test/integration/test_binance_user_stream_tracker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/test/integration/test_binance_user_stream_tracker.py -------------------------------------------------------------------------------- /test/integration/test_bitfinex_api_order_book_data_source.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/test/integration/test_bitfinex_api_order_book_data_source.py -------------------------------------------------------------------------------- /test/integration/test_bitfinex_auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/test/integration/test_bitfinex_auth.py -------------------------------------------------------------------------------- /test/integration/test_bitfinex_market.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/test/integration/test_bitfinex_market.py -------------------------------------------------------------------------------- /test/integration/test_bitfinex_order_book_tracker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/test/integration/test_bitfinex_order_book_tracker.py -------------------------------------------------------------------------------- /test/integration/test_bitfinex_user_steam_tracker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/test/integration/test_bitfinex_user_steam_tracker.py -------------------------------------------------------------------------------- /test/integration/test_bittrex_market.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/test/integration/test_bittrex_market.py -------------------------------------------------------------------------------- /test/integration/test_bittrex_order_book_tracker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/test/integration/test_bittrex_order_book_tracker.py -------------------------------------------------------------------------------- /test/integration/test_bittrex_user_stream_tracker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/test/integration/test_bittrex_user_stream_tracker.py -------------------------------------------------------------------------------- /test/integration/test_celo_cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/test/integration/test_celo_cli.py -------------------------------------------------------------------------------- /test/integration/test_coin_gecko_api_data_feed.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/test/integration/test_coin_gecko_api_data_feed.py -------------------------------------------------------------------------------- /test/integration/test_coinbase_pro_active_order_tracker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/test/integration/test_coinbase_pro_active_order_tracker.py -------------------------------------------------------------------------------- /test/integration/test_coinbase_pro_market.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/test/integration/test_coinbase_pro_market.py -------------------------------------------------------------------------------- /test/integration/test_coinbase_pro_order_book_tracker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/test/integration/test_coinbase_pro_order_book_tracker.py -------------------------------------------------------------------------------- /test/integration/test_coinbase_pro_user_stream_tracker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/test/integration/test_coinbase_pro_user_stream_tracker.py -------------------------------------------------------------------------------- /test/integration/test_composite_order_book.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/test/integration/test_composite_order_book.py -------------------------------------------------------------------------------- /test/integration/test_config_process.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/test/integration/test_config_process.py -------------------------------------------------------------------------------- /test/integration/test_dolomite_market.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/test/integration/test_dolomite_market.py -------------------------------------------------------------------------------- /test/integration/test_dolomite_order_book_tracker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/test/integration/test_dolomite_order_book_tracker.py -------------------------------------------------------------------------------- /test/integration/test_dydx_api_order_book_data_source.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/test/integration/test_dydx_api_order_book_data_source.py -------------------------------------------------------------------------------- /test/integration/test_dydx_market.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/test/integration/test_dydx_market.py -------------------------------------------------------------------------------- /test/integration/test_dydx_order_book_tracker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/test/integration/test_dydx_order_book_tracker.py -------------------------------------------------------------------------------- /test/integration/test_dydx_user_stream_tracker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/test/integration/test_dydx_user_stream_tracker.py -------------------------------------------------------------------------------- /test/integration/test_eterbase_active_order_tracker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/test/integration/test_eterbase_active_order_tracker.py -------------------------------------------------------------------------------- /test/integration/test_eterbase_market.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/test/integration/test_eterbase_market.py -------------------------------------------------------------------------------- /test/integration/test_eterbase_order_book_tracker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/test/integration/test_eterbase_order_book_tracker.py -------------------------------------------------------------------------------- /test/integration/test_eterbase_user_stream_tracker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/test/integration/test_eterbase_user_stream_tracker.py -------------------------------------------------------------------------------- /test/integration/test_huobi_market.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/test/integration/test_huobi_market.py -------------------------------------------------------------------------------- /test/integration/test_huobi_market_mock.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/test/integration/test_huobi_market_mock.py -------------------------------------------------------------------------------- /test/integration/test_huobi_order_book_tracker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/test/integration/test_huobi_order_book_tracker.py -------------------------------------------------------------------------------- /test/integration/test_huobi_user_stream_tracker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/test/integration/test_huobi_user_stream_tracker.py -------------------------------------------------------------------------------- /test/integration/test_kraken_api_order_book_data_source.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/test/integration/test_kraken_api_order_book_data_source.py -------------------------------------------------------------------------------- /test/integration/test_kraken_api_user_stream_data_source.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/test/integration/test_kraken_api_user_stream_data_source.py -------------------------------------------------------------------------------- /test/integration/test_kraken_market.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/test/integration/test_kraken_market.py -------------------------------------------------------------------------------- /test/integration/test_kraken_order_book_tracker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/test/integration/test_kraken_order_book_tracker.py -------------------------------------------------------------------------------- /test/integration/test_kraken_user_stream_tracker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/test/integration/test_kraken_user_stream_tracker.py -------------------------------------------------------------------------------- /test/integration/test_kucoin_market.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/test/integration/test_kucoin_market.py -------------------------------------------------------------------------------- /test/integration/test_kucoin_order_book_tracker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/test/integration/test_kucoin_order_book_tracker.py -------------------------------------------------------------------------------- /test/integration/test_kucoin_user_stream_tracker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/test/integration/test_kucoin_user_stream_tracker.py -------------------------------------------------------------------------------- /test/integration/test_liquid_api_order_book_data_source_adhoc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/test/integration/test_liquid_api_order_book_data_source_adhoc.py -------------------------------------------------------------------------------- /test/integration/test_liquid_market.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/test/integration/test_liquid_market.py -------------------------------------------------------------------------------- /test/integration/test_liquid_order_book_tracker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/test/integration/test_liquid_order_book_tracker.py -------------------------------------------------------------------------------- /test/integration/test_liquid_user_stream_tracker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/test/integration/test_liquid_user_stream_tracker.py -------------------------------------------------------------------------------- /test/integration/test_loopring_api_order_book_data_source.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/test/integration/test_loopring_api_order_book_data_source.py -------------------------------------------------------------------------------- /test/integration/test_loopring_market.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/test/integration/test_loopring_market.py -------------------------------------------------------------------------------- /test/integration/test_loopring_order_book_tracker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/test/integration/test_loopring_order_book_tracker.py -------------------------------------------------------------------------------- /test/integration/test_loopring_token_configuration_data_source.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/test/integration/test_loopring_token_configuration_data_source.py -------------------------------------------------------------------------------- /test/integration/test_loopring_user_stream_tracker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/test/integration/test_loopring_user_stream_tracker.py -------------------------------------------------------------------------------- /test/integration/test_okex_api_order_book_data_source.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/test/integration/test_okex_api_order_book_data_source.py -------------------------------------------------------------------------------- /test/integration/test_okex_auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/test/integration/test_okex_auth.py -------------------------------------------------------------------------------- /test/integration/test_okex_market.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/test/integration/test_okex_market.py -------------------------------------------------------------------------------- /test/integration/test_order_book.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/test/integration/test_order_book.py -------------------------------------------------------------------------------- /test/integration/test_order_expiration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/test/integration/test_order_expiration.py -------------------------------------------------------------------------------- /test/integration/test_paper_trade_market.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/test/integration/test_paper_trade_market.py -------------------------------------------------------------------------------- /test/integration/test_radar_relay_market.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/test/integration/test_radar_relay_market.py -------------------------------------------------------------------------------- /test/integration/test_radar_relay_order_book_tracker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/test/integration/test_radar_relay_order_book_tracker.py -------------------------------------------------------------------------------- /test/integration/test_web3_wallet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/test/integration/test_web3_wallet.py -------------------------------------------------------------------------------- /test/strategy/amm_arb/test_amm_arb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/test/strategy/amm_arb/test_amm_arb.py -------------------------------------------------------------------------------- /test/strategy/amm_arb/test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/test/strategy/amm_arb/test_utils.py -------------------------------------------------------------------------------- /test/test_arbitrage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/test/test_arbitrage.py -------------------------------------------------------------------------------- /test/test_async_ttl_cache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/test/test_async_ttl_cache.py -------------------------------------------------------------------------------- /test/test_celo_arb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/test/test_celo_arb.py -------------------------------------------------------------------------------- /test/test_config_security.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/test/test_config_security.py -------------------------------------------------------------------------------- /test/test_config_templates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/test/test_config_templates.py -------------------------------------------------------------------------------- /test/test_cross_exchange_market_making.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/test/test_cross_exchange_market_making.py -------------------------------------------------------------------------------- /test/test_inventory_cost_price_delegate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/test/test_inventory_cost_price_delegate.py -------------------------------------------------------------------------------- /test/test_inventory_skew_calculator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/test/test_inventory_skew_calculator.py -------------------------------------------------------------------------------- /test/test_perform_trade.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/test/test_perform_trade.py -------------------------------------------------------------------------------- /test/test_performance_metrics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/test/test_performance_metrics.py -------------------------------------------------------------------------------- /test/test_pmm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/test/test_pmm.py -------------------------------------------------------------------------------- /test/test_pmm_ping_pong.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/test/test_pmm_ping_pong.py -------------------------------------------------------------------------------- /test/test_pmm_refresh_tolerance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/test/test_pmm_refresh_tolerance.py -------------------------------------------------------------------------------- /test/test_pmm_take_if_cross.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/test/test_pmm_take_if_cross.py -------------------------------------------------------------------------------- /test/test_script_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/test/test_script_base.py -------------------------------------------------------------------------------- /test/test_script_iterator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/test/test_script_iterator.py -------------------------------------------------------------------------------- /test/test_simple_trade.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/test/test_simple_trade.py -------------------------------------------------------------------------------- /test/test_trade_performance_analysis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/test/test_trade_performance_analysis.py -------------------------------------------------------------------------------- /test/test_twap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/test/test_twap.py -------------------------------------------------------------------------------- /test/test_vwap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/test/test_vwap.py -------------------------------------------------------------------------------- /uninstall: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loopring/hummingbot/HEAD/uninstall --------------------------------------------------------------------------------