QuantumLearner commited on
Commit
0e7ec56
·
verified ·
1 Parent(s): fbe7b64

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -91,7 +91,7 @@ with st.sidebar.expander("Input Parameters", expanded=True):
91
  # Parameters for the selected method inside an expander, open by default
92
  with st.sidebar.expander("Parameters", expanded=True):
93
  window_size = st.slider('Window Size', min_value=5, max_value=50, value=20, help="Set the window size for the sliding window analysis.")
94
- threshold = st.slider('Alert Threshold', min_value=0.05, max_value=0.2, value=0.075, step=0.005, help="Set the threshold for detecting significant changes in price dynamics.")
95
 
96
  # Run Analysis button in the sidebar
97
  if st.sidebar.button('Run Analysis'):
 
91
  # Parameters for the selected method inside an expander, open by default
92
  with st.sidebar.expander("Parameters", expanded=True):
93
  window_size = st.slider('Window Size', min_value=5, max_value=50, value=20, help="Set the window size for the sliding window analysis.")
94
+ threshold = st.slider('Alert Threshold', min_value=0.02, max_value=0.2, value=0.075, step=0.005, help="Set the threshold for detecting significant changes in price dynamics.")
95
 
96
  # Run Analysis button in the sidebar
97
  if st.sidebar.button('Run Analysis'):