myTestFreqAI/config_examples/config_base_hyperopt.json
2025-05-07 18:58:26 +08:00

65 lines
1.4 KiB
JSON

{
"strategy": "MyStrategy",
"timeframe": "5m",
"dry_run": true,
"stake_currency": "USDT",
"stake_amount": 10.0,
"minimal_roi": {
"40": 0.0,
"30": 0.01,
"20": 0.02,
"0": 0.04
},
"stoploss": -0.10,
"trailing_stop": false,
"trailing_stop_positive": 0.0,
"trailing_stop_positive_offset": 0.0,
"trailing_only_offset_is_reached": 0.0,
"unfilledtimeout": {
"buy": 300,
"sell": 300
},
"exchange": {
"name": "binance",
"key": "",
"secret": "",
"ccxt_config": {
"enableRateLimit": true
},
"pair_whitelist": [
"BTC/USDT",
"ETH/USDT",
"SOL/USDT"
],
"pair_blacklist": []
},
"telegram": {
"enabled": false,
"token": "",
"chat_id": ""
},
"api_server": {
"enabled": false,
"listen_ip_address": "127.0.0.1",
"listen_port": 8080,
"verbosity": "error",
"enable_openapi": false
},
"hyperopt": {
"enabled": false,
"epochs": 100,
"spaces": [
"buy",
"sell",
"roi",
"stoploss",
"trailing"
],
"hyperopt_path": "",
"hyperopt_loss": "SharpeHyperOptLossDaily",
"print_all": false,
"mongodb_url": "",
"mongodb_database": ""
}
}