eagle0504 commited on
Commit
abe8703
·
1 Parent(s): daa47a2

app updated

Browse files
Files changed (1) hide show
  1. app.py +6 -2
app.py CHANGED
@@ -34,7 +34,11 @@ with st.expander("Expand to fine tune the windows:"):
34
  "Select signal window size", min_value=2, max_value=250, value=9
35
  )
36
  values = st.sidebar.slider(
37
- "Select a range of values", min_value=-100, max_value=100, value=(-10, 10), step=1
 
 
 
 
38
  )
39
 
40
  option = st.sidebar.selectbox(
@@ -42,7 +46,7 @@ option = st.sidebar.selectbox(
42
  )
43
  st.sidebar.markdown(
44
  f"""
45
- ## To access the code, please go [here](https://huggingface.co/spaces/eagle0504/technical-trader).
46
  """
47
  )
48
 
 
34
  "Select signal window size", min_value=2, max_value=250, value=9
35
  )
36
  values = st.sidebar.slider(
37
+ "Select a range of values",
38
+ min_value=-100,
39
+ max_value=100,
40
+ value=(-10, 10),
41
+ step=1,
42
  )
43
 
44
  option = st.sidebar.selectbox(
 
46
  )
47
  st.sidebar.markdown(
48
  f"""
49
+ ## URL of the app: [here](https://huggingface.co/spaces/eagle0504/technical-trader).
50
  """
51
  )
52