Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
|
@@ -493,7 +493,7 @@ if 'data' in st.session_state:
|
|
| 493 |
help="Select to apply Simple Moving Average (SMA) to the stock price."
|
| 494 |
)
|
| 495 |
|
| 496 |
-
sma_period = st.
|
| 497 |
'SMA Period',
|
| 498 |
min_value=1,
|
| 499 |
value=st.session_state.get('sma_period', 50),
|
|
|
|
| 493 |
help="Select to apply Simple Moving Average (SMA) to the stock price."
|
| 494 |
)
|
| 495 |
|
| 496 |
+
sma_period = st.number_input(
|
| 497 |
'SMA Period',
|
| 498 |
min_value=1,
|
| 499 |
value=st.session_state.get('sma_period', 50),
|