Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ description = "Shared crypto strategy catalog and implementations"
readme = "README.md"
requires-python = ">=3.11"
dependencies = [
"quant-platform-kit @ git+https://github.com/QuantStrategyLab/QuantPlatformKit.git@53b2ca73a5a50257b5d1a3c769b75c40924e4ba6",
"quant-platform-kit @ git+https://github.com/QuantStrategyLab/QuantPlatformKit.git@69a0256934d081b5ef309a885384b9eb9f62cf90",
]

[tool.setuptools]
Expand Down
13 changes: 10 additions & 3 deletions scripts/research_crypto_combo_backtest.py
Original file line number Diff line number Diff line change
Expand Up @@ -503,7 +503,14 @@ def main() -> None:
parser.add_argument(
"--orchestrator",
action="store_true",
help="Thin path via CryptoEquityComboBacktestRunner (single dynamic combo window).",
help="Deprecated compatibility flag; default path already uses BacktestOrchestrator.",
)
parser.add_argument(
"--legacy",
"--analysis",
dest="legacy",
action="store_true",
help="Run the legacy multi-strategy simulation path instead of BacktestOrchestrator.",
)
args = parser.parse_args()

Expand All @@ -515,10 +522,10 @@ def main() -> None:
)

print("Running backtest simulation ...", file=sys.stderr)
results = run_backtest(prices, orchestrator=args.orchestrator)
results = run_backtest(prices, orchestrator=not args.legacy)
print(" Done.", file=sys.stderr)

if args.orchestrator:
if not args.legacy:
payload = results["orchestrator"]
text = json.dumps(
{
Expand Down
2 changes: 1 addition & 1 deletion tests/test_contract_governance.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
"binance",
"BINANCE_",
)
QPK_HEALTH_COMMIT = "53b2ca73a5a50257b5d1a3c769b75c40924e4ba6"
QPK_HEALTH_COMMIT = "69a0256934d081b5ef309a885384b9eb9f62cf90"
QPK_OLD_HEALTHLESS_COMMIT = "86f03fb8e83c0d372f4e1c64cccf3e6da50b8dd4"


Expand Down
4 changes: 2 additions & 2 deletions uv.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading