add_trade_screenshotwriteOwner-scopedAttach a screenshot to a specific trade in the user's journal. Provide the image as base64.
| Param | Type | Req. | Description |
|---|---|---|---|
| account_kind | "mt" | "mt5" | no | Default mt5. |
| account_id | string | yes | An account_id from list_journal_accounts. |
| trade_key | string | yes | The trade identifier to attach to. |
| image_base64 | string | yes | Base64 image bytes (data URL prefix accepted). |
| content_type | string | no | Default image/png. |
| filename | string | no | Optional original filename. |
Example prompts
- “Attach this chart screenshot to trade 998877 on account 12.”
- “Save this image to my EURUSD trade from this morning.”
Example call
{ "name": "add_trade_screenshot", "arguments": { "account_id": "12", "trade_key": "998877", "image_base64": "iVBORw0KGgo..." } }