Agent modifies position (Open → Open)
curl --request PATCH \
--url https://api.example.com/api/internal/trade-cards/{card_id}/position \
--header 'Content-Type: application/json' \
--data '
{
"current_shares": 123,
"current_avg_price": 123,
"unrealized_pnl": 123,
"exit_rules": {},
"market_snapshot": {
"ts": "2023-11-07T05:31:56Z",
"bar_symbol": "",
"bar_open": 123,
"bar_high": 123,
"bar_low": 123,
"bar_close": 123,
"bar_volume": 123,
"bar_vwap": 123,
"quote_bid": 123,
"quote_ask": 123,
"quote_bid_size": 123,
"quote_ask_size": 123,
"indicators": {},
"regime_dominant": "",
"regime_confidence": 123,
"signals": {},
"risk_day_dollars": 123,
"risk_pct_cap": 123,
"risk_loss_remaining": 123
},
"reason": ""
}
'import requests
url = "https://api.example.com/api/internal/trade-cards/{card_id}/position"
payload = {
"current_shares": 123,
"current_avg_price": 123,
"unrealized_pnl": 123,
"exit_rules": {},
"market_snapshot": {
"ts": "2023-11-07T05:31:56Z",
"bar_symbol": "",
"bar_open": 123,
"bar_high": 123,
"bar_low": 123,
"bar_close": 123,
"bar_volume": 123,
"bar_vwap": 123,
"quote_bid": 123,
"quote_ask": 123,
"quote_bid_size": 123,
"quote_ask_size": 123,
"indicators": {},
"regime_dominant": "",
"regime_confidence": 123,
"signals": {},
"risk_day_dollars": 123,
"risk_pct_cap": 123,
"risk_loss_remaining": 123
},
"reason": ""
}
headers = {"Content-Type": "application/json"}
response = requests.patch(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'PATCH',
headers: {'Content-Type': 'application/json'},
body: JSON.stringify({
current_shares: 123,
current_avg_price: 123,
unrealized_pnl: 123,
exit_rules: {},
market_snapshot: {
ts: '2023-11-07T05:31:56Z',
bar_symbol: '',
bar_open: 123,
bar_high: 123,
bar_low: 123,
bar_close: 123,
bar_volume: 123,
bar_vwap: 123,
quote_bid: 123,
quote_ask: 123,
quote_bid_size: 123,
quote_ask_size: 123,
indicators: {},
regime_dominant: '',
regime_confidence: 123,
signals: {},
risk_day_dollars: 123,
risk_pct_cap: 123,
risk_loss_remaining: 123
},
reason: ''
})
};
fetch('https://api.example.com/api/internal/trade-cards/{card_id}/position', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.example.com/api/internal/trade-cards/{card_id}/position",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "PATCH",
CURLOPT_POSTFIELDS => json_encode([
'current_shares' => 123,
'current_avg_price' => 123,
'unrealized_pnl' => 123,
'exit_rules' => [
],
'market_snapshot' => [
'ts' => '2023-11-07T05:31:56Z',
'bar_symbol' => '',
'bar_open' => 123,
'bar_high' => 123,
'bar_low' => 123,
'bar_close' => 123,
'bar_volume' => 123,
'bar_vwap' => 123,
'quote_bid' => 123,
'quote_ask' => 123,
'quote_bid_size' => 123,
'quote_ask_size' => 123,
'indicators' => [
],
'regime_dominant' => '',
'regime_confidence' => 123,
'signals' => [
],
'risk_day_dollars' => 123,
'risk_pct_cap' => 123,
'risk_loss_remaining' => 123
],
'reason' => ''
]),
CURLOPT_HTTPHEADER => [
"Content-Type: application/json"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://api.example.com/api/internal/trade-cards/{card_id}/position"
payload := strings.NewReader("{\n \"current_shares\": 123,\n \"current_avg_price\": 123,\n \"unrealized_pnl\": 123,\n \"exit_rules\": {},\n \"market_snapshot\": {\n \"ts\": \"2023-11-07T05:31:56Z\",\n \"bar_symbol\": \"\",\n \"bar_open\": 123,\n \"bar_high\": 123,\n \"bar_low\": 123,\n \"bar_close\": 123,\n \"bar_volume\": 123,\n \"bar_vwap\": 123,\n \"quote_bid\": 123,\n \"quote_ask\": 123,\n \"quote_bid_size\": 123,\n \"quote_ask_size\": 123,\n \"indicators\": {},\n \"regime_dominant\": \"\",\n \"regime_confidence\": 123,\n \"signals\": {},\n \"risk_day_dollars\": 123,\n \"risk_pct_cap\": 123,\n \"risk_loss_remaining\": 123\n },\n \"reason\": \"\"\n}")
req, _ := http.NewRequest("PATCH", url, payload)
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.patch("https://api.example.com/api/internal/trade-cards/{card_id}/position")
.header("Content-Type", "application/json")
.body("{\n \"current_shares\": 123,\n \"current_avg_price\": 123,\n \"unrealized_pnl\": 123,\n \"exit_rules\": {},\n \"market_snapshot\": {\n \"ts\": \"2023-11-07T05:31:56Z\",\n \"bar_symbol\": \"\",\n \"bar_open\": 123,\n \"bar_high\": 123,\n \"bar_low\": 123,\n \"bar_close\": 123,\n \"bar_volume\": 123,\n \"bar_vwap\": 123,\n \"quote_bid\": 123,\n \"quote_ask\": 123,\n \"quote_bid_size\": 123,\n \"quote_ask_size\": 123,\n \"indicators\": {},\n \"regime_dominant\": \"\",\n \"regime_confidence\": 123,\n \"signals\": {},\n \"risk_day_dollars\": 123,\n \"risk_pct_cap\": 123,\n \"risk_loss_remaining\": 123\n },\n \"reason\": \"\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.example.com/api/internal/trade-cards/{card_id}/position")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Patch.new(url)
request["Content-Type"] = 'application/json'
request.body = "{\n \"current_shares\": 123,\n \"current_avg_price\": 123,\n \"unrealized_pnl\": 123,\n \"exit_rules\": {},\n \"market_snapshot\": {\n \"ts\": \"2023-11-07T05:31:56Z\",\n \"bar_symbol\": \"\",\n \"bar_open\": 123,\n \"bar_high\": 123,\n \"bar_low\": 123,\n \"bar_close\": 123,\n \"bar_volume\": 123,\n \"bar_vwap\": 123,\n \"quote_bid\": 123,\n \"quote_ask\": 123,\n \"quote_bid_size\": 123,\n \"quote_ask_size\": 123,\n \"indicators\": {},\n \"regime_dominant\": \"\",\n \"regime_confidence\": 123,\n \"signals\": {},\n \"risk_day_dollars\": 123,\n \"risk_pct_cap\": 123,\n \"risk_loss_remaining\": 123\n },\n \"reason\": \"\"\n}"
response = http.request(request)
puts response.read_body{
"card_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"action": "<string>",
"column_state": "",
"substate": "<string>",
"success": true,
"message": ""
}{
"detail": [
{
"loc": [
"<string>"
],
"msg": "<string>",
"type": "<string>",
"input": "<unknown>",
"ctx": {}
}
]
}Internal Trade Cards
Agent modifies position (Open → Open)
Agent modifies an open position (stops, targets, P&L update).
PATCH
/
api
/
internal
/
trade-cards
/
{card_id}
/
position
Agent modifies position (Open → Open)
curl --request PATCH \
--url https://api.example.com/api/internal/trade-cards/{card_id}/position \
--header 'Content-Type: application/json' \
--data '
{
"current_shares": 123,
"current_avg_price": 123,
"unrealized_pnl": 123,
"exit_rules": {},
"market_snapshot": {
"ts": "2023-11-07T05:31:56Z",
"bar_symbol": "",
"bar_open": 123,
"bar_high": 123,
"bar_low": 123,
"bar_close": 123,
"bar_volume": 123,
"bar_vwap": 123,
"quote_bid": 123,
"quote_ask": 123,
"quote_bid_size": 123,
"quote_ask_size": 123,
"indicators": {},
"regime_dominant": "",
"regime_confidence": 123,
"signals": {},
"risk_day_dollars": 123,
"risk_pct_cap": 123,
"risk_loss_remaining": 123
},
"reason": ""
}
'import requests
url = "https://api.example.com/api/internal/trade-cards/{card_id}/position"
payload = {
"current_shares": 123,
"current_avg_price": 123,
"unrealized_pnl": 123,
"exit_rules": {},
"market_snapshot": {
"ts": "2023-11-07T05:31:56Z",
"bar_symbol": "",
"bar_open": 123,
"bar_high": 123,
"bar_low": 123,
"bar_close": 123,
"bar_volume": 123,
"bar_vwap": 123,
"quote_bid": 123,
"quote_ask": 123,
"quote_bid_size": 123,
"quote_ask_size": 123,
"indicators": {},
"regime_dominant": "",
"regime_confidence": 123,
"signals": {},
"risk_day_dollars": 123,
"risk_pct_cap": 123,
"risk_loss_remaining": 123
},
"reason": ""
}
headers = {"Content-Type": "application/json"}
response = requests.patch(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'PATCH',
headers: {'Content-Type': 'application/json'},
body: JSON.stringify({
current_shares: 123,
current_avg_price: 123,
unrealized_pnl: 123,
exit_rules: {},
market_snapshot: {
ts: '2023-11-07T05:31:56Z',
bar_symbol: '',
bar_open: 123,
bar_high: 123,
bar_low: 123,
bar_close: 123,
bar_volume: 123,
bar_vwap: 123,
quote_bid: 123,
quote_ask: 123,
quote_bid_size: 123,
quote_ask_size: 123,
indicators: {},
regime_dominant: '',
regime_confidence: 123,
signals: {},
risk_day_dollars: 123,
risk_pct_cap: 123,
risk_loss_remaining: 123
},
reason: ''
})
};
fetch('https://api.example.com/api/internal/trade-cards/{card_id}/position', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.example.com/api/internal/trade-cards/{card_id}/position",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "PATCH",
CURLOPT_POSTFIELDS => json_encode([
'current_shares' => 123,
'current_avg_price' => 123,
'unrealized_pnl' => 123,
'exit_rules' => [
],
'market_snapshot' => [
'ts' => '2023-11-07T05:31:56Z',
'bar_symbol' => '',
'bar_open' => 123,
'bar_high' => 123,
'bar_low' => 123,
'bar_close' => 123,
'bar_volume' => 123,
'bar_vwap' => 123,
'quote_bid' => 123,
'quote_ask' => 123,
'quote_bid_size' => 123,
'quote_ask_size' => 123,
'indicators' => [
],
'regime_dominant' => '',
'regime_confidence' => 123,
'signals' => [
],
'risk_day_dollars' => 123,
'risk_pct_cap' => 123,
'risk_loss_remaining' => 123
],
'reason' => ''
]),
CURLOPT_HTTPHEADER => [
"Content-Type: application/json"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://api.example.com/api/internal/trade-cards/{card_id}/position"
payload := strings.NewReader("{\n \"current_shares\": 123,\n \"current_avg_price\": 123,\n \"unrealized_pnl\": 123,\n \"exit_rules\": {},\n \"market_snapshot\": {\n \"ts\": \"2023-11-07T05:31:56Z\",\n \"bar_symbol\": \"\",\n \"bar_open\": 123,\n \"bar_high\": 123,\n \"bar_low\": 123,\n \"bar_close\": 123,\n \"bar_volume\": 123,\n \"bar_vwap\": 123,\n \"quote_bid\": 123,\n \"quote_ask\": 123,\n \"quote_bid_size\": 123,\n \"quote_ask_size\": 123,\n \"indicators\": {},\n \"regime_dominant\": \"\",\n \"regime_confidence\": 123,\n \"signals\": {},\n \"risk_day_dollars\": 123,\n \"risk_pct_cap\": 123,\n \"risk_loss_remaining\": 123\n },\n \"reason\": \"\"\n}")
req, _ := http.NewRequest("PATCH", url, payload)
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.patch("https://api.example.com/api/internal/trade-cards/{card_id}/position")
.header("Content-Type", "application/json")
.body("{\n \"current_shares\": 123,\n \"current_avg_price\": 123,\n \"unrealized_pnl\": 123,\n \"exit_rules\": {},\n \"market_snapshot\": {\n \"ts\": \"2023-11-07T05:31:56Z\",\n \"bar_symbol\": \"\",\n \"bar_open\": 123,\n \"bar_high\": 123,\n \"bar_low\": 123,\n \"bar_close\": 123,\n \"bar_volume\": 123,\n \"bar_vwap\": 123,\n \"quote_bid\": 123,\n \"quote_ask\": 123,\n \"quote_bid_size\": 123,\n \"quote_ask_size\": 123,\n \"indicators\": {},\n \"regime_dominant\": \"\",\n \"regime_confidence\": 123,\n \"signals\": {},\n \"risk_day_dollars\": 123,\n \"risk_pct_cap\": 123,\n \"risk_loss_remaining\": 123\n },\n \"reason\": \"\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.example.com/api/internal/trade-cards/{card_id}/position")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Patch.new(url)
request["Content-Type"] = 'application/json'
request.body = "{\n \"current_shares\": 123,\n \"current_avg_price\": 123,\n \"unrealized_pnl\": 123,\n \"exit_rules\": {},\n \"market_snapshot\": {\n \"ts\": \"2023-11-07T05:31:56Z\",\n \"bar_symbol\": \"\",\n \"bar_open\": 123,\n \"bar_high\": 123,\n \"bar_low\": 123,\n \"bar_close\": 123,\n \"bar_volume\": 123,\n \"bar_vwap\": 123,\n \"quote_bid\": 123,\n \"quote_ask\": 123,\n \"quote_bid_size\": 123,\n \"quote_ask_size\": 123,\n \"indicators\": {},\n \"regime_dominant\": \"\",\n \"regime_confidence\": 123,\n \"signals\": {},\n \"risk_day_dollars\": 123,\n \"risk_pct_cap\": 123,\n \"risk_loss_remaining\": 123\n },\n \"reason\": \"\"\n}"
response = http.request(request)
puts response.read_body{
"card_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"action": "<string>",
"column_state": "",
"substate": "<string>",
"success": true,
"message": ""
}{
"detail": [
{
"loc": [
"<string>"
],
"msg": "<string>",
"type": "<string>",
"input": "<unknown>",
"ctx": {}
}
]
}Path Parameters
Body
application/json
Agent modifies an open position (stop/target/scale adjustments).
Updated exit rules
Frozen picture of the market state at the moment an agent made a decision. Required on audit entries where actor=agent and the action changes card state. See spec §4.5.
Show child attributes
Show child attributes
Why the modification was made