Bayhaqy commited on
Commit
36d1e44
·
1 Parent(s): 30a4342

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -4
app.py CHANGED
@@ -16,8 +16,6 @@ from datetime import datetime
16
  st.set_page_config(page_title='Regression Stocks Prediction', layout='wide', page_icon=':rocket:')
17
 
18
  #this is the header
19
-
20
-
21
  t1, t2 = st.columns((0.07,1))
22
 
23
  t2.title("Stock Price Analysis and Prediction Using LSTM")
@@ -58,8 +56,8 @@ stock_name = user_input
58
  user_input = stock_tickers[user_input]
59
 
60
  # User input for start and end dates using calendar widget
61
- start_date = st.sidebar.date_input("Select start date:", datetime(2010, 1, 1))
62
- end_date = st.sidebar.date_input("Select end date:", datetime(2023, 1, 1))
63
  # End of User Input
64
 
65
 
 
16
  st.set_page_config(page_title='Regression Stocks Prediction', layout='wide', page_icon=':rocket:')
17
 
18
  #this is the header
 
 
19
  t1, t2 = st.columns((0.07,1))
20
 
21
  t2.title("Stock Price Analysis and Prediction Using LSTM")
 
56
  user_input = stock_tickers[user_input]
57
 
58
  # User input for start and end dates using calendar widget
59
+ start_date = st.sidebar.date_input("Select start date:", datetime(2023, 1, 1))
60
+ end_date = st.sidebar.date_input("Select end date:", datetime(2023, 12, 1))
61
  # End of User Input
62
 
63