配置了新的hyperopt参数,并run了7月15-30日的优化

This commit is contained in:
Ubuntu 2025-08-14 15:02:40 +08:00
parent 390fa5f406
commit a80a7738ef
8 changed files with 22 additions and 94658 deletions

1
.gitignore vendored
View File

@ -41,6 +41,7 @@ lib64/
parts/
sdist/
var/
se*
wheels/
*.egg-info/
.installed.cfg

0
.gitignore.lock Normal file
View File

Binary file not shown.

View File

@ -9,27 +9,18 @@
"max_open_trades": 5
},
"buy": {
"ADD_POSITION_THRESHOLD": -0.021,
"BUY_THRESHOLD_MAX": -0.001,
"BUY_THRESHOLD_MIN": -0.035,
"COOLDOWN_PERIOD_MINUTES": 9,
"MAX_ENTRY_POSITION_ADJUSTMENT": 3
},
"sell": {
"EXIT_POSITION_RATIO": 0.472,
"SELL_THRESHOLD_MAX": 0.065,
"SELL_THRESHOLD_MIN": 0.002,
"TRAILING_STOP_DISTANCE": 0.015,
"TRAILING_STOP_START": 0.016
"trend_final_bearish_threshold": 13,
"trend_final_bullish_threshold": 55
},
"sell": {},
"protection": {},
"trailing": {
"trailing_stop": true,
"trailing_stop_positive": 0.106,
"trailing_stop_positive_offset": 0.196,
"trailing_stop_positive": 0.046,
"trailing_stop_positive_offset": 0.14600000000000002,
"trailing_only_offset_is_reached": false
}
},
"ft_stratparam_v": 1,
"export_time": "2025-07-01 14:51:29.420394+00:00"
"export_time": "2025-08-14 06:30:51.352733+00:00"
}

94642
sedNlYPjP

File diff suppressed because it is too large Load Diff

View File

@ -251,6 +251,20 @@ docker-compose run -d --rm \
--config /freqtrade/templates/${PARAMS_NAME}.json \
--config /freqtrade/config_examples/live.json \
--strategy $STRATEGY_NAME \
--config /freqtrade/freqtrade/templates/${STRATEGY_NAME}.json \
--fee 0.0008 \
--strategy-path /freqtrade/templates"
docker-compose run -d --rm --name freqtrade-dryrun-${GIT_COMMIT_SHORT} -p 8080:8080 freqtrade trade \
$PAIRS_FLAG \
--logfile /freqtrade/user_data/logs/freqtrade.log \
--db-url sqlite:////freqtrade/user_data/tradesv3.sqlite \
--dry-run \
--freqaimodel LightGBMRegressorMultiTarget \
--config /freqtrade/config_examples/$CONFIG_FILE \
--enable-protections \
--strategy $STRATEGY_NAME \
--fee 0.0008 \
--strategy-path /freqtrade/templates
if [ $? -eq 0 ]; then

View File

@ -244,5 +244,5 @@ docker-compose run --rm freqtrade hyperopt $PAIRS_FLAG \
-e 100 \
-j 4 \
--hyperopt-loss SharpeHyperOptLoss \
--spaces buy sell trailing \
--spaces buy trailing \
--fee 0.0016

View File