Reality123b commited on
Commit
81396dc
·
verified ·
1 Parent(s): 5a826d4

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
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(label="Symbol", "AAPL", interactive=True) # Default as positional argument
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: