🔌Connecting to Exchanges: Detailed Freqtrade Exchange Configuration
🏦 Exchange Configuration Details
"exchange": {
"name": "binance", // Exchange name, e.g., binance, bybit, okx
"key": "your_api_key", // Your API Key
"secret": "your_api_secret", // API Secret
"password": "your_password", // Required for some exchanges like OKX, optional for others
"ccxt_config": { ... }, // CCXT additional settings (see below)
"pair_whitelist": [ "BTC/USDT" ],// List of tradable pairs
"pair_blacklist": [ "*/BNB" ] // Blacklisted pairs (optional)
}📌 Field Descriptions
Field
Description
🧠 Usage Tips
⚙️ ccxt_config — Advanced Connection Settings
⛓️ enableRateLimit — Enable Rate Limiting (Recommended)
📡 enable_ws — Enable WebSocket for Real-Time Data
🔁 markets_refresh_interval — Market Data Refresh Interval
🧪 Verify Exchange Connection
✅ Recommended Configuration Example
🧠 Summary Checklist
Parameter
Description
Recommended Setting
PreviousHow to Precisely Control Buy & Sell Prices? Practical entry/exit_pricing ConfigurationNextTrading Currency and Fund Management Configuration
Last updated