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():