getComboLimit
Validate input parameters for a futures combo bot and retrieve allowed ranges for margin, leverage, thresholds, and stops before creating the bot.
Instructions
Validates the input parameters for creating a futures combo bot and returns the allowable ranges for each parameter (initial margin, leverage, rebalancing threshold, time interval, TP/SL percentages, trailing stop).
Use this endpoint before calling /v5/fcombobot/create to ensure parameters are within valid bounds. The response includes a check_code that indicates which parameter is out of range if validation fails.
Rate limit: 10 requests per second per UID.
Agent hint: Call this endpoint first to get valid parameter ranges before creating a combo bot. If check_code is non-zero, the specific validation error is indicated by the code value. The response ranges (init_margin, leverage, sl_percent, tp_percent, etc.) tell you the exact min/max values allowed for each parameter.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| app_name | No | ||
| leverage | Yes | ||
| sl_percent | No | ||
| tp_percent | No | ||
| init_margin | Yes | ||
| symbol_settings | Yes | ||
| need_to_slippage | No | ||
| adjust_position_mode | Yes | ||
| trailing_stop_percent | No | ||
| adjust_position_percent | No | ||
| adjust_position_time_interval | No |