Skip to content
Merged
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
1 change: 1 addition & 0 deletions scripts/verify_corpus.py
Original file line number Diff line number Diff line change
Expand Up @@ -703,6 +703,7 @@ def _split_interior(pairs: list[tuple[TradePair, TradePair]]) -> list[tuple[Trad
f" PnL p90 delta: {pnl_p90 * 100:8.4f}% ({check(pnl_ok)})\n"
f" MAE p90 delta: {mae_p90 * 100:8.4f}% ({check(mae_ok)})\n"
f" -- report-only (not gated) --\n"
f" Entry/Exit p99 delta: {percentile(entry_deltas,0.99)*100:.4f}% / {percentile(exit_deltas,0.99)*100:.4f}%\n"
f" Entry/Exit/PnL p100: {entry_p100*100:.4f}% / {exit_p100*100:.4f}% / {pnl_p100*100:.4f}%\n"
f" Qty p90/p100 delta: {percentile(qty_deltas,0.90)*100:.4f}% / {qty_p100*100:.4f}%\n"
f" PnL% p90/p100 (pts): {percentile(pnlpct_deltas,0.90):.4f} / {pnlpct_p100:.4f}\n"
Expand Down
Loading