v2.2b: 当前最优基线 - 回测+4673%/+17%最大回撤 + backtest配置

This commit is contained in:
2026-06-08 17:54:00 +08:00
parent 2141a1f8e1
commit 0bdf1f8267
2 changed files with 45 additions and 11 deletions

35
config.backtest.json Normal file
View File

@ -0,0 +1,35 @@
{
"max_open_trades": 1,
"stake_currency": "USDT",
"stake_amount": "unlimited",
"tradable_balance_ratio": 0.99,
"fiat_display_currency": "USD",
"dry_run": true,
"dry_run_wallet": 10000,
"trading_mode": "futures",
"margin_mode": "isolated",
"liquidation_buffer": 0.05,
"exchange": {
"name": "binance",
"key": "",
"secret": "",
"password": "",
"ccxt_config": {"enableRateLimit": true},
"ccxt_async_config": {"enableRateLimit": true},
"pair_whitelist": ["ETH/USDT:USDT"],
"pair_blacklist": []
},
"pairlists": [{"method": "StaticPairList"}],
"telegram": {"enabled": false, "token": "", "chat_id": ""},
"api_server": {
"enabled": false,
"listen_ip_address": "0.0.0.0",
"listen_port": 8080,
"username": "freqtrader",
"password": "password",
"jwt_secret_key": "somethingRandom123"
},
"bot_name": "backtest",
"entry_pricing": {"price_side": "same", "use_order_book": true, "order_book_top": 1},
"exit_pricing": {"price_side": "same", "use_order_book": true, "order_book_top": 1}
}