migration: preserve screener and tracking slice
This commit is contained in:
@@ -0,0 +1,59 @@
|
||||
[
|
||||
{
|
||||
"name": "盘后自动候选与策略库",
|
||||
"method": "GET",
|
||||
"endpoint": "/api/screener/setup?trade_date=2026-07-30",
|
||||
"sort_lists": {
|
||||
"$.strategies": "id"
|
||||
},
|
||||
"exclude_paths": [
|
||||
"$.strategies[].updated_at"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "策略持续跟踪",
|
||||
"method": "GET",
|
||||
"endpoint": "/api/screener/tracking?limit=12"
|
||||
},
|
||||
{
|
||||
"name": "自定义选股执行",
|
||||
"method": "POST",
|
||||
"endpoint": "/api/screener/run",
|
||||
"exclude_paths": [
|
||||
"$.result.meta.updated_at"
|
||||
],
|
||||
"payload": {
|
||||
"trade_date": "2026-07-30",
|
||||
"regime": "retreat",
|
||||
"strategy_name": "保真迁移差分策略",
|
||||
"mode": "quant",
|
||||
"run_backtest": false,
|
||||
"formula": {
|
||||
"meta": {
|
||||
"library": "quant",
|
||||
"category": "量化公式"
|
||||
},
|
||||
"universe": {
|
||||
"exclude_st": true,
|
||||
"listed_days_min": 120
|
||||
},
|
||||
"filters": [
|
||||
{
|
||||
"field": "pct_chg",
|
||||
"op": "between",
|
||||
"value": [-2, 2]
|
||||
}
|
||||
],
|
||||
"score": [
|
||||
{
|
||||
"field": "amount_billion",
|
||||
"weight": 1,
|
||||
"direction": "desc"
|
||||
}
|
||||
],
|
||||
"limit": 5,
|
||||
"min_score": 0
|
||||
}
|
||||
}
|
||||
}
|
||||
]
|
||||
Reference in New Issue
Block a user