From 5ad352fdf1ab1bcc5c605768f0d55f24e86d80cd Mon Sep 17 00:00:00 2001 From: Matthias Date: Wed, 19 Apr 2023 21:08:28 +0200 Subject: [PATCH] add /pairlists to rest client --- scripts/rest_client.py | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/scripts/rest_client.py b/scripts/rest_client.py index 196542780..3c9050f43 100755 --- a/scripts/rest_client.py +++ b/scripts/rest_client.py @@ -313,6 +313,13 @@ class FtRestClient(): """ return self._get(f"strategy/{strategy}") + def pairlists(self): + """Lists available pairlists + + :return: json object + """ + return self._get("pairlists") + def plot_config(self): """Return plot configuration if the strategy defines one.