Historical Profit
Historical Profit
Get leader's historical profit list
Request frequency limit: 1/1s
Request URL
GET /deepcoin/copytrading/history-profit
Request Parameters
None
Response Parameters
Field Name | Type | Description |
---|---|---|
list | array | |
>settlementTime | int64 | Date |
>profit | string | Profit amount |
Response Example
No historical profit data:
{
"code": "0",
"msg": "",
"data": null
}
With historical profit data:
{
"code": "0",
"msg": "",
"data": {
"list": [
{
"settlementTime": 1695355200,
"profit": "0.25"
}
]
}
}