# Stock Analysis Skill - Environment Variables Template

# Stock list (comma-separated, required)
# Example: 600519,hk00700,AAPL,TSLA
STOCK_LIST=

# News search API (optional but recommended)
# Get from: https://tavily.com/
# Free tier: 100 searches/day
# Required for: News sentiment analysis
TAVILY_API_KEY=

# Analysis settings (optional)

# Deviation threshold (%) - alerts when price deviates too much from MA
# Default: 5.0
BIAS_THRESHOLD=5.0

# News age limit (days) - only analyze news within this period
# Default: 3
NEWS_MAX_AGE_DAYS=3

# Notification settings (uses OpenClaw's built-in messaging)
# Configure in OpenClaw's main configuration
