check_resolutions
Monitor open trades for market resolution to update profit and loss calculations. This tool helps traders track pending outcomes and maintain accurate financial records.
Instructions
Check all open trades for market resolution and update P&L.
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- src/rekko_mcp/server.py:431-434 (handler)The tool check_resolutions is defined here, decorated with @mcp.tool() for registration, and invokes the /v1/trades/resolve endpoint.
@mcp.tool() async def check_resolutions() -> str: """Check all open trades for market resolution and update P&L.""" return await _request("POST", "/v1/trades/resolve")