add_journal_tradewriteOwner-scopedAdd a manual trade to one of your custom journal accounts (only custom accounts accept manual trades).
| Param | Type | Req. | Description |
|---|---|---|---|
| account_id | string | yes | A custom account_id from list_journal_accounts. |
| side | "buy" | "sell" | yes | Trade direction. |
| symbol | string | yes | Instrument symbol. |
| profit | number | yes | Net profit/loss. |
| open_price | number | no | Entry price. |
| close_price | number | no | Exit price. |
| open_time | string (ISO) | no | Open time. |
| close_time | string (ISO) | no | Close time. |
| volume | number | no | Lot size. |
Example prompts
- “Log a winning EURUSD buy for 195 on my custom account.”
- “Add a manual trade to my journal: sold gold, lost 80.”
Example call
{ "name": "add_journal_trade", "arguments": { "account_id": "12", "side": "buy", "symbol": "EURUSD", "profit": 195, "volume": 0.5 } }