diff options
| -rw-r--r-- | python/load_globeop_report.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/python/load_globeop_report.py b/python/load_globeop_report.py index 7210b062..519ecaa0 100644 --- a/python/load_globeop_report.py +++ b/python/load_globeop_report.py @@ -39,6 +39,7 @@ def read_valuation_report(f): del df["CounterParty"] df = df.rename(columns={"CounterPartyCode": "counterparty"}) df.counterparty = df.counterparty.str.replace("BARC$", "BARCNY", regex=True) + df.counterparty = df.counterparty.str.replace("BTLCNY", "BTIG", regex=True) if "Strat" in df: df.Strat = df.Strat.str.replace( "^(SERCGMAST__|BOS_PAT_BOWDOIN__){1,2}(M_|SER_)?", "", 1, regex=True |
