docs: fix inaccuracies found during documentation accuracy review

- 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>
This commit is contained in:
Devid HW
2026-04-25 09:14:44 +07:00
co-authored by Claude Sonnet 4.6
parent 4c34ae236c
commit 3ad67d4c57
4 changed files with 18 additions and 12 deletions
+3 -2
View File
@@ -82,8 +82,9 @@ growing (test done), waits 30 seconds polling for the HTML file, then kills `ter
unconditionally. If the HTML appears during the wait it is extracted; otherwise journal extraction
provides deal counts and final balance (but no per-deal P&L).
**To maximise HTML report chances:** Use `inactivity_kill_secs=120` (default) with `shutdown=true`
(default). This gives MT5 120s of quiet time + 30s of HTML-wait before the kill.
**To maximise HTML report chances:** Pass `inactivity_kill_secs=120` explicitly (it is disabled by
default). With `shutdown=true` (default) this gives MT5 120s of quiet time + 30s of HTML-wait before
the kill.
```
launch_backtest(expert: "MyEA", shutdown: true, inactivity_kill_secs: 120)