1
0

feat: 增加入库原始日线信息

This commit is contained in:
2025-09-06 20:32:36 +08:00
parent a1e6f314a4
commit fccf059416
11 changed files with 351 additions and 24 deletions

View File

@@ -45,3 +45,64 @@ Content-Type: application/json
"total_revenue_to_parent"
]
}
### Get daily list
POST {{api_url}}
Content-Type: application/json
{
"api_name": "daily",
"token": "{{api_key}}",
"params": {
"trade_date": "19901219"
},
"fields": [
"ts_code",
"trade_date",
"open",
"high",
"low",
"close",
"pre_close",
"change",
"pct_chg",
"vol",
"amount"
]
}
### Get trade date
POST {{api_url}}
Content-Type: application/json
{
"api_name": "trade_cal",
"token": "{{api_key}}",
"params": {
"exchange": "BSE",
"is_open": 1
},
"fields": [
"exchange",
"cal_date",
"is_open",
"pretrade_date"
]
}
### Get Factor
POST {{api_url}}
Content-Type: application/json
{
"api_name": "adj_factor",
"token": "{{api_key}}",
"params": {
"trade_date": "20241231"
},
"fields": [
"ts_code",
"trade_date",
"adj_factor"
]
}