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
Files changed (1) hide show
  1. app.py +5 -5
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': 1000,
888
- 'Geomean': 100,
889
- 'Weighted Own': 100,
890
- 'median': 100,
891
- 'Finish_percentile': 100
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'):