Spaces:
Runtime error
Runtime error
Update ui/components.py
Browse files- ui/components.py +4 -3
ui/components.py
CHANGED
|
@@ -1,7 +1,7 @@
|
|
| 1 |
-
#
|
| 2 |
|
| 3 |
import streamlit as st
|
| 4 |
-
from
|
| 5 |
|
| 6 |
def create_sidebar():
|
| 7 |
"""Create the sidebar with analysis options"""
|
|
@@ -100,4 +100,5 @@ def show_save_options():
|
|
| 100 |
key="save_chat_name"
|
| 101 |
)
|
| 102 |
save_btn = st.button("Save", key="save_chat_btn")
|
| 103 |
-
return save_name if save_btn else None
|
|
|
|
|
|
| 1 |
+
# ui/components.py
|
| 2 |
|
| 3 |
import streamlit as st
|
| 4 |
+
from config.settings import CHART_PATTERNS, TECHNICAL_INDICATORS
|
| 5 |
|
| 6 |
def create_sidebar():
|
| 7 |
"""Create the sidebar with analysis options"""
|
|
|
|
| 100 |
key="save_chat_name"
|
| 101 |
)
|
| 102 |
save_btn = st.button("Save", key="save_chat_btn")
|
| 103 |
+
return save_name if save_btn else None
|
| 104 |
+
|