-
Notifications
You must be signed in to change notification settings - Fork 3
/
app.py
20 lines (16 loc) · 860 Bytes
/
app.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
import streamlit as st
from multiapp import MultiApp
from apps import Staked_Deriv, Paper,CVXCRV_prices, stables, stables_funding, home, stables_spot_funding,stables_spot_funding2
app = MultiApp()
st.set_page_config(layout="wide")
# page = st.container()
# Add all your application here
app.add_app("home", home.app)
app.add_app("Commercial Paper", Paper.app)
app.add_app("Staking and Staked Derivatives", Staked_Deriv.app)
app.add_app("Staked Derivative Pricing", CVXCRV_prices.app)
app.add_app("Stablecoins, price variation and opportunities", stables.app)
app.add_app("Underlying interest rates of stablecoins, and of their derivatives", stables_funding.app)
app.add_app("Spot Margin rates for stablecoins, FTX", stables_spot_funding.app)
app.add_app("Spot Margin rates for stablecoins, FTX US", stables_spot_funding2.app)
app.run()