Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
|
@@ -301,14 +301,17 @@ with gr.Blocks(
|
|
| 301 |
|
| 302 |
with gr.Tabs():
|
| 303 |
with gr.TabItem("Chart Analysis"):
|
| 304 |
-
with gr.Row():
|
| 305 |
-
with gr.Column(scale=2):
|
| 306 |
-
chart_plot = gr.Plot(label="Price Chart")
|
| 307 |
-
with gr.Column(scale=1):
|
| 308 |
-
metrics_output = gr.JSON(label="Trading Metrics")
|
| 309 |
|
|
|
|
|
|
|
|
|
|
|
|
|
| 310 |
with gr.Row():
|
| 311 |
pred_plot = gr.Plot(label="Price Predictions")
|
|
|
|
|
|
|
|
|
|
|
|
|
| 312 |
|
| 313 |
with gr.TabItem("Sentiment Analysis"):
|
| 314 |
with gr.Row():
|
|
|
|
| 301 |
|
| 302 |
with gr.Tabs():
|
| 303 |
with gr.TabItem("Chart Analysis"):
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 304 |
|
| 305 |
+
# Price Chart (Full Width)
|
| 306 |
+
chart_plot = gr.Plot(label="Price Chart")
|
| 307 |
+
|
| 308 |
+
# Price Predictions (Full Width)
|
| 309 |
with gr.Row():
|
| 310 |
pred_plot = gr.Plot(label="Price Predictions")
|
| 311 |
+
|
| 312 |
+
# Trading Metrics (Full Width, dipindahkan ke bawah)
|
| 313 |
+
with gr.Row():
|
| 314 |
+
metrics_output = gr.JSON(label="Trading Metrics")
|
| 315 |
|
| 316 |
with gr.TabItem("Sentiment Analysis"):
|
| 317 |
with gr.Row():
|