From bc6a005bd2e456ee96e0ed53a95031d8e44bb1a1 Mon Sep 17 00:00:00 2001 From: kevin-bruton Date: Sat, 27 Sep 2025 10:22:58 +0200 Subject: [PATCH] feat: change default ticker to an actual stock --- cli/main.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cli/main.py b/cli/main.py index 7dd3524a..22676e93 100644 --- a/cli/main.py +++ b/cli/main.py @@ -430,7 +430,7 @@ def get_user_selections(): # Step 1: Ticker symbol console.print( create_question_box( - "Step 1: Ticker Symbol", "Enter the ticker symbol to analyze", "SPY" + "Step 1: Ticker Symbol", "Enter the ticker symbol to analyze", "TSLA" ) ) selected_ticker = get_ticker() @@ -496,7 +496,7 @@ def get_user_selections(): def get_ticker(): """Get ticker symbol from user input.""" - return typer.prompt("", default="SPY") + return typer.prompt("", default="TSLA") def get_analysis_date():