createFMartBot
Creates a futures Martingale bot that opens an initial position and adds to it on price dips (long) or rallies (short) with configurable leverage, margin, and take-profit.
Instructions
Creates a futures Martingale trading bot. The bot opens an initial position and adds to it when price drops (long mode) or rises (short mode) by the configured price_float_percent. Each add scales position by add_position_percent.
Key parameters include symbol, mode (long/short), leverage, price trigger percentage, add position ratio, max add count, initial margin, and round take-profit percentage. Optional parameters include stop-loss, entry price trigger, auto-cycle toggle, and trailing stop.
Before calling this endpoint, use /v5/fmartingalebot/getlimit to validate parameter ranges.
Rate limit: 10 requests per second per UID. Subject to compliance wall, GEO IP check, and KYC verification.
Agent hint: Always call getFMartLimit first to verify parameters are in range. The martingale_mode determines direction: 1=Long (buys dip), 2=Short (sells rally). auto_cycle_toggle=1 means the bot restarts after each round TP. The bot_id in a successful response is needed for getFMartDetail and closeFMartBot.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| symbol | Yes | ||
| martingale_mode | Yes | ||
| leverage | Yes | ||
| price_float_percent | Yes | ||
| add_position_percent | Yes | ||
| add_position_num | Yes | ||
| init_margin | Yes | ||
| round_tp_percent | Yes | ||
| auto_cycle_toggle | No | ||
| sl_percent | No | ||
| entry_price | No | ||
| source | No | ||
| followed_bot_id | No | ||
| block_source | No | ||
| create_type | No | ||
| init_bonus | No | ||
| channel | No |