Hyperopt参数更新 - 阶段:3 | VM:emma | ResponseID:UpFN4F1nHdlg | 2025-11-22 17:35:47
This commit is contained in:
parent
531bbc5ff8
commit
469fcd9684
@ -3,10 +3,10 @@
|
||||
"ft_stratparam_v": 1,
|
||||
"max_open_trades": 5,
|
||||
"minimal_roi": {
|
||||
"0": 0.08600000000000001,
|
||||
"10": 0.019,
|
||||
"24": 0.012,
|
||||
"76": 0
|
||||
"0": 0.179,
|
||||
"43": 0.022,
|
||||
"8": 0.061,
|
||||
"92": 0
|
||||
},
|
||||
"params": {
|
||||
"buy": {
|
||||
@ -43,16 +43,16 @@
|
||||
"54": 0
|
||||
},
|
||||
"sell": {
|
||||
"exit_bb_upper_deviation": 1.18,
|
||||
"exit_profit_tier1": 0.085,
|
||||
"exit_profit_tier2": 0.155,
|
||||
"exit_reduce_tier1": 0.89,
|
||||
"exit_reduce_tier2": 0.36,
|
||||
"exit_bb_upper_deviation": 1.139,
|
||||
"exit_profit_tier1": 0.142,
|
||||
"exit_profit_tier2": 0.256,
|
||||
"exit_reduce_tier1": 0.875,
|
||||
"exit_reduce_tier2": 0.135,
|
||||
"exit_rsi_threshold": 72,
|
||||
"exit_volume_multiplier": 1.2,
|
||||
"max_reduce_adjustments": 3,
|
||||
"reduce_coefficient": 0.517,
|
||||
"reduce_profit_base": 0.116
|
||||
"exit_volume_multiplier": 2.237,
|
||||
"max_reduce_adjustments": 8,
|
||||
"reduce_coefficient": 0.058,
|
||||
"reduce_profit_base": 0.158
|
||||
},
|
||||
"stoploss": {
|
||||
"stoploss": -0.286
|
||||
@ -64,7 +64,7 @@
|
||||
"trailing_stop_positive_offset": 0.045
|
||||
}
|
||||
},
|
||||
"stoploss": -0.314,
|
||||
"stoploss": -0.223,
|
||||
"strategy_name": "FreqaiPrimer",
|
||||
"trailing_only_offset_is_reached": false,
|
||||
"trailing_stop": true,
|
||||
|
||||
@ -108,16 +108,16 @@ class FreqaiPrimer(IStrategy):
|
||||
# [/propertiesGrp]
|
||||
|
||||
# [propertiesGrp id="4" name="第五轮优化" epochs="200" space="sell roi stoploss" description="出场条件与分级止盈,减仓与风险管理"]
|
||||
exit_bb_upper_deviation = DecimalParameter(0.80, 1.25, decimals=2, default=0.99, optimize=True, load=True, space='sell') # 极致放宽:0.80-1.25
|
||||
exit_volume_multiplier = DecimalParameter(0.8, 6.0, decimals=1, default=3.43, optimize=True, load=True, space='sell') # 极致放宽:0.8-6.0
|
||||
exit_rsi_threshold = IntParameter(40, 85, default=58, optimize=True, load=True, space='sell') # 极致放宽:40-85
|
||||
exit_profit_tier1 = DecimalParameter(0.005, 0.20, decimals=3, default=0.05, optimize=True, load=True, space='sell') # 极致放宽:0.005-0.20
|
||||
exit_reduce_tier1 = DecimalParameter(0.05, 0.9, decimals=2, default=0.5, optimize=True, load=True, space='sell') # 极致放宽:0.05-0.9
|
||||
exit_profit_tier2 = DecimalParameter(0.01, 0.35, decimals=3, default=0.10, optimize=True, load=True, space='sell') # 极致放宽:0.01-0.35
|
||||
exit_reduce_tier2 = DecimalParameter(0.03, 0.75, decimals=2, default=0.3, optimize=True, load=True, space='sell') # 极致放宽:0.03-0.75
|
||||
reduce_profit_base = DecimalParameter(0.005, 0.30, default=0.05, space='sell', optimize=True) # 极致放宽:0.005-0.30
|
||||
reduce_coefficient = DecimalParameter(0.01, 1.5, default=0.289, space='sell', optimize=True) # 极致放宽:0.01-1.5
|
||||
max_reduce_adjustments = IntParameter(1, 12, default=3, space='sell', optimize=True) # 极致放宽:1-12
|
||||
exit_bb_upper_deviation = DecimalParameter(0.80, 1.25, decimals=2, default=1.139, optimize=True, load=True, space='sell') # 极致放宽:0.80-1.25
|
||||
exit_volume_multiplier = DecimalParameter(0.8, 6.0, decimals=1, default=2.237, optimize=True, load=True, space='sell') # 极致放宽:0.8-6.0
|
||||
exit_rsi_threshold = IntParameter(40, 85, default=72, optimize=True, load=True, space='sell') # 极致放宽:40-85
|
||||
exit_profit_tier1 = DecimalParameter(0.005, 0.20, decimals=3, default=0.142, optimize=True, load=True, space='sell') # 极致放宽:0.005-0.20
|
||||
exit_reduce_tier1 = DecimalParameter(0.05, 0.9, decimals=2, default=0.875, optimize=True, load=True, space='sell') # 极致放宽:0.05-0.9
|
||||
exit_profit_tier2 = DecimalParameter(0.01, 0.35, decimals=3, default=0.256, optimize=True, load=True, space='sell') # 极致放宽:0.01-0.35
|
||||
exit_reduce_tier2 = DecimalParameter(0.03, 0.75, decimals=2, default=0.135, optimize=True, load=True, space='sell') # 极致放宽:0.03-0.75
|
||||
reduce_profit_base = DecimalParameter(0.005, 0.30, default=0.158, space='sell', optimize=True) # 极致放宽:0.005-0.30
|
||||
reduce_coefficient = DecimalParameter(0.01, 1.5, default=0.058, space='sell', optimize=True) # 极致放宽:0.01-1.5
|
||||
max_reduce_adjustments = IntParameter(1, 12, default=8, space='sell', optimize=True) # 极致放宽:1-12
|
||||
# [/propertiesGrp]
|
||||
|
||||
# [propertiesGrp id="5" name="第六轮优化" epochs="80" space="roi stoploss" description="roi和stoploss优化" /]
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user