1
0

fix: 修复日线数据检查没有考虑真正停牌日

This commit is contained in:
2025-09-08 20:50:04 +08:00
parent 7a70c037f9
commit f1ab38f871
4 changed files with 39 additions and 14 deletions

View File

@@ -58,20 +58,12 @@ Content-Type: application/json
"api_name": "daily",
"token": "{{api_key}}",
"params": {
"trade_date": "19931213"
"ts_code": "000001.SZ",
"trade_date": "20140715"
},
"fields": [
"ts_code",
"trade_date",
"open",
"high",
"low",
"close",
"pre_close",
"change",
"pct_chg",
"vol",
"amount"
"pre_close"
]
}
@@ -203,3 +195,20 @@ Content-Type: application/json
"currentdebt_to_debt"
]
}
### Get suspend
POST {{api_url}}
Content-Type: application/json
{
"api_name": "suspend",
"token": "{{api_key}}",
"params": {
"ts_code": "000001.SZ",
"suspend_type": "S"
},
"fields": [
"suspend_date",
"resume_date"
]
}