From e5221bded762718a48eb350f8a044388ff8fbf61 Mon Sep 17 00:00:00 2001 From: Joe Schr <8218910+TheJoeSchr@users.noreply.github.com> Date: Thu, 4 Jul 2024 17:06:59 +0200 Subject: [PATCH] Align constant defaults for `cache_size` with `max_candles` --- freqtrade/constants.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/freqtrade/constants.py b/freqtrade/constants.py index 510b186dc..ca102ebcd 100644 --- a/freqtrade/constants.py +++ b/freqtrade/constants.py @@ -537,7 +537,7 @@ CONF_SCHEMA = { "orderflow": { "type": "object", "properties": { - "cache_size": {"type": "number", "minimum": 1, "default": 1000}, + "cache_size": {"type": "number", "minimum": 1, "default": 1500}, "max_candles": {"type": "number", "minimum": 1, "default": 1500}, "scale": {"type": "number", "minimum": 0.0}, "stacked_imbalance_range": {"type": "number", "minimum": 0},