Configure Trader Settings
Configure the trader's copy trading settings and profile.
HTTP Request
POST /api/v1/copy/mix-trader/config-trader-setting
Request Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
| traderMode | boolean | No | Enable or disable trader mode |
| copyPairList | array | No | List of available trading pairs for copy trading |
| nickName | string | No | Trader nickname (must be unique) |
| introduction | string | No | Trader introduction/bio |
| profitShareRatio | number | No | Profit share percentage (0-30) |
| showFund | boolean | No | Display fund information to followers |
| showFollowerList | boolean | No | Display follower list publicly |
| showLeadingHist | boolean | No | Display leading history publicly |
Request Example
curl -X POST "https://open-api.bydoxe.com/api/v1/copy/mix-trader/config-trader-setting" \
-H "ACCESS-KEY: your-api-key" \
-H "ACCESS-SIGN: your-signature" \
-H "ACCESS-PASSPHRASE: your-passphrase" \
-H "ACCESS-TIMESTAMP: 1659076670000" \
-H "Content-Type: application/json" \
-d '{
"traderMode": true,
"copyPairList": ["BTCUSDT", "ETHUSDT"],
"nickName": "TopTrader",
"introduction": "Professional trader with 5 years experience",
"profitShareRatio": 10,
"showFund": true,
"showFollowerList": true,
"showLeadingHist": true
}'
Response Parameters
| Parameter | Type | Description |
|---|---|---|
| code | string | Response code |
| msg | string | Response message |
| requestTime | number | Request timestamp in milliseconds |
| data | string | Result message |
Response Example
{
"code": "00000",
"msg": "success",
"requestTime": 1763459280000,
"data": "success"
}
Error Codes
| Code | Message |
|---|---|
| 45001 | Duplicate nickname |
| 45001 | At least one valid symbol must be provided |
| 45002 | User not found |
| 45003 | Not a copy trader |
| 50000 | System error |