feat: change default ticker to an actual stock
This commit is contained in:
parent
c7b3409d1c
commit
bc6a005bd2
|
|
@ -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():
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue