diff --git a/config_examples/aienhance_config.json b/config_examples/aienhance_config.json index 617e240a..98e2493f 100644 --- a/config_examples/aienhance_config.json +++ b/config_examples/aienhance_config.json @@ -11,23 +11,28 @@ "secret": "your_api_secret", "password": "your_api_password", "type": "spot", + "enable_ws": false, "ccxt_config": { - "enableRateLimit": true, - "options": { - "defaultType": "spot" - } + "enableRateLimit": true, + "rateLimit": 500, + "options": { + "defaultType": "spot" + } }, "ccxt_async_config": { - "enableRateLimit": true, - "timeout": 30000 - } + "enableRateLimit": true, + "rateLimit": 500, + "timeout": 20000 + }, + "pair_whitelist": [ + "BTC/USDT", + "SOL/USDT" + ], + "pair_blacklist": [] }, "pairlists": [ { - "method": "StaticPairList", - "allow_inactive": false, - "number_assets": 5, - "pairs": ["BTC/USDT", "ETH/USDT", "BNB/USDT", "XRP/USDT", "SOL/USDT"] + "method": "StaticPairList" } ], "strategy": "AIEnhancedStrategy",