suryanshs16103
commited on
Commit
•
689c2ed
1
Parent(s):
ecb87d8
Update app.py
Browse files
app.py
CHANGED
@@ -171,9 +171,9 @@ def main():
|
|
171 |
st.write("Enter details to generate regression lines on cryptocurrency candlesticks.")
|
172 |
|
173 |
currency = st.text_input("Currency", "BTC")
|
174 |
-
interval = st.selectbox("Interval", ["
|
175 |
startdate = st.text_input("Start Date (MM/DD/YYYY)", "01/01/2023")
|
176 |
-
enddate = st.text_input("End Date (MM/DD/YYYY)", "01/
|
177 |
threshold_channel_len = st.number_input("Threshold Channel Length", min_value=1, max_value=1000, value=10)
|
178 |
|
179 |
if st.button("Generate Plot"):
|
|
|
171 |
st.write("Enter details to generate regression lines on cryptocurrency candlesticks.")
|
172 |
|
173 |
currency = st.text_input("Currency", "BTC")
|
174 |
+
interval = st.selectbox("Interval", ["4h", "1d", "1w"])
|
175 |
startdate = st.text_input("Start Date (MM/DD/YYYY)", "01/01/2023")
|
176 |
+
enddate = st.text_input("End Date (MM/DD/YYYY)", "02/01/2023")
|
177 |
threshold_channel_len = st.number_input("Threshold Channel Length", min_value=1, max_value=1000, value=10)
|
178 |
|
179 |
if st.button("Generate Plot"):
|