Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
|
@@ -38,11 +38,11 @@ with st.expander("How It Works", expanded=False):
|
|
| 38 |
with st.sidebar.expander("General Settings", expanded=True):
|
| 39 |
ticker_input = st.text_input("Ticker Symbol", value="NVDA")
|
| 40 |
lower_pct = st.number_input(
|
| 41 |
-
"Price
|
| 42 |
help="For 2D plots: lower threshold = current price * (1 - percentage/100)"
|
| 43 |
)
|
| 44 |
upper_pct = st.number_input(
|
| 45 |
-
"Price
|
| 46 |
help="For 2D plots: upper threshold = current price * (1 + percentage/100)"
|
| 47 |
)
|
| 48 |
|
|
|
|
| 38 |
with st.sidebar.expander("General Settings", expanded=True):
|
| 39 |
ticker_input = st.text_input("Ticker Symbol", value="NVDA")
|
| 40 |
lower_pct = st.number_input(
|
| 41 |
+
"Price % Decrease", value=10, min_value=1, max_value=100, step=1,
|
| 42 |
help="For 2D plots: lower threshold = current price * (1 - percentage/100)"
|
| 43 |
)
|
| 44 |
upper_pct = st.number_input(
|
| 45 |
+
"Price % Increase", value=10, min_value=1, max_value=100, step=1,
|
| 46 |
help="For 2D plots: upper threshold = current price * (1 + percentage/100)"
|
| 47 |
)
|
| 48 |
|