Skip to content

Commit

Permalink
🐛 GOOGL is len of 5 --> increased range to 6
Browse files Browse the repository at this point in the history
  • Loading branch information
TheoJ-A committed Feb 7, 2024
1 parent d4603e7 commit 0a0e400
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -208,7 +208,7 @@ def refresh_main_interface(self):

# Refresh the chart
symbol = self.symbol_entry.get()
if len(symbol) in range(1, 5):
if len(symbol) in range(1, 6):
timestamp = int(datetime.datetime.now().strftime("%Y%m%d%H%M"))
market_data_request_snapshot = MarketDataRequest.new_snapshot_request(
timestamp,
Expand Down

0 comments on commit 0a0e400

Please sign in to comment.