get_backtest_result
Retrieve the status and summary of a backtest job using its job ID. Returns metrics and metadata once the job completes.
Instructions
Fetch status and summary for a backtest job stored in SQLite.
Args:
job_id: Job identifier returned by run_backtest_dynamic.
Returns:
{"ok": true, "job_id": str, "status": str, "job_type": str, "error_message": str|null, "result": dict|null} where result holds
metrics and metadata when status is "done". On unknown job:
{"ok": false, "error": str}.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| job_id | Yes |