Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
|
@@ -32,7 +32,7 @@ st.sidebar.markdown("### Page Navigation")
|
|
| 32 |
page = st.sidebar.radio("Select Strategy Horizon", options=["Short-Term", "Medium-Term", "Long-Term"])
|
| 33 |
|
| 34 |
# Sidebar: Select Ticker and Date Range
|
| 35 |
-
with st.sidebar.expander("
|
| 36 |
ticker = st.text_input("Asset Symbol", value="AAPL", help="Ticker symbol (Indicate the stock ticker or Cryptocurrency Pair (e.g., AAPL, BTC-USD))")
|
| 37 |
start_date = st.date_input("Start Date", value=datetime(2015, 1, 1), help="Select the start date for historical data.")
|
| 38 |
end_date = st.date_input("End Date", value=datetime.today() + timedelta(days=1), help="Select the end date for historical data.")
|
|
|
|
| 32 |
page = st.sidebar.radio("Select Strategy Horizon", options=["Short-Term", "Medium-Term", "Long-Term"])
|
| 33 |
|
| 34 |
# Sidebar: Select Ticker and Date Range
|
| 35 |
+
with st.sidebar.expander("Ticker Settings", expanded=True):
|
| 36 |
ticker = st.text_input("Asset Symbol", value="AAPL", help="Ticker symbol (Indicate the stock ticker or Cryptocurrency Pair (e.g., AAPL, BTC-USD))")
|
| 37 |
start_date = st.date_input("Start Date", value=datetime(2015, 1, 1), help="Select the start date for historical data.")
|
| 38 |
end_date = st.date_input("End Date", value=datetime.today() + timedelta(days=1), help="Select the end date for historical data.")
|