QuantumLearner commited on
Commit
3511e00
1 Parent(s): 65bae9b

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +8 -0
app.py CHANGED
@@ -201,3 +201,11 @@ if st.sidebar.button('Run Simulation'):
201
 
202
  These results help in understanding the potential future movements of the stock price based on historical data and bootstrapping simulation.
203
  """)
 
 
 
 
 
 
 
 
 
201
 
202
  These results help in understanding the potential future movements of the stock price based on historical data and bootstrapping simulation.
203
  """)
204
+
205
+ hide_streamlit_style = """
206
+ <style>
207
+ #MainMenu {visibility: hidden;}
208
+ footer {visibility: hidden;}
209
+ </style>
210
+ """
211
+ st.markdown(hide_streamlit_style, unsafe_allow_html=True)