From 0ad4bf6e9463638241d96d48e9020c6052096cc0 Mon Sep 17 00:00:00 2001 From: froooze <40874087+froooze@users.noreply.github.com> Date: Wed, 4 Dec 2019 20:39:52 +0100 Subject: [PATCH] make lower/upper bound more clear --- dexbot/strategies/config_parts/staggered_config.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dexbot/strategies/config_parts/staggered_config.py b/dexbot/strategies/config_parts/staggered_config.py index 3b59166a6..6a97124a5 100644 --- a/dexbot/strategies/config_parts/staggered_config.py +++ b/dexbot/strategies/config_parts/staggered_config.py @@ -52,11 +52,11 @@ def configure(cls, return_base_config=True): (0, 1000000000, 8, '')), ConfigElement( 'lower_bound', 'float', 1, 'Lower bound', - 'The bottom price in the range', + 'The lowest price (Quote/Base) in the range', (0, 1000000000, 8, '')), ConfigElement( 'upper_bound', 'float', 1000000, 'Upper bound', - 'The top price in the range', + 'The highest price (Quote/Base) in the range', (0, 1000000000, 8, '')), ConfigElement( 'instant_fill', 'bool', True, 'Allow instant fill',