Hyperopt参数更新 - 阶段:1 | VM:rose | ResponseID:Y4Hf7WKR60mF | 2025-11-24 10:05:18
This commit is contained in:
parent
3f22218f6b
commit
d2753b6f4f
@ -13,17 +13,17 @@
|
||||
"bb_length": 59,
|
||||
"bb_lower_deviation": 1.022,
|
||||
"bb_std": 3.83,
|
||||
"bb_width_threshold": 0.005,
|
||||
"h1_max_candles": 40,
|
||||
"h1_max_consecutive_candles": 2,
|
||||
"h1_rapid_rise_threshold": 0.08,
|
||||
"bb_width_threshold": 0.013,
|
||||
"h1_max_candles": 24,
|
||||
"h1_max_consecutive_candles": 1,
|
||||
"h1_rapid_rise_threshold": 0.205,
|
||||
"max_entry_adjustments": 6,
|
||||
"min_condition_count": 2,
|
||||
"rsi_bull_threshold": 68,
|
||||
"rsi_bull_threshold": 40,
|
||||
"rsi_length": 25,
|
||||
"rsi_oversold": 20,
|
||||
"rsi_oversold": 22,
|
||||
"stochrsi_bull_threshold": 26,
|
||||
"stochrsi_neutral_threshold": 22,
|
||||
"stochrsi_neutral_threshold": 19,
|
||||
"volume_multiplier": 5.427
|
||||
},
|
||||
"max_open_trades": {
|
||||
|
||||
@ -95,7 +95,7 @@ class FreqaiPrimer(IStrategy):
|
||||
# [propertiesGrp step="2" name="第二轮优化 - 剧烈拉升检测" epochs="160" space="buy" description="防追高核心参数,绝对不能放宽!"]
|
||||
rsi_oversold = IntParameter(20, 50, default=30, optimize=True, load=True, space='buy') # 安全:20-50
|
||||
rsi_bull_threshold = IntParameter(40, 68, default=58, optimize=True, load=True, space='buy') # 安全:40-68
|
||||
stochrsi_neutral_threshold = IntParameter(15, 40, default=30, optimize=True, load=True, space='buy') # 安全:15-40
|
||||
stochrsi_neutral_threshold = IntParameter(15, 40, default=19, optimize=True, load=True, space='buy') # 安全:15-40
|
||||
bb_width_threshold = DecimalParameter(0.003, 0.030, decimals=3, default=0.012, optimize=True, load=True, space='buy') # 安全:0.003-0.030
|
||||
h1_max_candles = IntParameter(16, 50, default=35, optimize=True, load=True, space='buy') # 黄金区间!绝不能超过50
|
||||
h1_rapid_rise_threshold = DecimalParameter(0.08, 0.22, decimals=3, default=0.15, optimize=True, load=True, space='buy') # 0.08-0.22 实盘最稳
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user