execute_hedge_arbitrage_strategy
Execute hedge arbitrage on Binance by leveraging funding rate differences for specified trading pairs and quantities, returning detailed arbitrage results.
Instructions
Execute hedge arbitrage based on funding rate.
Args: symbol: The trading pair. quantity: Amount to trade.
Returns: Summary of the arbitrage result.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
quantity | Yes | ||
symbol | Yes |
Input Schema (JSON Schema)
{
"properties": {
"quantity": {
"title": "Quantity",
"type": "string"
},
"symbol": {
"title": "Symbol",
"type": "string"
}
},
"required": [
"symbol",
"quantity"
],
"title": "execute_hedge_arbitrage_strategyArguments",
"type": "object"
}