mirror of
https://github.com/aljazceru/hummingbot-dashboard.git
synced 2025-12-19 06:24:21 +01:00
28 lines
1.1 KiB
Python
28 lines
1.1 KiB
Python
import streamlit as st
|
|
from st_pages import Page, show_pages
|
|
|
|
from utils.st_utils import initialize_st_page
|
|
|
|
|
|
initialize_st_page(title="Hummingbot Dashboard", icon="📊")
|
|
|
|
show_pages(
|
|
[
|
|
Page("main.py", "Hummingbot Dashboard", "📊"),
|
|
Page("pages/strategy_performance/app.py", "Strategy Performance", "🚀"),
|
|
Page("pages/bot_orchestration/app.py", "Bot Orchestration", "🐙"),
|
|
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])
|
|
with c2:
|
|
st.video("https://youtu.be/l6PWbN2pDK8")
|
|
st.write("If you want to contribute, post your idea in #dev-channel of [hummingbot discord](https://discord.gg/CjxZtkrH)")
|
|
st.write("---")
|