-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy path.env.example
More file actions
77 lines (64 loc) · 3 KB
/
Copy path.env.example
File metadata and controls
77 lines (64 loc) · 3 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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
# ============================================================================
# DeepAlpha Configuration
# Copy this file to .env and fill in your values: cp .env.example .env
# Docs: https://deepalphabot.com/setup-guide
# ============================================================================
# --- License Key (optional — unlocks Pro features) --------------------------
# Get yours at https://deepalphabot.com/cloud
# Without a license key the bot runs in free mode (limited features).
LICENSE_KEY=DA-XXXX-XXXX-XXXX-XXXX
# --- Exchange ----------------------------------------------------------------
# Which exchange to trade on. Supported values:
# bybit, binance, okx, bitget, gateio, kucoin, htx, mexc, bingx, phemex,
# bitmart, whitebit, hyperliquid
# Pick ONE and fill in the matching API keys below.
EXCHANGE=bybit
# --- Bybit (recommended) ----------------------------------------------------
# Create API keys at: https://www.bybit.com/app/user/api-management
# Enable "Contract - Trade" permission. Do NOT enable withdrawal.
BYBIT_API_KEY=
BYBIT_API_SECRET=
# --- Binance Futures ---------------------------------------------------------
# Create API keys at: https://www.binance.com/en/my/settings/api-management
# Enable "Futures" permission. Restrict to your IP for security.
BINANCE_API_KEY=
BINANCE_API_SECRET=
# --- OKX ---------------------------------------------------------------------
# Create API keys at: https://www.okx.com/account/my-api
# You need the passphrase you set when creating the API key.
OKX_API_KEY=
OKX_API_SECRET=
OKX_PASSPHRASE=
# --- Bitget ------------------------------------------------------------------
# Create API keys at: https://www.bitget.com/account/newapi
# You need the passphrase you set when creating the API key.
BITGET_API_KEY=
BITGET_SECRET=
BITGET_PASSPHRASE=
# --- Gate.io -----------------------------------------------------------------
GATEIO_API_KEY=
GATEIO_API_SECRET=
# --- KuCoin ------------------------------------------------------------------
KUCOIN_API_KEY=
KUCOIN_API_SECRET=
KUCOIN_PASSPHRASE=
# --- Hyperliquid (on-chain, no API key needed) -------------------------------
# Export your private key from MetaMask or any EVM wallet.
PRIVATE_KEY=
WALLET_ADDRESS=
# --- Telegram Notifications (optional but recommended) -----------------------
# 1. Create a bot: talk to @BotFather on Telegram -> /newbot
# 2. Get your chat ID: talk to @userinfobot on Telegram
# Alerts: trade opened/closed, daily PnL summary, errors.
TELEGRAM_TOKEN=
TELEGRAM_CHAT_ID=
# --- Trading Settings --------------------------------------------------------
# LEVERAGE: Margin multiplier (1-10). Default 5. Higher = more risk.
LEVERAGE=5
# MAX_POSITIONS: How many coins can be traded at the same time (1-10).
MAX_POSITIONS=3
# --- Advanced (most users don't need to change these) ------------------------
# MIN_CONFIDENCE: Minimum AI confidence to open a trade (0.0-1.0). Default 0.6.
# MIN_CONFIDENCE=0.6
# MAIN_LOOP_SECONDS: How often the bot scans for signals. Default 60.
# MAIN_LOOP_SECONDS=60