-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
33 lines (26 loc) · 1.61 KB
/
Copy path.env.example
File metadata and controls
33 lines (26 loc) · 1.61 KB
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
# ── Anthropic ────────────────────────────────────────────────────────────────
ANTHROPIC_API_KEY=sk-ant-...
# ── Binance ───────────────────────────────────────────────────────────────────
BINANCE_API_KEY=
BINANCE_SECRET_KEY=
# "testnet" | "mainnet"
BINANCE_ENV=testnet
# ── PostgreSQL ────────────────────────────────────────────────────────────────
POSTGRES_HOST=localhost
POSTGRES_PORT=5432
POSTGRES_DB=botf
POSTGRES_USER=botf
POSTGRES_PASSWORD=botf_dev
# ── Redis ─────────────────────────────────────────────────────────────────────
REDIS_HOST=localhost
REDIS_PORT=6379
REDIS_DB=0
# ── Bot ───────────────────────────────────────────────────────────────────────
# Symbols to watch, comma-separated
SYMBOLS=BTC/USDT,ETH/USDT
# Maximum risk per trade as fraction of capital (0.01 = 1%)
RISK_PER_TRADE=0.01
# "DEBUG" | "INFO" | "WARNING" | "ERROR"
LOG_LEVEL=INFO
# "dry_run" | "live" (never set live without explicit intent)
TRADING_MODE=dry_run