From ad5a97a8c22653abfa370e0bab6cb3fbd481f0da Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=A9r=C3=B4me=20Delacotte?= Date: Sun, 2 Nov 2025 19:33:35 +0100 Subject: [PATCH] =?UTF-8?q?Zeus=5F8=5F3=5F2=5FB=5F4=5F2=2020241101-2025031?= =?UTF-8?q?0=E2=94=82=20=20=20=20=2073=20=E2=94=82=20=20=20=20=20=20=20=20?= =?UTF-8?q?=200.81=20=E2=94=82=20=20=20=20=20=20=20=20=20499.108=20?= =?UTF-8?q?=E2=94=82=20=20=20=20=20=20=20=2012.48=20=E2=94=82=201=20day,?= =?UTF-8?q?=2015:27:00=20=E2=94=82=20=20=2072=20=20=20=20=200=20=20=20=20?= =?UTF-8?q?=201=20=2098.6=20=E2=94=82=2087.895=20USDT=20=201.92%?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Zeus_8_3_2_B_4_2.json | 36 ++++++++++++++++++------------------ Zeus_8_3_2_B_4_2.py | 6 +++--- 2 files changed, 21 insertions(+), 21 deletions(-) diff --git a/Zeus_8_3_2_B_4_2.json b/Zeus_8_3_2_B_4_2.json index c98d04b..8d88c85 100644 --- a/Zeus_8_3_2_B_4_2.json +++ b/Zeus_8_3_2_B_4_2.json @@ -4,9 +4,6 @@ "roi": { "0": 10 }, - "stoploss": { - "stoploss": -1.0 - }, "trailing": { "trailing_stop": true, "trailing_stop_positive": 0.15, @@ -19,25 +16,28 @@ "buy": { "indic_deriv_5m_slop_sup_buy": "sma12", "indic_deriv_5m_slop_sup_inf": "sma12", - "mises": 10, - "pct": 0.012, - "pct_inc": 0.0022, - "deriv_5m_slope_sup_buy": -0.02, - "deriv_5m_slope_sup_inf": 0.27, + "mises": 5, + "deriv_5m_slope_sup_buy": 0.07, + "deriv_5m_slope_sup_inf": 0.04, "indic_5m_slope_inf": "sma12", - "indic_5m_slope_sup": "sma60", - "mise_factor_buy": 0.01 + "indic_5m_slope_sup": "sma24", + "mise_factor_buy": 0.02, + "pct": 0.04, + "pct_inc": 0.0016 }, "sell": { - "deriv_5m_slope_inf_sell": -0.08, - "deriv_5m_slope_sup_sell": 0.14, - "indic_5m_slope_inf_sell": "sma24", - "indic_5m_slope_sup_sell": "sma24", - "indic_deriv_5m_slope_inf_sell": "sma5", - "indic_deriv_5m_slope_sup_sell": "sma60" + "deriv_5m_slope_inf_sell": 0.14, + "deriv_5m_slope_sup_sell": 0.41, + "indic_5m_slope_inf_sell": "sma12", + "indic_5m_slope_sup_sell": "sma60", + "indic_deriv_5m_slope_inf_sell": "sma12", + "indic_deriv_5m_slope_sup_sell": "sma5" }, - "protection": {} + "protection": {}, + "stoploss": { + "stoploss": -0.155 + } }, "ft_stratparam_v": 1, - "export_time": "2025-11-01 21:44:32.435062+00:00" + "export_time": "2025-11-02 16:30:26.419500+00:00" } \ No newline at end of file diff --git a/Zeus_8_3_2_B_4_2.py b/Zeus_8_3_2_B_4_2.py index 5bae06a..f2a517b 100644 --- a/Zeus_8_3_2_B_4_2.py +++ b/Zeus_8_3_2_B_4_2.py @@ -258,10 +258,10 @@ class Zeus_8_3_2_B_4_2(IStrategy): indicators = {'sma5', 'sma12', 'sma24', 'sma60'} indicators_percent = {'percent', 'percent3', 'percent12', 'percent24', 'percent_1h', 'percent3_1h', 'percent12_1h', 'percent24_1h'} - mises = IntParameter(1, 50, default=10, space='buy', optimize=False, load=False) + mises = IntParameter(1, 50, default=5, space='buy', optimize=False, load=False) - pct = DecimalParameter(0.005, 0.05, default=0.012, decimals=3, space='buy', optimize=False, load=False) - pct_inc = DecimalParameter(0.0001, 0.003, default=0.0022, decimals=4, space='buy', optimize=False, load=False) + pct = DecimalParameter(0.005, 0.05, default=0.012, decimals=3, space='buy', optimize=True, load=True) + pct_inc = DecimalParameter(0.0001, 0.003, default=0.0022, decimals=4, space='buy', optimize=True, load=True) indic_5m_slope_sup = CategoricalParameter(indicators, default="sma60", space='buy') indic_deriv_5m_slop_sup_buy = CategoricalParameter(indicators, default="sma12", space='buy', optimize=False, load=False)