myTestFreqAI/config_examples/confg_base_hyperopt.json
zhangkun9038@dingtalk.com 62b9fed359 not work NostalgiaV8
2025-05-07 16:56:25 +08:00

60 lines
1.3 KiB
JSON

{
"exchange": {
"name": "okx",
"key": "your_api_key",
"secret": "your_api_secret",
"ccxt_config": {
"enableRateLimit": true,
"defaultType": "spot",
"rateLimit": 2000,
"timeout": 30000
},
"pair_whitelist": ["OKB/USDT", "SOL/USDT"]
},
"pairlists": [
{
"method": "StaticPairList"
}
],
"timeframe": "3m",
"strategy": "",
"order_types": {
"entry": "market",
"exit": "market",
"stoploss": "limit",
"stoploss_on_exchange": false
},
"order_time_in_force": {
"entry": "gtc",
"exit": "gtc"
},
"entry_pricing": {
"price_side": "other",
"use_order_book": false,
"price_last_balance": 0.0
},
"exit_pricing": {
"price_side": "other",
"use_order_book": false
},
"use_exit_signal": true,
"exit_profit_only": false,
"ignore_roi_if_entry_signal": false,
"stoploss": -0.05,
"minimal_roi": {
"0": 0.06,
"30": 0.04,
"60": 0.02,
"120": 0
},
"stake_currency": "USDT",
"stake_amount": 150,
"max_open_trades": 4,
"unfilledtimeout": {
"entry": 5,
"exit": 15,
"unit": "minutes"
},
"fee": 0.0008
}