diff --git a/SmartApi/smartWebSocketV2.py b/SmartApi/smartWebSocketV2.py index e2da92c9..aabb16e5 100644 --- a/SmartApi/smartWebSocketV2.py +++ b/SmartApi/smartWebSocketV2.py @@ -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)