QuantumLearner commited on
Commit
54ea77d
·
verified ·
1 Parent(s): d5091c9

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +9 -0
app.py CHANGED
@@ -182,3 +182,12 @@ if "best_params" in st.session_state:
182
  height=400
183
  )
184
  st.plotly_chart(fig_equity, use_container_width=True)
 
 
 
 
 
 
 
 
 
 
182
  height=400
183
  )
184
  st.plotly_chart(fig_equity, use_container_width=True)
185
+
186
+
187
+ hide_menu_style = """
188
+ <style>
189
+ #MainMenu {visibility: hidden;}
190
+ footer {visibility: hidden;}
191
+ </style>
192
+ """
193
+ st.markdown(hide_menu_style, unsafe_allow_html=True)