summaryrefslogtreecommitdiff
path: root/.env.example
diff options
context:
space:
mode:
authorTheSiahxyz <164138827+TheSiahxyz@users.noreply.github.com>2026-04-01 16:07:05 +0900
committerTheSiahxyz <164138827+TheSiahxyz@users.noreply.github.com>2026-04-01 16:07:05 +0900
commite1bf24b2a639ba21361ae408ee6c1eebe37801aa (patch)
tree83127c396a78a70a3cd6317e11b140b3de5ed141 /.env.example
parent558de36fdd886a117c66dee73850cc219c86b2a4 (diff)
feat(shared): add Telegram notification service
Diffstat (limited to '.env.example')
-rw-r--r--.env.example9
1 files changed, 8 insertions, 1 deletions
diff --git a/.env.example b/.env.example
index 37ddd56..428d388 100644
--- a/.env.example
+++ b/.env.example
@@ -1,9 +1,16 @@
BINANCE_API_KEY=
BINANCE_API_SECRET=
REDIS_URL=redis://localhost:6379
-DATABASE_URL=postgresql://trading:trading@localhost:5432/trading
+DATABASE_URL=postgresql+asyncpg://trading:trading@localhost:5432/trading
LOG_LEVEL=INFO
RISK_MAX_POSITION_SIZE=0.1
RISK_STOP_LOSS_PCT=5
RISK_DAILY_LOSS_LIMIT_PCT=10
DRY_RUN=true
+TELEGRAM_BOT_TOKEN=
+TELEGRAM_CHAT_ID=
+TELEGRAM_ENABLED=false
+LOG_FORMAT=json
+HEALTH_PORT=8080
+CIRCUIT_BREAKER_THRESHOLD=5
+CIRCUIT_BREAKER_TIMEOUT=60