-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
36 lines (27 loc) · 1022 Bytes
/
.env.example
File metadata and controls
36 lines (27 loc) · 1022 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
# Anthropic API key (required for all LLM agent calls)
ANTHROPIC_API_KEY=
# Trading mode: paper (DRY_RUN, default) | live (Kraken mainnet)
TRADING_MODE=paper
# Required when TRADING_MODE=live — safety gate to prevent accidental live trading
# COUNCIL_LIVE_CONFIRMED=1
# Kraken API credentials (required for live order execution only)
# Not needed for backtesting or paper trading (DRY_RUN=1)
KRAKEN_API_KEY=
KRAKEN_SECRET=
# News feeds (optional — falls back to empty list without keys)
CRYPTOPANIC_API_KEY=
NEWSAPI_KEY=
# Social sentiment (optional — falls back to Fear/Greed proxy)
LUNARCRUSH_API_KEY=
# On-chain data (optional — stubs to 0 without keys)
GLASSNODE_API_KEY=
CRYPTOQUANT_API_KEY=
# Alerting (Phase 3)
TELEGRAM_BOT_TOKEN=
TELEGRAM_CHAT_ID=
# Starting capital in USD (used to seed portfolio_state on first run)
INITIAL_CAPITAL=10000
# SQLite database path (default: ./council.db)
# COUNCIL_DB_PATH=council.db
# Set to 1 to skip order execution and log only (paper trading mode)
# DRY_RUN=0