Spaces:
Runtime error
Runtime error
Commit
·
b9a5bdf
1
Parent(s):
61a2d96
Update app.py
Browse files
app.py
CHANGED
@@ -27,7 +27,7 @@ Shown is the stock prediction of the next working day taking into account the la
|
|
27 |
|
28 |
model = keras.models.load_model('model_stock_prices.h5')
|
29 |
|
30 |
-
working_days = st.sidebar.slider("
|
31 |
working_days = int(working_days)
|
32 |
# downloading the last 10 days to make the prediction
|
33 |
|
|
|
27 |
|
28 |
model = keras.models.load_model('model_stock_prices.h5')
|
29 |
|
30 |
+
working_days = st.sidebar.slider("Show the historical data of the following last working days", min_value = 10, max_value=20)
|
31 |
working_days = int(working_days)
|
32 |
# downloading the last 10 days to make the prediction
|
33 |
|