// First-party cookie auth: this runs in a signed-in trdrs session, not under an API key.
const res = await fetch('https://app.trdrs.co/api/operator/venues/{venueId}/accounts/{accountId}/risk-controls', {
method: 'POST',
headers: {
'content-type': 'application/json',
"Idempotency-Key": "example-request-1",
},
credentials: 'include',
body: JSON.stringify({
"dailyLossEnabled": true,
"dailyLossValue": 1500,
"weeklyLossEnabled": false,
"dailyProfitEnabled": false,
"weeklyProfitEnabled": false,
"eodCloseEnabled": true,
"eodCloseValue": 10
}),
})
const data = await res.json()curl -X POST 'https://app.trdrs.co/api/operator/venues/{venueId}/accounts/{accountId}/risk-controls' \
-b "session=$TRDRS_SESSION" \
-H 'Idempotency-Key: example-request-1' \
-H 'content-type: application/json' \
-d '{"dailyLossEnabled":true,"dailyLossValue":1500,"weeklyLossEnabled":false,"dailyProfitEnabled":false,"weeklyProfitEnabled":false,"eodCloseEnabled":true,"eodCloseValue":10}'import requests
url = "https://app.trdrs.co/api/operator/venues/{venueId}/accounts/{accountId}/risk-controls"
payload = {
"dailyLossEnabled": True,
"dailyLossValue": 1500,
"weeklyLossEnabled": False,
"dailyProfitEnabled": False,
"weeklyProfitEnabled": False,
"eodCloseEnabled": True,
"eodCloseValue": 10
}
headers = {
"cookie": "session=",
"Idempotency-Key": "<idempotency-key>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://app.trdrs.co/api/operator/venues/{venueId}/accounts/{accountId}/risk-controls",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'dailyLossEnabled' => true,
'dailyLossValue' => 1500,
'weeklyLossEnabled' => false,
'dailyProfitEnabled' => false,
'weeklyProfitEnabled' => false,
'eodCloseEnabled' => true,
'eodCloseValue' => 10
]),
CURLOPT_COOKIE => "session=",
CURLOPT_HTTPHEADER => [
"Content-Type: application/json",
"Idempotency-Key: <idempotency-key>"
],
]);
$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://app.trdrs.co/api/operator/venues/{venueId}/accounts/{accountId}/risk-controls"
payload := strings.NewReader("{\n \"dailyLossEnabled\": true,\n \"dailyLossValue\": 1500,\n \"weeklyLossEnabled\": false,\n \"dailyProfitEnabled\": false,\n \"weeklyProfitEnabled\": false,\n \"eodCloseEnabled\": true,\n \"eodCloseValue\": 10\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("cookie", "session=")
req.Header.Add("Idempotency-Key", "<idempotency-key>")
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.post("https://app.trdrs.co/api/operator/venues/{venueId}/accounts/{accountId}/risk-controls")
.header("cookie", "session=")
.header("Idempotency-Key", "<idempotency-key>")
.header("Content-Type", "application/json")
.body("{\n \"dailyLossEnabled\": true,\n \"dailyLossValue\": 1500,\n \"weeklyLossEnabled\": false,\n \"dailyProfitEnabled\": false,\n \"weeklyProfitEnabled\": false,\n \"eodCloseEnabled\": true,\n \"eodCloseValue\": 10\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://app.trdrs.co/api/operator/venues/{venueId}/accounts/{accountId}/risk-controls")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["cookie"] = 'session='
request["Idempotency-Key"] = '<idempotency-key>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"dailyLossEnabled\": true,\n \"dailyLossValue\": 1500,\n \"weeklyLossEnabled\": false,\n \"dailyProfitEnabled\": false,\n \"weeklyProfitEnabled\": false,\n \"eodCloseEnabled\": true,\n \"eodCloseValue\": 10\n}"
response = http.request(request)
puts response.read_body{
"accountId": "example-account",
"controls": {
"dailyLossEnabled": true,
"dailyLossValue": 1500,
"weeklyLossEnabled": false,
"weeklyLossValue": null,
"dailyProfitEnabled": false,
"dailyProfitValue": null,
"weeklyProfitEnabled": false,
"weeklyProfitValue": null,
"eodCloseEnabled": true,
"eodCloseValue": 10,
"updatedAt": 1757980800
},
"halted": false,
"lockReason": null
}{
"error": "invalid_instrument"
}{
"error": "invalid_instrument"
}{
"error": "invalid_instrument"
}{
"error": "invalid_instrument"
}{
"error": "invalid_instrument"
}{
"error": "invalid_instrument"
}{
"error": "invalid_instrument"
}{
"error": "invalid_instrument"
}Replace an account's five risk controls
Preview: served on the sandbox to every venue; production availability is arranged when a venue qualifies. Trading API keys and Partner keys do not authorize these routes. Requires a verified authorized operator session; writes require a trusted origin. risk:halt, because these are the automatic halts. Runs the same operation the Legacy Partner API route runs, and refuses the same things; this is the venue twin of it, not a second implementation. Replaces all five in one write; an enabled control carries a positive value, a disabled one carries null or nothing. eodCloseValue is whole minutes before the 16:00 CT close, 1 to 240. The trader’s own “prevent changes while locked” choice is not on this surface and survives the write. A replace is idempotent: the same body twice changes nothing the second time.
// First-party cookie auth: this runs in a signed-in trdrs session, not under an API key.
const res = await fetch('https://app.trdrs.co/api/operator/venues/{venueId}/accounts/{accountId}/risk-controls', {
method: 'POST',
headers: {
'content-type': 'application/json',
"Idempotency-Key": "example-request-1",
},
credentials: 'include',
body: JSON.stringify({
"dailyLossEnabled": true,
"dailyLossValue": 1500,
"weeklyLossEnabled": false,
"dailyProfitEnabled": false,
"weeklyProfitEnabled": false,
"eodCloseEnabled": true,
"eodCloseValue": 10
}),
})
const data = await res.json()curl -X POST 'https://app.trdrs.co/api/operator/venues/{venueId}/accounts/{accountId}/risk-controls' \
-b "session=$TRDRS_SESSION" \
-H 'Idempotency-Key: example-request-1' \
-H 'content-type: application/json' \
-d '{"dailyLossEnabled":true,"dailyLossValue":1500,"weeklyLossEnabled":false,"dailyProfitEnabled":false,"weeklyProfitEnabled":false,"eodCloseEnabled":true,"eodCloseValue":10}'import requests
url = "https://app.trdrs.co/api/operator/venues/{venueId}/accounts/{accountId}/risk-controls"
payload = {
"dailyLossEnabled": True,
"dailyLossValue": 1500,
"weeklyLossEnabled": False,
"dailyProfitEnabled": False,
"weeklyProfitEnabled": False,
"eodCloseEnabled": True,
"eodCloseValue": 10
}
headers = {
"cookie": "session=",
"Idempotency-Key": "<idempotency-key>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://app.trdrs.co/api/operator/venues/{venueId}/accounts/{accountId}/risk-controls",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'dailyLossEnabled' => true,
'dailyLossValue' => 1500,
'weeklyLossEnabled' => false,
'dailyProfitEnabled' => false,
'weeklyProfitEnabled' => false,
'eodCloseEnabled' => true,
'eodCloseValue' => 10
]),
CURLOPT_COOKIE => "session=",
CURLOPT_HTTPHEADER => [
"Content-Type: application/json",
"Idempotency-Key: <idempotency-key>"
],
]);
$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://app.trdrs.co/api/operator/venues/{venueId}/accounts/{accountId}/risk-controls"
payload := strings.NewReader("{\n \"dailyLossEnabled\": true,\n \"dailyLossValue\": 1500,\n \"weeklyLossEnabled\": false,\n \"dailyProfitEnabled\": false,\n \"weeklyProfitEnabled\": false,\n \"eodCloseEnabled\": true,\n \"eodCloseValue\": 10\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("cookie", "session=")
req.Header.Add("Idempotency-Key", "<idempotency-key>")
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.post("https://app.trdrs.co/api/operator/venues/{venueId}/accounts/{accountId}/risk-controls")
.header("cookie", "session=")
.header("Idempotency-Key", "<idempotency-key>")
.header("Content-Type", "application/json")
.body("{\n \"dailyLossEnabled\": true,\n \"dailyLossValue\": 1500,\n \"weeklyLossEnabled\": false,\n \"dailyProfitEnabled\": false,\n \"weeklyProfitEnabled\": false,\n \"eodCloseEnabled\": true,\n \"eodCloseValue\": 10\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://app.trdrs.co/api/operator/venues/{venueId}/accounts/{accountId}/risk-controls")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["cookie"] = 'session='
request["Idempotency-Key"] = '<idempotency-key>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"dailyLossEnabled\": true,\n \"dailyLossValue\": 1500,\n \"weeklyLossEnabled\": false,\n \"dailyProfitEnabled\": false,\n \"weeklyProfitEnabled\": false,\n \"eodCloseEnabled\": true,\n \"eodCloseValue\": 10\n}"
response = http.request(request)
puts response.read_body{
"accountId": "example-account",
"controls": {
"dailyLossEnabled": true,
"dailyLossValue": 1500,
"weeklyLossEnabled": false,
"weeklyLossValue": null,
"dailyProfitEnabled": false,
"dailyProfitValue": null,
"weeklyProfitEnabled": false,
"weeklyProfitValue": null,
"eodCloseEnabled": true,
"eodCloseValue": 10,
"updatedAt": 1757980800
},
"halted": false,
"lockReason": null
}{
"error": "invalid_instrument"
}{
"error": "invalid_instrument"
}{
"error": "invalid_instrument"
}{
"error": "invalid_instrument"
}{
"error": "invalid_instrument"
}{
"error": "invalid_instrument"
}{
"error": "invalid_instrument"
}{
"error": "invalid_instrument"
}Authorizations
The signed session cookie of a logged-in trdrs user. First-party/browser only; an API key cannot reach a route secured this way.
Headers
1 - 128Body
1 <= x <= 240Response
Scoped result. Cache-Control: no-store.
Loss and profit values are in account currency and positive; a disabled control's value is null. eodCloseValue is whole minutes before the 16:00 CT close. updatedAt is epoch seconds of the last write.
Show child attributes
Show child attributes