auto_trade_sys/config/strategy_narrow_universe.json
薇薇安 a08b8d31c6 feat(config): Add auto trade symbol whitelist functionality
Introduced a new configuration option for an auto trade symbol whitelist, allowing only specified contracts to execute automatic trades. Updated relevant components to support this feature, enhancing control over automated trading strategies. The whitelist can be configured to restrict or allow trades based on user-defined criteria, improving risk management and trading precision.
2026-04-18 21:32:59 +08:00

111 lines
3.2 KiB
JSON

{
"AUTO_TRADE_ONLY_TRENDING": {
"value": true,
"type": "boolean",
"category": "strategy",
"description": "仅趋势市自动下单;震荡/unknown 只出推荐"
},
"AUTO_TRADE_ALLOW_4H_NEUTRAL": {
"value": false,
"type": "boolean",
"category": "strategy",
"description": "4H 中性时不自动下单,减少震荡扫损"
},
"AUTO_TRADE_ALLOW_RANGING": {
"value": false,
"type": "boolean",
"category": "strategy",
"description": "与 ONLY_TRENDING 配合:不在横盘自动开仓"
},
"AUTO_TRADE_ALLOW_UNKNOWN": {
"value": false,
"type": "boolean",
"category": "strategy",
"description": "市场状态未判定时不自动开仓"
},
"MIN_SIGNAL_STRENGTH": {
"value": 9,
"type": "number",
"category": "strategy",
"description": "提高入场门槛,减少边缘单"
},
"RANGING_MARKET_SIGNAL_BOOST": {
"value": 3,
"type": "number",
"category": "strategy",
"description": "震荡市在基础门槛上再加 3"
},
"TOP_N_SYMBOLS": {
"value": 12,
"type": "number",
"category": "strategy",
"description": "每次扫描深入分析的前 N 个标的,略缩小候选池"
},
"AUTO_TRADE_SYMBOL_WHITELIST": {
"value": "",
"type": "string",
"category": "strategy",
"description": "核心:填逗号分隔合约如 SOLUSDT,LINKUSDT 则仅这些自动下单;留空则不限(仅启用下面黑名单/降仓)。"
},
"MANUAL_BLOCKED_SYMBOLS": {
"value": "MOVRUSDT",
"type": "string",
"category": "strategy",
"description": "曾出现单日大亏的标的可拉黑"
},
"MANUAL_REDUCED_SYMBOLS": {
"value": "HYPEUSDT,XANUSDT,WIFUSDT,ANKRUSDT,RIVERUSDT,POLYXUSDT,PIPPINUSDT,AINUSDT,ANIMEUSDT,COSUSDT,GUNUSDT,HYPERUSDT,WETUSDT,MONUSDT,ONUSDT,MYXUSDT,TRADOORUSDT",
"type": "string",
"category": "strategy",
"description": "弱势/反复试错币:降仓并抬高信号门槛"
},
"MANUAL_REDUCED_SYMBOL_POSITION_FACTOR": {
"value": 0.35,
"type": "number",
"category": "strategy",
"description": "降仓名单仓位系数"
},
"MANUAL_REDUCED_SYMBOL_SIGNAL_BOOST": {
"value": 1,
"type": "number",
"category": "strategy",
"description": "降仓名单额外 +1 信号门槛"
},
"ENTRY_PULLBACK_FILTER_ENABLED": {
"value": true,
"type": "boolean",
"category": "strategy",
"description": "回踩/区间入场过滤"
},
"ENTRY_PULLBACK_MIN_BARS": {
"value": 6,
"type": "number",
"category": "strategy",
"description": "略严一档,减少追高"
},
"ENTRY_PULLBACK_MAX_LONG_IN_RANGE": {
"value": 0.56,
"type": "number",
"category": "strategy",
"description": "做多要求在区间偏低位置"
},
"ENTRY_PULLBACK_MIN_SHORT_IN_RANGE": {
"value": 0.44,
"type": "number",
"category": "strategy",
"description": "做空要求在区间偏高位置"
},
"BETA_FILTER_ENABLED": {
"value": true,
"type": "boolean",
"category": "strategy",
"description": "大盘共振过滤"
},
"BETA_FILTER_THRESHOLD": {
"value": -0.01,
"type": "number",
"category": "strategy",
"description": "与推荐脚本默认一致"
}
}