QuantumLearner commited on
Commit
473f12c
·
verified ·
1 Parent(s): 12205ad

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +9 -0
app.py CHANGED
@@ -327,3 +327,12 @@ elif selected == "Rolling Statistics":
327
  """)
328
  fig = plot_rolling_statistics(data, ticker)
329
  st.plotly_chart(fig)
 
 
 
 
 
 
 
 
 
 
327
  """)
328
  fig = plot_rolling_statistics(data, ticker)
329
  st.plotly_chart(fig)
330
+
331
+
332
+ hide_streamlit_style = """
333
+ <style>
334
+ #MainMenu {visibility: hidden;}
335
+ footer {visibility: hidden;}
336
+ </style>
337
+ """
338
+ st.markdown(hide_streamlit_style, unsafe_allow_html=True)