From a8c1f6297541ea0a812c4dc7c856fcb6cb37d8d7 Mon Sep 17 00:00:00 2001 From: TheHolyRoger Date: Wed, 24 Mar 2021 17:34:38 +0000 Subject: [PATCH] CoinZoom: Adjust polling interval --- hummingbot/connector/exchange/coinzoom/coinzoom_constants.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/hummingbot/connector/exchange/coinzoom/coinzoom_constants.py b/hummingbot/connector/exchange/coinzoom/coinzoom_constants.py index 164bf1df76..7994650443 100644 --- a/hummingbot/connector/exchange/coinzoom/coinzoom_constants.py +++ b/hummingbot/connector/exchange/coinzoom/coinzoom_constants.py @@ -52,8 +52,9 @@ class Constants: # Intervals # Only used when nothing is received from WS SHORT_POLL_INTERVAL = 5.0 - # One minute should be fine since we get trades, orders and balances via WS - LONG_POLL_INTERVAL = 60.0 + # CoinZoom poll interval can't be too long since we don't get balances via websockets + LONG_POLL_INTERVAL = 20.0 + # One minute should be fine for order status since we get these via WS UPDATE_ORDER_STATUS_INTERVAL = 60.0 # 10 minute interval to update trading rules, these would likely never change whilst running. INTERVAL_TRADING_RULES = 600