smithery/jeremylongshore

finding-arbitrage-opportunities

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". '

Installation

$ npx skills add smithery/jeremylongshore --skill finding-arbitrage-opportunities

Similar popular skills

Related neighbors and high-traction skills in the same topics — useful to compare before installing.

Also in this package

Other skills from smithery/jeremylongshore · top by installs.

npx skills add smithery/jeremylongshore

Browse all from smithery/jeremylongshore

More details

Agent compatibility

Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.

Claude Code Declared
Cursor Not declared
Codex Not declared
GitHub Copilot Not declared
Windsurf Not declared
Gemini CLI Not declared
Cline Not declared
OpenCode Not declared

Skill metadata

Parsed from SKILL.md frontmatter.

Version1.26.0
LicenseMIT
CompatibilityDesigned for Claude Code
Allowed toolsRead, Write, Edit, Grep, Glob, Bash(crypto:arbitrage-*)
Declared agents claude-code

Package contents

Files included with this skill beyond the listing page.

  • skill md SKILL.md 4,819 B
  • docs SUMMARY.md 448 B

History

  1. First recorded snapshot · 0 installs

SKILL.md

Finding Arbitrage Opportunities

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

Instructions

  1. Quick spread scan on a specific pair:

``bash python ${CLAUDESKILLDIR}/scripts/arb_finder.py scan ETH USDC ``

Shows current prices per exchange, spread %, estimated profit after fees, and recommended action.

  1. Multi-exchange comparison across specific exchanges:

``bash python ${CLAUDESKILLDIR}/scripts/arb_finder.py scan ETH USDC \ --exchanges binance,coinbase,kraken,kucoin,okx ``

  1. DEX price comparison across decentralized exchanges:

``bash python ${CLAUDESKILLDIR}/scripts/arb_finder.py scan ETH USDC --dex-only ``

Compares Uniswap V3, SushiSwap, Curve, Balancer with gas cost estimates.

  1. Triangular arbitrage discovery within a single exchange:

``bash python ${CLAUDESKILLDIR}/scripts/arb_finder.py triangular binance --min-profit 0.5 ``

  1. Cross-chain opportunities across different blockchains:

``bash python ${CLAUDESKILLDIR}/scripts/arb_finder.py cross-chain USDC \ --chains ethereum,polygon,arbitrum ``

  1. Real-time monitoring with threshold alerts:

``bash python ${CLAUDESKILLDIR}/scripts/arb_finder.py monitor ETH USDC \ --threshold 0.5 --interval 5 ``

  1. Export opportunities for bot integration:

``bash python ${CLAUDESKILLDIR}/scripts/arb_finder.py scan ETH USDC --output json > opportunities.json ``

Output

  • Quick mode (default): Best opportunity with profit estimate, buy/sell recommendation, risk level
  • Detailed mode (--detailed): All exchange prices, fee breakdown, slippage estimates, historical spread context
  • Monitor mode: Real-time updates with threshold alerts and trend indicators

See ${CLAUDESKILLDIR}/references/implementation.md for exchange fee tables and output format examples.

Error Handling

Error Cause Fix
Rate limited Too many API requests Reduce polling frequency or add API key
Stale prices Data older than 10s Flagged with warning; retry
No spread Efficient market pricing Normal condition; try different pairs
Insufficient liquidity Trade exceeds order book depth Reduce trade size

Examples

Quick ETH/USDC spread scan - Find best buy/sell across all CEX exchanges:

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:

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:

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:

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

Resources

  • CoinGecko API - Free price data
  • CCXT Library - Unified exchange API
  • Uniswap Subgraph - DEX data
  • ${CLAUDESKILLDIR}/references/implementation.md - Exchange fee tables, configuration, advanced arbitrage types, disclaimer