Add handlers in manager.py for CANDLES and STATUS channels. Add support for heartbeat data.

This commit is contained in:
Davide Casale
2022-11-08 18:16:24 +01:00
parent a37b7dda33
commit 7e416219e0
2 changed files with 19 additions and 4 deletions

View File

@@ -3,4 +3,6 @@ from enum import Enum
class Channels(str, Enum):
TICKER = "ticker"
TRADES = "trades"
BOOK = "book"
BOOK = "book"
CANDLES = "candles"
STATUS = "status"