Commit
·
317726a
1
Parent(s):
500ea0f
Updating title of staking graphs
Browse files
app.py
CHANGED
|
@@ -246,19 +246,19 @@ with demo:
|
|
| 246 |
trade_details_text
|
| 247 |
with gr.TabItem("🔒 Staking traders"):
|
| 248 |
with gr.Row():
|
| 249 |
-
gr.Markdown("# Trades
|
| 250 |
with gr.Row():
|
| 251 |
staking_trades_by_week = plot_staking_trades_per_market_by_week(
|
| 252 |
trades_df=trades_df, market_creator="pearl"
|
| 253 |
)
|
| 254 |
with gr.Row():
|
| 255 |
-
gr.Markdown("# Trades
|
| 256 |
with gr.Row():
|
| 257 |
staking_trades_by_week = plot_staking_trades_per_market_by_week(
|
| 258 |
trades_df=trades_df, market_creator="quickstart"
|
| 259 |
)
|
| 260 |
with gr.Row():
|
| 261 |
-
gr.Markdown("# Trades
|
| 262 |
with gr.Row():
|
| 263 |
staking_trades_by_week = plot_staking_trades_per_market_by_week(
|
| 264 |
trades_df=trades_df, market_creator="all"
|
|
|
|
| 246 |
trade_details_text
|
| 247 |
with gr.TabItem("🔒 Staking traders"):
|
| 248 |
with gr.Row():
|
| 249 |
+
gr.Markdown("# Trades conducted at the Pearl markets")
|
| 250 |
with gr.Row():
|
| 251 |
staking_trades_by_week = plot_staking_trades_per_market_by_week(
|
| 252 |
trades_df=trades_df, market_creator="pearl"
|
| 253 |
)
|
| 254 |
with gr.Row():
|
| 255 |
+
gr.Markdown("# Trades conducted at the Quickstart markets")
|
| 256 |
with gr.Row():
|
| 257 |
staking_trades_by_week = plot_staking_trades_per_market_by_week(
|
| 258 |
trades_df=trades_df, market_creator="quickstart"
|
| 259 |
)
|
| 260 |
with gr.Row():
|
| 261 |
+
gr.Markdown("# Trades conducted irrespective of the market")
|
| 262 |
with gr.Row():
|
| 263 |
staking_trades_by_week = plot_staking_trades_per_market_by_week(
|
| 264 |
trades_df=trades_df, market_creator="all"
|