Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
|
@@ -117,12 +117,15 @@ st.set_page_config(layout="wide")
|
|
| 117 |
# Sidebar configuration
|
| 118 |
with st.sidebar:
|
| 119 |
st.header("Input Parameters")
|
| 120 |
-
|
| 121 |
-
|
| 122 |
-
|
| 123 |
-
|
| 124 |
-
|
| 125 |
-
|
|
|
|
|
|
|
|
|
|
| 126 |
|
| 127 |
with st.expander("Ticker Parameters", expanded=True):
|
| 128 |
ticker = st.text_input("Stock Ticker", value="AAPL", help="Enter the stock ticker symbol (e.g., AAPL, TSLA)")
|
|
|
|
| 117 |
# Sidebar configuration
|
| 118 |
with st.sidebar:
|
| 119 |
st.header("Input Parameters")
|
| 120 |
+
|
| 121 |
+
|
| 122 |
+
with st.expander("How to Use", expanded=False):
|
| 123 |
+
#st.subheader("How to Use")
|
| 124 |
+
st.write("""
|
| 125 |
+
- Select the stock ticker.
|
| 126 |
+
- Set the start and end dates.
|
| 127 |
+
- Click 'Run' to execute the strategy.
|
| 128 |
+
""")
|
| 129 |
|
| 130 |
with st.expander("Ticker Parameters", expanded=True):
|
| 131 |
ticker = st.text_input("Stock Ticker", value="AAPL", help="Enter the stock ticker symbol (e.g., AAPL, TSLA)")
|