freqtrade / freqtrade

Free, open source crypto trading bot
https://www.freqtrade.io
GNU General Public License v3.0
26.64k stars 5.83k forks source link

Unable to Load Markets Using Proxy in Async #9829

Closed tar-xz closed 5 months ago

tar-xz commented 5 months ago

Describe your environment

Note: All issues other than enhancement requests will be closed without further comment if the above template is deleted or not filled out.

Describe the problem:

I'm setting up the program on my US VPS. As we all know, Binance.com is not accessible in the US region. Therefore, I want to route the requests through my EU tiny proxy VPS. The proxy works for sync cctx, but it is not functioning properly for async cctx. I tried the methods mentioned in issues #1207 and #7769, but neither of them worked. They resulted in the same error.

Steps to reproduce:

  1. Use proxy

Observed Results:

Relevant code exceptions or logs

Note: Please copy/paste text of the messages, no screenshots of logs please.

~/freqtrade$ docker compose logs 
2024-02-18 15:02:52,468 - freqtrade - INFO - freqtrade 2024.1
2024-02-18 15:02:53,168 - freqtrade.worker - INFO - Starting worker 2024.1
2024-02-18 15:02:53,168 - freqtrade.configuration.load_config - INFO - Using config: /freqtrade/user_data/config.json ...
2024-02-18 15:02:53,169 - freqtrade.loggers - INFO - Verbosity set to 0
2024-02-18 15:02:53,169 - freqtrade.configuration.configuration - INFO - Runmode set to dry_run.
2024-02-18 15:02:53,169 - freqtrade.configuration.configuration - INFO - Parameter --db-url detected ...
2024-02-18 15:02:53,170 - freqtrade.configuration.configuration - INFO - Dry run is enabled
2024-02-18 15:02:53,170 - freqtrade.configuration.configuration - INFO - Using DB: "sqlite:////freqtrade/user_data/tradesv3.sqlite"
2024-02-18 15:02:53,170 - freqtrade.configuration.configuration - INFO - Using max_open_trades: 3 ...
2024-02-18 15:02:53,180 - freqtrade.configuration.configuration - INFO - Using user-data directory: /freqtrade/user_data ...
2024-02-18 15:02:53,180 - freqtrade.configuration.configuration - INFO - Using data directory: /freqtrade/user_data/data/binance ...
2024-02-18 15:02:53,182 - freqtrade.exchange.check_exchange - INFO - Checking exchange...
2024-02-18 15:02:53,193 - freqtrade.exchange.check_exchange - INFO - Exchange "binance" is officially supported by the Freqtrade development team.
2024-02-18 15:02:53,194 - freqtrade.configuration.configuration - INFO - Using pairlist from configuration.
2024-02-18 15:02:53,213 - freqtrade.resolvers.iresolver - INFO - Using resolved strategy SampleStrategy from '/freqtrade/user_data/strategies/sample_strategy.py'...
2024-02-18 15:02:53,213 - freqtrade.strategy.hyper - INFO - Found no parameter file.
2024-02-18 15:02:53,214 - freqtrade.resolvers.strategy_resolver - INFO - Override strategy 'stake_currency' with value in config file: USDT.
2024-02-18 15:02:53,214 - freqtrade.resolvers.strategy_resolver - INFO - Override strategy 'stake_amount' with value in config file: 10.
2024-02-18 15:02:53,214 - freqtrade.resolvers.strategy_resolver - INFO - Override strategy 'unfilledtimeout' with value in config file: {'entry': 10, 'exit': 10, 'exit_timeout_count': 0, 'unit': 'minutes'}.
2024-02-18 15:02:53,214 - freqtrade.resolvers.strategy_resolver - INFO - Override strategy 'max_open_trades' with value in config file: 3.
2024-02-18 15:02:53,214 - freqtrade.resolvers.strategy_resolver - INFO - Strategy using minimal_roi: {'60': 0.01, '30': 0.02, '0': 0.04}
2024-02-18 15:02:53,214 - freqtrade.resolvers.strategy_resolver - INFO - Strategy using timeframe: 5m
2024-02-18 15:02:53,214 - freqtrade.resolvers.strategy_resolver - INFO - Strategy using stoploss: -0.1
2024-02-18 15:02:53,214 - freqtrade.resolvers.strategy_resolver - INFO - Strategy using trailing_stop: False
2024-02-18 15:02:53,214 - freqtrade.resolvers.strategy_resolver - INFO - Strategy using trailing_stop_positive_offset: 0.0
2024-02-18 15:02:53,214 - freqtrade.resolvers.strategy_resolver - INFO - Strategy using trailing_only_offset_is_reached: False
2024-02-18 15:02:53,214 - freqtrade.resolvers.strategy_resolver - INFO - Strategy using use_custom_stoploss: False
2024-02-18 15:02:53,215 - freqtrade.resolvers.strategy_resolver - INFO - Strategy using process_only_new_candles: True
2024-02-18 15:02:53,215 - freqtrade.resolvers.strategy_resolver - INFO - Strategy using order_types: {'entry': 'limit', 'exit': 'limit', 'stoploss': 'market', 'stoploss_on_exchange': False}
2024-02-18 15:02:53,215 - freqtrade.resolvers.strategy_resolver - INFO - Strategy using order_time_in_force: {'entry': 'GTC', 'exit': 'GTC'}
2024-02-18 15:02:53,215 - freqtrade.resolvers.strategy_resolver - INFO - Strategy using stake_currency: USDT
2024-02-18 15:02:53,215 - freqtrade.resolvers.strategy_resolver - INFO - Strategy using stake_amount: 10
2024-02-18 15:02:53,215 - freqtrade.resolvers.strategy_resolver - INFO - Strategy using protections: []
2024-02-18 15:02:53,215 - freqtrade.resolvers.strategy_resolver - INFO - Strategy using startup_candle_count: 200
2024-02-18 15:02:53,215 - freqtrade.resolvers.strategy_resolver - INFO - Strategy using unfilledtimeout: {'entry': 10, 'exit': 10, 'exit_timeout_count': 0, 'unit': 'minutes'}
2024-02-18 15:02:53,215 - freqtrade.resolvers.strategy_resolver - INFO - Strategy using use_exit_signal: True
2024-02-18 15:02:53,215 - freqtrade.resolvers.strategy_resolver - INFO - Strategy using exit_profit_only: False
2024-02-18 15:02:53,215 - freqtrade.resolvers.strategy_resolver - INFO - Strategy using ignore_roi_if_entry_signal: False
2024-02-18 15:02:53,215 - freqtrade.resolvers.strategy_resolver - INFO - Strategy using exit_profit_offset: 0.0
2024-02-18 15:02:53,215 - freqtrade.resolvers.strategy_resolver - INFO - Strategy using disable_dataframe_checks: False
2024-02-18 15:02:53,216 - freqtrade.resolvers.strategy_resolver - INFO - Strategy using ignore_buying_expired_candle_after: 0
2024-02-18 15:02:53,216 - freqtrade.resolvers.strategy_resolver - INFO - Strategy using position_adjustment_enable: False
2024-02-18 15:02:53,216 - freqtrade.resolvers.strategy_resolver - INFO - Strategy using max_entry_position_adjustment: -1
2024-02-18 15:02:53,216 - freqtrade.resolvers.strategy_resolver - INFO - Strategy using max_open_trades: 3
2024-02-18 15:02:53,216 - freqtrade.configuration.config_validation - INFO - Validating configuration ...
2024-02-18 15:02:53,219 - freqtrade.exchange.exchange - INFO - Instance is running with dry_run enabled
2024-02-18 15:02:53,219 - freqtrade.exchange.exchange - INFO - Using CCXT 4.2.25
2024-02-18 15:02:53,219 - freqtrade.exchange.exchange - INFO - Applying additional ccxt config: {'httpsProxy': 'http://username:password@host:port'}
2024-02-18 15:02:53,230 - freqtrade.exchange.exchange - INFO - Applying additional ccxt config: {'httpsProxy': 'http://username:password@host:port'}
2024-02-18 15:02:53,240 - freqtrade.exchange.exchange - INFO - Using Exchange "Binance"
2024-02-18 15:02:58,838 - freqtrade.exchange.exchange - WARNING - Could not load async markets. Reason: binance GET https://api.binance.com/api/v3/exchangeInfo
2024-02-18 15:02:58,840 - freqtrade.resolvers.exchange_resolver - INFO - Using resolved exchange 'Binance'...
2024-02-18 15:02:58,885 - freqtrade.wallets - INFO - Wallets synced.
2024-02-18 15:02:58,891 - freqtrade.resolvers.iresolver - INFO - Using resolved pairlist VolumePairList from '/freqtrade/freqtrade/plugins/pairlist/VolumePairList.py'...
2024-02-18 15:02:59,067 - freqtrade.rpc.rpc_manager - INFO - Enabling rpc.telegram ...
2024-02-18 15:02:59,302 - freqtrade.rpc.rpc_manager - INFO - Enabling rpc.api_server
2024-02-18 15:02:59,459 - freqtrade.rpc.telegram - INFO - rpc.telegram is listening for following commands: [['status'], ['profit'], ['balance'], ['start'], ['stop'], ['forceexit', 'forcesell', 'fx'], ['forcebuy', 'forcelong'], ['forceshort'], ['reload_trade'], ['trades'], ['delete'], ['cancel_open_order', 'coo'], ['performance'], ['buys', 'entries'], ['exits', 'sells'], ['mix_tags'], ['stats'], ['daily'], ['weekly'], ['monthly'], ['count'], ['locks'], ['delete_locks', 'unlock'], ['reload_conf', 'reload_config'], ['show_conf', 'show_config'], ['stopbuy', 'stopentry'], ['whitelist'], ['blacklist'], ['bl_delete', 'blacklist_delete'], ['logs'], ['edge'], ['health'], ['help'], ['version'], ['marketdir'], ['order']]
2024-02-18 15:02:59,683 - freqtrade.rpc.api_server.webserver - INFO - Starting HTTP Server at 0.0.0.0:8080
2024-02-18 15:02:59,683 - freqtrade.rpc.api_server.webserver - INFO - Starting Local Rest Server.
2024-02-18 15:02:59,693 - uvicorn.error - INFO - Started server process [1]
2024-02-18 15:02:59,693 - uvicorn.error - INFO - Waiting for application startup.
2024-02-18 15:02:59,693 - uvicorn.error - INFO - Application startup complete.
2024-02-18 15:02:59,694 - uvicorn.error - INFO - Uvicorn running on http://0.0.0.0:8080 (Press CTRL+C to quit)
2024-02-18 15:02:59,700 - freqtrade.resolvers.iresolver - INFO - Using resolved pairlist VolumePairList from '/freqtrade/freqtrade/plugins/pairlist/VolumePairList.py'...
2024-02-18 15:02:59,997 - telegram.ext.Application - INFO - Application started
2024-02-18 15:03:01,401 - VolumePairList - INFO - Pair BNB/USDT in your blacklist. Removing it from whitelist...
2024-02-18 15:03:01,440 - freqtrade.plugins.pairlistmanager - INFO - Whitelist with 20 pairs: ['BTC/USDT', 'ETH/USDT', 'FDUSD/USDT', 'SOL/USDT', 'USDC/USDT', 'WLD/USDT', 'LPT/USDT', 'INJ/USDT', 'ALT/USDT', 'AI/USDT', 'ADA/USDT', 'XRP/USDT', 'ARKM/USDT', 'ZEN/USDT', 'FIL/USDT', 'AGIX/USDT', 'IOTX/USDT', 'SEI/USDT', 'RNDR/USDT', 'SUI/USDT']
2024-02-18 15:03:01,440 - freqtrade.strategy.hyper - INFO - No params for buy found, using default values.
2024-02-18 15:03:01,441 - freqtrade.strategy.hyper - INFO - Strategy Parameter(default): buy_rsi = 30
2024-02-18 15:03:01,441 - freqtrade.strategy.hyper - INFO - Strategy Parameter(default): exit_short_rsi = 30
2024-02-18 15:03:01,441 - freqtrade.strategy.hyper - INFO - No params for sell found, using default values.
2024-02-18 15:03:01,441 - freqtrade.strategy.hyper - INFO - Strategy Parameter(default): sell_rsi = 70
2024-02-18 15:03:01,441 - freqtrade.strategy.hyper - INFO - Strategy Parameter(default): short_rsi = 70
2024-02-18 15:03:01,441 - freqtrade.strategy.hyper - INFO - No params for protection found, using default values.
2024-02-18 15:03:01,442 - freqtrade.plugins.protectionmanager - INFO - No protection Handlers defined.
2024-02-18 15:03:01,442 - freqtrade.rpc.rpc_manager - INFO - Sending rpc message: {'type': status, 'status': 'running'}
2024-02-18 15:03:01,442 - freqtrade.worker - INFO - Changing state to: RUNNING
2024-02-18 15:03:01,456 - freqtrade.rpc.rpc_manager - INFO - Sending rpc message: {'type': warning, 'status': 'Dry run is enabled. All trades are simulated.'}
2024-02-18 15:03:01,456 - freqtrade.rpc.rpc_manager - INFO - Sending rpc message: {'type': startup, 'status': "*Exchange:* `binance`\n*Stake per trade:* `10 USDT`\n*Minimum ROI:* `{'60': 0.01, '30': 0.02, '0': 0.04}`\n*Stoploss:* `-0.1`\n*Position adjustment:* `Off`\n*Timeframe:* `5m`\n*Strategy:* `SampleStrategy`"}
2024-02-18 15:03:01,457 - freqtrade.rpc.rpc_manager - INFO - Sending rpc message: {'type': startup, 'status': "Searching for USDT pairs to buy and sell based on [{'VolumePairList': 'VolumePairList - top 20 volume pairs.'}]"}
2024-02-18 15:03:01,765 - freqtrade.exchange.common - WARNING - _async_get_candle_history() returned exception: "Could not fetch historical candle (OHLCV) data for pair BTC/USDT due to ExchangeNotAvailable. Message: binance GET https://api.binance.com/api/v3/exchangeInfo". Retrying still for 4 times.
2024-02-18 15:03:01,766 - freqtrade.exchange.common - WARNING - _async_get_candle_history() returned exception: "Could not fetch historical candle (OHLCV) data for pair XRP/USDT due to ExchangeNotAvailable. Message: binance GET https://api.binance.com/api/v3/exchangeInfo". Retrying still for 4 times.
2024-02-18 15:03:01,766 - freqtrade.exchange.common - WARNING - _async_get_candle_history() returned exception: "Could not fetch historical candle (OHLCV) data for pair FDUSD/USDT due to ExchangeNotAvailable. Message: binance GET https://api.binance.com/api/v3/exchangeInfo". Retrying still for 4 times.
2024-02-18 15:03:01,766 - freqtrade.exchange.common - WARNING - _async_get_candle_history() returned exception: "Could not fetch historical candle (OHLCV) data for pair SOL/USDT due to ExchangeNotAvailable. Message: binance GET https://api.binance.com/api/v3/exchangeInfo". Retrying still for 4 times.
2024-02-18 15:03:01,766 - freqtrade.exchange.common - WARNING - _async_get_candle_history() returned exception: "Could not fetch historical candle (OHLCV) data for pair SUI/USDT due to ExchangeNotAvailable. Message: binance GET https://api.binance.com/api/v3/exchangeInfo". Retrying still for 4 times.
2024-02-18 15:03:01,766 - freqtrade.exchange.common - WARNING - _async_get_candle_history() returned exception: "Could not fetch historical candle (OHLCV) data for pair WLD/USDT due to ExchangeNotAvailable. Message: binance GET https://api.binance.com/api/v3/exchangeInfo". Retrying still for 4 times.
2024-02-18 15:03:01,766 - freqtrade.exchange.common - WARNING - _async_get_candle_history() returned exception: "Could not fetch historical candle (OHLCV) data for pair AGIX/USDT due to ExchangeNotAvailable. Message: binance GET https://api.binance.com/api/v3/exchangeInfo". Retrying still for 4 times.
2024-02-18 15:03:01,766 - freqtrade.exchange.common - WARNING - _async_get_candle_history() returned exception: "Could not fetch historical candle (OHLCV) data for pair ADA/USDT due to ExchangeNotAvailable. Message: binance GET https://api.binance.com/api/v3/exchangeInfo". Retrying still for 4 times.
2024-02-18 15:03:01,767 - freqtrade.exchange.common - WARNING - _async_get_candle_history() returned exception: "Could not fetch historical candle (OHLCV) data for pair RNDR/USDT due to ExchangeNotAvailable. Message: binance GET https://api.binance.com/api/v3/exchangeInfo". Retrying still for 4 times.
2024-02-18 15:03:01,767 - freqtrade.exchange.common - WARNING - _async_get_candle_history() returned exception: "Could not fetch historical candle (OHLCV) data for pair ZEN/USDT due to ExchangeNotAvailable. Message: binance GET https://api.binance.com/api/v3/exchangeInfo". Retrying still for 4 times.
2024-02-18 15:03:01,767 - freqtrade.exchange.common - WARNING - _async_get_candle_history() returned exception: "Could not fetch historical candle (OHLCV) data for pair FIL/USDT due to ExchangeNotAvailable. Message: binance GET https://api.binance.com/api/v3/exchangeInfo". Retrying still for 4 times.
2024-02-18 15:03:01,767 - freqtrade.exchange.common - WARNING - _async_get_candle_history() returned exception: "Could not fetch historical candle (OHLCV) data for pair IOTX/USDT due to ExchangeNotAvailable. Message: binance GET https://api.binance.com/api/v3/exchangeInfo". Retrying still for 4 times.
2024-02-18 15:03:01,767 - freqtrade.exchange.common - WARNING - _async_get_candle_history() returned exception: "Could not fetch historical candle (OHLCV) data for pair INJ/USDT due to ExchangeNotAvailable. Message: binance GET https://api.binance.com/api/v3/exchangeInfo". Retrying still for 4 times.
2024-02-18 15:03:01,767 - freqtrade.exchange.common - WARNING - _async_get_candle_history() returned exception: "Could not fetch historical candle (OHLCV) data for pair LPT/USDT due to ExchangeNotAvailable. Message: binance GET https://api.binance.com/api/v3/exchangeInfo". Retrying still for 4 times.
2024-02-18 15:03:01,767 - freqtrade.exchange.common - WARNING - _async_get_candle_history() returned exception: "Could not fetch historical candle (OHLCV) data for pair ETH/USDT due to ExchangeNotAvailable. Message: binance GET https://api.binance.com/api/v3/exchangeInfo". Retrying still for 4 times.
2024-02-18 15:03:01,767 - freqtrade.exchange.common - WARNING - _async_get_candle_history() returned exception: "Could not fetch historical candle (OHLCV) data for pair AI/USDT due to ExchangeNotAvailable. Message: binance GET https://api.binance.com/api/v3/exchangeInfo". Retrying still for 4 times.
2024-02-18 15:03:01,768 - freqtrade.exchange.common - WARNING - _async_get_candle_history() returned exception: "Could not fetch historical candle (OHLCV) data for pair ARKM/USDT due to ExchangeNotAvailable. Message: binance GET https://api.binance.com/api/v3/exchangeInfo". Retrying still for 4 times.
2024-02-18 15:03:01,768 - freqtrade.exchange.common - WARNING - _async_get_candle_history() returned exception: "Could not fetch historical candle (OHLCV) data for pair SEI/USDT due to ExchangeNotAvailable. Message: binance GET https://api.binance.com/api/v3/exchangeInfo". Retrying still for 4 times.
2024-02-18 15:03:01,768 - freqtrade.exchange.common - WARNING - _async_get_candle_history() returned exception: "Could not fetch historical candle (OHLCV) data for pair USDC/USDT due to ExchangeNotAvailable. Message: binance GET https://api.binance.com/api/v3/exchangeInfo". Retrying still for 4 times.
2024-02-18 15:03:01,768 - freqtrade.exchange.common - WARNING - _async_get_candle_history() returned exception: "Could not fetch historical candle (OHLCV) data for pair ALT/USDT due to ExchangeNotAvailable. Message: binance GET https://api.binance.com/api/v3/exchangeInfo". Retrying still for 4 times.
2024-02-18 15:03:02,065 - freqtrade.exchange.common - WARNING - _async_get_candle_history() returned exception: "Could not fetch historical candle (OHLCV) data for pair BTC/USDT due to ExchangeNotAvailable. Message: binance GET https://api.binance.com/api/v3/exchangeInfo". Retrying still for 3 times.
2024-02-18 15:03:02,364 - freqtrade.exchange.common - WARNING - _async_get_candle_history() returned exception: "Could not fetch historical candle (OHLCV) data for pair XRP/USDT due to ExchangeNotAvailable. Message: binance GET https://api.binance.com/api/v3/exchangeInfo". Retrying still for 3 times.
2024-02-18 15:03:02,665 - freqtrade.exchange.common - WARNING - _async_get_candle_history() returned exception: "Could not fetch historical candle (OHLCV) data for pair FDUSD/USDT due to ExchangeNotAvailable. Message: binance GET https://api.binance.com/api/v3/exchangeInfo". Retrying still for 3 times.
2024-02-18 15:03:02,965 - freqtrade.exchange.common - WARNING - _async_get_candle_history() returned exception: "Could not fetch historical candle (OHLCV) data for pair SOL/USDT due to ExchangeNotAvailable. Message: binance GET https://api.binance.com/api/v3/exchangeInfo". Retrying still for 3 times.
2024-02-18 15:03:03,267 - freqtrade.exchange.common - WARNING - _async_get_candle_history() returned exception: "Could not fetch historical candle (OHLCV) data for pair SUI/USDT due to ExchangeNotAvailable. Message: binance GET https://api.binance.com/api/v3/exchangeInfo". Retrying still for 3 times.
2024-02-18 15:03:03,566 - freqtrade.exchange.common - WARNING - _async_get_candle_history() returned exception: "Could not fetch historical candle (OHLCV) data for pair WLD/USDT due to ExchangeNotAvailable. Message: binance GET https://api.binance.com/api/v3/exchangeInfo". Retrying still for 3 times.
2024-02-18 15:03:03,865 - freqtrade.exchange.common - WARNING - _async_get_candle_history() returned exception: "Could not fetch historical candle (OHLCV) data for pair AGIX/USDT due to ExchangeNotAvailable. Message: binance GET https://api.binance.com/api/v3/exchangeInfo". Retrying still for 3 times.
2024-02-18 15:03:04,166 - freqtrade.exchange.common - WARNING - _async_get_candle_history() returned exception: "Could not fetch historical candle (OHLCV) data for pair ADA/USDT due to ExchangeNotAvailable. Message: binance GET https://api.binance.com/api/v3/exchangeInfo". Retrying still for 3 times.
2024-02-18 15:03:04,465 - freqtrade.exchange.common - WARNING - _async_get_candle_history() returned exception: "Could not fetch historical candle (OHLCV) data for pair RNDR/USDT due to ExchangeNotAvailable. Message: binance GET https://api.binance.com/api/v3/exchangeInfo". Retrying still for 3 times.
2024-02-18 15:03:04,766 - freqtrade.exchange.common - WARNING - _async_get_candle_history() returned exception: "Could not fetch historical candle (OHLCV) data for pair ZEN/USDT due to ExchangeNotAvailable. Message: binance GET https://api.binance.com/api/v3/exchangeInfo". Retrying still for 3 times.
2024-02-18 15:03:05,065 - freqtrade.exchange.common - WARNING - _async_get_candle_history() returned exception: "Could not fetch historical candle (OHLCV) data for pair FIL/USDT due to ExchangeNotAvailable. Message: binance GET https://api.binance.com/api/v3/exchangeInfo". Retrying still for 3 times.
2024-02-18 15:03:05,366 - freqtrade.exchange.common - WARNING - _async_get_candle_history() returned exception: "Could not fetch historical candle (OHLCV) data for pair IOTX/USDT due to ExchangeNotAvailable. Message: binance GET https://api.binance.com/api/v3/exchangeInfo". Retrying still for 3 times.
2024-02-18 15:03:05,664 - freqtrade.exchange.common - WARNING - _async_get_candle_history() returned exception: "Could not fetch historical candle (OHLCV) data for pair INJ/USDT due to ExchangeNotAvailable. Message: binance GET https://api.binance.com/api/v3/exchangeInfo". Retrying still for 3 times.
2024-02-18 15:03:05,964 - freqtrade.exchange.common - WARNING - _async_get_candle_history() returned exception: "Could not fetch historical candle (OHLCV) data for pair LPT/USDT due to ExchangeNotAvailable. Message: binance GET https://api.binance.com/api/v3/exchangeInfo". Retrying still for 3 times.
2024-02-18 15:03:06,265 - freqtrade.exchange.common - WARNING - _async_get_candle_history() returned exception: "Could not fetch historical candle (OHLCV) data for pair ETH/USDT due to ExchangeNotAvailable. Message: binance GET https://api.binance.com/api/v3/exchangeInfo". Retrying still for 3 times.
2024-02-18 15:03:06,565 - freqtrade.exchange.common - WARNING - _async_get_candle_history() returned exception: "Could not fetch historical candle (OHLCV) data for pair AI/USDT due to ExchangeNotAvailable. Message: binance GET https://api.binance.com/api/v3/exchangeInfo". Retrying still for 3 times.
2024-02-18 15:03:06,867 - freqtrade.exchange.common - WARNING - _async_get_candle_history() returned exception: "Could not fetch historical candle (OHLCV) data for pair ARKM/USDT due to ExchangeNotAvailable. Message: binance GET https://api.binance.com/api/v3/exchangeInfo". Retrying still for 3 times.
2024-02-18 15:03:07,165 - freqtrade.exchange.common - WARNING - _async_get_candle_history() returned exception: "Could not fetch historical candle (OHLCV) data for pair SEI/USDT due to ExchangeNotAvailable. Message: binance GET https://api.binance.com/api/v3/exchangeInfo". Retrying still for 3 times.
2024-02-18 15:03:07,465 - freqtrade.exchange.common - WARNING - _async_get_candle_history() returned exception: "Could not fetch historical candle (OHLCV) data for pair USDC/USDT due to ExchangeNotAvailable. Message: binance GET https://api.binance.com/api/v3/exchangeInfo". Retrying still for 3 times.
2024-02-18 15:03:07,765 - freqtrade.exchange.common - WARNING - _async_get_candle_history() returned exception: "Could not fetch historical candle (OHLCV) data for pair ALT/USDT due to ExchangeNotAvailable. Message: binance GET https://api.binance.com/api/v3/exchangeInfo". Retrying still for 3 times.
2024-02-18 15:03:08,068 - freqtrade.exchange.common - WARNING - _async_get_candle_history() returned exception: "Could not fetch historical candle (OHLCV) data for pair BTC/USDT due to ExchangeNotAvailable. Message: binance GET https://api.binance.com/api/v3/exchangeInfo". Retrying still for 2 times.
2024-02-18 15:03:08,366 - freqtrade.exchange.common - WARNING - _async_get_candle_history() returned exception: "Could not fetch historical candle (OHLCV) data for pair XRP/USDT due to ExchangeNotAvailable. Message: binance GET https://api.binance.com/api/v3/exchangeInfo". Retrying still for 2 times.
2024-02-18 15:03:08,676 - freqtrade.exchange.common - WARNING - _async_get_candle_history() returned exception: "Could not fetch historical candle (OHLCV) data for pair FDUSD/USDT due to ExchangeNotAvailable. Message: binance GET https://api.binance.com/api/v3/exchangeInfo". Retrying still for 2 times.
2024-02-18 15:03:08,977 - freqtrade.exchange.common - WARNING - _async_get_candle_history() returned exception: "Could not fetch historical candle (OHLCV) data for pair SOL/USDT due to ExchangeNotAvailable. Message: binance GET https://api.binance.com/api/v3/exchangeInfo". Retrying still for 2 times.
2024-02-18 15:03:09,265 - freqtrade.exchange.common - WARNING - _async_get_candle_history() returned exception: "Could not fetch historical candle (OHLCV) data for pair SUI/USDT due to ExchangeNotAvailable. Message: binance GET https://api.binance.com/api/v3/exchangeInfo". Retrying still for 2 times.

Config

    "exchange": {
        "name": "binance",
        "key": "",
        "secret": "",
        "ccxt_config": {
            "httpsProxy": "http://username:password@host:port"
        },
        "ccxt_sync_config": {
            "httpsProxy": "http://username:password@host:port"
        },
        "ccxt_async_config": {
            "httpsProxy": "http://username:password@host:port"
        },
        "pair_whitelist": [
        ],
        "pair_blacklist": [
            "BNB/.*"
        ]
    },
xmatthias commented 5 months ago

The only real neccessity is the following - as the docs also mention:

All others are ... unnecessary, really - though it also doesn't really matter if they're there, as long as they're set correctly (the ccxt_config will be merged into their sync and async subsections).

        "ccxt_config": {
            "httpsProxy": "http://username:password@host:port"
        },

If that proxy is functional / working (for http - in your case) - then requests will go through that proxy.

I'm 100% certain of this - as we do use exactly the same setup to run part of the "live" CI - so this is actively tested for - usually multiple times per day (no, you cannot use our Proxy).


I'd suggest to run freqtrade with -vvv to see the ccxt level errors - which might have some hints as to what the problem is (this could be a typo in the proxy setup - or a leading / trailing space which throws everything off ...).

tar-xz commented 5 months ago

The only real neccessity is the following - as the docs also mention:

All others are ... unnecessary, really - though it also doesn't really matter if they're there, as long as they're set correctly (the ccxt_config will be merged into their sync and async subsections).

        "ccxt_config": {
            "httpsProxy": "http://username:password@host:port"
        },

I had tried, but it just came out with the same error.

If that proxy is functional / working (for http - in your case) - then requests will go through that proxy.

I'm 100% certain of this - as we do use exactly the same setup to run part of the "live" CI - so this is actively tested for - usually multiple times per day (no, you cannot use our Proxy).

I had tested the proxy with my browser (Firefox) with FoxyProxy extension. It is working fine and showing my EU VPS IP addr on ipinfo.io.

I'd suggest to run with -vvv to see the ccxt level errors - which might have some hints as to what the problem is (this could be a typo in the proxy setup - or a leading / trailing space which throws everything off ...).

Working on it.

tar-xz commented 5 months ago
2024-02-18 15:29:05,290 - freqtrade - INFO - freqtrade 2024.1
2024-02-18 15:29:05,957 - freqtrade.worker - INFO - Starting worker 2024.1
2024-02-18 15:29:05,957 - freqtrade.configuration.load_config - INFO - Using config: /freqtrade/user_data/config.json ...
2024-02-18 15:29:05,957 - freqtrade.loggers - INFO - Verbosity set to 3
2024-02-18 15:29:05,958 - freqtrade.configuration.configuration - INFO - Runmode set to dry_run.
2024-02-18 15:29:05,958 - freqtrade.configuration.configuration - INFO - Parameter --db-url detected ...
2024-02-18 15:29:05,958 - freqtrade.configuration.configuration - INFO - Dry run is enabled
2024-02-18 15:29:05,958 - freqtrade.configuration.configuration - INFO - Using DB: "sqlite:////freqtrade/user_data/tradesv3.sqlite"
2024-02-18 15:29:05,958 - freqtrade.configuration.configuration - INFO - Using max_open_trades: 3 ...
2024-02-18 15:29:05,968 - freqtrade.configuration.configuration - INFO - Using user-data directory: /freqtrade/user_data ...
2024-02-18 15:29:05,969 - freqtrade.configuration.configuration - INFO - Using data directory: /freqtrade/user_data/data/binance ...
2024-02-18 15:29:05,970 - freqtrade.exchange.check_exchange - INFO - Checking exchange...
2024-02-18 15:29:05,981 - freqtrade.exchange.check_exchange - INFO - Exchange "binance" is officially supported by the Freqtrade development team.
2024-02-18 15:29:05,982 - freqtrade.configuration.configuration - INFO - Using pairlist from configuration.
2024-02-18 15:29:05,982 - freqtrade.resolvers.iresolver - DEBUG - Searching for IStrategy SampleStrategy in '/freqtrade/user_data/strategies'
2024-02-18 15:29:06,003 - freqtrade.resolvers.iresolver - INFO - Using resolved strategy SampleStrategy from '/freqtrade/user_data/strategies/sample_strategy.py'...
2024-02-18 15:29:06,005 - freqtrade.strategy.hyper - INFO - Found no parameter file.
2024-02-18 15:29:06,005 - freqtrade.resolvers.strategy_resolver - INFO - Override strategy 'stake_currency' with value in config file: USDT.
2024-02-18 15:29:06,005 - freqtrade.resolvers.strategy_resolver - INFO - Override strategy 'stake_amount' with value in config file: 10.
2024-02-18 15:29:06,006 - freqtrade.resolvers.strategy_resolver - INFO - Override strategy 'unfilledtimeout' with value in config file: {'entry': 10, 'exit': 10, 'exit_timeout_count': 0, 'unit': 'minutes'}.
2024-02-18 15:29:06,006 - freqtrade.resolvers.strategy_resolver - INFO - Override strategy 'max_open_trades' with value in config file: 3.
2024-02-18 15:29:06,006 - freqtrade.resolvers.strategy_resolver - INFO - Strategy using minimal_roi: {'60': 0.01, '30': 0.02, '0': 0.04}
2024-02-18 15:29:06,006 - freqtrade.resolvers.strategy_resolver - INFO - Strategy using timeframe: 5m
2024-02-18 15:29:06,006 - freqtrade.resolvers.strategy_resolver - INFO - Strategy using stoploss: -0.1
2024-02-18 15:29:06,006 - freqtrade.resolvers.strategy_resolver - INFO - Strategy using trailing_stop: False
2024-02-18 15:29:06,006 - freqtrade.resolvers.strategy_resolver - INFO - Strategy using trailing_stop_positive_offset: 0.0
2024-02-18 15:29:06,007 - freqtrade.resolvers.strategy_resolver - INFO - Strategy using trailing_only_offset_is_reached: False
2024-02-18 15:29:06,007 - freqtrade.resolvers.strategy_resolver - INFO - Strategy using use_custom_stoploss: False
2024-02-18 15:29:06,007 - freqtrade.resolvers.strategy_resolver - INFO - Strategy using process_only_new_candles: True
2024-02-18 15:29:06,007 - freqtrade.resolvers.strategy_resolver - INFO - Strategy using order_types: {'entry': 'limit', 'exit': 'limit', 'stoploss': 'market', 'stoploss_on_exchange': False}
2024-02-18 15:29:06,007 - freqtrade.resolvers.strategy_resolver - INFO - Strategy using order_time_in_force: {'entry': 'GTC', 'exit': 'GTC'}
2024-02-18 15:29:06,007 - freqtrade.resolvers.strategy_resolver - INFO - Strategy using stake_currency: USDT
2024-02-18 15:29:06,007 - freqtrade.resolvers.strategy_resolver - INFO - Strategy using stake_amount: 10
2024-02-18 15:29:06,007 - freqtrade.resolvers.strategy_resolver - INFO - Strategy using protections: []
2024-02-18 15:29:06,007 - freqtrade.resolvers.strategy_resolver - INFO - Strategy using startup_candle_count: 200
2024-02-18 15:29:06,008 - freqtrade.resolvers.strategy_resolver - INFO - Strategy using unfilledtimeout: {'entry': 10, 'exit': 10, 'exit_timeout_count': 0, 'unit': 'minutes'}
2024-02-18 15:29:06,008 - freqtrade.resolvers.strategy_resolver - INFO - Strategy using use_exit_signal: True
2024-02-18 15:29:06,008 - freqtrade.resolvers.strategy_resolver - INFO - Strategy using exit_profit_only: False
2024-02-18 15:29:06,008 - freqtrade.resolvers.strategy_resolver - INFO - Strategy using ignore_roi_if_entry_signal: False
2024-02-18 15:29:06,008 - freqtrade.resolvers.strategy_resolver - INFO - Strategy using exit_profit_offset: 0.0
2024-02-18 15:29:06,008 - freqtrade.resolvers.strategy_resolver - INFO - Strategy using disable_dataframe_checks: False
2024-02-18 15:29:06,008 - freqtrade.resolvers.strategy_resolver - INFO - Strategy using ignore_buying_expired_candle_after: 0
2024-02-18 15:29:06,008 - freqtrade.resolvers.strategy_resolver - INFO - Strategy using position_adjustment_enable: False
2024-02-18 15:29:06,009 - freqtrade.resolvers.strategy_resolver - INFO - Strategy using max_entry_position_adjustment: -1
2024-02-18 15:29:06,009 - freqtrade.resolvers.strategy_resolver - INFO - Strategy using max_open_trades: 3
2024-02-18 15:29:06,009 - freqtrade.configuration.config_validation - INFO - Validating configuration ...
2024-02-18 15:29:06,011 - asyncio - DEBUG - Using selector: EpollSelector
2024-02-18 15:29:06,012 - freqtrade.exchange.exchange - INFO - Instance is running with dry_run enabled
2024-02-18 15:29:06,012 - freqtrade.exchange.exchange - INFO - Using CCXT 4.2.25
2024-02-18 15:29:06,012 - freqtrade.exchange.exchange - INFO - Applying additional ccxt config: {'httpsProxy': 'http://username:password@host:port'}
2024-02-18 15:29:06,023 - freqtrade.exchange.exchange - INFO - Applying additional ccxt config: {'httpsProxy': 'http://username:password@host:port'}
2024-02-18 15:29:06,032 - freqtrade.exchange.exchange - INFO - Using Exchange "Binance"
2024-02-18 15:29:06,033 - ccxt.base.exchange - DEBUG - GET https://api.binance.com/api/v3/exchangeInfo, Request: {'User-Agent': 'python-requests/2.31.0', 'Accept-Encoding': 'gzip, deflate', 'Accept': '*/*', 'Connection': 'keep-alive'} None
2024-02-18 15:29:06,035 - urllib3.connectionpool - DEBUG - Starting new HTTPS connection (1): api.binance.com:443
2024-02-18 15:29:07,620 - urllib3.connectionpool - DEBUG - https://api.binance.com:443 "GET /api/v3/exchangeInfo HTTP/1.1" 200 96093
2024-02-18 15:29:08,014 - ccxt.base.exchange - DEBUG - GET https://api.binance.com/api/v3/exchangeInfo, Response: 200 {'Content-Type': 'application/json;charset=UTF-8', 'Content-Length': '96093', 'Connection': 'keep-alive', 'Date': 'Sun, 18 Feb 2024 15:29:07 GMT', 'Server': 'nginx', 'x-mbx-uuid': '5be335b3-4795-4426-a073-2e44ca7ab5e7', 'x-mbx-used-weight': '20', 'x-mbx-used-weight-1m': '20', 'content-encoding': 'gzip', 'Strict-Transport-Security': 'max-age=31536000; includeSubdomains', 'X-Frame-Options': 'SAMEORIGIN', 'X-Xss-Protection': '1; mode=block', 'X-Content-Type-Options': 'nosniff', 'Content-Security-Policy': "default-src 'self'", 'X-Content-Security-Policy': "default-src 'self'", 'X-WebKit-CSP': "default-src 'self'", 'Cache-Control': 'no-cache, no-store, must-revalidate', 'Pragma': 'no-cache', 'Expires': '0', 'Access-Control-Allow-Origin': '*', 'Access-Control-Allow-Methods': 'GET, HEAD, OPTIONS', 'X-Cache': 'Miss from cloudfront', 'Via': '1.1 803246727539350977d724c9e4a027c6.cloudfront.net (CloudFront)', 'X-Amz-Cf-Pop': 'FRA56-P4', 'X-Amz-Cf-Id': 'kf9s_Di6q6Vy_Zwxd45_uy_xmDtI9aF56RTSX46elN2CXrujMJIb9Q=='} {"timezone":"UTC","serverTime":1708270147179,"rateLimits":[{"rateLimitType":"REQUEST_WEIGHT","interval":"MINUTE","intervalNum":1,"limit":6000},{"rateLimitType":"ORDERS","interval":"SECOND","intervalNum":10,"limit":100},{"rateLimitType":"ORDERS","interval":"DAY","intervalNum":1,"limit":200000},{"rateLimitType":"RAW_REQUESTS","interval":"MINUTE","intervalNum":5,"limit":61000}],"exchangeFilters":[],"symbols":[{"symbol":"ETHBTC","status":"TRADING","baseAsset":"ETH","baseAssetPrecision":8,"quoteAsset":"BTC","quotePrecision":8,"quoteAssetPrecision":8,"baseCommissionPrecision":8,"quoteCommissionPrecision":8,"orderTypes":["LIMIT","LIMIT_MAKER","MARKET","STOP_LOSS_LIMIT","TAKE_PROFIT_LIMIT"],"icebergAllowed":true,"ocoAllowed":true,"quoteOrderQtyMarketAllowed":true,"allowTrailingStop":true,"cancelReplaceAllowed":true,"isSpotTradingAllowed":true,"isMarginTradingAllowed":true,"filters":[{"filterType":"PRICE_FILTER","minPrice":"0.00001000","maxPrice":"922327.00000000","tickSize":"0.00001000"},{"filterType":"LOT_SIZE","minQty":"0.00010000","maxQty":"100000.00000000","stepSize":"0.00010000"},{"filterType":"ICEBERG_PARTS","limit":10},{"filterType":"MARKET_LOT_SIZE","minQty":"0.00000000","maxQty":"3386.58136694","stepSize":"0.00000000"},{"filterType":"TRAILING_DELTA","minTrailingAboveDelta":10,"maxTrailingAboveDelta":2000,"minTrailingBelowDelta":10,"maxTrailingBelowDelta":2000},{"filterType":"PERCENT_PRICE_BY_SIDE","bidMultiplierUp":"5","bidMultiplierDown":"0.2","askMultiplierUp":"5","askMultiplierDown":"0.2","avgPriceMins":5},{"filterType":"NOTIONAL","minNotional":"0.00010000","applyMinToMarket":true,"maxNotional":"9000000.00000000","applyMaxToMarket":false,"avgPriceMins":5},{"filterType":"MAX_NUM_ORDERS","maxNumOrders":200},{"filterType":"MAX_NUM_ALGO_ORDERS","maxNumAlgoOrders":5}],"permissions":["SPOT","MARGIN","TRD_GRP_004","TRD_GRP_005","TRD_GRP_006","TRD_GRP_008","TRD_GRP_009","TRD_GRP_010","TRD_GRP_011","TRD_GRP_012","TRD_GRP_013","TRD_GRP_014","TRD_GRP_015","TRD_GRP_016","TRD_GRP_017","TRD_GRP_018","TRD_GRP_019","TRD_GRP_020","TRD_GRP_021","TRD_GRP_022","TRD_GRP_023","TRD_GRP_024","TRD_GRP_025"],"defaultSelfTradePreventionMode":"EXPIRE_MAKER","allowedSelfTradePreventionModes":["EXPIRE_TAKER","EXPIRE_MAKER","EXPIRE_BOTH"]},{"symbol":"LTCBTC","status":"TRADING","baseAsset":"LTC","baseAssetPrecision":8,"quoteAsset":"BTC","quotePrecision":8,"quoteAssetPrecision":8,"baseCommissionPrecision":8,"quoteCommissionPrecision":8,"orderTypes":["LIMIT","LIMIT_MAKER","MARKET","STOP_LOSS_LIMIT","TAKE_PROFIT_LIMIT"],

(removed)

2024-02-18 15:29:08,061 - ccxt.base.exchange - DEBUG - GET https://fapi.binance.com/fapi/v1/exchangeInfo, Request: {'User-Agent': 'python-requests/2.31.0', 'Accept-Encoding': 'gzip, deflate', 'Accept': '*/*', 'Connection': 'keep-alive'} None
2024-02-18 15:29:08,062 - urllib3.connectionpool - DEBUG - Starting new HTTPS connection (1): fapi.binance.com:443
2024-02-18 15:29:09,890 - urllib3.connectionpool - DEBUG - https://fapi.binance.com:443 "GET /fapi/v1/exchangeInfo HTTP/1.1" 200 None
2024-02-18 15:29:09,896 - ccxt.base.exchange - DEBUG - GET https://fapi.binance.com/fapi/v1/exchangeInfo, Response: 200 {'Date': 'Sun, 18 Feb 2024 15:29:09 GMT', 'Content-Type': 'application/json', 'Transfer-Encoding': 'chunked', 'Connection': 'keep-alive', 'Server': 'Tengine', 'Vary': 'Accept-Encoding', 'x-mbx-used-weight-1m': '1', 'x-response-time': '0ms', 'Access-Control-Allow-Origin': '*', 'Access-Control-Allow-Methods': 'GET, POST, PUT, DELETE, OPTIONS', 'Access-Control-Allow-Credentials': 'true', 'Access-Control-Allow-Headers': '*', 'Content-Security-Policy': "default-src 'self'", 'cache-control': 'no-cache, no-store, must-revalidate', 'expires': '0', 'pragma': 'no-cache', 'strict-transport-security': 'max-age=31536000; includeSubdomains', 'x-content-type-options': 'nosniff', 'x-frame-options': 'SAMEORIGIN', 'x-xss-protection': '1; mode=block', 'Content-Encoding': 'gzip'} {"timezone":"UTC","serverTime":1708264810327,"futuresType":"U_MARGINED","rateLimits":[{"rateLimitType":"REQUEST_WEIGHT","interval":"MINUTE","intervalNum":1,"limit":2400},{"rateLimitType":"ORDERS","interval":"MINUTE","intervalNum":1,"limit":1200},{"rateLimitType":"ORDERS","interval":"SECOND","intervalNum":10,"limit":300}],"exchangeFilters":[],"assets":[{"asset":"USDT","marginAvailable":true,"autoAssetExchange":"-10000"},{"asset":"BTC","marginAvailable":true,"autoAssetExchange":"-0.10000000"},{"asset":"BNB","marginAvailable":true,"autoAssetExchange":"-10"},{"
2024-02-18 15:29:09,898 - ccxt.base.exchange - DEBUG - GET https://dapi.binance.com/dapi/v1/exchangeInfo, Request: {'User-Agent': 'python-requests/2.31.0', 'Accept-Encoding': 'gzip, deflate', 'Accept': '*/*', 'Connection': 'keep-alive'} None
2024-02-18 15:29:09,899 - urllib3.connectionpool - DEBUG - Starting new HTTPS connection (1): dapi.binance.com:443
2024-02-18 15:29:11,505 - urllib3.connectionpool - DEBUG - https://dapi.binance.com:443 "GET /dapi/v1/exchangeInfo HTTP/1.1" 200 None
2024-02-18 15:29:11,507 - ccxt.base.exchange - DEBUG - GET https://dapi.binance.com/dapi/v1/exchangeInfo, Response: 200 {'Date': 'Sun, 18 Feb 2024 15:29:11 GMT', 'Content-Type': 'application/json', 'Transfer-Encoding': 'chunked', 'Connection': 'keep-alive', 'Server': 'Tengine', 'Vary': 'Accept-Encoding', 'X-MBX-USED-WEIGHT-1M': '1', 'x-response-time': '0ms', 'Access-Control-Allow-Origin': '*', 'Access-Control-Allow-Methods': 'GET, POST, PUT, DELETE, OPTIONS', 'Access-Control-Allow-Credentials': 'true', 'Access-Control-Allow-Headers': '*', 'Content-Security-Policy': "default-src 'self'", 'cache-control': 'no-cache, no-store, must-revalidate', 'expires': '0', 'pragma': 'no-cache', 'strict-transport-security': 'max-age=31536000; includeSubdomains', 'x-content-type-options': 'nosniff', 'x-frame-options': 'SAMEORIGIN', 'x-xss-protection': '1; mode=block', 'Content-Encoding': 'gzip'} {"timezone":"UTC","serverTime":1708264810115,"rateLimits":[{"rateLimitType":"REQUEST_WEIGHT","interval":"MINUTE","intervalNum":1,"limit":2400},{"rateLimitType":"ORDERS","interval":"MINUTE","intervalNum":1,"limit":1200}],"exchangeFilters":[],"symbols":[{"symbol":"BTCUSD_PERP","pair":"BTCUSD","contractType":"PERPETUAL","deliveryDate":4133404800000,"onboardDate":1597042800000,"contractStatus":"TRADING","contractSize":100,"marginAsset":"BTC","maintMarginPercent":"2.5000","requiredMarginPercent":"5.0000","baseAsset":"BTC","quoteAsset":"USD","pricePrecision":1,"quantityPrecision":0,"baseAssetPrecision":8,"quotePrecision":8,"equalQtyPrecision":4,"maxMoveOrderLimit":10000,"triggerProtect":"0.0500","underlyingType":"COIN","underlyingSubType":["PoW"],"filters":
2024-02-18 15:29:12,090 - ccxt.base.exchange - DEBUG - GET https://api.binance.com/api/v3/exchangeInfo, Request: None None
2024-02-18 15:29:12,291 - ccxt.base.exchange - DEBUG - GET https://fapi.binance.com/fapi/v1/exchangeInfo, Request: None None
2024-02-18 15:29:12,341 - ccxt.base.exchange - DEBUG - GET https://dapi.binance.com/dapi/v1/exchangeInfo, Request: None None
2024-02-18 15:29:12,359 - freqtrade.exchange.exchange - WARNING - Could not load async markets. Reason: binance GET https://api.binance.com/api/v3/exchangeInfo
2024-02-18 15:29:12,361 - freqtrade.resolvers.exchange_resolver - INFO - Using resolved exchange 'Binance'...
2024-02-18 15:29:12,378 - freqtrade.persistence.migrations - DEBUG - trying trades_bak0
2024-02-18 15:29:12,378 - freqtrade.persistence.migrations - DEBUG - trying orders_bak0
2024-02-18 15:29:12,379 - freqtrade.persistence.migrations - DEBUG - trying pairlocks_bak0
2024-02-18 15:29:12,406 - freqtrade.wallets - INFO - Wallets synced.
2024-02-18 15:29:12,407 - freqtrade.resolvers.iresolver - DEBUG - Searching for IPairList VolumePairList in '/freqtrade/freqtrade/plugins/pairlist'
2024-02-18 15:29:12,413 - freqtrade.resolvers.iresolver - INFO - Using resolved pairlist VolumePairList from '/freqtrade/freqtrade/plugins/pairlist/VolumePairList.py'...
2024-02-18 15:29:12,414 - urllib3.connectionpool - DEBUG - Starting new HTTPS connection (1): api.coingecko.com:443
2024-02-18 15:29:12,514 - urllib3.connectionpool - DEBUG - https://api.coingecko.com:443 "GET /api/v3/coins/list HTTP/1.1" 200 None
2024-02-18 15:29:12,537 - freqtrade.rpc.rpc_manager - INFO - Enabling rpc.telegram ...
2024-02-18 15:29:12,773 - freqtrade.rpc.telegram - DEBUG - Included module rpc.telegram ...
2024-02-18 15:29:12,777 - asyncio - DEBUG - Using selector: EpollSelector
2024-02-18 15:29:12,779 - freqtrade.rpc.rpc_manager - INFO - Enabling rpc.api_server
2024-02-18 15:29:12,944 - freqtrade.rpc.telegram - INFO - rpc.telegram is listening for following commands: [['status'], ['profit'], ['balance'], ['start'], ['stop'], ['forceexit', 'forcesell', 'fx'], ['forcebuy', 'forcelong'], ['forceshort'], ['reload_trade'], ['trades'], ['delete'], ['cancel_open_order', 'coo'], ['performance'], ['buys', 'entries'], ['exits', 'sells'], ['mix_tags'], ['stats'], ['daily'], ['weekly'], ['monthly'], ['count'], ['locks'], ['delete_locks', 'unlock'], ['reload_conf', 'reload_config'], ['show_conf', 'show_config'], ['stopbuy', 'stopentry'], ['whitelist'], ['blacklist'], ['bl_delete', 'blacklist_delete'], ['logs'], ['edge'], ['health'], ['help'], ['version'], ['marketdir'], ['order']]
2024-02-18 15:29:12,982 - httpcore.connection - DEBUG - connect_tcp.started host='api.telegram.org' port=443 local_address=None timeout=5.0 socket_options=None
2024-02-18 15:29:13,166 - httpcore.connection - DEBUG - connect_tcp.complete return_value=<httpcore._backends.anyio.AnyIOStream object at 0x7fda71eed450>
2024-02-18 15:29:13,187 - httpcore.connection - DEBUG - start_tls.started ssl_context=<ssl.SSLContext object at 0x7fda72b47b60> server_hostname='api.telegram.org' timeout=5.0
2024-02-18 15:29:13,204 - freqtrade.rpc.api_server.webserver - INFO - Starting HTTP Server at 0.0.0.0:8080
2024-02-18 15:29:13,205 - freqtrade.rpc.api_server.webserver - INFO - Starting Local Rest Server.
2024-02-18 15:29:13,206 - asyncio - DEBUG - Using selector: EpollSelector
2024-02-18 15:29:13,215 - uvicorn.error - INFO - Started server process [1]
2024-02-18 15:29:13,215 - uvicorn.error - INFO - Waiting for application startup.
2024-02-18 15:29:13,215 - uvicorn.error - INFO - Application startup complete.
2024-02-18 15:29:13,216 - uvicorn.error - INFO - Uvicorn running on http://0.0.0.0:8080 (Press CTRL+C to quit)
2024-02-18 15:29:13,217 - freqtrade.resolvers.iresolver - DEBUG - Searching for IPairList VolumePairList in '/freqtrade/freqtrade/plugins/pairlist'
2024-02-18 15:29:13,223 - freqtrade.resolvers.iresolver - INFO - Using resolved pairlist VolumePairList from '/freqtrade/freqtrade/plugins/pairlist/VolumePairList.py'...
2024-02-18 15:29:13,224 - ccxt.base.exchange - DEBUG - GET https://api.binance.com/api/v3/ticker/24hr, Request: {'User-Agent': 'python-requests/2.31.0', 'Accept-Encoding': 'gzip, deflate', 'Accept': '*/*', 'Connection': 'keep-alive'} None
2024-02-18 15:29:13,325 - httpcore.connection - DEBUG - start_tls.complete return_value=<httpcore._backends.anyio.AnyIOStream object at 0x7fda71eee350>
2024-02-18 15:29:13,326 - httpcore.http11 - DEBUG - send_request_headers.started request=<Request [b'POST']>
2024-02-18 15:29:13,327 - httpcore.http11 - DEBUG - send_request_headers.complete
2024-02-18 15:29:13,327 - httpcore.http11 - DEBUG - send_request_body.started request=<Request [b'POST']>
2024-02-18 15:29:13,327 - httpcore.http11 - DEBUG - send_request_body.complete
2024-02-18 15:29:13,327 - httpcore.http11 - DEBUG - receive_response_headers.started request=<Request [b'POST']>
2024-02-18 15:29:13,449 - httpcore.http11 - DEBUG - receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Server', b'nginx/1.18.0'), (b'Date', b'Sun, 18 Feb 2024 15:29:13 GMT'), (b'Content-Type', b'application/json'), (b'Content-Length', b'198'), (b'Connection', b'keep-alive'), (b'Strict-Transport-Security', b'max-age=31536000; includeSubDomains; preload'), (b'Access-Control-Allow-Origin', b'*'), (b'Access-Control-Allow-Methods', b'GET, POST, OPTIONS'), (b'Access-Control-Expose-Headers', b'Content-Length,Content-Type,Date,Server,Connection')])
2024-02-18 15:29:13,450 - httpcore.http11 - DEBUG - receive_response_body.started request=<Request [b'POST']>
2024-02-18 15:29:13,450 - httpcore.http11 - DEBUG - receive_response_body.complete
2024-02-18 15:29:13,450 - httpcore.http11 - DEBUG - response_closed.started
2024-02-18 15:29:13,450 - httpcore.http11 - DEBUG - response_closed.complete
2024-02-18 15:29:13,451 - telegram.ext.Application - INFO - Application started
2024-02-18 15:29:13,452 - httpcore.http11 - DEBUG - send_request_headers.started request=<Request [b'POST']>
2024-02-18 15:29:13,453 - httpcore.http11 - DEBUG - send_request_headers.complete
2024-02-18 15:29:13,453 - httpcore.http11 - DEBUG - send_request_body.started request=<Request [b'POST']>
2024-02-18 15:29:13,453 - httpcore.http11 - DEBUG - send_request_body.complete
2024-02-18 15:29:13,453 - httpcore.http11 - DEBUG - receive_response_headers.started request=<Request [b'POST']>
2024-02-18 15:29:13,577 - httpcore.http11 - DEBUG - receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Server', b'nginx/1.18.0'), (b'Date', b'Sun, 18 Feb 2024 15:29:13 GMT'), (b'Content-Type', b'application/json'), (b'Content-Length', b'68'), (b'Connection', b'keep-alive'), (b'Strict-Transport-Security', b'max-age=31536000; includeSubDomains; preload'), (b'Access-Control-Allow-Origin', b'*'), (b'Access-Control-Allow-Methods', b'GET, POST, OPTIONS'), (b'Access-Control-Expose-Headers', b'Content-Length,Content-Type,Date,Server,Connection')])
2024-02-18 15:29:13,578 - httpcore.http11 - DEBUG - receive_response_body.started request=<Request [b'POST']>
2024-02-18 15:29:13,579 - httpcore.http11 - DEBUG - receive_response_body.complete
2024-02-18 15:29:13,579 - httpcore.http11 - DEBUG - response_closed.started
2024-02-18 15:29:13,579 - httpcore.http11 - DEBUG - response_closed.complete
2024-02-18 15:29:13,580 - httpcore.connection - DEBUG - connect_tcp.started host='api.telegram.org' port=443 local_address=None timeout=5.0 socket_options=None
2024-02-18 15:29:13,595 - urllib3.connectionpool - DEBUG - https://api.binance.com:443 "GET /api/v3/ticker/24hr HTTP/1.1" 200 150061
2024-02-18 15:29:13,702 - httpcore.connection - DEBUG - connect_tcp.complete return_value=<httpcore._backends.anyio.AnyIOStream object at 0x7fda71328310>
2024-02-18 15:29:13,702 - httpcore.connection - DEBUG - start_tls.started ssl_context=<ssl.SSLContext object at 0x7fda72a119a0> server_hostname='api.telegram.org' timeout=5.0
2024-02-18 15:29:13,745 - ccxt.base.exchange - DEBUG - GET https://api.binance.com/api/v3/ticker/24hr, Response: 200 {'Content-Type': 'application/json;charset=UTF-8', 'Content-Length': '150061', 'Connection': 'keep-alive', 'Date': 'Sun, 18 Feb 2024 15:29:13 GMT', 'Server': 'nginx', 'x-mbx-uuid': '42d67769-6981-44d7-9d51-697aaddaff7c', 'x-mbx-used-weight': '100', 'x-mbx-used-weight-1m': '100', 'content-encoding': 'gzip', 'Strict-Transport-Security': 'max-age=31536000; includeSubdomains', 'X-Frame-Options': 'SAMEORIGIN', 'X-Xss-Protection': '1; mode=block', 'X-Content-Type-Options': 'nosniff', 'Content-Security-Policy': "default-src 'self'", 'X-Content-Security-Policy': "default-src 'self'", 'X-WebKit-CSP': "default-src 'self'", 'Cache-Control': 'no-cache, no-store, must-revalidate', 'Pragma': 'no-cache', 'Expires': '0', 'Access-Control-Allow-Origin': '*', 'Access-Control-Allow-Methods': 'GET, HEAD, OPTIONS', 'X-Cache': 'Miss from cloudfront', 'Via': '1.1 803246727539350977d724c9e4a027c6.cloudfront.net (CloudFront)', 'X-Amz-Cf-Pop': 'FRA56-P4', 'X-Amz-Cf-Id': 'tZaqUNm0wU0cpisMcA3Ch8_Vl7QFrvgVFKTSjooSfsfP2P2I9Fwwpw=='} [{"symbol":"ETHBTC","priceChange":"0.00023000","priceChangePercent":"0.427","weightedAvgPrice":"0.05409604","prevClosePrice":"0.05388000","lastPrice":"0.05412000","lastQty":"0.14520000","bidPrice":"0.05412000","bidQty":"31.76180000","askPrice":"0.05413000","askQty":"20.28070000","openPrice":"0.05389000","highPrice":"0.05450000","lowPrice":"0.05372000","volume":"18309.85070000","quoteVolume":"990.49037365","openTime":1708183753230,"closeTime":1708270153230,"firstId":432800885,"lastId":432863962,"count":63078},{"symbol":"LTCBTC","priceChange":"0.00000400","priceChangePercent":"0.296","weightedAvgPrice":"0.00136065","prevClosePrice":"0.00135300","lastPrice":"0.00135700","lastQty":"65.40500000","bidPrice":"0.00135600","bidQty":"148.99700000","askPrice":"0.00135700","askQty":"20.85300000","openPrice":"0.00135300","highPrice":"0.00137400","lowPrice":"0.00134800","volume":"32059.25500000","quoteVolume":"43.62147378","openTime":1708183752508,"closeTime":1708270152508,"firstId":95380808,"lastId":95390579,"count":9772},{"symbol":"BNBBTC","priceChange":"-0.00007200","priceChangePercent":"-1.046","weightedAvgPrice":"0.00685771","prevClosePrice":"0.00688200","lastPrice":"0.00681100","lastQty":"2.49100000","bidPrice":"0.00681100","bidQty":"9.38300000","askPrice":"0.00681300","askQty":"10.69700000","openPrice":"0.00688300","highPrice":"0.00694900","lowPrice":"0.00679200","volume":"24724.90100000","quoteVolume":"169.55611726","openTime":1708183751710,"closeTime":1708270151710,"firstId":233868446,"lastId":233914709,"count":46264},{"symbol":"NEOBTC","priceChange":"0.00000640","priceChangePercent":"2.636","weightedAvgPrice":"0.00024672","prevClosePrice":"0.00024250","lastPrice":"0.00024920","lastQty":"0.86000000","bidPrice":"0.00024890","bidQty":"102.22000000","askPrice":"0.00024940","askQty":"303.32000000","openPrice":"0.00024280","highPrice":"0.00025420","lowPrice":"0.00024280","volume":"15263.22000000","quoteVolume":"3.76573864","openTime":1708183751319,"closeTime":1708270151319,"firstId":46106637,"lastId":46107599,"count":963},{"symbol":"QTUMETH","priceChange":"-0.00000200","priceChangePercent":"-0.170","weightedAvgPrice":"0.00118703","prevClosePrice":"0.00116400","lastPrice":"0.00117500","lastQty":"4.20000000","bidPrice":"0.00117400","bidQty":"84.10000000","askPrice":"0.00117700","askQty":"402.50000000","openPrice":"0.00117700","highPrice":"0.00122100","lowPrice":"0.00117500","volume":"4377.60000000","quoteVolume":"5.19633370","openTime":1708183752659,"closeTime":1708270152659,"firstId":5421045,"lastId":5421234,"count":190},{"symbol":"EOSETH","priceChange":"0.00000360","priceChangePercent":"1.320","weightedAvgPrice":"0.00027652","prevClosePrice":"0.00027270","lastPrice":"0.00027640","lastQty":"11.40000000","bidPrice":"0.00027690","bidQty":"287.10000000","askPrice":"0.00027770","askQty":"4.40000000","openPrice":"0.00027280","highPrice":"0.00027930","lowPrice":"0.00027280","volume":"9424.20000000","quoteVolume":"2.60601480","openTime":1708183746612,"closeTime":1708270146612,"firstId":23540952,"lastId":23541038,"count":87},{"symbol":"SNTETH","priceChange":"0.00000016","priceChangePercent":"1.099","weightedAvgPrice":"0.00001477","prevClosePrice":"0.00001457","lastPrice":"0.00001472","lastQty":"75.00000000","bidPrice":"0.00001472","bidQty":"8460.00000000","askPrice":"0.00001480","askQty":"15239.00000000","openPrice":"0.00001456","highPrice":"0.00001499","lowPrice":"0.00001455","volume":"87117.00000000","quoteVolume":"1.28629756","openTime":1708183744041,"closeTime":1708270144041,"firstId":3965301,"lastId":3965442,"count":142},{"symbol":"BNTETH","priceChange":"-0.00000030","priceChangePercent":"-0.106","weightedAvgPrice":"0.00028116","prevClosePrice":"0.00028360","lastPrice":"0.00028340","lastQty":"222.20000000","bidPrice":"0.00028360","bidQty":"486.10000000","askPrice":"0.00028450","askQty":"627.40000000","openPrice":"0.00028370","highPrice":"0.00028720","lowPrice":"0.00027720","volume":"16746.10000000","quoteVolume":"4.70835172","openTime":1708183745911,"closeTime":1708270145911,"firstId":2292474,"lastId":2292711,"count":238},{"symbol":"BCCBTC","priceChange":"0.00000000","priceChangePercent":"0.000","weightedAvgPrice":"0.00000000",

(removed)

2024-02-18 15:29:13,837 - httpcore.connection - DEBUG - start_tls.complete return_value=<httpcore._backends.anyio.AnyIOStream object at 0x7fda71f1fa90>
2024-02-18 15:29:13,859 - httpcore.http11 - DEBUG - send_request_headers.started request=<Request [b'POST']>
2024-02-18 15:29:13,871 - httpcore.http11 - DEBUG - send_request_headers.complete
2024-02-18 15:29:13,871 - httpcore.http11 - DEBUG - send_request_body.started request=<Request [b'POST']>
2024-02-18 15:29:13,871 - httpcore.http11 - DEBUG - send_request_body.complete
2024-02-18 15:29:13,871 - httpcore.http11 - DEBUG - receive_response_headers.started request=<Request [b'POST']>
2024-02-18 15:29:13,977 - freqtrade.plugins.pairlistmanager - DEBUG - Pair BNB/USDT in your blacklist. Removing it from whitelist...
2024-02-18 15:29:13,977 - VolumePairList - INFO - Pair BNB/USDT in your blacklist. Removing it from whitelist...
2024-02-18 15:29:14,011 - freqtrade.plugins.pairlistmanager - DEBUG - Whitelist with 20 pairs: ['BTC/USDT', 'ETH/USDT', 'FDUSD/USDT', 'SOL/USDT', 'USDC/USDT', 'WLD/USDT', 'LPT/USDT', 'INJ/USDT', 'AI/USDT', 'ALT/USDT', 'ADA/USDT', 'ARKM/USDT', 'XRP/USDT', 'ZEN/USDT', 'FIL/USDT', 'IOTX/USDT', 'AGIX/USDT', 'SEI/USDT', 'XAI/USDT', 'FET/USDT']
2024-02-18 15:29:14,012 - freqtrade.plugins.pairlistmanager - INFO - Whitelist with 20 pairs: ['BTC/USDT', 'ETH/USDT', 'FDUSD/USDT', 'SOL/USDT', 'USDC/USDT', 'WLD/USDT', 'LPT/USDT', 'INJ/USDT', 'AI/USDT', 'ALT/USDT', 'ADA/USDT', 'ARKM/USDT', 'XRP/USDT', 'ZEN/USDT', 'FIL/USDT', 'IOTX/USDT', 'AGIX/USDT', 'SEI/USDT', 'XAI/USDT', 'FET/USDT']
2024-02-18 15:29:14,012 - freqtrade.rpc.rpc_manager - DEBUG - Forwarding message to rpc.telegram
2024-02-18 15:29:14,012 - freqtrade.rpc.telegram - DEBUG - Unknown message type: whitelist
2024-02-18 15:29:14,012 - freqtrade.rpc.rpc_manager - DEBUG - Forwarding message to rpc.apiserver
2024-02-18 15:29:14,013 - freqtrade.strategy.hyper - INFO - No params for buy found, using default values.
2024-02-18 15:29:14,013 - freqtrade.strategy.hyper - INFO - Strategy Parameter(default): buy_rsi = 30
2024-02-18 15:29:14,013 - freqtrade.strategy.hyper - INFO - Strategy Parameter(default): exit_short_rsi = 30
2024-02-18 15:29:14,013 - freqtrade.strategy.hyper - INFO - No params for sell found, using default values.
2024-02-18 15:29:14,013 - freqtrade.strategy.hyper - INFO - Strategy Parameter(default): sell_rsi = 70
2024-02-18 15:29:14,014 - freqtrade.strategy.hyper - INFO - Strategy Parameter(default): short_rsi = 70
2024-02-18 15:29:14,014 - freqtrade.strategy.hyper - INFO - No params for protection found, using default values.
2024-02-18 15:29:14,014 - freqtrade.plugins.protectionmanager - INFO - No protection Handlers defined.
2024-02-18 15:29:14,014 - freqtrade.rpc.rpc_manager - INFO - Sending rpc message: {'type': status, 'status': 'running'}
2024-02-18 15:29:14,014 - freqtrade.rpc.rpc_manager - DEBUG - Forwarding message to rpc.telegram
2024-02-18 15:29:14,014 - freqtrade.rpc.rpc_manager - DEBUG - Forwarding message to rpc.apiserver
2024-02-18 15:29:14,016 - httpcore.http11 - DEBUG - send_request_headers.started request=<Request [b'POST']>
2024-02-18 15:29:14,017 - freqtrade.worker - INFO - Changing state to: RUNNING
2024-02-18 15:29:14,021 - httpcore.http11 - DEBUG - send_request_headers.complete
2024-02-18 15:29:14,024 - httpcore.http11 - DEBUG - send_request_body.started request=<Request [b'POST']>
2024-02-18 15:29:14,025 - httpcore.http11 - DEBUG - send_request_body.complete
2024-02-18 15:29:14,025 - httpcore.http11 - DEBUG - receive_response_headers.started request=<Request [b'POST']>
2024-02-18 15:29:14,027 - freqtrade.rpc.rpc_manager - INFO - Sending rpc message: {'type': warning, 'status': 'Dry run is enabled. All trades are simulated.'}
2024-02-18 15:29:14,027 - freqtrade.rpc.rpc_manager - DEBUG - Forwarding message to rpc.telegram
2024-02-18 15:29:14,028 - freqtrade.rpc.rpc_manager - DEBUG - Forwarding message to rpc.apiserver
2024-02-18 15:29:14,029 - httpcore.connection - DEBUG - connect_tcp.started host='api.telegram.org' port=443 local_address=None timeout=5.0 socket_options=None
2024-02-18 15:29:14,029 - freqtrade.rpc.rpc_manager - INFO - Sending rpc message: {'type': startup, 'status': "*Exchange:* `binance`\n*Stake per trade:* `10 USDT`\n*Minimum ROI:* `{'60': 0.01, '30': 0.02, '0': 0.04}`\n*Stoploss:* `-0.1`\n*Position adjustment:* `Off`\n*Timeframe:* `5m`\n*Strategy:* `SampleStrategy`"}
2024-02-18 15:29:14,030 - freqtrade.rpc.rpc_manager - DEBUG - Forwarding message to rpc.telegram
2024-02-18 15:29:14,030 - freqtrade.rpc.rpc_manager - DEBUG - Forwarding message to rpc.apiserver
2024-02-18 15:29:14,030 - freqtrade.rpc.rpc_manager - INFO - Sending rpc message: {'type': startup, 'status': "Searching for USDT pairs to buy and sell based on [{'VolumePairList': 'VolumePairList - top 20 volume pairs.'}]"}
2024-02-18 15:29:14,032 - httpcore.connection - DEBUG - connect_tcp.started host='api.telegram.org' port=443 local_address=None timeout=5.0 socket_options=None
2024-02-18 15:29:14,032 - freqtrade.rpc.rpc_manager - DEBUG - Forwarding message to rpc.telegram
2024-02-18 15:29:14,033 - freqtrade.rpc.rpc_manager - DEBUG - Forwarding message to rpc.apiserver
2024-02-18 15:29:14,040 - httpcore.connection - DEBUG - connect_tcp.started host='api.telegram.org' port=443 local_address=None timeout=5.0 socket_options=None
2024-02-18 15:29:14,041 - freqtrade.worker - DEBUG - ========================================
2024-02-18 15:29:14,049 - freqtrade.plugins.pairlistmanager - DEBUG - Whitelist with 20 pairs: ['BTC/USDT', 'ETH/USDT', 'FDUSD/USDT', 'SOL/USDT', 'USDC/USDT', 'WLD/USDT', 'LPT/USDT', 'INJ/USDT', 'AI/USDT', 'ALT/USDT', 'ADA/USDT', 'ARKM/USDT', 'XRP/USDT', 'ZEN/USDT', 'FIL/USDT', 'IOTX/USDT', 'AGIX/USDT', 'SEI/USDT', 'XAI/USDT', 'FET/USDT']
2024-02-18 15:29:14,051 - freqtrade.exchange.exchange - DEBUG - Refreshing candle (OHLCV) data for 20 pairs
2024-02-18 15:29:14,051 - freqtrade.exchange.exchange - DEBUG - Fetching pair WLD/USDT, spot, interval 5m, since None ...
2024-02-18 15:29:14,051 - freqtrade.exchange.exchange - DEBUG - Fetching pair ALT/USDT, spot, interval 5m, since None ...
2024-02-18 15:29:14,051 - freqtrade.exchange.exchange - DEBUG - Fetching pair ZEN/USDT, spot, interval 5m, since None ...
2024-02-18 15:29:14,052 - freqtrade.exchange.exchange - DEBUG - Fetching pair SOL/USDT, spot, interval 5m, since None ...
2024-02-18 15:29:14,052 - freqtrade.exchange.exchange - DEBUG - Fetching pair XRP/USDT, spot, interval 5m, since None ...
2024-02-18 15:29:14,052 - freqtrade.exchange.exchange - DEBUG - Fetching pair IOTX/USDT, spot, interval 5m, since None ...
2024-02-18 15:29:14,052 - freqtrade.exchange.exchange - DEBUG - Fetching pair INJ/USDT, spot, interval 5m, since None ...
2024-02-18 15:29:14,052 - freqtrade.exchange.exchange - DEBUG - Fetching pair ETH/USDT, spot, interval 5m, since None ...
2024-02-18 15:29:14,052 - freqtrade.exchange.exchange - DEBUG - Fetching pair ARKM/USDT, spot, interval 5m, since None ...
2024-02-18 15:29:14,052 - freqtrade.exchange.exchange - DEBUG - Fetching pair LPT/USDT, spot, interval 5m, since None ...
2024-02-18 15:29:14,052 - freqtrade.exchange.exchange - DEBUG - Fetching pair FDUSD/USDT, spot, interval 5m, since None ...
2024-02-18 15:29:14,053 - freqtrade.exchange.exchange - DEBUG - Fetching pair AGIX/USDT, spot, interval 5m, since None ...
2024-02-18 15:29:14,053 - freqtrade.exchange.exchange - DEBUG - Fetching pair BTC/USDT, spot, interval 5m, since None ...
2024-02-18 15:29:14,053 - freqtrade.exchange.exchange - DEBUG - Fetching pair XAI/USDT, spot, interval 5m, since None ...
2024-02-18 15:29:14,053 - freqtrade.exchange.exchange - DEBUG - Fetching pair USDC/USDT, spot, interval 5m, since None ...
2024-02-18 15:29:14,053 - freqtrade.exchange.exchange - DEBUG - Fetching pair FET/USDT, spot, interval 5m, since None ...
2024-02-18 15:29:14,053 - freqtrade.exchange.exchange - DEBUG - Fetching pair ADA/USDT, spot, interval 5m, since None ...
2024-02-18 15:29:14,053 - freqtrade.exchange.exchange - DEBUG - Fetching pair FIL/USDT, spot, interval 5m, since None ...
2024-02-18 15:29:14,053 - freqtrade.exchange.exchange - DEBUG - Fetching pair AI/USDT, spot, interval 5m, since None ...
2024-02-18 15:29:14,053 - freqtrade.exchange.exchange - DEBUG - Fetching pair SEI/USDT, spot, interval 5m, since None ...
2024-02-18 15:29:14,105 - ccxt.base.exchange - DEBUG - GET https://api.binance.com/api/v3/exchangeInfo, Request: None None
2024-02-18 15:29:14,154 - httpcore.connection - DEBUG - connect_tcp.complete return_value=<httpcore._backends.anyio.AnyIOStream object at 0x7fda70489290>
2024-02-18 15:29:14,154 - httpcore.connection - DEBUG - start_tls.started ssl_context=<ssl.SSLContext object at 0x7fda72b47b60> server_hostname='api.telegram.org' timeout=5.0
2024-02-18 15:29:14,158 - httpcore.connection - DEBUG - connect_tcp.complete return_value=<httpcore._backends.anyio.AnyIOStream object at 0x7fda7048b150>
2024-02-18 15:29:14,158 - httpcore.connection - DEBUG - start_tls.started ssl_context=<ssl.SSLContext object at 0x7fda72b47b60> server_hostname='api.telegram.org' timeout=5.0
2024-02-18 15:29:14,166 - httpcore.connection - DEBUG - connect_tcp.complete return_value=<httpcore._backends.anyio.AnyIOStream object at 0x7fda7048b390>
2024-02-18 15:29:14,167 - httpcore.connection - DEBUG - start_tls.started ssl_context=<ssl.SSLContext object at 0x7fda72b47b60> server_hostname='api.telegram.org' timeout=5.0
2024-02-18 15:29:14,274 - httpcore.connection - DEBUG - start_tls.complete return_value=<httpcore._backends.anyio.AnyIOStream object at 0x7fda7048b710>
2024-02-18 15:29:14,275 - httpcore.http11 - DEBUG - send_request_headers.started request=<Request [b'POST']>
2024-02-18 15:29:14,276 - httpcore.http11 - DEBUG - send_request_headers.complete
2024-02-18 15:29:14,276 - httpcore.http11 - DEBUG - send_request_body.started request=<Request [b'POST']>
2024-02-18 15:29:14,276 - httpcore.http11 - DEBUG - send_request_body.complete
2024-02-18 15:29:14,276 - httpcore.http11 - DEBUG - receive_response_headers.started request=<Request [b'POST']>
2024-02-18 15:29:14,279 - httpcore.connection - DEBUG - start_tls.complete return_value=<httpcore._backends.anyio.AnyIOStream object at 0x7fda71ff9350>
2024-02-18 15:29:14,279 - httpcore.http11 - DEBUG - send_request_headers.started request=<Request [b'POST']>
2024-02-18 15:29:14,280 - httpcore.http11 - DEBUG - send_request_headers.complete
2024-02-18 15:29:14,280 - httpcore.http11 - DEBUG - send_request_body.started request=<Request [b'POST']>
2024-02-18 15:29:14,280 - httpcore.http11 - DEBUG - send_request_body.complete
2024-02-18 15:29:14,280 - httpcore.http11 - DEBUG - receive_response_headers.started request=<Request [b'POST']>
2024-02-18 15:29:14,287 - httpcore.connection - DEBUG - start_tls.complete return_value=<httpcore._backends.anyio.AnyIOStream object at 0x7fda7048bc10>
2024-02-18 15:29:14,287 - httpcore.http11 - DEBUG - send_request_headers.started request=<Request [b'POST']>
2024-02-18 15:29:14,287 - httpcore.http11 - DEBUG - send_request_headers.complete
2024-02-18 15:29:14,288 - httpcore.http11 - DEBUG - send_request_body.started request=<Request [b'POST']>
2024-02-18 15:29:14,288 - httpcore.http11 - DEBUG - send_request_body.complete
2024-02-18 15:29:14,288 - httpcore.http11 - DEBUG - receive_response_headers.started request=<Request [b'POST']>
2024-02-18 15:29:14,304 - ccxt.base.exchange - DEBUG - GET https://fapi.binance.com/fapi/v1/exchangeInfo, Request: None None
2024-02-18 15:29:14,340 - freqtrade.exchange.common - WARNING - _async_get_candle_history() returned exception: "Could not fetch historical candle (OHLCV) data for pair WLD/USDT due to ExchangeNotAvailable. Message: binance GET https://api.binance.com/api/v3/exchangeInfo". Retrying still for 4 times.
2024-02-18 15:29:14,340 - freqtrade.exchange.exchange - DEBUG - Fetching pair WLD/USDT, spot, interval 5m, since None ...
2024-02-18 15:29:14,341 - freqtrade.exchange.common - WARNING - _async_get_candle_history() returned exception: "Could not fetch historical candle (OHLCV) data for pair ALT/USDT due to ExchangeNotAvailable. Message: binance GET https://api.binance.com/api/v3/exchangeInfo". Retrying still for 4 times.
2024-02-18 15:29:14,341 - freqtrade.exchange.exchange - DEBUG - Fetching pair ALT/USDT, spot, interval 5m, since None ...
2024-02-18 15:29:14,341 - freqtrade.exchange.common - WARNING - _async_get_candle_history() returned exception: "Could not fetch historical candle (OHLCV) data for pair ZEN/USDT due to ExchangeNotAvailable. Message: binance GET https://api.binance.com/api/v3/exchangeInfo". Retrying still for 4 times.
2024-02-18 15:29:14,341 - freqtrade.exchange.exchange - DEBUG - Fetching pair ZEN/USDT, spot, interval 5m, since None ...
2024-02-18 15:29:14,341 - freqtrade.exchange.common - WARNING - _async_get_candle_history() returned exception: "Could not fetch historical candle (OHLCV) data for pair SOL/USDT due to ExchangeNotAvailable. Message: binance GET https://api.binance.com/api/v3/exchangeInfo". Retrying still for 4 times.
2024-02-18 15:29:14,341 - freqtrade.exchange.exchange - DEBUG - Fetching pair SOL/USDT, spot, interval 5m, since None ...
2024-02-18 15:29:14,341 - freqtrade.exchange.common - WARNING - _async_get_candle_history() returned exception: "Could not fetch historical candle (OHLCV) data for pair XRP/USDT due to ExchangeNotAvailable. Message: binance GET https://api.binance.com/api/v3/exchangeInfo". Retrying still for 4 times.
2024-02-18 15:29:14,341 - freqtrade.exchange.exchange - DEBUG - Fetching pair XRP/USDT, spot, interval 5m, since None ...
2024-02-18 15:29:14,342 - freqtrade.exchange.common - WARNING - _async_get_candle_history() returned exception: "Could not fetch historical candle (OHLCV) data for pair IOTX/USDT due to ExchangeNotAvailable. Message: binance GET https://api.binance.com/api/v3/exchangeInfo". Retrying still for 4 times.
2024-02-18 15:29:14,342 - freqtrade.exchange.exchange - DEBUG - Fetching pair IOTX/USDT, spot, interval 5m, since None ...
2024-02-18 15:29:14,342 - freqtrade.exchange.common - WARNING - _async_get_candle_history() returned exception: "Could not fetch historical candle (OHLCV) data for pair INJ/USDT due to ExchangeNotAvailable. Message: binance GET https://api.binance.com/api/v3/exchangeInfo". Retrying still for 4 times.
2024-02-18 15:29:14,342 - freqtrade.exchange.exchange - DEBUG - Fetching pair INJ/USDT, spot, interval 5m, since None ...
2024-02-18 15:29:14,342 - freqtrade.exchange.common - WARNING - _async_get_candle_history() returned exception: "Could not fetch historical candle (OHLCV) data for pair ETH/USDT due to ExchangeNotAvailable. Message: binance GET https://api.binance.com/api/v3/exchangeInfo". Retrying still for 4 times.
2024-02-18 15:29:14,342 - freqtrade.exchange.exchange - DEBUG - Fetching pair ETH/USDT, spot, interval 5m, since None ...
2024-02-18 15:29:14,342 - freqtrade.exchange.common - WARNING - _async_get_candle_history() returned exception: "Could not fetch historical candle (OHLCV) data for pair ARKM/USDT due to ExchangeNotAvailable. Message: binance GET https://api.binance.com/api/v3/exchangeInfo". Retrying still for 4 times.
2024-02-18 15:29:14,342 - freqtrade.exchange.exchange - DEBUG - Fetching pair ARKM/USDT, spot, interval 5m, since None ...
2024-02-18 15:29:14,343 - freqtrade.exchange.common - WARNING - _async_get_candle_history() returned exception: "Could not fetch historical candle (OHLCV) data for pair LPT/USDT due to ExchangeNotAvailable. Message: binance GET https://api.binance.com/api/v3/exchangeInfo". Retrying still for 4 times.
2024-02-18 15:29:14,343 - freqtrade.exchange.exchange - DEBUG - Fetching pair LPT/USDT, spot, interval 5m, since None ...
2024-02-18 15:29:14,343 - freqtrade.exchange.common - WARNING - _async_get_candle_history() returned exception: "Could not fetch historical candle (OHLCV) data for pair FDUSD/USDT due to ExchangeNotAvailable. Message: binance GET https://api.binance.com/api/v3/exchangeInfo". Retrying still for 4 times.
2024-02-18 15:29:14,343 - freqtrade.exchange.exchange - DEBUG - Fetching pair FDUSD/USDT, spot, interval 5m, since None ...
2024-02-18 15:29:14,343 - freqtrade.exchange.common - WARNING - _async_get_candle_history() returned exception: "Could not fetch historical candle (OHLCV) data for pair AGIX/USDT due to ExchangeNotAvailable. Message: binance GET https://api.binance.com/api/v3/exchangeInfo". Retrying still for 4 times.
2024-02-18 15:29:14,343 - freqtrade.exchange.exchange - DEBUG - Fetching pair AGIX/USDT, spot, interval 5m, since None ...
2024-02-18 15:29:14,343 - freqtrade.exchange.common - WARNING - _async_get_candle_history() returned exception: "Could not fetch historical candle (OHLCV) data for pair BTC/USDT due to ExchangeNotAvailable. Message: binance GET https://api.binance.com/api/v3/exchangeInfo". Retrying still for 4 times.
2024-02-18 15:29:14,343 - freqtrade.exchange.exchange - DEBUG - Fetching pair BTC/USDT, spot, interval 5m, since None ...
2024-02-18 15:29:14,344 - freqtrade.exchange.common - WARNING - _async_get_candle_history() returned exception: "Could not fetch historical candle (OHLCV) data for pair XAI/USDT due to ExchangeNotAvailable. Message: binance GET https://api.binance.com/api/v3/exchangeInfo". Retrying still for 4 times.
2024-02-18 15:29:14,344 - freqtrade.exchange.exchange - DEBUG - Fetching pair XAI/USDT, spot, interval 5m, since None ...
2024-02-18 15:29:14,344 - freqtrade.exchange.common - WARNING - _async_get_candle_history() returned exception: "Could not fetch historical candle (OHLCV) data for pair USDC/USDT due to ExchangeNotAvailable. Message: binance GET https://api.binance.com/api/v3/exchangeInfo". Retrying still for 4 times.
2024-02-18 15:29:14,344 - freqtrade.exchange.exchange - DEBUG - Fetching pair USDC/USDT, spot, interval 5m, since None ...
2024-02-18 15:29:14,344 - freqtrade.exchange.common - WARNING - _async_get_candle_history() returned exception: "Could not fetch historical candle (OHLCV) data for pair FET/USDT due to ExchangeNotAvailable. Message: binance GET https://api.binance.com/api/v3/exchangeInfo". Retrying still for 4 times.
2024-02-18 15:29:14,344 - freqtrade.exchange.exchange - DEBUG - Fetching pair FET/USDT, spot, interval 5m, since None ...
2024-02-18 15:29:14,344 - freqtrade.exchange.common - WARNING - _async_get_candle_history() returned exception: "Could not fetch historical candle (OHLCV) data for pair ADA/USDT due to ExchangeNotAvailable. Message: binance GET https://api.binance.com/api/v3/exchangeInfo". Retrying still for 4 times.
2024-02-18 15:29:14,344 - freqtrade.exchange.exchange - DEBUG - Fetching pair ADA/USDT, spot, interval 5m, since None ...
2024-02-18 15:29:14,344 - freqtrade.exchange.common - WARNING - _async_get_candle_history() returned exception: "Could not fetch historical candle (OHLCV) data for pair FIL/USDT due to ExchangeNotAvailable. Message: binance GET https://api.binance.com/api/v3/exchangeInfo". Retrying still for 4 times.
2024-02-18 15:29:14,345 - freqtrade.exchange.exchange - DEBUG - Fetching pair FIL/USDT, spot, interval 5m, since None ...
2024-02-18 15:29:14,345 - freqtrade.exchange.common - WARNING - _async_get_candle_history() returned exception: "Could not fetch historical candle (OHLCV) data for pair AI/USDT due to ExchangeNotAvailable. Message: binance GET https://api.binance.com/api/v3/exchangeInfo". Retrying still for 4 times.
2024-02-18 15:29:14,345 - freqtrade.exchange.exchange - DEBUG - Fetching pair AI/USDT, spot, interval 5m, since None ...
2024-02-18 15:29:14,345 - freqtrade.exchange.common - WARNING - _async_get_candle_history() returned exception: "Could not fetch historical candle (OHLCV) data for pair SEI/USDT due to ExchangeNotAvailable. Message: binance GET https://api.binance.com/api/v3/exchangeInfo". Retrying still for 4 times.
2024-02-18 15:29:14,345 - freqtrade.exchange.exchange - DEBUG - Fetching pair SEI/USDT, spot, interval 5m, since None ...
2024-02-18 15:29:14,355 - ccxt.base.exchange - DEBUG - GET https://dapi.binance.com/dapi/v1/exchangeInfo, Request: None None
2024-02-18 15:29:14,405 - ccxt.base.exchange - DEBUG - GET https://api.binance.com/api/v3/exchangeInfo, Request: None None
2024-02-18 15:29:14,604 - ccxt.base.exchange - DEBUG - GET https://fapi.binance.com/fapi/v1/exchangeInfo, Request: None None
2024-02-18 15:29:14,640 - freqtrade.exchange.common - WARNING - _async_get_candle_history() returned exception: "Could not fetch historical candle (OHLCV) data for pair WLD/USDT due to ExchangeNotAvailable. Message: binance GET https://api.binance.com/api/v3/exchangeInfo". Retrying still for 3 times.
2024-02-18 15:29:14,641 - freqtrade.exchange.exchange - DEBUG - Fetching pair WLD/USDT, spot, interval 5m, since None ...
2024-02-18 15:29:14,655 - ccxt.base.exchange - DEBUG - GET https://dapi.binance.com/dapi/v1/exchangeInfo, Request: None None
2024-02-18 15:29:14,705 - ccxt.base.exchange - DEBUG - GET https://api.binance.com/api/v3/exchangeInfo, Request: None None
2024-02-18 15:29:14,905 - ccxt.base.exchange - DEBUG - GET https://fapi.binance.com/fapi/v1/exchangeInfo, Request: None None
2024-02-18 15:29:14,940 - freqtrade.exchange.common - WARNING - _async_get_candle_history() returned exception: "Could not fetch historical candle (OHLCV) data for pair ALT/USDT due to ExchangeNotAvailable. Message: binance GET https://api.binance.com/api/v3/exchangeInfo". Retrying still for 3 times.
2024-02-18 15:29:14,940 - freqtrade.exchange.exchange - DEBUG - Fetching pair ALT/USDT, spot, interval 5m, since None ...
2024-02-18 15:29:14,955 - ccxt.base.exchange - DEBUG - GET https://dapi.binance.com/dapi/v1/exchangeInfo, Request: None None
2024-02-18 15:29:15,004 - ccxt.base.exchange - DEBUG - GET https://api.binance.com/api/v3/exchangeInfo, Request: None None
2024-02-18 15:29:15,108 - httpcore.http11 - DEBUG - receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Server', b'nginx/1.18.0'), (b'Date', b'Sun, 18 Feb 2024 15:29:15 GMT'), (b'Content-Type', b'application/json'), (b'Content-Length', b'326'), (b'Connection', b'keep-alive'), (b'Strict-Transport-Security', b'max-age=31536000; includeSubDomains; preload'), (b'Access-Control-Allow-Origin', b'*'), (b'Access-Control-Allow-Methods', b'GET, POST, OPTIONS'), (b'Access-Control-Expose-Headers', b'Content-Length,Content-Type,Date,Server,Connection')])
2024-02-18 15:29:15,109 - httpcore.http11 - DEBUG - receive_response_body.started request=<Request [b'POST']>
2024-02-18 15:29:15,109 - httpcore.http11 - DEBUG - receive_response_body.complete
2024-02-18 15:29:15,109 - httpcore.http11 - DEBUG - response_closed.started
2024-02-18 15:29:15,110 - httpcore.http11 - DEBUG - response_closed.complete
2024-02-18 15:29:15,204 - ccxt.base.exchange - DEBUG - GET https://fapi.binance.com/fapi/v1/exchangeInfo, Request: None None
2024-02-18 15:29:15,240 - httpcore.http11 - DEBUG - receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Server', b'nginx/1.18.0'), (b'Date', b'Sun, 18 Feb 2024 15:29:15 GMT'), (b'Content-Type', b'application/json'), (b'Content-Length', b'374'), (b'Connection', b'keep-alive'), (b'Strict-Transport-Security', b'max-age=31536000; includeSubDomains; preload'), (b'Access-Control-Allow-Origin', b'*'), (b'Access-Control-Allow-Methods', b'GET, POST, OPTIONS'), (b'Access-Control-Expose-Headers', b'Content-Length,Content-Type,Date,Server,Connection')])
2024-02-18 15:29:15,241 - freqtrade.exchange.common - WARNING - _async_get_candle_history() returned exception: "Could not fetch historical candle (OHLCV) data for pair ZEN/USDT due to ExchangeNotAvailable. Message: binance GET https://api.binance.com/api/v3/exchangeInfo". Retrying still for 3 times.
2024-02-18 15:29:15,242 - httpcore.http11 - DEBUG - receive_response_body.started request=<Request [b'POST']>
2024-02-18 15:29:15,242 - freqtrade.exchange.exchange - DEBUG - Fetching pair ZEN/USDT, spot, interval 5m, since None ...
2024-02-18 15:29:15,242 - httpcore.http11 - DEBUG - receive_response_body.complete
2024-02-18 15:29:15,243 - httpcore.http11 - DEBUG - response_closed.started
2024-02-18 15:29:15,244 - httpcore.http11 - DEBUG - receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Server', b'nginx/1.18.0'), (b'Date', b'Sun, 18 Feb 2024 15:29:15 GMT'), (b'Content-Type', b'application/json'), (b'Content-Length', b'331'), (b'Connection', b'keep-alive'), (b'Strict-Transport-Security', b'max-age=31536000; includeSubDomains; preload'), (b'Access-Control-Allow-Origin', b'*'), (b'Access-Control-Allow-Methods', b'GET, POST, OPTIONS'), (b'Access-Control-Expose-Headers', b'Content-Length,Content-Type,Date,Server,Connection')])
2024-02-18 15:29:15,244 - httpcore.http11 - DEBUG - receive_response_body.started request=<Request [b'POST']>
2024-02-18 15:29:15,244 - httpcore.http11 - DEBUG - receive_response_body.complete
2024-02-18 15:29:15,245 - httpcore.http11 - DEBUG - response_closed.started
2024-02-18 15:29:15,245 - httpcore.http11 - DEBUG - response_closed.complete
2024-02-18 15:29:15,245 - httpcore.http11 - DEBUG - response_closed.complete
2024-02-18 15:29:15,246 - httpcore.http11 - DEBUG - receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Server', b'nginx/1.18.0'), (b'Date', b'Sun, 18 Feb 2024 15:29:15 GMT'), (b'Content-Type', b'application/json'), (b'Content-Length', b'969'), (b'Connection', b'keep-alive'), (b'Strict-Transport-Security', b'max-age=31536000; includeSubDomains; preload'), (b'Access-Control-Allow-Origin', b'*'), (b'Access-Control-Allow-Methods', b'GET, POST, OPTIONS'), (b'Access-Control-Expose-Headers', b'Content-Length,Content-Type,Date,Server,Connection')])
2024-02-18 15:29:15,247 - httpcore.http11 - DEBUG - receive_response_body.started request=<Request [b'POST']>
2024-02-18 15:29:15,247 - httpcore.http11 - DEBUG - receive_response_body.complete
2024-02-18 15:29:15,247 - httpcore.http11 - DEBUG - response_closed.started
2024-02-18 15:29:15,248 - httpcore.http11 - DEBUG - response_closed.complete
2024-02-18 15:29:15,255 - ccxt.base.exchange - DEBUG - GET https://dapi.binance.com/dapi/v1/exchangeInfo, Request: None None
2024-02-18 15:29:15,304 - ccxt.base.exchange - DEBUG - GET https://api.binance.com/api/v3/exchangeInfo, Request: None None
2024-02-18 15:29:15,504 - ccxt.base.exchange - DEBUG - GET https://fapi.binance.com/fapi/v1/exchangeInfo, Request: None None
2024-02-18 15:29:15,541 - freqtrade.exchange.common - WARNING - _async_get_candle_history() returned exception: "Could not fetch historical candle (OHLCV) data for pair SOL/USDT due to ExchangeNotAvailable. Message: binance GET https://api.binance.com/api/v3/exchangeInfo". Retrying still for 3 times.
2024-02-18 15:29:15,541 - freqtrade.exchange.exchange - DEBUG - Fetching pair SOL/USDT, spot, interval 5m, since None ...
2024-02-18 15:29:15,555 - ccxt.base.exchange - DEBUG - GET https://dapi.binance.com/dapi/v1/exchangeInfo, Request: None None
2024-02-18 15:29:15,604 - ccxt.base.exchange - DEBUG - GET https://api.binance.com/api/v3/exchangeInfo, Request: None None
2024-02-18 15:29:15,805 - ccxt.base.exchange - DEBUG - GET https://fapi.binance.com/fapi/v1/exchangeInfo, Request: None None
2024-02-18 15:29:15,841 - freqtrade.exchange.common - WARNING - _async_get_candle_history() returned exception: "Could not fetch historical candle (OHLCV) data for pair XRP/USDT due to ExchangeNotAvailable. Message: binance GET https://api.binance.com/api/v3/exchangeInfo". Retrying still for 3 times.
2024-02-18 15:29:15,841 - freqtrade.exchange.exchange - DEBUG - Fetching pair XRP/USDT, spot, interval 5m, since None ...
2024-02-18 15:29:15,855 - ccxt.base.exchange - DEBUG - GET https://dapi.binance.com/dapi/v1/exchangeInfo, Request: None None
2024-02-18 15:29:15,904 - ccxt.base.exchange - DEBUG - GET https://api.binance.com/api/v3/exchangeInfo, Request: None None
2024-02-18 15:29:16,104 - ccxt.base.exchange - DEBUG - GET https://fapi.binance.com/fapi/v1/exchangeInfo, Request: None None
2024-02-18 15:29:16,140 - freqtrade.exchange.common - WARNING - _async_get_candle_history() returned exception: "Could not fetch historical candle (OHLCV) data for pair IOTX/USDT due to ExchangeNotAvailable. Message: binance GET https://api.binance.com/api/v3/exchangeInfo". Retrying still for 3 times.
2024-02-18 15:29:16,140 - freqtrade.exchange.exchange - DEBUG - Fetching pair IOTX/USDT, spot, interval 5m, since None ...
2024-02-18 15:29:16,155 - ccxt.base.exchange - DEBUG - GET https://dapi.binance.com/dapi/v1/exchangeInfo, Request: None None
2024-02-18 15:29:16,204 - ccxt.base.exchange - DEBUG - GET https://api.binance.com/api/v3/exchangeInfo, Request: None None
2024-02-18 15:29:16,405 - ccxt.base.exchange - DEBUG - GET https://fapi.binance.com/fapi/v1/exchangeInfo, Request: None None
2024-02-18 15:29:16,439 - freqtrade.exchange.common - WARNING - _async_get_candle_history() returned exception: "Could not fetch historical candle (OHLCV) data for pair INJ/USDT due to ExchangeNotAvailable. Message: binance GET https://api.binance.com/api/v3/exchangeInfo". Retrying still for 3 times.
2024-02-18 15:29:16,439 - freqtrade.exchange.exchange - DEBUG - Fetching pair INJ/USDT, spot, interval 5m, since None ...
2024-02-18 15:29:16,454 - ccxt.base.exchange - DEBUG - GET https://dapi.binance.com/dapi/v1/exchangeInfo, Request: None None
2024-02-18 15:29:16,505 - ccxt.base.exchange - DEBUG - GET https://api.binance.com/api/v3/exchangeInfo, Request: None None
2024-02-18 15:29:16,705 - ccxt.base.exchange - DEBUG - GET https://fapi.binance.com/fapi/v1/exchangeInfo, Request: None None
2024-02-18 15:29:16,740 - freqtrade.exchange.common - WARNING - _async_get_candle_history() returned exception: "Could not fetch historical candle (OHLCV) data for pair ETH/USDT due to ExchangeNotAvailable. Message: binance GET https://api.binance.com/api/v3/exchangeInfo". Retrying still for 3 times.
2024-02-18 15:29:16,740 - freqtrade.exchange.exchange - DEBUG - Fetching pair ETH/USDT, spot, interval 5m, since None ...
2024-02-18 15:29:16,755 - ccxt.base.exchange - DEBUG - GET https://dapi.binance.com/dapi/v1/exchangeInfo, Request: None None
2024-02-18 15:29:16,805 - ccxt.base.exchange - DEBUG - GET https://api.binance.com/api/v3/exchangeInfo, Request: None None
2024-02-18 15:29:17,005 - ccxt.base.exchange - DEBUG - GET https://fapi.binance.com/fapi/v1/exchangeInfo, Request: None None
2024-02-18 15:29:17,044 - freqtrade.exchange.common - WARNING - _async_get_candle_history() returned exception: "Could not fetch historical candle (OHLCV) data for pair ARKM/USDT due to ExchangeNotAvailable. Message: binance GET https://api.binance.com/api/v3/exchangeInfo". Retrying still for 3 times.
2024-02-18 15:29:17,044 - freqtrade.exchange.exchange - DEBUG - Fetching pair ARKM/USDT, spot, interval 5m, since None ...
2024-02-18 15:29:17,055 - ccxt.base.exchange - DEBUG - GET https://dapi.binance.com/dapi/v1/exchangeInfo, Request: None None
2024-02-18 15:29:17,105 - ccxt.base.exchange - DEBUG - GET https://api.binance.com/api/v3/exchangeInfo, Request: None None
2024-02-18 15:29:17,304 - ccxt.base.exchange - DEBUG - GET https://fapi.binance.com/fapi/v1/exchangeInfo, Request: None None
2024-02-18 15:29:17,340 - freqtrade.exchange.common - WARNING - _async_get_candle_history() returned exception: "Could not fetch historical candle (OHLCV) data for pair LPT/USDT due to ExchangeNotAvailable. Message: binance GET https://api.binance.com/api/v3/exchangeInfo". Retrying still for 3 times.
2024-02-18 15:29:17,341 - freqtrade.exchange.exchange - DEBUG - Fetching pair LPT/USDT, spot, interval 5m, since None ...
2024-02-18 15:29:17,355 - ccxt.base.exchange - DEBUG - GET https://dapi.binance.com/dapi/v1/exchangeInfo, Request: None None
2024-02-18 15:29:17,404 - ccxt.base.exchange - DEBUG - GET https://api.binance.com/api/v3/exchangeInfo, Request: None None
2024-02-18 15:29:17,605 - ccxt.base.exchange - DEBUG - GET https://fapi.binance.com/fapi/v1/exchangeInfo, Request: None None
2024-02-18 15:29:17,640 - freqtrade.exchange.common - WARNING - _async_get_candle_history() returned exception: "Could not fetch historical candle (OHLCV) data for pair FDUSD/USDT due to ExchangeNotAvailable. Message: binance GET https://api.binance.com/api/v3/exchangeInfo". Retrying still for 3 times.
2024-02-18 15:29:17,640 - freqtrade.exchange.exchange - DEBUG - Fetching pair FDUSD/USDT, spot, interval 5m, since None ...
2024-02-18 15:29:17,654 - ccxt.base.exchange - DEBUG - GET https://dapi.binance.com/dapi/v1/exchangeInfo, Request: None None
2024-02-18 15:29:17,704 - ccxt.base.exchange - DEBUG - GET https://api.binance.com/api/v3/exchangeInfo, Request: None None
2024-02-18 15:29:17,905 - ccxt.base.exchange - DEBUG - GET https://fapi.binance.com/fapi/v1/exchangeInfo, Request: None None
2024-02-18 15:29:17,943 - freqtrade.exchange.common - WARNING - _async_get_candle_history() returned exception: "Could not fetch historical candle (OHLCV) data for pair AGIX/USDT due to ExchangeNotAvailable. Message: binance GET https://api.binance.com/api/v3/exchangeInfo". Retrying still for 3 times.
2024-02-18 15:29:17,943 - freqtrade.exchange.exchange - DEBUG - Fetching pair AGIX/USDT, spot, interval 5m, since None ...
2024-02-18 15:29:17,954 - ccxt.base.exchange - DEBUG - GET https://dapi.binance.com/dapi/v1/exchangeInfo, Request: None None
2024-02-18 15:29:18,005 - ccxt.base.exchange - DEBUG - GET https://api.binance.com/api/v3/exchangeInfo, Request: None None
2024-02-18 15:29:18,204 - ccxt.base.exchange - DEBUG - GET https://fapi.binance.com/fapi/v1/exchangeInfo, Request: None None
2024-02-18 15:29:18,241 - freqtrade.exchange.common - WARNING - _async_get_candle_history() returned exception: "Could not fetch historical candle (OHLCV) data for pair BTC/USDT due to ExchangeNotAvailable. Message: binance GET https://api.binance.com/api/v3/exchangeInfo". Retrying still for 3 times.
2024-02-18 15:29:18,241 - freqtrade.exchange.exchange - DEBUG - Fetching pair BTC/USDT, spot, interval 5m, since None ...
2024-02-18 15:29:18,255 - ccxt.base.exchange - DEBUG - GET https://dapi.binance.com/dapi/v1/exchangeInfo, Request: None None
2024-02-18 15:29:18,305 - ccxt.base.exchange - DEBUG - GET https://api.binance.com/api/v3/exchangeInfo, Request: None None
2024-02-18 15:29:18,505 - ccxt.base.exchange - DEBUG - GET https://fapi.binance.com/fapi/v1/exchangeInfo, Request: None None
2024-02-18 15:29:18,543 - freqtrade.exchange.common - WARNING - _async_get_candle_history() returned exception: "Could not fetch historical candle (OHLCV) data for pair XAI/USDT due to ExchangeNotAvailable. Message: binance GET https://api.binance.com/api/v3/exchangeInfo". Retrying still for 3 times.
2024-02-18 15:29:18,543 - freqtrade.exchange.exchange - DEBUG - Fetching pair XAI/USDT, spot, interval 5m, since None ...
2024-02-18 15:29:18,554 - ccxt.base.exchange - DEBUG - GET https://dapi.binance.com/dapi/v1/exchangeInfo, Request: None None
2024-02-18 15:29:18,604 - ccxt.base.exchange - DEBUG - GET https://api.binance.com/api/v3/exchangeInfo, Request: None None
2024-02-18 15:29:18,804 - ccxt.base.exchange - DEBUG - GET https://fapi.binance.com/fapi/v1/exchangeInfo, Request: None None
2024-02-18 15:29:18,840 - freqtrade.exchange.common - WARNING - _async_get_candle_history() returned exception: "Could not fetch historical candle (OHLCV) data for pair USDC/USDT due to ExchangeNotAvailable. Message: binance GET https://api.binance.com/api/v3/exchangeInfo". Retrying still for 3 times.
2024-02-18 15:29:18,840 - freqtrade.exchange.exchange - DEBUG - Fetching pair USDC/USDT, spot, interval 5m, since None ...
2024-02-18 15:29:18,854 - ccxt.base.exchange - DEBUG - GET https://dapi.binance.com/dapi/v1/exchangeInfo, Request: None None
2024-02-18 15:29:18,904 - ccxt.base.exchange - DEBUG - GET https://api.binance.com/api/v3/exchangeInfo, Request: None None
2024-02-18 15:29:19,105 - ccxt.base.exchange - DEBUG - GET https://fapi.binance.com/fapi/v1/exchangeInfo, Request: None None
2024-02-18 15:29:19,140 - freqtrade.exchange.common - WARNING - _async_get_candle_history() returned exception: "Could not fetch historical candle (OHLCV) data for pair FET/USDT due to ExchangeNotAvailable. Message: binance GET https://api.binance.com/api/v3/exchangeInfo". Retrying still for 3 times.
2024-02-18 15:29:19,140 - freqtrade.exchange.exchange - DEBUG - Fetching pair FET/USDT, spot, interval 5m, since None ...
2024-02-18 15:29:19,155 - ccxt.base.exchange - DEBUG - GET https://dapi.binance.com/dapi/v1/exchangeInfo, Request: None None
2024-02-18 15:29:19,205 - ccxt.base.exchange - DEBUG - GET https://api.binance.com/api/v3/exchangeInfo, Request: None None
2024-02-18 15:29:19,405 - ccxt.base.exchange - DEBUG - GET https://fapi.binance.com/fapi/v1/exchangeInfo, Request: None None
2024-02-18 15:29:19,440 - freqtrade.exchange.common - WARNING - _async_get_candle_history() returned exception: "Could not fetch historical candle (OHLCV) data for pair ADA/USDT due to ExchangeNotAvailable. Message: binance GET https://api.binance.com/api/v3/exchangeInfo". Retrying still for 3 times.
2024-02-18 15:29:19,440 - freqtrade.exchange.exchange - DEBUG - Fetching pair ADA/USDT, spot, interval 5m, since None ...
2024-02-18 15:29:19,454 - ccxt.base.exchange - DEBUG - GET https://dapi.binance.com/dapi/v1/exchangeInfo, Request: None None
2024-02-18 15:29:19,505 - ccxt.base.exchange - DEBUG - GET https://api.binance.com/api/v3/exchangeInfo, Request: None None
2024-02-18 15:29:19,705 - ccxt.base.exchange - DEBUG - GET https://fapi.binance.com/fapi/v1/exchangeInfo, Request: None None
2024-02-18 15:29:19,740 - freqtrade.exchange.common - WARNING - _async_get_candle_history() returned exception: "Could not fetch historical candle (OHLCV) data for pair FIL/USDT due to ExchangeNotAvailable. Message: binance GET https://api.binance.com/api/v3/exchangeInfo". Retrying still for 3 times.
2024-02-18 15:29:19,740 - freqtrade.exchange.exchange - DEBUG - Fetching pair FIL/USDT, spot, interval 5m, since None ...
2024-02-18 15:29:19,755 - ccxt.base.exchange - DEBUG - GET https://dapi.binance.com/dapi/v1/exchangeInfo, Request: None None
2024-02-18 15:29:19,804 - ccxt.base.exchange - DEBUG - GET https://api.binance.com/api/v3/exchangeInfo, Request: None None
2024-02-18 15:29:20,004 - ccxt.base.exchange - DEBUG - GET https://fapi.binance.com/fapi/v1/exchangeInfo, Request: None None
2024-02-18 15:29:20,041 - freqtrade.exchange.common - WARNING - _async_get_candle_history() returned exception: "Could not fetch historical candle (OHLCV) data for pair AI/USDT due to ExchangeNotAvailable. Message: binance GET https://api.binance.com/api/v3/exchangeInfo". Retrying still for 3 times.
2024-02-18 15:29:20,042 - freqtrade.exchange.exchange - DEBUG - Fetching pair AI/USDT, spot, interval 5m, since None ...
2024-02-18 15:29:20,054 - ccxt.base.exchange - DEBUG - GET https://dapi.binance.com/dapi/v1/exchangeInfo, Request: None None
2024-02-18 15:29:20,105 - ccxt.base.exchange - DEBUG - GET https://api.binance.com/api/v3/exchangeInfo, Request: None None
2024-02-18 15:29:20,305 - ccxt.base.exchange - DEBUG - GET https://fapi.binance.com/fapi/v1/exchangeInfo, Request: None None
2024-02-18 15:29:20,341 - freqtrade.exchange.common - WARNING - _async_get_candle_history() returned exception: "Could not fetch historical candle (OHLCV) data for pair SEI/USDT due to ExchangeNotAvailable. Message: binance GET https://api.binance.com/api/v3/exchangeInfo". Retrying still for 3 times.
2024-02-18 15:29:20,341 - freqtrade.exchange.exchange - DEBUG - Fetching pair SEI/USDT, spot, interval 5m, since None ...
2024-02-18 15:29:20,355 - ccxt.base.exchange - DEBUG - GET https://dapi.binance.com/dapi/v1/exchangeInfo, Request: None None
2024-02-18 15:29:20,405 - ccxt.base.exchange - DEBUG - GET https://api.binance.com/api/v3/exchangeInfo, Request: None None
2024-02-18 15:29:20,604 - ccxt.base.exchange - DEBUG - GET https://fapi.binance.com/fapi/v1/exchangeInfo, Request: None None
2024-02-18 15:29:20,639 - freqtrade.exchange.common - WARNING - _async_get_candle_history() returned exception: "Could not fetch historical candle (OHLCV) data for pair WLD/USDT due to ExchangeNotAvailable. Message: binance GET https://api.binance.com/api/v3/exchangeInfo". Retrying still for 2 times.
2024-02-18 15:29:20,640 - freqtrade.exchange.exchange - DEBUG - Fetching pair WLD/USDT, spot, interval 5m, since None ...
2024-02-18 15:29:20,655 - ccxt.base.exchange - DEBUG - GET https://dapi.binance.com/dapi/v1/exchangeInfo, Request: None None
2024-02-18 15:29:20,705 - ccxt.base.exchange - DEBUG - GET https://api.binance.com/api/v3/exchangeInfo, Request: None None
2024-02-18 15:29:20,905 - ccxt.base.exchange - DEBUG - GET https://fapi.binance.com/fapi/v1/exchangeInfo, Request: None None
2024-02-18 15:29:20,941 - freqtrade.exchange.common - WARNING - _async_get_candle_history() returned exception: "Could not fetch historical candle (OHLCV) data for pair ALT/USDT due to ExchangeNotAvailable. Message: binance GET https://api.binance.com/api/v3/exchangeInfo". Retrying still for 2 times.
2024-02-18 15:29:20,941 - freqtrade.exchange.exchange - DEBUG - Fetching pair ALT/USDT, spot, interval 5m, since None ...
2024-02-18 15:29:20,955 - ccxt.base.exchange - DEBUG - GET https://dapi.binance.com/dapi/v1/exchangeInfo, Request: None None
2024-02-18 15:29:21,005 - ccxt.base.exchange - DEBUG - GET https://api.binance.com/api/v3/exchangeInfo, Request: None None
2024-02-18 15:29:21,204 - ccxt.base.exchange - DEBUG - GET https://fapi.binance.com/fapi/v1/exchangeInfo, Request: None None
2024-02-18 15:29:21,242 - freqtrade.exchange.common - WARNING - _async_get_candle_history() returned exception: "Could not fetch historical candle (OHLCV) data for pair ZEN/USDT due to ExchangeNotAvailable. Message: binance GET https://api.binance.com/api/v3/exchangeInfo". Retrying still for 2 times.
2024-02-18 15:29:21,242 - freqtrade.exchange.exchange - DEBUG - Fetching pair ZEN/USDT, spot, interval 5m, since None ...
2024-02-18 15:29:21,255 - ccxt.base.exchange - DEBUG - GET https://dapi.binance.com/dapi/v1/exchangeInfo, Request: None None
2024-02-18 15:29:21,304 - ccxt.base.exchange - DEBUG - GET https://api.binance.com/api/v3/exchangeInfo, Request: None None
2024-02-18 15:29:21,504 - ccxt.base.exchange - DEBUG - GET https://fapi.binance.com/fapi/v1/exchangeInfo, Request: None None
2024-02-18 15:29:21,540 - freqtrade.exchange.common - WARNING - _async_get_candle_history() returned exception: "Could not fetch historical candle (OHLCV) data for pair SOL/USDT due to ExchangeNotAvailable. Message: binance GET https://api.binance.com/api/v3/exchangeInfo". Retrying still for 2 times.
2024-02-18 15:29:21,540 - freqtrade.exchange.exchange - DEBUG - Fetching pair SOL/USDT, spot, interval 5m, since None ...
2024-02-18 15:29:21,554 - ccxt.base.exchange - DEBUG - GET https://dapi.binance.com/dapi/v1/exchangeInfo, Request: None None
2024-02-18 15:29:21,605 - ccxt.base.exchange - DEBUG - GET https://api.binance.com/api/v3/exchangeInfo, Request: None None
2024-02-18 15:29:21,805 - ccxt.base.exchange - DEBUG - GET https://fapi.binance.com/fapi/v1/exchangeInfo, Request: None None
2024-02-18 15:29:21,842 - freqtrade.exchange.common - WARNING - _async_get_candle_history() returned exception: "Could not fetch historical candle (OHLCV) data for pair XRP/USDT due to ExchangeNotAvailable. Message: binance GET https://api.binance.com/api/v3/exchangeInfo". Retrying still for 2 times.
2024-02-18 15:29:21,843 - freqtrade.exchange.exchange - DEBUG - Fetching pair XRP/USDT, spot, interval 5m, since None ...
2024-02-18 15:29:21,855 - ccxt.base.exchange - DEBUG - GET https://dapi.binance.com/dapi/v1/exchangeInfo, Request: None None
2024-02-18 15:29:21,905 - ccxt.base.exchange - DEBUG - GET https://api.binance.com/api/v3/exchangeInfo, Request: None None
2024-02-18 15:29:22,105 - ccxt.base.exchange - DEBUG - GET https://fapi.binance.com/fapi/v1/exchangeInfo, Request: None None
2024-02-18 15:29:22,140 - freqtrade.exchange.common - WARNING - _async_get_candle_history() returned exception: "Could not fetch historical candle (OHLCV) data for pair IOTX/USDT due to ExchangeNotAvailable. Message: binance GET https://api.binance.com/api/v3/exchangeInfo". Retrying still for 2 times.
2024-02-18 15:29:22,140 - freqtrade.exchange.exchange - DEBUG - Fetching pair IOTX/USDT, spot, interval 5m, since None ...
2024-02-18 15:29:22,154 - ccxt.base.exchange - DEBUG - GET https://dapi.binance.com/dapi/v1/exchangeInfo, Request: None None
2024-02-18 15:29:22,205 - ccxt.base.exchange - DEBUG - GET https://api.binance.com/api/v3/exchangeInfo, Request: None None
2024-02-18 15:29:22,404 - ccxt.base.exchange - DEBUG - GET https://fapi.binance.com/fapi/v1/exchangeInfo, Request: None None
2024-02-18 15:29:22,440 - freqtrade.exchange.common - WARNING - _async_get_candle_history() returned exception: "Could not fetch historical candle (OHLCV) data for pair INJ/USDT due to ExchangeNotAvailable. Message: binance GET https://api.binance.com/api/v3/exchangeInfo". Retrying still for 2 times.
2024-02-18 15:29:22,440 - freqtrade.exchange.exchange - DEBUG - Fetching pair INJ/USDT, spot, interval 5m, since None ...
2024-02-18 15:29:22,454 - ccxt.base.exchange - DEBUG - GET https://dapi.binance.com/dapi/v1/exchangeInfo, Request: None None
2024-02-18 15:29:22,504 - ccxt.base.exchange - DEBUG - GET https://api.binance.com/api/v3/exchangeInfo, Request: None None
2024-02-18 15:29:22,705 - ccxt.base.exchange - DEBUG - GET https://fapi.binance.com/fapi/v1/exchangeInfo, Request: None None
2024-02-18 15:29:22,740 - freqtrade.exchange.common - WARNING - _async_get_candle_history() returned exception: "Could not fetch historical candle (OHLCV) data for pair ETH/USDT due to ExchangeNotAvailable. Message: binance GET https://api.binance.com/api/v3/exchangeInfo". Retrying still for 2 times.
2024-02-18 15:29:22,741 - freqtrade.exchange.exchange - DEBUG - Fetching pair ETH/USDT, spot, interval 5m, since None ...
2024-02-18 15:29:22,755 - ccxt.base.exchange - DEBUG - GET https://dapi.binance.com/dapi/v1/exchangeInfo, Request: None None
2024-02-18 15:29:22,804 - ccxt.base.exchange - DEBUG - GET https://api.binance.com/api/v3/exchangeInfo, Request: None None
2024-02-18 15:29:23,005 - ccxt.base.exchange - DEBUG - GET https://fapi.binance.com/fapi/v1/exchangeInfo, Request: None None
2024-02-18 15:29:23,039 - freqtrade.exchange.common - WARNING - _async_get_candle_history() returned exception: "Could not fetch historical candle (OHLCV) data for pair ARKM/USDT due to ExchangeNotAvailable. Message: binance GET https://api.binance.com/api/v3/exchangeInfo". Retrying still for 2 times.
2024-02-18 15:29:23,040 - freqtrade.exchange.exchange - DEBUG - Fetching pair ARKM/USDT, spot, interval 5m, since None ...
2024-02-18 15:29:23,055 - ccxt.base.exchange - DEBUG - GET https://dapi.binance.com/dapi/v1/exchangeInfo, Request: None None
2024-02-18 15:29:23,105 - ccxt.base.exchange - DEBUG - GET https://api.binance.com/api/v3/exchangeInfo, Request: None None
2024-02-18 15:29:23,305 - ccxt.base.exchange - DEBUG - GET https://fapi.binance.com/fapi/v1/exchangeInfo, Request: None None
2024-02-18 15:29:23,342 - freqtrade.exchange.common - WARNING - _async_get_candle_history() returned exception: "Could not fetch historical candle (OHLCV) data for pair LPT/USDT due to ExchangeNotAvailable. Message: binance GET https://api.binance.com/api/v3/exchangeInfo". Retrying still for 2 times.
2024-02-18 15:29:23,342 - freqtrade.exchange.exchange - DEBUG - Fetching pair LPT/USDT, spot, interval 5m, since None ...
2024-02-18 15:29:23,355 - ccxt.base.exchange - DEBUG - GET https://dapi.binance.com/dapi/v1/exchangeInfo, Request: None None
2024-02-18 15:29:23,405 - ccxt.base.exchange - DEBUG - GET https://api.binance.com/api/v3/exchangeInfo, Request: None None
2024-02-18 15:29:23,604 - ccxt.base.exchange - DEBUG - GET https://fapi.binance.com/fapi/v1/exchangeInfo, Request: None None
2024-02-18 15:29:23,643 - freqtrade.exchange.common - WARNING - _async_get_candle_history() returned exception: "Could not fetch historical candle (OHLCV) data for pair FDUSD/USDT due to ExchangeNotAvailable. Message: binance GET https://api.binance.com/api/v3/exchangeInfo". Retrying still for 2 times.
2024-02-18 15:29:23,643 - freqtrade.exchange.exchange - DEBUG - Fetching pair FDUSD/USDT, spot, interval 5m, since None ...
2024-02-18 15:29:23,655 - ccxt.base.exchange - DEBUG - GET https://dapi.binance.com/dapi/v1/exchangeInfo, Request: None None
2024-02-18 15:29:23,705 - ccxt.base.exchange - DEBUG - GET https://api.binance.com/api/v3/exchangeInfo, Request: None None
2024-02-18 15:29:23,905 - ccxt.base.exchange - DEBUG - GET https://fapi.binance.com/fapi/v1/exchangeInfo, Request: None None
2024-02-18 15:29:23,939 - freqtrade.exchange.common - WARNING - _async_get_candle_history() returned exception: "Could not fetch historical candle (OHLCV) data for pair AGIX/USDT due to ExchangeNotAvailable. Message: binance GET https://api.binance.com/api/v3/exchangeInfo". Retrying still for 2 times.
2024-02-18 15:29:23,940 - freqtrade.exchange.exchange - DEBUG - Fetching pair AGIX/USDT, spot, interval 5m, since None ...
2024-02-18 15:29:23,955 - ccxt.base.exchange - DEBUG - GET https://dapi.binance.com/dapi/v1/exchangeInfo, Request: None None
2024-02-18 15:29:24,005 - ccxt.base.exchange - DEBUG - GET https://api.binance.com/api/v3/exchangeInfo, Request: None None
2024-02-18 15:29:24,205 - ccxt.base.exchange - DEBUG - GET https://fapi.binance.com/fapi/v1/exchangeInfo, Request: None None
2024-02-18 15:29:24,242 - freqtrade.exchange.common - WARNING - _async_get_candle_history() returned exception: "Could not fetch historical candle (OHLCV) data for pair BTC/USDT due to ExchangeNotAvailable. Message: binance GET https://api.binance.com/api/v3/exchangeInfo". Retrying still for 2 times.
2024-02-18 15:29:24,242 - freqtrade.exchange.exchange - DEBUG - Fetching pair BTC/USDT, spot, interval 5m, since None ...
2024-02-18 15:29:24,255 - ccxt.base.exchange - DEBUG - GET https://dapi.binance.com/dapi/v1/exchangeInfo, Request: None None
2024-02-18 15:29:24,305 - ccxt.base.exchange - DEBUG - GET https://api.binance.com/api/v3/exchangeInfo, Request: None None
2024-02-18 15:29:24,505 - ccxt.base.exchange - DEBUG - GET https://fapi.binance.com/fapi/v1/exchangeInfo, Request: None None
2024-02-18 15:29:24,539 - freqtrade.exchange.common - WARNING - _async_get_candle_history() returned exception: "Could not fetch historical candle (OHLCV) data for pair XAI/USDT due to ExchangeNotAvailable. Message: binance GET https://api.binance.com/api/v3/exchangeInfo". Retrying still for 2 times.
2024-02-18 15:29:24,539 - freqtrade.exchange.exchange - DEBUG - Fetching pair XAI/USDT, spot, interval 5m, since None ...
2024-02-18 15:29:24,555 - ccxt.base.exchange - DEBUG - GET https://dapi.binance.com/dapi/v1/exchangeInfo, Request: None None
2024-02-18 15:29:24,604 - ccxt.base.exchange - DEBUG - GET https://api.binance.com/api/v3/exchangeInfo, Request: None None
2024-02-18 15:29:24,805 - ccxt.base.exchange - DEBUG - GET https://fapi.binance.com/fapi/v1/exchangeInfo, Request: None None
2024-02-18 15:29:24,840 - freqtrade.exchange.common - WARNING - _async_get_candle_history() returned exception: "Could not fetch historical candle (OHLCV) data for pair USDC/USDT due to ExchangeNotAvailable. Message: binance GET https://api.binance.com/api/v3/exchangeInfo". Retrying still for 2 times.
2024-02-18 15:29:24,840 - freqtrade.exchange.exchange - DEBUG - Fetching pair USDC/USDT, spot, interval 5m, since None ...
2024-02-18 15:29:24,855 - ccxt.base.exchange - DEBUG - GET https://dapi.binance.com/dapi/v1/exchangeInfo, Request: None None
2024-02-18 15:29:24,905 - ccxt.base.exchange - DEBUG - GET https://api.binance.com/api/v3/exchangeInfo, Request: None None
2024-02-18 15:29:25,105 - ccxt.base.exchange - DEBUG - GET https://fapi.binance.com/fapi/v1/exchangeInfo, Request: None None
2024-02-18 15:29:25,139 - freqtrade.exchange.common - WARNING - _async_get_candle_history() returned exception: "Could not fetch historical candle (OHLCV) data for pair FET/USDT due to ExchangeNotAvailable. Message: binance GET https://api.binance.com/api/v3/exchangeInfo". Retrying still for 2 times.
2024-02-18 15:29:25,139 - freqtrade.exchange.exchange - DEBUG - Fetching pair FET/USDT, spot, interval 5m, since None ...
2024-02-18 15:29:25,154 - ccxt.base.exchange - DEBUG - GET https://dapi.binance.com/dapi/v1/exchangeInfo, Request: None None
2024-02-18 15:29:25,205 - ccxt.base.exchange - DEBUG - GET https://api.binance.com/api/v3/exchangeInfo, Request: None None
2024-02-18 15:29:25,404 - ccxt.base.exchange - DEBUG - GET https://fapi.binance.com/fapi/v1/exchangeInfo, Request: None None
2024-02-18 15:29:25,441 - freqtrade.exchange.common - WARNING - _async_get_candle_history() returned exception: "Could not fetch historical candle (OHLCV) data for pair ADA/USDT due to ExchangeNotAvailable. Message: binance GET https://api.binance.com/api/v3/exchangeInfo". Retrying still for 2 times.
2024-02-18 15:29:25,441 - freqtrade.exchange.exchange - DEBUG - Fetching pair ADA/USDT, spot, interval 5m, since None ...
2024-02-18 15:29:25,455 - ccxt.base.exchange - DEBUG - GET https://dapi.binance.com/dapi/v1/exchangeInfo, Request: None None
2024-02-18 15:29:25,505 - ccxt.base.exchange - DEBUG - GET https://api.binance.com/api/v3/exchangeInfo, Request: None None
2024-02-18 15:29:25,705 - ccxt.base.exchange - DEBUG - GET https://fapi.binance.com/fapi/v1/exchangeInfo, Request: None None
2024-02-18 15:29:25,740 - freqtrade.exchange.common - WARNING - _async_get_candle_history() returned exception: "Could not fetch historical candle (OHLCV) data for pair FIL/USDT due to ExchangeNotAvailable. Message: binance GET https://api.binance.com/api/v3/exchangeInfo". Retrying still for 2 times.
2024-02-18 15:29:25,740 - freqtrade.exchange.exchange - DEBUG - Fetching pair FIL/USDT, spot, interval 5m, since None ...
2024-02-18 15:29:25,755 - ccxt.base.exchange - DEBUG - GET https://dapi.binance.com/dapi/v1/exchangeInfo, Request: None None
2024-02-18 15:29:25,804 - ccxt.base.exchange - DEBUG - GET https://api.binance.com/api/v3/exchangeInfo, Request: None None
2024-02-18 15:29:26,004 - ccxt.base.exchange - DEBUG - GET https://fapi.binance.com/fapi/v1/exchangeInfo, Request: None None
2024-02-18 15:29:26,039 - freqtrade.exchange.common - WARNING - _async_get_candle_history() returned exception: "Could not fetch historical candle (OHLCV) data for pair AI/USDT due to ExchangeNotAvailable. Message: binance GET https://api.binance.com/api/v3/exchangeInfo". Retrying still for 2 times.
2024-02-18 15:29:26,039 - freqtrade.exchange.exchange - DEBUG - Fetching pair AI/USDT, spot, interval 5m, since None ...
2024-02-18 15:29:26,054 - ccxt.base.exchange - DEBUG - GET https://dapi.binance.com/dapi/v1/exchangeInfo, Request: None None
2024-02-18 15:29:26,105 - ccxt.base.exchange - DEBUG - GET https://api.binance.com/api/v3/exchangeInfo, Request: None None
2024-02-18 15:29:26,305 - ccxt.base.exchange - DEBUG - GET https://fapi.binance.com/fapi/v1/exchangeInfo, Request: None None
2024-02-18 15:29:26,339 - freqtrade.exchange.common - WARNING - _async_get_candle_history() returned exception: "Could not fetch historical candle (OHLCV) data for pair SEI/USDT due to ExchangeNotAvailable. Message: binance GET https://api.binance.com/api/v3/exchangeInfo". Retrying still for 2 times.
2024-02-18 15:29:26,339 - freqtrade.exchange.exchange - DEBUG - Fetching pair SEI/USDT, spot, interval 5m, since None ...
2024-02-18 15:29:26,354 - ccxt.base.exchange - DEBUG - GET https://dapi.binance.com/dapi/v1/exchangeInfo, Request: None None
2024-02-18 15:29:26,405 - ccxt.base.exchange - DEBUG - GET https://api.binance.com/api/v3/exchangeInfo, Request: None None
2024-02-18 15:29:26,605 - ccxt.base.exchange - DEBUG - GET https://fapi.binance.com/fapi/v1/exchangeInfo, Request: None None
2024-02-18 15:29:26,640 - freqtrade.exchange.common - WARNING - _async_get_candle_history() returned exception: "Could not fetch historical candle (OHLCV) data for pair WLD/USDT due to ExchangeNotAvailable. Message: binance GET https://api.binance.com/api/v3/exchangeInfo". Retrying still for 1 times.
2024-02-18 15:29:26,641 - freqtrade.exchange.exchange - DEBUG - Fetching pair WLD/USDT, spot, interval 5m, since None ...
2024-02-18 15:29:26,655 - ccxt.base.exchange - DEBUG - GET https://dapi.binance.com/dapi/v1/exchangeInfo, Request: None None
2024-02-18 15:29:26,705 - ccxt.base.exchange - DEBUG - GET https://api.binance.com/api/v3/exchangeInfo, Request: None None
2024-02-18 15:29:26,905 - ccxt.base.exchange - DEBUG - GET https://fapi.binance.com/fapi/v1/exchangeInfo, Request: None None
2024-02-18 15:29:26,944 - freqtrade.exchange.common - WARNING - _async_get_candle_history() returned exception: "Could not fetch historical candle (OHLCV) data for pair ALT/USDT due to ExchangeNotAvailable. Message: binance GET https://api.binance.com/api/v3/exchangeInfo". Retrying still for 1 times.
2024-02-18 15:29:26,945 - freqtrade.exchange.exchange - DEBUG - Fetching pair ALT/USDT, spot, interval 5m, since None ...
2024-02-18 15:29:26,955 - ccxt.base.exchange - DEBUG - GET https://dapi.binance.com/dapi/v1/exchangeInfo, Request: None None
2024-02-18 15:29:27,005 - ccxt.base.exchange - DEBUG - GET https://api.binance.com/api/v3/exchangeInfo, Request: None None
2024-02-18 15:29:27,204 - ccxt.base.exchange - DEBUG - GET https://fapi.binance.com/fapi/v1/exchangeInfo, Request: None None
2024-02-18 15:29:27,240 - freqtrade.exchange.common - WARNING - _async_get_candle_history() returned exception: "Could not fetch historical candle (OHLCV) data for pair ZEN/USDT due to ExchangeNotAvailable. Message: binance GET https://api.binance.com/api/v3/exchangeInfo". Retrying still for 1 times.
2024-02-18 15:29:27,240 - freqtrade.exchange.exchange - DEBUG - Fetching pair ZEN/USDT, spot, interval 5m, since None ...
2024-02-18 15:29:27,255 - ccxt.base.exchange - DEBUG - GET https://dapi.binance.com/dapi/v1/exchangeInfo, Request: None None
2024-02-18 15:29:27,304 - ccxt.base.exchange - DEBUG - GET https://api.binance.com/api/v3/exchangeInfo, Request: None None
2024-02-18 15:29:27,505 - ccxt.base.exchange - DEBUG - GET https://fapi.binance.com/fapi/v1/exchangeInfo, Request: None None
2024-02-18 15:29:27,541 - freqtrade.exchange.common - WARNING - _async_get_candle_history() returned exception: "Could not fetch historical candle (OHLCV) data for pair SOL/USDT due to ExchangeNotAvailable. Message: binance GET https://api.binance.com/api/v3/exchangeInfo". Retrying still for 1 times.
2024-02-18 15:29:27,541 - freqtrade.exchange.exchange - DEBUG - Fetching pair SOL/USDT, spot, interval 5m, since None ...
2024-02-18 15:29:27,555 - ccxt.base.exchange - DEBUG - GET https://dapi.binance.com/dapi/v1/exchangeInfo, Request: None None
2024-02-18 15:29:27,604 - ccxt.base.exchange - DEBUG - GET https://api.binance.com/api/v3/exchangeInfo, Request: None None
2024-02-18 15:29:27,804 - ccxt.base.exchange - DEBUG - GET https://fapi.binance.com/fapi/v1/exchangeInfo, Request: None None
2024-02-18 15:29:27,842 - freqtrade.exchange.common - WARNING - _async_get_candle_history() returned exception: "Could not fetch historical candle (OHLCV) data for pair XRP/USDT due to ExchangeNotAvailable. Message: binance GET https://api.binance.com/api/v3/exchangeInfo". Retrying still for 1 times.
2024-02-18 15:29:27,842 - freqtrade.exchange.exchange - DEBUG - Fetching pair XRP/USDT, spot, interval 5m, since None ...
2024-02-18 15:29:27,855 - ccxt.base.exchange - DEBUG - GET https://dapi.binance.com/dapi/v1/exchangeInfo, Request: None None
2024-02-18 15:29:27,904 - ccxt.base.exchange - DEBUG - GET https://api.binance.com/api/v3/exchangeInfo, Request: None None
2024-02-18 15:29:28,105 - ccxt.base.exchange - DEBUG - GET https://fapi.binance.com/fapi/v1/exchangeInfo, Request: None None
2024-02-18 15:29:28,140 - freqtrade.exchange.common - WARNING - _async_get_candle_history() returned exception: "Could not fetch historical candle (OHLCV) data for pair IOTX/USDT due to ExchangeNotAvailable. Message: binance GET https://api.binance.com/api/v3/exchangeInfo". Retrying still for 1 times.
2024-02-18 15:29:28,140 - freqtrade.exchange.exchange - DEBUG - Fetching pair IOTX/USDT, spot, interval 5m, since None ...
2024-02-18 15:29:28,155 - ccxt.base.exchange - DEBUG - GET https://dapi.binance.com/dapi/v1/exchangeInfo, Request: None None
2024-02-18 15:29:28,204 - ccxt.base.exchange - DEBUG - GET https://api.binance.com/api/v3/exchangeInfo, Request: None None
2024-02-18 15:29:28,405 - ccxt.base.exchange - DEBUG - GET https://fapi.binance.com/fapi/v1/exchangeInfo, Request: None None
2024-02-18 15:29:28,442 - freqtrade.exchange.common - WARNING - _async_get_candle_history() returned exception: "Could not fetch historical candle (OHLCV) data for pair INJ/USDT due to ExchangeNotAvailable. Message: binance GET https://api.binance.com/api/v3/exchangeInfo". Retrying still for 1 times.
2024-02-18 15:29:28,443 - freqtrade.exchange.exchange - DEBUG - Fetching pair INJ/USDT, spot, interval 5m, since None ...
2024-02-18 15:29:28,454 - ccxt.base.exchange - DEBUG - GET https://dapi.binance.com/dapi/v1/exchangeInfo, Request: None None
2024-02-18 15:29:28,505 - ccxt.base.exchange - DEBUG - GET https://api.binance.com/api/v3/exchangeInfo, Request: None None
2024-02-18 15:29:28,705 - ccxt.base.exchange - DEBUG - GET https://fapi.binance.com/fapi/v1/exchangeInfo, Request: None None
2024-02-18 15:29:28,740 - freqtrade.exchange.common - WARNING - _async_get_candle_history() returned exception: "Could not fetch historical candle (OHLCV) data for pair ETH/USDT due to ExchangeNotAvailable. Message: binance GET https://api.binance.com/api/v3/exchangeInfo". Retrying still for 1 times.
2024-02-18 15:29:28,740 - freqtrade.exchange.exchange - DEBUG - Fetching pair ETH/USDT, spot, interval 5m, since None ...
2024-02-18 15:29:28,755 - ccxt.base.exchange - DEBUG - GET https://dapi.binance.com/dapi/v1/exchangeInfo, Request: None None
2024-02-18 15:29:28,805 - ccxt.base.exchange - DEBUG - GET https://api.binance.com/api/v3/exchangeInfo, Request: None None
2024-02-18 15:29:29,005 - ccxt.base.exchange - DEBUG - GET https://fapi.binance.com/fapi/v1/exchangeInfo, Request: None None
2024-02-18 15:29:29,040 - freqtrade.exchange.common - WARNING - _async_get_candle_history() returned exception: "Could not fetch historical candle (OHLCV) data for pair ARKM/USDT due to ExchangeNotAvailable. Message: binance GET https://api.binance.com/api/v3/exchangeInfo". Retrying still for 1 times.
2024-02-18 15:29:29,041 - freqtrade.exchange.exchange - DEBUG - Fetching pair ARKM/USDT, spot, interval 5m, since None ...
2024-02-18 15:29:29,055 - ccxt.base.exchange - DEBUG - GET https://dapi.binance.com/dapi/v1/exchangeInfo, Request: None None
2024-02-18 15:29:29,104 - ccxt.base.exchange - DEBUG - GET https://api.binance.com/api/v3/exchangeInfo, Request: None None
2024-02-18 15:29:29,304 - ccxt.base.exchange - DEBUG - GET https://fapi.binance.com/fapi/v1/exchangeInfo, Request: None None
2024-02-18 15:29:29,339 - freqtrade.exchange.common - WARNING - _async_get_candle_history() returned exception: "Could not fetch historical candle (OHLCV) data for pair LPT/USDT due to ExchangeNotAvailable. Message: binance GET https://api.binance.com/api/v3/exchangeInfo". Retrying still for 1 times.
2024-02-18 15:29:29,339 - freqtrade.exchange.exchange - DEBUG - Fetching pair LPT/USDT, spot, interval 5m, since None ...
2024-02-18 15:29:29,354 - ccxt.base.exchange - DEBUG - GET https://dapi.binance.com/dapi/v1/exchangeInfo, Request: None None
2024-02-18 15:29:29,405 - ccxt.base.exchange - DEBUG - GET https://api.binance.com/api/v3/exchangeInfo, Request: None None
2024-02-18 15:29:29,605 - ccxt.base.exchange - DEBUG - GET https://fapi.binance.com/fapi/v1/exchangeInfo, Request: None None
2024-02-18 15:29:29,640 - freqtrade.exchange.common - WARNING - _async_get_candle_history() returned exception: "Could not fetch historical candle (OHLCV) data for pair FDUSD/USDT due to ExchangeNotAvailable. Message: binance GET https://api.binance.com/api/v3/exchangeInfo". Retrying still for 1 times.
2024-02-18 15:29:29,640 - freqtrade.exchange.exchange - DEBUG - Fetching pair FDUSD/USDT, spot, interval 5m, since None ...
2024-02-18 15:29:29,655 - ccxt.base.exchange - DEBUG - GET https://dapi.binance.com/dapi/v1/exchangeInfo, Request: None None
2024-02-18 15:29:29,705 - ccxt.base.exchange - DEBUG - GET https://api.binance.com/api/v3/exchangeInfo, Request: None None
2024-02-18 15:29:29,904 - ccxt.base.exchange - DEBUG - GET https://fapi.binance.com/fapi/v1/exchangeInfo, Request: None None
2024-02-18 15:29:29,941 - freqtrade.exchange.common - WARNING - _async_get_candle_history() returned exception: "Could not fetch historical candle (OHLCV) data for pair AGIX/USDT due to ExchangeNotAvailable. Message: binance GET https://api.binance.com/api/v3/exchangeInfo". Retrying still for 1 times.
2024-02-18 15:29:29,942 - freqtrade.exchange.exchange - DEBUG - Fetching pair AGIX/USDT, spot, interval 5m, since None ...
2024-02-18 15:29:29,955 - ccxt.base.exchange - DEBUG - GET https://dapi.binance.com/dapi/v1/exchangeInfo, Request: None None
2024-02-18 15:29:30,005 - ccxt.base.exchange - DEBUG - GET https://api.binance.com/api/v3/exchangeInfo, Request: None None
2024-02-18 15:29:30,205 - ccxt.base.exchange - DEBUG - GET https://fapi.binance.com/fapi/v1/exchangeInfo, Request: None None
2024-02-18 15:29:30,240 - freqtrade.exchange.common - WARNING - _async_get_candle_history() returned exception: "Could not fetch historical candle (OHLCV) data for pair BTC/USDT due to ExchangeNotAvailable. Message: binance GET https://api.binance.com/api/v3/exchangeInfo". Retrying still for 1 times.
2024-02-18 15:29:30,240 - freqtrade.exchange.exchange - DEBUG - Fetching pair BTC/USDT, spot, interval 5m, since None ...
2024-02-18 15:29:30,255 - ccxt.base.exchange - DEBUG - GET https://dapi.binance.com/dapi/v1/exchangeInfo, Request: None None
2024-02-18 15:29:30,305 - ccxt.base.exchange - DEBUG - GET https://api.binance.com/api/v3/exchangeInfo, Request: None None
2024-02-18 15:29:30,505 - ccxt.base.exchange - DEBUG - GET https://fapi.binance.com/fapi/v1/exchangeInfo, Request: None None
2024-02-18 15:29:30,540 - freqtrade.exchange.common - WARNING - _async_get_candle_history() returned exception: "Could not fetch historical candle (OHLCV) data for pair XAI/USDT due to ExchangeNotAvailable. Message: binance GET https://api.binance.com/api/v3/exchangeInfo". Retrying still for 1 times.
2024-02-18 15:29:30,541 - freqtrade.exchange.exchange - DEBUG - Fetching pair XAI/USDT, spot, interval 5m, since None ...
2024-02-18 15:29:30,555 - ccxt.base.exchange - DEBUG - GET https://dapi.binance.com/dapi/v1/exchangeInfo, Request: None None
2024-02-18 15:29:30,605 - ccxt.base.exchange - DEBUG - GET https://api.binance.com/api/v3/exchangeInfo, Request: None None
2024-02-18 15:29:30,805 - ccxt.base.exchange - DEBUG - GET https://fapi.binance.com/fapi/v1/exchangeInfo, Request: None None
2024-02-18 15:29:30,840 - freqtrade.exchange.common - WARNING - _async_get_candle_history() returned exception: "Could not fetch historical candle (OHLCV) data for pair USDC/USDT due to ExchangeNotAvailable. Message: binance GET https://api.binance.com/api/v3/exchangeInfo". Retrying still for 1 times.
2024-02-18 15:29:30,840 - freqtrade.exchange.exchange - DEBUG - Fetching pair USDC/USDT, spot, interval 5m, since None ...
2024-02-18 15:29:30,854 - ccxt.base.exchange - DEBUG - GET https://dapi.binance.com/dapi/v1/exchangeInfo, Request: None None
2024-02-18 15:29:30,905 - ccxt.base.exchange - DEBUG - GET https://api.binance.com/api/v3/exchangeInfo, Request: None None
2024-02-18 15:29:31,105 - ccxt.base.exchange - DEBUG - GET https://fapi.binance.com/fapi/v1/exchangeInfo, Request: None None
2024-02-18 15:29:31,140 - freqtrade.exchange.common - WARNING - _async_get_candle_history() returned exception: "Could not fetch historical candle (OHLCV) data for pair FET/USDT due to ExchangeNotAvailable. Message: binance GET https://api.binance.com/api/v3/exchangeInfo". Retrying still for 1 times.
2024-02-18 15:29:31,140 - freqtrade.exchange.exchange - DEBUG - Fetching pair FET/USDT, spot, interval 5m, since None ...
2024-02-18 15:29:31,155 - ccxt.base.exchange - DEBUG - GET https://dapi.binance.com/dapi/v1/exchangeInfo, Request: None None
2024-02-18 15:29:31,205 - ccxt.base.exchange - DEBUG - GET https://api.binance.com/api/v3/exchangeInfo, Request: None None
2024-02-18 15:29:31,405 - ccxt.base.exchange - DEBUG - GET https://fapi.binance.com/fapi/v1/exchangeInfo, Request: None None
2024-02-18 15:29:31,440 - freqtrade.exchange.common - WARNING - _async_get_candle_history() returned exception: "Could not fetch historical candle (OHLCV) data for pair ADA/USDT due to ExchangeNotAvailable. Message: binance GET https://api.binance.com/api/v3/exchangeInfo". Retrying still for 1 times.
2024-02-18 15:29:31,441 - freqtrade.exchange.exchange - DEBUG - Fetching pair ADA/USDT, spot, interval 5m, since None ...
2024-02-18 15:29:31,454 - ccxt.base.exchange - DEBUG - GET https://dapi.binance.com/dapi/v1/exchangeInfo, Request: None None
2024-02-18 15:29:31,505 - ccxt.base.exchange - DEBUG - GET https://api.binance.com/api/v3/exchangeInfo, Request: None None
2024-02-18 15:29:31,705 - ccxt.base.exchange - DEBUG - GET https://fapi.binance.com/fapi/v1/exchangeInfo, Request: None None
2024-02-18 15:29:31,741 - freqtrade.exchange.common - WARNING - _async_get_candle_history() returned exception: "Could not fetch historical candle (OHLCV) data for pair FIL/USDT due to ExchangeNotAvailable. Message: binance GET https://api.binance.com/api/v3/exchangeInfo". Retrying still for 1 times.
2024-02-18 15:29:31,741 - freqtrade.exchange.exchange - DEBUG - Fetching pair FIL/USDT, spot, interval 5m, since None ...
2024-02-18 15:29:31,755 - ccxt.base.exchange - DEBUG - GET https://dapi.binance.com/dapi/v1/exchangeInfo, Request: None None
2024-02-18 15:29:31,804 - ccxt.base.exchange - DEBUG - GET https://api.binance.com/api/v3/exchangeInfo, Request: None None
2024-02-18 15:29:32,004 - ccxt.base.exchange - DEBUG - GET https://fapi.binance.com/fapi/v1/exchangeInfo, Request: None None
2024-02-18 15:29:32,041 - freqtrade.exchange.common - WARNING - _async_get_candle_history() returned exception: "Could not fetch historical candle (OHLCV) data for pair AI/USDT due to ExchangeNotAvailable. Message: binance GET https://api.binance.com/api/v3/exchangeInfo". Retrying still for 1 times.
2024-02-18 15:29:32,041 - freqtrade.exchange.exchange - DEBUG - Fetching pair AI/USDT, spot, interval 5m, since None ...
2024-02-18 15:29:32,055 - ccxt.base.exchange - DEBUG - GET https://dapi.binance.com/dapi/v1/exchangeInfo, Request: None None
2024-02-18 15:29:32,104 - ccxt.base.exchange - DEBUG - GET https://api.binance.com/api/v3/exchangeInfo, Request: None None
2024-02-18 15:29:32,305 - ccxt.base.exchange - DEBUG - GET https://fapi.binance.com/fapi/v1/exchangeInfo, Request: None None
2024-02-18 15:29:32,340 - freqtrade.exchange.common - WARNING - _async_get_candle_history() returned exception: "Could not fetch historical candle (OHLCV) data for pair SEI/USDT due to ExchangeNotAvailable. Message: binance GET https://api.binance.com/api/v3/exchangeInfo". Retrying still for 1 times.
2024-02-18 15:29:32,340 - freqtrade.exchange.exchange - DEBUG - Fetching pair SEI/USDT, spot, interval 5m, since None ...
2024-02-18 15:29:32,355 - ccxt.base.exchange - DEBUG - GET https://dapi.binance.com/dapi/v1/exchangeInfo, Request: None None
2024-02-18 15:29:32,404 - ccxt.base.exchange - DEBUG - GET https://api.binance.com/api/v3/exchangeInfo, Request: None None
2024-02-18 15:29:32,605 - ccxt.base.exchange - DEBUG - GET https://fapi.binance.com/fapi/v1/exchangeInfo, Request: None None
2024-02-18 15:29:32,639 - freqtrade.exchange.common - WARNING - _async_get_candle_history() returned exception: "Could not fetch historical candle (OHLCV) data for pair WLD/USDT due to ExchangeNotAvailable. Message: binance GET https://api.binance.com/api/v3/exchangeInfo". Giving up.
2024-02-18 15:29:32,654 - ccxt.base.exchange - DEBUG - GET https://dapi.binance.com/dapi/v1/exchangeInfo, Request: None None
2024-02-18 15:29:32,705 - ccxt.base.exchange - DEBUG - GET https://api.binance.com/api/v3/exchangeInfo, Request: None None
2024-02-18 15:29:32,905 - ccxt.base.exchange - DEBUG - GET https://fapi.binance.com/fapi/v1/exchangeInfo, Request: None None
2024-02-18 15:29:32,941 - freqtrade.exchange.common - WARNING - _async_get_candle_history() returned exception: "Could not fetch historical candle (OHLCV) data for pair ALT/USDT due to ExchangeNotAvailable. Message: binance GET https://api.binance.com/api/v3/exchangeInfo". Giving up.
2024-02-18 15:29:32,955 - ccxt.base.exchange - DEBUG - GET https://dapi.binance.com/dapi/v1/exchangeInfo, Request: None None
2024-02-18 15:29:33,004 - ccxt.base.exchange - DEBUG - GET https://api.binance.com/api/v3/exchangeInfo, Request: None None
2024-02-18 15:29:33,204 - ccxt.base.exchange - DEBUG - GET https://fapi.binance.com/fapi/v1/exchangeInfo, Request: None None
2024-02-18 15:29:33,240 - freqtrade.exchange.common - WARNING - _async_get_candle_history() returned exception: "Could not fetch historical candle (OHLCV) data for pair ZEN/USDT due to ExchangeNotAvailable. Message: binance GET https://api.binance.com/api/v3/exchangeInfo". Giving up.
2024-02-18 15:29:33,255 - ccxt.base.exchange - DEBUG - GET https://dapi.binance.com/dapi/v1/exchangeInfo, Request: None None
2024-02-18 15:29:33,304 - ccxt.base.exchange - DEBUG - GET https://api.binance.com/api/v3/exchangeInfo, Request: None None
2024-02-18 15:29:33,504 - ccxt.base.exchange - DEBUG - GET https://fapi.binance.com/fapi/v1/exchangeInfo, Request: None None
2024-02-18 15:29:33,540 - freqtrade.exchange.common - WARNING - _async_get_candle_history() returned exception: "Could not fetch historical candle (OHLCV) data for pair SOL/USDT due to ExchangeNotAvailable. Message: binance GET https://api.binance.com/api/v3/exchangeInfo". Giving up.
2024-02-18 15:29:33,555 - ccxt.base.exchange - DEBUG - GET https://dapi.binance.com/dapi/v1/exchangeInfo, Request: None None
2024-02-18 15:29:33,605 - ccxt.base.exchange - DEBUG - GET https://api.binance.com/api/v3/exchangeInfo, Request: None None
2024-02-18 15:29:33,804 - ccxt.base.exchange - DEBUG - GET https://fapi.binance.com/fapi/v1/exchangeInfo, Request: None None
2024-02-18 15:29:33,840 - freqtrade.exchange.common - WARNING - _async_get_candle_history() returned exception: "Could not fetch historical candle (OHLCV) data for pair XRP/USDT due to ExchangeNotAvailable. Message: binance GET https://api.binance.com/api/v3/exchangeInfo". Giving up.
2024-02-18 15:29:33,855 - ccxt.base.exchange - DEBUG - GET https://dapi.binance.com/dapi/v1/exchangeInfo, Request: None None
2024-02-18 15:29:33,906 - ccxt.base.exchange - DEBUG - GET https://api.binance.com/api/v3/exchangeInfo, Request: None None
2024-02-18 15:29:33,994 - httpcore.http11 - DEBUG - receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Server', b'nginx/1.18.0'), (b'Date', b'Sun, 18 Feb 2024 15:29:33 GMT'), (b'Content-Type', b'application/json'), (b'Content-Length', b'23'), (b'Connection', b'keep-alive'), (b'Strict-Transport-Security', b'max-age=31536000; includeSubDomains; preload'), (b'Access-Control-Allow-Origin', b'*'), (b'Access-Control-Allow-Methods', b'GET, POST, OPTIONS'), (b'Access-Control-Expose-Headers', b'Content-Length,Content-Type,Date,Server,Connection')])
2024-02-18 15:29:33,995 - httpcore.http11 - DEBUG - receive_response_body.started request=<Request [b'POST']>
2024-02-18 15:29:33,995 - httpcore.http11 - DEBUG - receive_response_body.complete
2024-02-18 15:29:33,995 - httpcore.http11 - DEBUG - response_closed.started
2024-02-18 15:29:33,995 - httpcore.http11 - DEBUG - response_closed.complete
2024-02-18 15:29:33,996 - httpcore.http11 - DEBUG - send_request_headers.started request=<Request [b'POST']>
2024-02-18 15:29:33,997 - httpcore.http11 - DEBUG - send_request_headers.complete
2024-02-18 15:29:33,998 - httpcore.http11 - DEBUG - send_request_body.started request=<Request [b'POST']>
2024-02-18 15:29:33,998 - httpcore.http11 - DEBUG - send_request_body.complete
2024-02-18 15:29:33,998 - httpcore.http11 - DEBUG - receive_response_headers.started request=<Request [b'POST']>
2024-02-18 15:29:34,105 - ccxt.base.exchange - DEBUG - GET https://fapi.binance.com/fapi/v1/exchangeInfo, Request: None None
2024-02-18 15:29:34,151 - freqtrade.exchange.common - WARNING - _async_get_candle_history() returned exception: "Could not fetch historical candle (OHLCV) data for pair IOTX/USDT due to ExchangeNotAvailable. Message: binance GET https://api.binance.com/api/v3/exchangeInfo". Giving up.
tar-xz commented 5 months ago

I'm 100% certain of this - as we do use exactly the same setup to run part of the "live" CI - so this is actively tested for - usually multiple times per day (no, you cannot use our Proxy).

I have checked the test file, and it appears that the proxy part only tests synchronously?

xmatthias commented 5 months ago

that's incorrect - it's used for a selected number of tests (futures only - and only for binance and bybit) - but always applies to both sync and async classes (even though the explicit calls are not async, freqtrade still uses async under the hood).

If the proxy would not work - then market initialization would not work (this works implicitly always for both sync and async modes). trust me on this, i'm very well aware of this - as that causes tons of failures should the proxy not be available. :laughing: (and i do see the connections from both sync and async in the proxy server logs)

tar-xz commented 5 months ago

If the proxy would not work - then market initialization would not work (this works implicitly always for both sync and async modes). trust me on this, i'm very well aware of this - as that causes tons of failures should the proxy not be available. 😆 (and i do see the connections from both sync and async in the proxy server logs)

That's the point I cannot understand. At first, it successfully requests the exchangeInfo via the proxy, returning a 200 status code and content.

2024-02-18 15:29:06,012 - freqtrade.exchange.exchange - INFO - Instance is running with dry_run enabled
2024-02-18 15:29:06,012 - freqtrade.exchange.exchange - INFO - Using CCXT 4.2.25
2024-02-18 15:29:06,012 - freqtrade.exchange.exchange - INFO - Applying additional ccxt config: {'httpsProxy': 'http://username:password@host:port'}
2024-02-18 15:29:06,023 - freqtrade.exchange.exchange - INFO - Applying additional ccxt config: {'httpsProxy': 'http://username:password@host:port'}
2024-02-18 15:29:06,032 - freqtrade.exchange.exchange - INFO - Using Exchange "Binance"
2024-02-18 15:29:06,033 - ccxt.base.exchange - DEBUG - GET https://api.binance.com/api/v3/exchangeInfo, Request: {'User-Agent': 'python-requests/2.31.0', 'Accept-Encoding': 'gzip, deflate', 'Accept': '*/*', 'Connection': 'keep-alive'} None
2024-02-18 15:29:06,035 - urllib3.connectionpool - DEBUG - Starting new HTTPS connection (1): api.binance.com:443
2024-02-18 15:29:07,620 - urllib3.connectionpool - DEBUG - https://api.binance.com:443 "GET /api/v3/exchangeInfo HTTP/1.1" 200 96093
2024-02-18 15:29:08,014 - ccxt.base.exchange - DEBUG - GET https://api.binance.com/api/v3/exchangeInfo, Response: 200 {'Content-Type': 'application/json;charset=UTF-8', 'Content-Length': '96093', 'Connection': 'keep-alive', 'Date': 'Sun, 18 Feb 2024 15:29:07 GMT', 'Server': 'nginx', 'x-mbx-uuid': '5be335b3-4795-4426-a073-2e44ca7ab5e7', 'x-mbx-used-weight': '20', 'x-mbx-used-weight-1m': '20', 'content-encoding': 'gzip', 'Strict-Transport-Security': 'max-age=31536000; includeSubdomains', 'X-Frame-Options': 'SAMEORIGIN', 'X-Xss-Protection': '1; mode=block', 'X-Content-Type-Options': 'nosniff', 'Content-Security-Policy': "default-src 'self'", 'X-Content-Security-Policy': "default-src 'self'", 'X-WebKit-CSP': "default-src 'self'", 'Cache-Control': 'no-cache, no-store, must-revalidate', 'Pragma': 'no-cache', 'Expires': '0', 'Access-Control-Allow-Origin': '*', 'Access-Control-Allow-Methods': 'GET, HEAD, OPTIONS', 'X-Cache': 'Miss from cloudfront', 'Via': '1.1 803246727539350977d724c9e4a027c6.cloudfront.net (CloudFront)', 'X-Amz-Cf-Pop': 'FRA56-P4', 'X-Amz-Cf-Id': 'kf9s_Di6q6Vy_Zwxd45_uy_xmDtI9aF56RTSX46elN2CXrujMJIb9Q=='} {"timezone":"UTC","serverTime":1708270147179,"rateLimits":[{"rateLimitType":"REQUEST_WEIGHT","interval":"MINUTE","intervalNum":1,"limit":6000},{"rateLimitType":"ORDERS","interval":"SECOND","intervalNum":10,"limit":100},

If I don't add the proxy setting to the config, Binance returns the 'restricted' error, and the market fails to initialize.

451 Service unavailable from a restricted location according to 'b. Eligibility' in https://www.binance.com/en/terms. Please contact customer service if you believe you received this message in error.

Therefore, I believe the request is being made via the proxy and working well, since it can fetch the exchangeInfo.

However, even with the proxy setting added, the following warnings show up after the market initialization, and it seems that the bot cannot fetch the exchange information.

2024-02-18 15:29:12,359 - freqtrade.exchange.exchange - WARNING - Could not load async markets. Reason: binance GET https://api.binance.com/api/v3/exchangeInfo
2024-02-18 15:29:33,840 - freqtrade.exchange.common - WARNING - _async_get_candle_history() returned exception: "Could not fetch historical candle (OHLCV) data for pair XRP/USDT due to ExchangeNotAvailable. Message: binance GET https://api.binance.com/api/v3/exchangeInfo". Giving up.
xmatthias commented 5 months ago

well ccxt internally uses different implementations for sync and async. maybe your proxy url format does hit some issue with that (i never tested with username/password - and the ccxt proxy docs don't seem to document that as format, either - so maybe that's untested / unsupported for async mode (though it'd be a ccxt issue - not something we can help you with).

you should be able to test this pretty easily as follows:

import ccxt
import ccxt.async_support as ccxt_async
exchange = ccxt.binance({
    'httpsProxy': 'http://username:password@host:port',
    'options': {'defaultType': 'swap'} 
    })
_ = exchange.load_markets()

exchange1 = ccxt_async.binance({
    'httpsProxy': 'http://username:password@host:port',
    'options': {'defaultType': 'swap'} 
    })
_ = await exchange1.load_markets()

(this assumes a jupyter notebook / interactive environment .... otherwise you'll appropriate measures to use async properly).

tar-xz commented 5 months ago

It seems there is a problem with aiohttp, the underlying library used in async ccxt. I can see that the proxy URL can be passed to aiohttp Client successfully in debug mode, and aiohttp does support this type of proxy URL. ref

import asyncio
import aiohttp

async def test():
    async with aiohttp.ClientSession() as session:
        async with session.get(
                'https://api.binance.com/api/v3/exchangeInfo',
                proxy='http://username:password@host:port'
        ) as response:
            _ = await response.json()

asyncio.run(test())
Traceback (most recent call last):
  File "/workspaces/temp/binance.py", line 29, in <module>
    asyncio.run(test())
  File "/home/vscode/.pyenv/versions/3.10.13/lib/python3.10/asyncio/runners.py", line 44, in run
    return loop.run_until_complete(main)
  File "/home/vscode/.pyenv/versions/3.10.13/lib/python3.10/asyncio/base_events.py", line 649, in run_until_complete
    return future.result()
  File "/workspaces/temp/asd.py", line 23, in test2
    async with session.get(
  File "/home/vscode/.pyenv/versions/3.10.13/lib/python3.10/site-packages/aiohttp/client.py", line 1194, in __aenter__
    self._resp = await self._coro
  File "/home/vscode/.pyenv/versions/3.10.13/lib/python3.10/site-packages/aiohttp/client.py", line 578, in _request
    conn = await self._connector.connect(
  File "/home/vscode/.pyenv/versions/3.10.13/lib/python3.10/site-packages/aiohttp/connector.py", line 544, in connect
    proto = await self._create_connection(req, traces, timeout)
  File "/home/vscode/.pyenv/versions/3.10.13/lib/python3.10/site-packages/aiohttp/connector.py", line 909, in _create_connection
    _, proto = await self._create_proxy_connection(req, traces, timeout)
  File "/home/vscode/.pyenv/versions/3.10.13/lib/python3.10/site-packages/aiohttp/connector.py", line 1357, in _create_proxy_connection
    return await self._start_tls_connection(
  File "/home/vscode/.pyenv/versions/3.10.13/lib/python3.10/site-packages/aiohttp/connector.py", line 1139, in _start_tls_connection
    raise client_error(req.connection_key, OSError(msg))
aiohttp.client_exceptions.ClientConnectorError: Cannot connect to host api.binance.com:443 ssl:default [None]

Still figuring out where the problem is in aiohttp... I will close the issue since it is not related to freqtrade.

xmatthias commented 5 months ago

this does work fine for me (using squid-proxy on a wireguard network)... though obivously, i don't need authentication - which suggests that it's a problem with your proxy (or with the format you're giving the auth info to the proxy).

import asyncio
import aiohttp

async def test():
    async with aiohttp.ClientSession() as session:
        print("test")
        async with session.get(
                'https://api.binance.com/api/v3/exchangeInfo',
                proxy='http://10.9.0.21:3128',

        ) as response:
            _ = await response.json()
            print("responded")

asyncio.run(test())
tar-xz commented 5 months ago

this does work fine for me (using squid-proxy on a wireguard network)... though obivously, i don't need authentication - which suggests that it's a problem with your proxy (or with the format you're giving the auth info to the proxy).

The problem with the proxy has been ruled out; the proxy works well with requests.

import requests

_ = requests.get(
    "https://api.binance.com/api/v3/exchangeInfo",
    proxies={
        "https": "http://username:password@host:port",
    },
)
print(_.status_code)
python test.py 
200
tar-xz commented 5 months ago

Request to HTTP URL with proxy

import asyncio
import aiohttp

async def test():
    async with aiohttp.ClientSession() as session:
        async with session.get(
            "http://google.com",
            proxy="http://username:password@host:port",
        ) as response:
            print(response.status)

asyncio.run(test())

Output:

200

Request to HTTPS URL with proxy

import asyncio
import aiohttp

async def test2():
    async with aiohttp.ClientSession() as session:
        async with session.get(
            "https://google.com",
            proxy="http://username:password@host:port",
        ) as response:
            print(response.status)

asyncio.run(test2())

Output:

aiohttp.client_exceptions.ClientConnectorError: Cannot connect to host google.com:443 ssl:default [None]
xmatthias commented 5 months ago

so https pages don't work through the proxy ... which is either a setup problem on the executing system (like - python was installed without ssl or something similar) - or a problem with the proxy incorrectly handling https pages.

either way - not something we'll be able to support you with.