Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
|
@@ -120,3 +120,11 @@ if run_button:
|
|
| 120 |
|
| 121 |
This analysis helps in understanding the historical likelihood of the stock price reaching certain targets within a specified number of days.
|
| 122 |
""")
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 120 |
|
| 121 |
This analysis helps in understanding the historical likelihood of the stock price reaching certain targets within a specified number of days.
|
| 122 |
""")
|
| 123 |
+
|
| 124 |
+
hide_streamlit_style = """
|
| 125 |
+
<style>
|
| 126 |
+
#MainMenu {visibility: hidden;}
|
| 127 |
+
footer {visibility: hidden;}
|
| 128 |
+
</style>
|
| 129 |
+
"""
|
| 130 |
+
st.markdown(hide_streamlit_style, unsafe_allow_html=True)
|