QuantumLearner commited on
Commit
d450307
·
verified ·
1 Parent(s): 2f72cd5

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +9 -6
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
- st.subheader("How to Use")
121
- st.write("""
122
- - Select the stock ticker.
123
- - Set the start and end dates.
124
- - Click 'Run' to execute the strategy.
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)")