- 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>
28 lines
588 B
Bash
28 lines
588 B
Bash
# 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
|