From c3b4a4dde1e2421bbd3db783b463ab6b1e9fbee9 Mon Sep 17 00:00:00 2001 From: Matthias Date: Sat, 9 Nov 2019 13:59:19 +0100 Subject: [PATCH] Update sample configurations --- config.json.example | 5 ++++- config_binance.json.example | 5 +++++ config_full.json.example | 23 ++++++++++++++--------- config_kraken.json.example | 5 +++++ 4 files changed, 28 insertions(+), 10 deletions(-) diff --git a/config.json.example b/config.json.example index 9a6dafd04..a2add358f 100644 --- a/config.json.example +++ b/config.json.example @@ -52,6 +52,9 @@ "DOGE/BTC" ] }, + "pairlists": [ + {"method": "StaticPairList"} + ], "edge": { "enabled": false, "process_throttle_secs": 3600, @@ -68,7 +71,7 @@ "remove_pumps": false }, "telegram": { - "enabled": true, + "enabled": false, "token": "your_telegram_token", "chat_id": "your_telegram_chat_id" }, diff --git a/config_binance.json.example b/config_binance.json.example index 58817a78e..aa36ed035 100644 --- a/config_binance.json.example +++ b/config_binance.json.example @@ -54,6 +54,11 @@ "BNB/BTC" ] }, + "pairlists": [ + { + "method": "StaticPairList" + } + ], "edge": { "enabled": false, "process_throttle_secs": 3600, diff --git a/config_full.json.example b/config_full.json.example index 9cec8fcb8..2bc2cde9e 100644 --- a/config_full.json.example +++ b/config_full.json.example @@ -50,17 +50,22 @@ "buy": "gtc", "sell": "gtc" }, - "pairlist": { - "method": "VolumePairList", - "config": { - "number_assets": 20, - "sort_key": "quoteVolume", + "pairlists": [ + {"method": "StaticPairList"}, + { + "method": "VolumePairList", + "config": { + "number_assets": 20, + "sort_key": "quoteVolume" + } }, - "filters":{ - "PrecisionFilter": {}, - "LowPriceFilter": {"low_price_percent": 0.01} + {"method": "PrecisionFilter"}, + {"method": "LowPriceFilter", + "config": { + "low_price_percent": 0.01 + } } - }, + ], "exchange": { "name": "bittrex", "sandbox": false, diff --git a/config_kraken.json.example b/config_kraken.json.example index 5a36941d8..9ca2ca065 100644 --- a/config_kraken.json.example +++ b/config_kraken.json.example @@ -46,6 +46,11 @@ ] }, + "pairlists": [ + { + "method": "StaticPairList" + } + ], "edge": { "enabled": false, "process_throttle_secs": 3600,