simulate_rebalance
Simulate liquidity pool rebalancing when impermanent loss exceeds your threshold. Get position adjustment recommendations to optimize your DeFi portfolio on Solana.
Instructions
Simulate rebalancing LP positions based on impermanent loss threshold. Provides recommendations for position adjustments.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
threshold | Yes | IL threshold percentage (e.g., 5 for 5%) | |
wallet | Yes | Solana wallet address |
Input Schema (JSON Schema)
{
"properties": {
"threshold": {
"description": "IL threshold percentage (e.g., 5 for 5%)",
"maximum": 100,
"minimum": 0,
"type": "number"
},
"wallet": {
"description": "Solana wallet address",
"type": "string"
}
},
"required": [
"wallet",
"threshold"
],
"type": "object"
}