Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
|
@@ -102,7 +102,7 @@ def page2():
|
|
| 102 |
""")
|
| 103 |
|
| 104 |
# Sidebar Inputs within an Expander
|
| 105 |
-
with st.sidebar.expander("
|
| 106 |
cik_input = st.text_input("Enter CIK", value="0001067983", help="Enter the investor's CIK, which is a unique SEC identifier (e.g., 0001067983).")
|
| 107 |
start_date = st.date_input("Select Start Date", value=datetime(2021, 9, 30), help="Choose the earliest quarter-end date for which to retrieve portfolio allocation data. Data will be fetched from this date onward.")
|
| 108 |
top_n = st.number_input("Top N Groups", min_value=1, max_value=100, value=10, step=1, help="Set the number of top groups (by cumulative weight) to display in the trend charts.")
|
|
|
|
| 102 |
""")
|
| 103 |
|
| 104 |
# Sidebar Inputs within an Expander
|
| 105 |
+
with st.sidebar.expander("Inputs", expanded=True):
|
| 106 |
cik_input = st.text_input("Enter CIK", value="0001067983", help="Enter the investor's CIK, which is a unique SEC identifier (e.g., 0001067983).")
|
| 107 |
start_date = st.date_input("Select Start Date", value=datetime(2021, 9, 30), help="Choose the earliest quarter-end date for which to retrieve portfolio allocation data. Data will be fetched from this date onward.")
|
| 108 |
top_n = st.number_input("Top N Groups", min_value=1, max_value=100, value=10, step=1, help="Set the number of top groups (by cumulative weight) to display in the trend charts.")
|