From 89ddfe08f4ce241cc1f8a16be4f521dd80d74bd8 Mon Sep 17 00:00:00 2001 From: Matthias Date: Tue, 22 Jan 2019 19:17:08 +0100 Subject: [PATCH] Add additional-pairs (sample) to defaultstrategy --- freqtrade/strategy/default_strategy.py | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/freqtrade/strategy/default_strategy.py b/freqtrade/strategy/default_strategy.py index 085a383db..36064f640 100644 --- a/freqtrade/strategy/default_strategy.py +++ b/freqtrade/strategy/default_strategy.py @@ -42,6 +42,19 @@ class DefaultStrategy(IStrategy): 'sell': 'gtc', } + def additional_pairs(self): + """ + Define additional pair/interval combinations to be cached from the exchange. + These pair/interval combinations are non-tradeable, unless they are part + of the whitelist as well. + For more information, please consult the documentation + :return: List of tuples in the format (pair, interval) + Sample: return [("ETH/USDT", "5m"), + ("BTC/USDT", "15m"), + ] + """ + return [] + def populate_indicators(self, dataframe: DataFrame, metadata: dict) -> DataFrame: """ Adds several different TA indicators to the given DataFrame