James McCool
commited on
Commit
·
437b6cc
1
Parent(s):
bb24797
Update trimming dictionary max values in app.py: adjust ownership type thresholds to improve filtering accuracy and maintain consistency in portfolio management.
Browse files
app.py
CHANGED
@@ -884,11 +884,11 @@ with tab2:
|
|
884 |
col1, col2 = st.columns([2, 8])
|
885 |
with col1:
|
886 |
trimming_dict_maxes = {
|
887 |
-
'Own':
|
888 |
-
'Geomean':
|
889 |
-
'Weighted Own':
|
890 |
-
'median':
|
891 |
-
'Finish_percentile':
|
892 |
}
|
893 |
with st.expander('Macro Filter Options'):
|
894 |
with st.form(key='macro_filter_form'):
|
|
|
884 |
col1, col2 = st.columns([2, 8])
|
885 |
with col1:
|
886 |
trimming_dict_maxes = {
|
887 |
+
'Own': 500.0,
|
888 |
+
'Geomean': 500.0,
|
889 |
+
'Weighted Own': 500.0,
|
890 |
+
'median': 500.0,
|
891 |
+
'Finish_percentile': 1.0
|
892 |
}
|
893 |
with st.expander('Macro Filter Options'):
|
894 |
with st.form(key='macro_filter_form'):
|