Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
|
@@ -33,7 +33,7 @@ with st.sidebar.expander("How to Use", expanded=False):
|
|
| 33 |
""")
|
| 34 |
|
| 35 |
# Sidebar: Select Ticker and Date Range
|
| 36 |
-
with st.sidebar.expander("
|
| 37 |
ticker = st.text_input("Asset Symbol", value="ASML.AS", help="Indicate Asset Symbol (e.g., ASML.AS, BTC-USD)")
|
| 38 |
start_date = st.date_input("Start Date", value=pd.to_datetime("2020-01-01"), help="Select the start date for historical data.")
|
| 39 |
end_date = st.date_input("End Date", value=pd.to_datetime("today"), help="Select the end date for historical data.")
|
|
|
|
| 33 |
""")
|
| 34 |
|
| 35 |
# Sidebar: Select Ticker and Date Range
|
| 36 |
+
with st.sidebar.expander("Asset Settings", expanded=True):
|
| 37 |
ticker = st.text_input("Asset Symbol", value="ASML.AS", help="Indicate Asset Symbol (e.g., ASML.AS, BTC-USD)")
|
| 38 |
start_date = st.date_input("Start Date", value=pd.to_datetime("2020-01-01"), help="Select the start date for historical data.")
|
| 39 |
end_date = st.date_input("End Date", value=pd.to_datetime("today"), help="Select the end date for historical data.")
|