# ============================================
# Simmer Weather High-Temp Sniper Configuration
# Generated - edit with care
# ============================================

# Simmer API (required)
#
# Register your agent at: https://simmer.markets/agents/register
# After registration, claim your agent to enable real trading:
# https://simmer.markets/claim/<your-claim-code>
#
SIMMER_API_KEY=

# Trading Parameters
#
# Entry threshold: probability must be <= this to consider buying
# (lower = more conservative, e.g., 0.20 = only 20% or less)
SIMMER_SNIPER2_ENTRY_PRICE_THRESHOLD=

# Max position size per trade (USD)
SIMMER_SNIPER2_MAX_POSITION_USD=

# Number of shares per order (integer)
SIMMER_SNIPER2_SHARES=5

# Slippage tolerance (0-1, e.g., 0.15 = 15%)
SIMMER_SNIPER2_SLIPPAGE=0.15

# Scanning & Discovery
#
# How often to scan markets for trading opportunities (seconds)
# Default: 60 (once per minute). Lower = more responsive but more API calls.
SIMMER_SNIPER2_SCAN_INTERVAL=60

# How often to print periodic status reports (seconds)
SIMMER_SNIPER2_REPORT_INTERVAL=240

# Strategy Flags
#
# Fallback: allow trading in 10:00-10:05 window if 9-10 AM was missed
SIMMER_SNIPER2_FALLBACK_10AM=true

# Allow Sim (paper trading) mode - for testing without real money
SIMMER_SNIPER2_ALLOW_SIM_PAPER=false

# Enable take-profit and stop-loss (for weather strat, usually false)
SIMMER_SNIPER2_ENABLE_TP_SL=false

# Take Profit % (only if ENABLE_TP_SL=true)
SIMMER_SNIPER2_TP=0.50

# Stop Loss % (only if ENABLE_TP_SL=true)
SIMMER_SNIPER2_SL=0.25

# Rate Limiting & Discovery
#
# Daily import limit for new markets (Free=10, Pro=50/100)
# Discovery runs every ~12 hours and will not exceed this limit.
SIMMER_SNIPER2_DAILY_IMPORT_LIMIT=10

# Telegram Notifications
#
# Set TELEGRAM_ENABLED=true and provide BOT_TOKEN + CHAT_ID to receive alerts
SIMMER_SNIPER2_TELEGRAM_ENABLED=true
SIMMER_SNIPER2_TELEGRAM_CHAT_ID=
SIMMER_SNIPER2_TELEGRAM_BOT_TOKEN=

# External Wallet (Optional)
#
# If set, uses external self-custody wallet for real Polymarket trading.
# If not set, uses managed wallet (server-side signing, requires Dashboard link).
# Format: 0x0123456789abcdef... (64 hex chars)

# Redeem Daemon
# Automatically redeem winning positions every hour
SIMMER_SNIPER2_ENABLE_REDEEM=true
SIMMER_SNIPER2_REDEEM_INTERVAL=3600
WALLET_PRIVATE_KEY=


