Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion SmartApi/smartWebSocketV2.py
Original file line number Diff line number Diff line change
Expand Up @@ -199,7 +199,7 @@ def subscribe(self, correlation_id, mode, token_list):

if mode == self.DEPTH:
total_tokens = sum(len(token["tokens"]) for token in token_list)
quota_limit = 50
quota_limit = 1000
if total_tokens > quota_limit:
error_message = f"Quota exceeded: You can subscribe to a maximum of {quota_limit} tokens only."
logger.error(error_message)
Expand Down