配置了新的hyperopt参数,并run了7月15-30日的优化
This commit is contained in:
parent
390fa5f406
commit
a80a7738ef
1
.gitignore
vendored
1
.gitignore
vendored
@ -41,6 +41,7 @@ lib64/
|
||||
parts/
|
||||
sdist/
|
||||
var/
|
||||
se*
|
||||
wheels/
|
||||
*.egg-info/
|
||||
.installed.cfg
|
||||
|
||||
0
.gitignore.lock
Normal file
0
.gitignore.lock
Normal file
BIN
ccxt.tar.gz
BIN
ccxt.tar.gz
Binary file not shown.
@ -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"
|
||||
}
|
||||
|
||||
@ -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
|
||||
|
||||
@ -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
|
||||
|
||||
0
tools/result/analytic.log
Normal file
0
tools/result/analytic.log
Normal file
Loading…
x
Reference in New Issue
Block a user