改成了让hyperopt和freqai各自处理各自的优化参数,互不打扰,并使用freqmodel的MultiTarget优化类

This commit is contained in:
zhangkun9038@dingtalk.com 2025-05-21 04:04:25 +00:00
parent 0cafe5653c
commit b4b647dc4d
2 changed files with 2 additions and 2 deletions

View File

@ -47,7 +47,7 @@ echo "docker-compose run --rm freqtrade backtesting \
docker-compose run --rm freqtrade backtesting \
--logfile /freqtrade/user_data/logs/freqtrade.log \
--freqaimodel LightGBMRegressor \
--freqaimodel LightGBMRegressorMultiTarget \
--config /freqtrade/config_examples/$CONFIG_FILE \
--strategy-path /freqtrade/templates \
--strategy $STRATEGY_NAME \

View File

@ -45,7 +45,7 @@ echo "docker-compose run --rm freqtrade hyperopt \
--fee 0.0016"
docker-compose run --rm freqtrade hyperopt \
--logfile /freqtrade/user_data/logs/freqtrade.log \
--freqaimodel LightGBMRegressor \
--freqaimodel LightGBMRegressorMultiTarget \
--strategy $STRATEGY_NAME \
--config /freqtrade/config_examples/$CONFIG_FILE \
--strategy-path /freqtrade/templates \