# Stock Analysis Skill - Environment Variables Template

# =============================================================================
# REQUIRED
# =============================================================================

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

# =============================================================================
# RECOMMENDED (Free API Keys)
# =============================================================================

# Tavily API Key (News sentiment analysis)
# Get free key: https://tavily.com/
# Free tier: 100 searches/day
TAVILY_API_KEY=

# Alpha Vantage API Key (US stocks fallback)
# Get free key: https://www.alphavantage.co/support/#api-key
# Free tier: 500 requests/day
# Note: Free tier provides daily close price only (not real-time)
ALPHA_VANTAGE_API_KEY=

# =============================================================================
# OPTIONAL
# =============================================================================

# Tushare Pro Token (A-share backup data source)
# Get token: https://tushare.pro/
# Requires credits for real-time data
TUSHARE_TOKEN=

# =============================================================================
# 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
