import streamlit as st from st_pages import Page, Section, show_pages, add_page_title from utils.st_utils import initialize_st_page initialize_st_page(title="Hummingbot Dashboard", icon="๐Ÿ“Š") show_pages( [ Section("Foundation", "๐Ÿ "), Page("main.py", "Hummingbot Dashboard", "๐Ÿ“Š"), Page("pages/bot_orchestration/app.py", "Bot Orchestration", "๐Ÿ™"), Section("Community", "๐Ÿ‘จโ€๐Ÿ‘ฉโ€๐Ÿ‘งโ€๐Ÿ‘ฆ"), Page("pages/strategy_performance/app.py", "Strategy Performance", "๐Ÿš€"), Page("pages/backtest_manager/app.py", "Backtest Manager", "โš™๏ธ"), Page("pages/candles_downloader/app.py", "Candles Downloader", "๐Ÿ—‚"), Page("pages/db_inspector/app.py", "DB Inspector", "๐Ÿ”"), Page("pages/token_spreads/app.py", "Token Spreads", "๐Ÿง™"), Page("pages/tvl_vs_mcap/app.py", "TVL vs Market Cap", "๐Ÿฆ‰"), ] ) st.write("Watch this video to understand how the dashboard works! ๐Ÿฆ…") c1, c2, c3 = st.columns([1, 6, 1]) st.write("---") with c2: st.video("https://youtu.be/2q9HSyIPuf4") st.write("Please give us feedback in the **#dashboard** channel of the [Hummingbot Discord](https://discord.gg/hummingbot)! ๐Ÿ™")