AI SummaryDetect and analyze arbitrage opportunities across cryptocurrency exchanges and DeFi protocols. Aggregates prices from CEX and DEX sources, calculates net profit after fees, and identifies direct, triangular, and cross-chain arbitrage paths. 1. Quick spread scan on a specific pair: Shows current pric
Install
Copy this and paste it into Claude Code, Cursor, or any AI assistant:
I want to install the "finding-arbitrage-opportunities" skill in my project. Please run this command in my terminal: # Install skill into your project (13 files) mkdir -p .claude/skills/finding-arbitrage-opportunities && curl --retry 3 --retry-delay 2 --retry-all-errors -o .claude/skills/finding-arbitrage-opportunities/SKILL.md "https://raw.githubusercontent.com/jeremylongshore/claude-code-plugins-plus-skills/main/plugins/crypto/arbitrage-opportunity-finder/skills/finding-arbitrage-opportunities/SKILL.md" && curl --retry 3 --retry-delay 2 --retry-all-errors -o .claude/skills/finding-arbitrage-opportunities/ARD.md "https://raw.githubusercontent.com/jeremylongshore/claude-code-plugins-plus-skills/main/plugins/crypto/arbitrage-opportunity-finder/skills/finding-arbitrage-opportunities/ARD.md" && curl --retry 3 --retry-delay 2 --retry-all-errors -o .claude/skills/finding-arbitrage-opportunities/PRD.md "https://raw.githubusercontent.com/jeremylongshore/claude-code-plugins-plus-skills/main/plugins/crypto/arbitrage-opportunity-finder/skills/finding-arbitrage-opportunities/PRD.md" && mkdir -p .claude/skills/finding-arbitrage-opportunities/config && curl --retry 3 --retry-delay 2 --retry-all-errors -o .claude/skills/finding-arbitrage-opportunities/config/settings.yaml "https://raw.githubusercontent.com/jeremylongshore/claude-code-plugins-plus-skills/main/plugins/crypto/arbitrage-opportunity-finder/skills/finding-arbitrage-opportunities/config/settings.yaml" && mkdir -p .claude/skills/finding-arbitrage-opportunities/references && curl --retry 3 --retry-delay 2 --retry-all-errors -o .claude/skills/finding-arbitrage-opportunities/references/errors.md "https://raw.githubusercontent.com/jeremylongshore/claude-code-plugins-plus-skills/main/plugins/crypto/arbitrage-opportunity-finder/skills/finding-arbitrage-opportunities/references/errors.md" && mkdir -p .claude/skills/finding-arbitrage-opportunities/references && curl --retry 3 --retry-delay 2 --retry-all-errors -o .claude/skills/finding-arbitrage-opportunities/references/examples.md "https://raw.githubusercontent.com/jeremylongshore/claude-code-plugins-plus-skills/main/plugins/crypto/arbitrage-opportunity-finder/skills/finding-arbitrage-opportunities/references/examples.md" && mkdir -p .claude/skills/finding-arbitrage-opportunities/references && curl --retry 3 --retry-delay 2 --retry-all-errors -o .claude/skills/finding-arbitrage-opportunities/references/implementation.md "https://raw.githubusercontent.com/jeremylongshore/claude-code-plugins-plus-skills/main/plugins/crypto/arbitrage-opportunity-finder/skills/finding-arbitrage-opportunities/references/implementation.md" && mkdir -p .claude/skills/finding-arbitrage-opportunities/scripts && curl --retry 3 --retry-delay 2 --retry-all-errors -o .claude/skills/finding-arbitrage-opportunities/scripts/arb_finder.py "https://raw.githubusercontent.com/jeremylongshore/claude-code-plugins-plus-skills/main/plugins/crypto/arbitrage-opportunity-finder/skills/finding-arbitrage-opportunities/scripts/arb_finder.py" && mkdir -p .claude/skills/finding-arbitrage-opportunities/scripts && curl --retry 3 --retry-delay 2 --retry-all-errors -o .claude/skills/finding-arbitrage-opportunities/scripts/formatters.py "https://raw.githubusercontent.com/jeremylongshore/claude-code-plugins-plus-skills/main/plugins/crypto/arbitrage-opportunity-finder/skills/finding-arbitrage-opportunities/scripts/formatters.py" && mkdir -p .claude/skills/finding-arbitrage-opportunities/scripts && curl --retry 3 --retry-delay 2 --retry-all-errors -o .claude/skills/finding-arbitrage-opportunities/scripts/opportunity_scanner.py "https://raw.githubusercontent.com/jeremylongshore/claude-code-plugins-plus-skills/main/plugins/crypto/arbitrage-opportunity-finder/skills/finding-arbitrage-opportunities/scripts/opportunity_scanner.py" && mkdir -p .claude/skills/finding-arbitrage-opportunities/scripts && curl --retry 3 --retry-delay 2 --retry-all-errors -o .claude/skills/finding-arbitrage-opportunities/scripts/price_fetcher.py "https://raw.githubusercontent.com/jeremylongshore/claude-code-plugins-plus-skills/main/plugins/crypto/arbitrage-opportunity-finder/skills/finding-arbitrage-opportunities/scripts/price_fetcher.py" && mkdir -p .claude/skills/finding-arbitrage-opportunities/scripts && curl --retry 3 --retry-delay 2 --retry-all-errors -o .claude/skills/finding-arbitrage-opportunities/scripts/profit_calculator.py "https://raw.githubusercontent.com/jeremylongshore/claude-code-plugins-plus-skills/main/plugins/crypto/arbitrage-opportunity-finder/skills/finding-arbitrage-opportunities/scripts/profit_calculator.py" && mkdir -p .claude/skills/finding-arbitrage-opportunities/scripts && curl --retry 3 --retry-delay 2 --retry-all-errors -o .claude/skills/finding-arbitrage-opportunities/scripts/triangular_finder.py "https://raw.githubusercontent.com/jeremylongshore/claude-code-plugins-plus-skills/main/plugins/crypto/arbitrage-opportunity-finder/skills/finding-arbitrage-opportunities/scripts/triangular_finder.py" Then restart Claude Code (or reload the window in Cursor) so the skill is picked up.
Description
Detect profitable arbitrage opportunities across CEX, DEX, and cross-chain markets in real-time. Use when scanning for price spreads, finding arbitrage paths, comparing exchange prices, or analyzing triangular arbitrage opportunities. Trigger with phrases like "find arbitrage", "scan for arb", "price spread", "exchange arbitrage", "triangular arb", "DEX price difference", or "cross-exchange opportunity".
Overview
Detect and analyze arbitrage opportunities across cryptocurrency exchanges and DeFi protocols. Aggregates prices from CEX and DEX sources, calculates net profit after fees, and identifies direct, triangular, and cross-chain arbitrage paths.
Prerequisites
• Python 3.9+ with httpx, rich, and networkx packages • Internet access for API calls (no API keys required for basic use) • Optional: Exchange API keys for real-time order book access • Understanding of arbitrage concepts and trading fees
Examples
Quick ETH/USDC spread scan - Find best buy/sell across all CEX exchanges: `bash python ${CLAUDE_SKILL_DIR}/scripts/arb_finder.py scan ETH USDC ` Sample detection output: ` ARB OPPORTUNITY: ETH/USDC Buy: Binance @ $3,198.50 | Sell: Coinbase @ $3,214.20 Spread: 0.49% | Net Profit (after fees): 0.29% ($9.27 per ETH) Risk: LOW | Confidence: HIGH | Window: ~30s ` Triangular arb on Binance - Discover circular paths with minimum 0.5% net profit: `bash python ${CLAUDE_SKILL_DIR}/scripts/arb_finder.py triangular binance --min-profit 0.5 ` Cross-chain USDC opportunities - Compare stablecoin prices across L1/L2 chains: `bash python ${CLAUDE_SKILL_DIR}/scripts/arb_finder.py cross-chain USDC --chains ethereum,polygon,arbitrum ` Calculate exact profit - Detailed fee breakdown for a specific trade: `bash python ${CLAUDE_SKILL_DIR}/scripts/arb_finder.py calc \ --buy-exchange binance --sell-exchange coinbase --pair ETH/USDC --amount 10 # 10 = trade size in ETH `
Instructions
• Quick spread scan on a specific pair: `bash python ${CLAUDE_SKILL_DIR}/scripts/arb_finder.py scan ETH USDC ` Shows current prices per exchange, spread %, estimated profit after fees, and recommended action. • Multi-exchange comparison across specific exchanges: `bash python ${CLAUDE_SKILL_DIR}/scripts/arb_finder.py scan ETH USDC \ --exchanges binance,coinbase,kraken,kucoin,okx ` • DEX price comparison across decentralized exchanges: `bash python ${CLAUDE_SKILL_DIR}/scripts/arb_finder.py scan ETH USDC --dex-only ` Compares Uniswap V3, SushiSwap, Curve, Balancer with gas cost estimates. • Triangular arbitrage discovery within a single exchange: `bash python ${CLAUDE_SKILL_DIR}/scripts/arb_finder.py triangular binance --min-profit 0.5 ` • Cross-chain opportunities across different blockchains: `bash python ${CLAUDE_SKILL_DIR}/scripts/arb_finder.py cross-chain USDC \ --chains ethereum,polygon,arbitrum ` • Real-time monitoring with threshold alerts: `bash python ${CLAUDE_SKILL_DIR}/scripts/arb_finder.py monitor ETH USDC \ --threshold 0.5 --interval 5 ` • Export opportunities for bot integration: `bash python ${CLAUDE_SKILL_DIR}/scripts/arb_finder.py scan ETH USDC --output json > opportunities.json `
Discussion
Health Signals
My Fox Den
Community Rating
Sign in to rate this booster