File contents π― Arbitrage Hunter
K.I.T.'s Money Printer - Find FREE MONEY across exchanges!
Features
π° Cross-Exchange Arbitrage
Monitor price differences across 10+ exchanges
Instant spread detection
Net profit calculation (fees included)
Auto-execution when profitable
πΊ Triangular Arbitrage
BTC β ETH β USDT β BTC cycles
Real-time path optimization
Multi-hop detection
Slippage estimation
π DeFi Arbitrage
DEX vs CEX price differences
Uniswap, Sushiswap, Curve
MEV protection
Flash loan integration ready
β‘ Latency Optimization
Sub-100ms execution
Exchange proximity analysis
Order book depth monitoring
Race condition handling
Usage
from arbitrage_hunter import ArbitrageHunter
hunter = ArbitrageHunter()
# Find cross-exchange opportunities
opps = await hunter.scan_cross_exchange(
symbols=["BTC/USDT", "ETH/USDT"],
min_spread=0.1, # 0.1% minimum
max_volume=10000 # Max $10k per trade
)
for opp in opps:
print(f"π― {opp.symbol}")
print(f" Buy: {opp.buy_exchange} @ ${opp.buy_price}")
print(f" Sell: {opp.sell_exchange} @ ${opp.sell_price}")
print(f" Spread: {opp.spread:.2%}")
print(f" Net Profit: ${opp.net_profit:.2f}")
# Find triangular opportunities
triangles = await hunter.scan_triangular(
base_asset="USDT",
min_profit=0.05 # 0.05% minimum
)
# Execute arbitrage
result = await hunter.execute(opps[0])
Supported Exchanges
Exchange
Cross-Ex
Triangular
Speed
Binance
β
β
β‘β‘β‘
Coinbase
β
β
β‘β‘
Kraken
β
β
β‘β‘
KuCoin
β
β
β‘β‘
Bybit
β
β
β‘β‘β‘
OKX
β
β
β‘β‘β‘
Uniswap
β
β
β‘
dYdX
β
β
β‘β‘
Configuration
arbitrage_hunter:
exchanges:
- binance
- coinbase
- kraken
thresholds:
min_spread: 0.1%
min_profit: $5
max_position: $50000
execution:
auto_execute: false
max_slippage: 0.05%
timeout_ms: 500
defi:
enabled: true
flash_loans: false
max_gas_gwei: 50
Risk Management
Maximum position size limits
Slippage protection
Exchange balance monitoring
Failed execution handling
P&L tracking
1 --- 2 name: arbitrage-hunter 3 description: π― Arbitrage Hunter 4 --- 5 # π― Arbitrage Hunter 6 7 **K.I.T.'s Money Printer - Find FREE MONEY across exchanges!** 8 9 ## Features 10 11 ### π° Cross-Exchange Arbitrage 12 - Monitor price differences across 10+ exchanges 13 - Instant spread detection 14 - Net profit calculation (fees included) 15 - Auto-execution when profitable 16 17 ### πΊ Triangular Arbitrage 18 - BTC β ETH β USDT β BTC cycles 19 - Real-time path optimization 20 - Multi-hop detection 21 - Slippage estimation 22 23 ### π DeFi Arbitrage 24 - DEX vs CEX price differences 25 - Uniswap, Sushiswap, Curve 26 - MEV protection 27 - Flash loan integration ready 28 29 ### β‘ Latency Optimization 30 - Sub-100ms execution 31 - Exchange proximity analysis 32 - Order book depth monitoring 33 - Race condition handling 34 35 ## Usage 36 37 ```python 38 from arbitrage_hunter import ArbitrageHunter 39 40 hunter = ArbitrageHunter() 41 42 # Find cross-exchange opportunities 43 opps = await hunter.scan_cross_exchange( 44 symbols=["BTC/USDT", "ETH/USDT"], 45 min_spread=0.1, # 0.1% minimum 46 max_volume=10000 # Max $10k per trade 47 ) 48 49 for opp in opps: 50 print(f"π― {opp.symbol}") 51 print(f" Buy: {opp.buy_exchange} @ ${opp.buy_price}") 52 print(f" Sell: {opp.sell_exchange} @ ${opp.sell_price}") 53 print(f" Spread: {opp.spread:.2%}") 54 print(f" Net Profit: ${opp.net_profit:.2f}") 55 56 # Find triangular opportunities 57 triangles = await hunter.scan_triangular( 58 base_asset="USDT", 59 min_profit=0.05 # 0.05% minimum 60 ) 61 62 # Execute arbitrage 63 result = await hunter.execute(opps[0]) 64 ``` 65 66 ## Supported Exchanges 67 68 | Exchange | Cross-Ex | Triangular | Speed | 69 |----------|----------|------------|-------| 70 | Binance | β
| β
| β‘β‘β‘ | 71 | Coinbase | β
| β
| β‘β‘ | 72 | Kraken | β
| β
| β‘β‘ | 73 | KuCoin | β
| β
| β‘β‘ | 74 | Bybit | β
| β
| β‘β‘β‘ | 75 | OKX | β
| β
| β‘β‘β‘ | 76 | Uniswap | β
| β | β‘ | 77 | dYdX | β
| β | β‘β‘ | 78 79 ## Configuration 80 81 ```yaml 82 arbitrage_hunter: 83 exchanges: 84 - binance 85 - coinbase 86 - kraken 87 88 thresholds: 89 min_spread: 0.1% 90 min_profit: $5 91 max_position: $50000 92 93 execution: 94 auto_execute: false 95 max_slippage: 0.05% 96 timeout_ms: 500 97 98 defi: 99 enabled: true 100 flash_loans: false 101 max_gas_gwei: 50 102 ``` 103 104 ## Risk Management 105 - Maximum position size limits 106 - Slippage protection 107 - Exchange balance monitoring 108 - Failed execution handling 109 - P&L tracking
Signal-Execution-Labs/forex-trading-ai-agent/tree/main/skills/arbitrage-hunter commit 8b1b5ac1b9
Frequently asked questions How do I install the Arbitrage Hunter skill? Run npx skillmds@latest add signal-execution-labs/arbitrage-hunter in your terminal (requires Node.js), paste this page's agent-chat prompt into Claude, Cursor, or any MCP-connected agent, or download the SKILL.md file and copy it into your agent's skills directory.
What does the Arbitrage Hunter skill do? π― Arbitrage Hunter It is listed under Coding & Dev Tools on SkillMD.
Is Arbitrage Hunter safe to use? This skill has not completed SkillMD's automated safety review yet. SkillMD never runs a skill's scripts for you; review the SKILL.md before installing.
Which AI agents work with Arbitrage Hunter? This skill is tagged as working with Claude Code, Claude.ai, OpenAI Codex. SKILL.md is an open format, so most agents that read a skills directory can load it too.
Is Arbitrage Hunter free to use? Yes. Installing skills from SkillMD is free, and the skill stays under its author's original license.
Who published Arbitrage Hunter? Signal-Execution-Labs (@signal-execution-labs) published this skill. Their other Agent Skills are listed on their SkillMD profile.