Initial commit: Polymarket Whale Watcher

- Add trade monitoring and whale detection system
- Add LLM-powered trade analysis
- Add market data fetching from Polymarket API
- Include example environment configuration
- Add automated report generation

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
SII-leiyu
2026-01-07 15:41:05 +08:00
co-authored by Claude
commit 0254e2c01a
204 changed files with 21173 additions and 0 deletions
+27
View File
@@ -0,0 +1,27 @@
# Gemini API Key for LLM analysis
GEMINI_API_KEY=your_gemini_api_key_here
# Polygon Wallet Private Key (for trade execution)
POLYGON_WALLET_PRIVATE_KEY=your_private_key_here
# MongoDB Connection String
MONGODB_URI=mongodb://localhost:27017/whale_watcher
# Whale Detection Settings
MIN_TRADE_SIZE_USD=1000
MIN_PRICE=0.2
MAX_PRICE=0.8
# Monitoring Settings
FETCH_INTERVAL_SECONDS=5
TRENDING_MARKETS_LIMIT=50
# LLM Settings
LLM_MODEL=gemini-3-pro-preview
LLM_TEMPERATURE=0
# Trade Execution (set to true to enable actual trading)
ENABLE_TRADE_EXECUTION=false
# Logging
LOG_LEVEL=INFO