set_trading_stop
Define and manage stop-loss, take-profit, and trailing stop orders for cryptocurrency trading on Bybit. Specify category, symbol, and price levels to automate risk management and optimize trade outcomes.
Instructions
Set trading stop
Input Schema
Name | Required | Description | Default |
---|---|---|---|
category | Yes | Category (spot, linear, inverse, etc.) | |
positionIdx | No | Position index | |
stopLoss | No | Stop loss price | |
symbol | Yes | Symbol (e.g., BTCUSDT) | |
takeProfit | No | Take profit price | |
trailingStop | No | Trailing stop |
Input Schema (JSON Schema)
{
"properties": {
"category": {
"description": "Category (spot, linear, inverse, etc.)",
"type": "string"
},
"positionIdx": {
"description": "Position index",
"type": "number"
},
"stopLoss": {
"description": "Stop loss price",
"type": "string"
},
"symbol": {
"description": "Symbol (e.g., BTCUSDT)",
"type": "string"
},
"takeProfit": {
"description": "Take profit price",
"type": "string"
},
"trailingStop": {
"description": "Trailing stop",
"type": "string"
}
},
"required": [
"category",
"symbol"
],
"type": "object"
}