Skip to main content

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

ParameterTypeRequiredDescription
traderModebooleanNoEnable or disable trader mode
copyPairListarrayNoList of available trading pairs for copy trading
nickNamestringNoTrader nickname (must be unique)
introductionstringNoTrader introduction/bio
profitShareRationumberNoProfit share percentage (0-30)
showFundbooleanNoDisplay fund information to followers
showFollowerListbooleanNoDisplay follower list publicly
showLeadingHistbooleanNoDisplay 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

ParameterTypeDescription
codestringResponse code
msgstringResponse message
requestTimenumberRequest timestamp in milliseconds
datastringResult message

Response Example

{
"code": "00000",
"msg": "success",
"requestTime": 1763459280000,
"data": "success"
}

Error Codes

CodeMessage
45001Duplicate nickname
45001At least one valid symbol must be provided
45002User not found
45003Not a copy trader
50000System error