Get exit status for a position
curl --request GET \
--url https://api.example.com/api/graph/v1/positions/{position_id}/exit-statusimport requests
url = "https://api.example.com/api/graph/v1/positions/{position_id}/exit-status"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://api.example.com/api/graph/v1/positions/{position_id}/exit-status', 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/graph/v1/positions/{position_id}/exit-status",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.example.com/api/graph/v1/positions/{position_id}/exit-status"
req, _ := http.NewRequest("GET", url, nil)
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.example.com/api/graph/v1/positions/{position_id}/exit-status")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.example.com/api/graph/v1/positions/{position_id}/exit-status")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
response = http.request(request)
puts response.read_body{
"position_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"status": {},
"profit_targets": [
{}
],
"stop_losses": [
{}
]
}{
"detail": [
{
"loc": [
"<string>"
],
"msg": "<string>",
"type": "<string>",
"input": "<unknown>",
"ctx": {}
}
]
}Exit Status
Get exit status for a position
Get comprehensive exit status for an open position.
## Response Includes
- **Position Info**: symbol, entry_price, current_price, unrealized P/L
- **Time Tracking**: entry_time, time_in_trade, DTE tier
- **Targets**: Active profit targets with levels and exit percentages
- **Stops**: Current stop, trailing stop configuration
- **Invalidations**: Active invalidation triggers
- **DTE Rules**: Applicable DTE-based exit rules and actions
## DTE Tiers (v3.1 spec)
| DTE | No Progress Window | Action |
|-----|-------------------|--------|
| 0-2 | 30 min | Exit 100% |
| 3-7 | 60 min | Reduce 50% |
| 8-14 | 90 min | Reduce 50% |
| 15-29 | 4 hours | Review |
| 30-60 | 1 day | Assess D2/D5/D10 |
| 60+ | 5 days | Assess W2/W4 |
## Performance Target
<200ms response time.
GET
/
api
/
graph
/
v1
/
positions
/
{position_id}
/
exit-status
Get exit status for a position
curl --request GET \
--url https://api.example.com/api/graph/v1/positions/{position_id}/exit-statusimport requests
url = "https://api.example.com/api/graph/v1/positions/{position_id}/exit-status"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://api.example.com/api/graph/v1/positions/{position_id}/exit-status', 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/graph/v1/positions/{position_id}/exit-status",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.example.com/api/graph/v1/positions/{position_id}/exit-status"
req, _ := http.NewRequest("GET", url, nil)
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.example.com/api/graph/v1/positions/{position_id}/exit-status")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.example.com/api/graph/v1/positions/{position_id}/exit-status")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
response = http.request(request)
puts response.read_body{
"position_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"status": {},
"profit_targets": [
{}
],
"stop_losses": [
{}
]
}{
"detail": [
{
"loc": [
"<string>"
],
"msg": "<string>",
"type": "<string>",
"input": "<unknown>",
"ctx": {}
}
]
}Path Parameters
UUID of the position