There was an error while loading. Please reload this page.
2 parents 7fbcd8e + 34e97c3 commit 653fc6fCopy full SHA for 653fc6f
1 file changed
src/hk_equity_strategies/combo_entrypoints.py
@@ -19,7 +19,7 @@ def _require_market_data(ctx: StrategyContext, key: str) -> Any:
19
20
21
def evaluate_hk_equity_combo(ctx: StrategyContext) -> StrategyDecision:
22
- config = {**hk_equity_combo_manifest.default_config, **ctx.runtime_config or {}}
+ config = {**hk_equity_combo_manifest.default_config, **(ctx.runtime_config or {})}
23
config.pop("execution_cash_reserve_ratio", None)
24
config.pop("rebalance_frequency", None)
25
combined, metadata = hk_equity_combo.build_target_weights(
0 commit comments