freqtrade ボットを pythonanywhere にデプロイしたいのですが、要件をインストールしてから、pythonanywhere のコンソールでコマンドを使用して API を実行します。しかし、私は次のエラーがあります:
2021-05-24 12:16:27,446 - freqtrade.exchange.common - WARNING - _async_get_candle_history() returned exception: "Could not fetch historical candle (OHLCV) data for pair BRD/BTC due to ExchangeNotAvailable. Message: binance GET https://api.binance.com/api/v3/exchangeInfo"
2021-05-24 12:16:27,446 - freqtrade.exchange.common - WARNING - retrying _async_get_candle_history() still for 4 times
2021-05-24 12:16:27,446 - freqtrade.exchange.common - WARNING - _async_get_candle_history() returned exception: "Could not fetch historical candle (OHLCV) data for pair LINK/BTC due to ExchangeNotAvailable. Message: binance GET https://api.binance.com/api/v3/exchangeInfo"
2021-05-24 12:16:27,446 - freqtrade.exchange.common - WARNING - retrying _async_get_candle_history() still for 4 times
2021-05-24 12:16:27,446 - freqtrade.exchange.common - WARNING - _async_get_candle_history() returned exception: "Could not fetch historical candle (OHLCV) data for pair ALGO/BTC due to ExchangeNotAvailable. Message: binance GET https://api.binance.com/api/v3/exchangeInfo"
2021-05-24 12:16:27,446 - freqtrade.exchange.common - WARNING - retrying _async_get_candle_history() still for 4 times
2021-05-24 12:16:27,446 - freqtrade.exchange.common - WARNING - _async_get_candle_history() returned exception: "Could not fetch historical candle (OHLCV) data for pair BAT/BTC due to ExchangeNotAvailable. Message: binance GET https://api.binance.com/api/v3/exchangeInfo"
2021-05-24 12:16:27,447 - freqtrade.exchange.common - WARNING - retrying _async_get_candle_history() still for 4 times
2021-05-24 12:16:27,447 - freqtrade.exchange.common - WARNING - _async_get_candle_history() returned exception: "Could not fetch historical candle (OHLCV) data for pair ETH/BTC due to ExchangeNotAvailable. Message: binance GET https://api.binance.com/api/v3/exchangeInfo"
ブラウザで get リクエストを作成しようとしましたが、うまくいきました。だから、何が悪いのか理解できません...
エラーを表示する別の方法を次に示します。
2021-05-24 12:16:27,446 - freqtrade.exchange.common - WARNING - _async_get_candle_history() returned exception: "Could not fetch historical candle (OHLCV) data for pair BRD/BTC due to ExchangeNotAvailable. Message: binance GET api.binance.com/api/v3/exchangeInfo"
2021-05-24 12:16:27,446 - freqtrade.exchange.common - WARNING - retrying _async_get_candle_history() still for 4 times
2021-05-24 12:16:27,446 - freqtrade.exchange.common - WARNING - _async_get_candle_history() returned exception: "Could not fetch historical candle (OHLCV) data for pair LINK/BTC due to ExchangeNotAvailable. Message: binance GET api.binance.com/api/v3/exchangeInfo"
2021-05-24 12:16:27,446 - freqtrade.exchange.common - WARNING - retrying _async_get_candle_history() still for 4 times
2021-05-24 12:16:27,446 - freqtrade.exchange.common - WARNING - _async_get_candle_history() returned exception: "Could not fetch historical candle (OHLCV) data for pair ALGO/BTC due to ExchangeNotAvailable. Message: binance GET api.binance.com/api/v3/exchangeInfo"
2021-05-24 12:16:27,446 - freqtrade.exchange.common - WARNING - retrying _async_get_candle_history() still for 4 times
2021-05-24 12:16:27,446 - freqtrade.exchange.common - WARNING - _async_get_candle_history() returned exception: "Could not fetch historical candle (OHLCV) data for pair BAT/BTC due to ExchangeNotAvailable. Message: binance GET api.binance.com/api/v3/exchangeInfo"
2021-05-24 12:16:27,447 - freqtrade.exchange.common - WARNING - retrying _async_get_candle_history() still for 4 times
2021-05-24 12:16:27,447 - freqtrade.exchange.common - WARNING - _async_get_candle_history() returned exception: "Could not fetch historical candle (OHLCV) data for pair ETH/BTC due to ExchangeNotAvailable. Message: binance GET api.binance.com/api/v3/exchangeInfo"
PS:別の展開方法を受け入れる
前もって感謝します !