transferAsset
Move cryptocurrency funds between futures and spot trading accounts on the Aster exchange to manage trading positions and capital allocation.
Instructions
Transfer between futures and spot.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| amount | Yes | ||
| asset | Yes | ||
| clientTranId | Yes | ||
| kindType | Yes |
Input Schema (JSON Schema)
{
"properties": {
"amount": {
"type": "number"
},
"asset": {
"type": "string"
},
"clientTranId": {
"type": "string"
},
"kindType": {
"enum": [
"FUTURE_SPOT",
"SPOT_FUTURE"
],
"type": "string"
}
},
"required": [
"asset",
"amount",
"clientTranId",
"kindType"
],
"type": "object"
}