Update src/streamlit_app.py
Browse files- src/streamlit_app.py +3 -0
src/streamlit_app.py
CHANGED
|
@@ -992,6 +992,9 @@ elif st.session_state.page == "analisis_batch":
|
|
| 992 |
**Hipotesis Ditolak (H0 Diterima):** Tidak ditemukan bukti empiris korelasi linier yang signifikan (seluruh *p-value* >= 0.05).
|
| 993 |
Volatilitas harga cenderung dipengaruhi oleh faktor teknikal/fundamental di luar sentimen X.
|
| 994 |
""")
|
|
|
|
|
|
|
|
|
|
| 995 |
|
| 996 |
st.markdown('</div>', unsafe_allow_html=True) # close result-wrap
|
| 997 |
|
|
|
|
| 992 |
**Hipotesis Ditolak (H0 Diterima):** Tidak ditemukan bukti empiris korelasi linier yang signifikan (seluruh *p-value* >= 0.05).
|
| 993 |
Volatilitas harga cenderung dipengaruhi oleh faktor teknikal/fundamental di luar sentimen X.
|
| 994 |
""")
|
| 995 |
+
|
| 996 |
+
except Exception as e:
|
| 997 |
+
st.error(f"⚠️ Terjadi kesalahan saat mengambil atau memproses data API CoinGecko: {e}")
|
| 998 |
|
| 999 |
st.markdown('</div>', unsafe_allow_html=True) # close result-wrap
|
| 1000 |
|