Spaces:
Running
on
Zero
Running
on
Zero
align plotlys with gradio
Browse files
app.py
CHANGED
|
@@ -3440,12 +3440,7 @@ The **Advanced Stock Prediction System** is a cutting-edge AI-powered platform w
|
|
| 3440 |
""")
|
| 3441 |
|
| 3442 |
with gr.Column():
|
| 3443 |
-
daily_plot = gr.Plot(
|
| 3444 |
-
label="Analysis and Prediction",
|
| 3445 |
-
container=True,
|
| 3446 |
-
scale=1,
|
| 3447 |
-
height=600
|
| 3448 |
-
)
|
| 3449 |
daily_historical_json = gr.JSON(label="Historical Data")
|
| 3450 |
daily_predicted_json = gr.JSON(label="Predicted Data")
|
| 3451 |
|
|
@@ -3513,12 +3508,7 @@ The **Advanced Stock Prediction System** is a cutting-edge AI-powered platform w
|
|
| 3513 |
""")
|
| 3514 |
|
| 3515 |
with gr.Column():
|
| 3516 |
-
hourly_plot = gr.Plot(
|
| 3517 |
-
label="Analysis and Prediction",
|
| 3518 |
-
container=True,
|
| 3519 |
-
scale=1,
|
| 3520 |
-
height=600
|
| 3521 |
-
)
|
| 3522 |
hourly_signals = gr.JSON(label="Trading Signals")
|
| 3523 |
hourly_historical_json = gr.JSON(label="Historical Data")
|
| 3524 |
hourly_predicted_json = gr.JSON(label="Predicted Data")
|
|
@@ -3585,12 +3575,7 @@ The **Advanced Stock Prediction System** is a cutting-edge AI-powered platform w
|
|
| 3585 |
""")
|
| 3586 |
|
| 3587 |
with gr.Column():
|
| 3588 |
-
min15_plot = gr.Plot(
|
| 3589 |
-
label="Analysis and Prediction",
|
| 3590 |
-
container=True,
|
| 3591 |
-
scale=1,
|
| 3592 |
-
height=600
|
| 3593 |
-
)
|
| 3594 |
min15_signals = gr.JSON(label="Trading Signals")
|
| 3595 |
min15_historical_json = gr.JSON(label="Historical Data")
|
| 3596 |
min15_predicted_json = gr.JSON(label="Predicted Data")
|
|
|
|
| 3440 |
""")
|
| 3441 |
|
| 3442 |
with gr.Column():
|
| 3443 |
+
daily_plot = gr.Plot(label="Analysis and Prediction")
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 3444 |
daily_historical_json = gr.JSON(label="Historical Data")
|
| 3445 |
daily_predicted_json = gr.JSON(label="Predicted Data")
|
| 3446 |
|
|
|
|
| 3508 |
""")
|
| 3509 |
|
| 3510 |
with gr.Column():
|
| 3511 |
+
hourly_plot = gr.Plot(label="Analysis and Prediction")
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 3512 |
hourly_signals = gr.JSON(label="Trading Signals")
|
| 3513 |
hourly_historical_json = gr.JSON(label="Historical Data")
|
| 3514 |
hourly_predicted_json = gr.JSON(label="Predicted Data")
|
|
|
|
| 3575 |
""")
|
| 3576 |
|
| 3577 |
with gr.Column():
|
| 3578 |
+
min15_plot = gr.Plot(label="Analysis and Prediction")
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 3579 |
min15_signals = gr.JSON(label="Trading Signals")
|
| 3580 |
min15_historical_json = gr.JSON(label="Historical Data")
|
| 3581 |
min15_predicted_json = gr.JSON(label="Predicted Data")
|