feat: change default ticker to an actual stock

This commit is contained in:
kevin-bruton 2025-09-27 10:22:58 +02:00
parent c7b3409d1c
commit bc6a005bd2
1 changed files with 2 additions and 2 deletions

View File

@ -430,7 +430,7 @@ def get_user_selections():
# Step 1: Ticker symbol # Step 1: Ticker symbol
console.print( console.print(
create_question_box( 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() selected_ticker = get_ticker()
@ -496,7 +496,7 @@ def get_user_selections():
def get_ticker(): def get_ticker():
"""Get ticker symbol from user input.""" """Get ticker symbol from user input."""
return typer.prompt("", default="SPY") return typer.prompt("", default="TSLA")
def get_analysis_date(): def get_analysis_date():