Skip to content

Commit

Permalink
CoinZoom: Adjust polling interval
Browse files Browse the repository at this point in the history
  • Loading branch information
TheHolyRoger committed Mar 29, 2021
1 parent 37e01fe commit a8c1f62
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions hummingbot/connector/exchange/coinzoom/coinzoom_constants.py
Original file line number Diff line number Diff line change
Expand Up @@ -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

0 comments on commit a8c1f62

Please sign in to comment.