|
@@ -16,6 +16,9 @@ type PythonBloombergGeneralData struct {
|
|
|
PX_VOLUME *float64 `json:"PX_VOLUME" description:"数据值, 可能为null"`
|
|
|
LAST_UPDATE_DATE_EOD string `json:"LAST_UPDATE_DATE_EOD" description:"数据日期, 可能为null"`
|
|
|
DATE string `json:"DATE" description:"数据日期, 可能为null"`
|
|
|
+
|
|
|
+ PX_SETTLE *float64 `json:"PX_SETTLE" description:"数据值, 可能为null"`
|
|
|
+ PX_SETTLE_LAST_DT string `json:"PX_SETTLE_LAST_DT" description:"数据日期, 可能为null"`
|
|
|
}
|
|
|
|
|
|
// PythonBloombergGeneralResult API响应体
|
|
@@ -73,6 +76,10 @@ func FormatPythonBloombergGeneralData2Base(origin PythonBloombergGeneralData, fr
|
|
|
dataTime, _ = time.ParseInLocation(utils.FormatDate, origin.DATE, time.Local)
|
|
|
val = origin.PX_VOLUME
|
|
|
}
|
|
|
+ if origin.PX_SETTLE_LAST_DT != "" && origin.PX_SETTLE != nil {
|
|
|
+ dataTime, _ = time.ParseInLocation(utils.FormatDate, origin.PX_SETTLE_LAST_DT, time.Local)
|
|
|
+ val = origin.PX_SETTLE
|
|
|
+ }
|
|
|
if !dataTime.IsZero() && val != nil {
|
|
|
item.Data = append(item.Data, BaseFromBloombergApiIndexData{
|
|
|
DataTime: dataTime,
|