3ad67d4c57
- CHANGELOG: inactivity_kill_secs default is disabled (None), not 120 - TROUBLESHOOTING: clarify inactivity_kill_secs is opt-in (must be passed explicitly); correct "default 120" claim - MCP_TOOLS: inactivity_kill_secs is disabled by default; add note that Wine/macOS may not exit naturally even with ShutdownTerminal=1 - handlers/backtest.rs: remove stale comment claiming inactivity watchdog is "intentionally skipped when shutdown=true" — replaced with accurate description of the new 30s HTML-wait + kill behavior Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2.6 KiB
2.6 KiB
Changelog
[1.32.4] — 2026-04-25
Fixed
- HTML report extraction:
ShutdownTerminal=1does not causeterminal64.exeto exit on Wine/macOS. Inactivity watchdog now waits 30 s for the report file after the tester log goes quiet, then kills MT5 unconditionally — no longer depends on natural process exit. - Duplicate deals: tester agent log writes each deal twice; deduplicated via
HashSet<deal_number>inparse_journal_deals. - Entry direction inference: all journal deals were marked
entry="in"because no direction info exists in the log. Fixed with a per-symbol position tracker (signed lot accumulation) to infer "in" / "out" correctly. list_dealsreturning 0 results:is_closed_trade()was gating onprofit != 0.0; journal deals legitimately have zero profit. Removed the profit gate.- Wrong tester log selected:
Agent-0.0.0.0logs only contain startup lines, not deal lines.find_active_tester_agent_lognow prefersAgent-127.0.0.1and tiebreaks by file size.
Added
launch_backtestexposesshutdown(defaulttrue) andinactivity_kill_secs(default: disabled; set to e.g.120to enable the inactivity watchdog) as explicit tool parameters.- Report DB stores deals in SQLite; all analytics tools resolve by
report_id/report_dir/ latest.
Verified
- 1-month DPS21/XAUUSD.cent/M5 backtest produces full HTML report: win_rate=70%, profit_factor=0.77, sharpe=-3.61, max_dd=6.93%. All 17 analytics tools return real data.
[1.31.5] — 2026-04-22
- feat: add check_update and update tools with background auto-check
- release: v1.31.4
- fix: update all scripts for correctness and consistency
- release: v1.31.3
- docs: clean up public repo — remove IDE files, fix stale refs
- release: v1.31.2
- refactor: reduce handler boilerplate in analysis and experts modules
- fix: registryType mcpbPackageType → mcpb
[1.31.4] — 2026-04-22
- fix: update all scripts for correctness and consistency
- release: v1.31.3
- docs: clean up public repo — remove IDE files, fix stale refs
- release: v1.31.2
- refactor: reduce handler boilerplate in analysis and experts modules
- fix: registryType mcpbPackageType → mcpb
[1.31.3] — 2026-04-22
- docs: clean up public repo — remove IDE files, fix stale refs
- release: v1.31.2
- refactor: reduce handler boilerplate in analysis and experts modules
- fix: registryType mcpbPackageType → mcpb
[1.31.2] — 2026-04-22
- refactor: reduce handler boilerplate in analysis and experts modules
- fix: registryType mcpbPackageType → mcpb
[1.31.1] — 2026-04-22
- Minor improvements and bug fixes