Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
@@ -91,9 +91,9 @@ with gr.Blocks() as demo:
|
|
91 |
gr.Markdown("Enter a stock ticker, start date, and end date to visualize historical and forecasted stock prices.")
|
92 |
|
93 |
with gr.Row():
|
94 |
-
ticker_input = gr.Textbox(label="Enter Stock Ticker", value="
|
95 |
start_date_input = gr.Textbox(label="Enter Start Date (YYYY-MM-DD)", value="2022-01-01")
|
96 |
-
end_date_input = gr.Textbox(label="Enter End Date (YYYY-MM-DD)", value="
|
97 |
|
98 |
submit_button = gr.Button("Enter")
|
99 |
plot_output = gr.Plot()
|
|
|
91 |
gr.Markdown("Enter a stock ticker, start date, and end date to visualize historical and forecasted stock prices.")
|
92 |
|
93 |
with gr.Row():
|
94 |
+
ticker_input = gr.Textbox(label="Enter Stock Ticker", value="NVDA")
|
95 |
start_date_input = gr.Textbox(label="Enter Start Date (YYYY-MM-DD)", value="2022-01-01")
|
96 |
+
end_date_input = gr.Textbox(label="Enter End Date (YYYY-MM-DD)", value="2026-01-01")
|
97 |
|
98 |
submit_button = gr.Button("Enter")
|
99 |
plot_output = gr.Plot()
|