From 42e4641cf32b72cdb146f0053df7dcc619fd3622 Mon Sep 17 00:00:00 2001 From: moshferatu Date: Sat, 6 Jul 2024 05:12:46 -0700 Subject: [PATCH] Update streaming data example due to method name change --- streaming_data_example.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/streaming_data_example.py b/streaming_data_example.py index a76af19..5a81a6b 100644 --- a/streaming_data_example.py +++ b/streaming_data_example.py @@ -9,4 +9,4 @@ password = getenv("TASTYTRADE_PASSWORD") client = Tastytrade(username, password) client.login() -client.start_streaming(['AAPL', 'AMZN']) \ No newline at end of file +client.stream_quotes(['AAPL', 'AMZN']) \ No newline at end of file