check_arbitrage_opportunities
Identify arbitrage opportunities by comparing price differences between centralized exchanges and SailFish DEX. Set a custom threshold to filter results based on minimum percentage gain.
Instructions
Check for arbitrage opportunities between centralized exchanges and SailFish DEX
Input Schema
Name | Required | Description | Default |
---|---|---|---|
threshold | No | Minimum price difference percentage to consider as an arbitrage opportunity (default: 1.0) |
Input Schema (JSON Schema)
{
"properties": {
"threshold": {
"description": "Minimum price difference percentage to consider as an arbitrage opportunity (default: 1.0)",
"type": "number"
}
},
"required": [],
"type": "object"
}