Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -121,7 +121,7 @@ def plot_candlestick(data, symbol, timeframe, predicted_price=None):
|
|
121 |
def main():
|
122 |
"""Gradio Interface."""
|
123 |
|
124 |
-
symbol_input = gr.Textbox(
|
125 |
timeframe_input = gr.Dropdown(label="Timeframe", choices=["1m", "5m", "15m", "30m", "1h", "1d"], value="1d")
|
126 |
|
127 |
with gr.Blocks() as interface:
|
|
|
121 |
def main():
|
122 |
"""Gradio Interface."""
|
123 |
|
124 |
+
symbol_input = gr.Textbox("AAPL", label="Symbol", interactive=True) # Moved "AAPL" to the correct position
|
125 |
timeframe_input = gr.Dropdown(label="Timeframe", choices=["1m", "5m", "15m", "30m", "1h", "1d"], value="1d")
|
126 |
|
127 |
with gr.Blocks() as interface:
|