countdownCancelAll
Cancel all open cryptocurrency trading orders after a specified countdown period to manage risk and automate order cleanup on the Aster exchange.
Instructions
Auto-cancel all open orders.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| countdownTime | Yes | Countdown time in milliseconds. | |
| symbol | Yes |
Input Schema (JSON Schema)
{
"properties": {
"countdownTime": {
"description": "Countdown time in milliseconds.",
"type": "number"
},
"symbol": {
"type": "string"
}
},
"required": [
"symbol",
"countdownTime"
],
"type": "object"
}