execute_trade
Force-enter a trade on a specific pair with desired side, stake, or price. Opens position immediately, bypassing strategy signals for manual intervention.
Instructions
Manually enter (force-enter) a trade on a specific pair. The bot bypasses strategy signals and opens the position immediately. Natural language examples: • "buy 100 USDT of BTC/USDT" → pair=BTC/USDT, side=long, stake_amount=100 • "short 0.5 ETH/USDT at 2000" → pair=ETH/USDT, side=short, price=2000 The position will be managed by the active strategy after entry.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| pair | Yes | Trading pair in exchange format (e.g. BTC/USDT, ETH/BTC). | |
| side | Yes | Trade direction: "long" to buy, "short" to sell/short. | |
| stake_amount | No | Amount in stake currency (e.g. USDT) to use for this trade. Omit to use the bot's configured stake amount. | |
| price | No | Limit order price. Omit to use current market price (market order). | |
| order_type | No | Order type. Defaults to the strategy's configured order type. |