-
Notifications
You must be signed in to change notification settings - Fork 22
Expand file tree
/
Copy path.env.example
More file actions
39 lines (32 loc) · 1.2 KB
/
.env.example
File metadata and controls
39 lines (32 loc) · 1.2 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
# Backtrader CCXT Configuration Example
# Copy this file to .env and fill in your actual API credentials
# ============================================
# OKX Exchange Configuration
# ============================================
OKX_API_KEY=your_okx_api_key_here
OKX_SECRET=your_okx_secret_here
OKX_PASSWORD=your_okx_password_here
# ============================================
# Binance Exchange Configuration
# ============================================
BINANCE_API_KEY=your_binance_api_key_here
BINANCE_SECRET=your_binance_secret_here
# ============================================
# Bybit Exchange Configuration
# ============================================
BYBIT_API_KEY=your_bybit_api_key_here
BYBIT_SECRET=your_bybit_secret_here
# ============================================
# Kraken Exchange Configuration
# ============================================
KRAKEN_API_KEY=your_kraken_api_key_here
KRAKEN_SECRET=your_kraken_secret_here
# ============================================
# General Settings
# ============================================
# Enable debug logging (true/false)
CCXT_DEBUG=false
# Default number of retries for API calls
CCXT_RETRIES=5
# Use sandbox/testnet mode (true/false)
CCXT_SANDBOX=false