diff options
Diffstat (limited to 'python/reallocate_iam.py')
| -rw-r--r-- | python/reallocate_iam.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/python/reallocate_iam.py b/python/reallocate_iam.py index 4789c239..e514e925 100644 --- a/python/reallocate_iam.py +++ b/python/reallocate_iam.py @@ -45,6 +45,7 @@ def generate_new_iam_offset_trades(fund: str, cob: datetime.date, conn) -> "Iter trade_data = row._asdict() | { "is_offset": True, "folder": "M_CSH_CASH", + "portfolio": "CASH", "trade_date": cob, } yield IAMDeal.from_dict(**trade_data) @@ -100,7 +101,7 @@ def main(): """Generates IAM files for globeop""" conn = dbconn("dawndb") args = parse_args() - for fund in ("BOWDST",): + for fund in ("SERCGMAST", "BOWDST"): build_iam(fund, args.cob, conn, not args.no_upload) |
