getComboLimit
Validates input parameters for futures combo bot creation and returns allowable ranges for leverage, margin, and other settings to ensure parameter bounds before submission.
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 |
|---|---|---|---|
| leverage | Yes | ||
| init_margin | Yes | ||
| adjust_position_mode | Yes | ||
| adjust_position_percent | No | ||
| adjust_position_time_interval | No | ||
| symbol_settings | Yes | ||
| sl_percent | No | ||
| tp_percent | No | ||
| need_to_slippage | No | ||
| app_name | No | ||
| trailing_stop_percent | No |