QuantumLearner commited on
Commit
ea932e1
·
verified ·
1 Parent(s): 7bb24fa

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
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 Decrease Percentage", 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 Percentage", value=10, min_value=1, max_value=100, step=1,
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