mistermprah commited on
Commit
6db8df3
·
verified ·
1 Parent(s): 9185d5c

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +6 -6
app.py CHANGED
@@ -120,24 +120,24 @@ tab1, tab2, tab3 = st.tabs(["Predict Today's Price", "Predict Next Month's Price
120
 
121
  with tab1:
122
  st.header("Predict Today's Price")
123
- ticker_input = st.selectbox("Stock Ticker", stock_list)
124
- open_price = st.number_input("Open Price", value=0.0)
125
- close_price = st.number_input("Close Price", value=0.0)
126
  if st.button("Predict Today's Price"):
127
  result = predict_stock_price(ticker_input, open_price, close_price)
128
  st.write(result)
129
 
130
  with tab2:
131
  st.header("Predict Next Month's Price")
132
- next_month_ticker_input = st.selectbox("Stock Ticker", stock_list)
133
- next_month_close_price = st.number_input("Close Price", value=0.0)
134
  if st.button("Predict Next Month's Price"):
135
  result = predict_next_month_price(next_month_ticker_input, next_month_close_price)
136
  st.write(result)
137
 
138
  with tab3:
139
  st.header("View Historical Data")
140
- historical_ticker_input = st.selectbox("Stock Ticker", stock_list)
141
  if st.button("View Data"):
142
  data = display_historical_data(historical_ticker_input)
143
  st.dataframe(data)
 
120
 
121
  with tab1:
122
  st.header("Predict Today's Price")
123
+ ticker_input = st.selectbox("Stock Ticker", stock_list, key="today_ticker")
124
+ open_price = st.number_input("Open Price", value=0.0, key="today_open_price")
125
+ close_price = st.number_input("Close Price", value=0.0, key="today_close_price")
126
  if st.button("Predict Today's Price"):
127
  result = predict_stock_price(ticker_input, open_price, close_price)
128
  st.write(result)
129
 
130
  with tab2:
131
  st.header("Predict Next Month's Price")
132
+ next_month_ticker_input = st.selectbox("Stock Ticker", stock_list, key="next_month_ticker")
133
+ next_month_close_price = st.number_input("Close Price", value=0.0, key="next_month_close_price")
134
  if st.button("Predict Next Month's Price"):
135
  result = predict_next_month_price(next_month_ticker_input, next_month_close_price)
136
  st.write(result)
137
 
138
  with tab3:
139
  st.header("View Historical Data")
140
+ historical_ticker_input = st.selectbox("Stock Ticker", stock_list, key="historical_ticker")
141
  if st.button("View Data"):
142
  data = display_historical_data(historical_ticker_input)
143
  st.dataframe(data)