base_from_cffex.go 6.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266
  1. package models
  2. import (
  3. "eta/eta_index_lib/utils"
  4. "fmt"
  5. "github.com/beego/beego/v2/client/orm"
  6. "strconv"
  7. "strings"
  8. "time"
  9. )
  10. type BaseFromTradeCFFEXIndex struct {
  11. BaseFromTradeCffexIndexId int `orm:"column(base_from_trade_cffex_index_id);pk"`
  12. Rank int
  13. DealShortName string
  14. DealName string
  15. DealCode string
  16. DealValue string
  17. DealChange int
  18. BuyShortName string
  19. BuyName string
  20. BuyCode string
  21. BuyValue string
  22. BuyChange int
  23. SoldShortName string
  24. SoldName string
  25. SoldCode string
  26. SoldValue string
  27. SoldChange int
  28. Frequency string
  29. ClassifyName string
  30. ClassifyType string
  31. CreateTime time.Time
  32. ModifyTime time.Time
  33. DataTime string
  34. }
  35. func GetBaseFromCffexDataAllByIndexCode(indexCode, suffix string) (list []*BaseFromTradeCFFEXIndex, err error) {
  36. o := orm.NewOrm()
  37. sql := `SELECT * FROM base_from_trade_cffex_index WHERE %s_code=? `
  38. sql = fmt.Sprintf(sql, suffix)
  39. _, err = o.Raw(sql, indexCode).QueryRows(&list)
  40. return
  41. }
  42. type BaseFromCffexDataSimple struct {
  43. Id int `orm:"column(base_from_trade_cffex_index_id);pk"`
  44. DealCode string
  45. BuyCode string
  46. SoldCode string
  47. DataTime string
  48. DealValue string
  49. BuyValue string
  50. SoldValue string
  51. }
  52. func GetCffexDataByTradeCode(condition string, pars []interface{}) (item []*BaseFromCffexDataSimple, err error) {
  53. sql := ` SELECT * FROM base_from_trade_cffex_index WHERE 1=1 `
  54. o := orm.NewOrm()
  55. if condition != "" {
  56. sql += condition
  57. }
  58. sql += ` ORDER BY data_time DESC `
  59. _, err = o.Raw(sql, pars).QueryRows(&item)
  60. return
  61. }
  62. // 新增中金所指标数据
  63. func AddEdbDataFromCffex(edbCode string) (err error) {
  64. var suffix string
  65. if strings.Contains(edbCode, "deal") {
  66. suffix = "deal"
  67. } else if strings.Contains(edbCode, "buy") {
  68. suffix = "buy"
  69. } else if strings.Contains(edbCode, "sold") {
  70. suffix = "sold"
  71. }
  72. o := orm.NewOrm()
  73. cffexBaseDataAll, err := GetBaseFromCffexDataAllByIndexCode(edbCode, suffix)
  74. if err != nil && err.Error() != utils.ErrNoRow() {
  75. return
  76. }
  77. var isAdd bool
  78. addSql := ` INSERT INTO edb_data_cffex(edb_info_id,edb_code,data_time,value,create_time,modify_time,data_timestamp) values `
  79. existMap := make(map[string]string)
  80. for _, sv := range cffexBaseDataAll {
  81. eDate := sv.DataTime
  82. dataTime, err := time.ParseInLocation(utils.FormatDate, eDate, time.Local)
  83. if err != nil {
  84. fmt.Println("time.Parse Err:" + eDate)
  85. return err
  86. }
  87. timestamp := dataTime.UnixNano() / 1e6
  88. timeStr := fmt.Sprintf("%d", timestamp)
  89. if _, ok := existMap[eDate]; !ok {
  90. if suffix == "deal" {
  91. addSql += GetAddSql("0", edbCode, eDate, timeStr, sv.DealValue)
  92. } else if suffix == "buy" {
  93. addSql += GetAddSql("0", edbCode, eDate, timeStr, sv.BuyValue)
  94. } else {
  95. addSql += GetAddSql("0", edbCode, eDate, timeStr, sv.SoldValue)
  96. }
  97. isAdd = true
  98. }
  99. if suffix == "deal" {
  100. existMap[eDate] = sv.DealValue
  101. } else if suffix == "buy" {
  102. existMap[eDate] = sv.BuyValue
  103. } else {
  104. existMap[eDate] = sv.SoldValue
  105. }
  106. }
  107. if isAdd {
  108. addSql = strings.TrimRight(addSql, ",")
  109. utils.FileLog.Info("addSql:" + addSql)
  110. _, err = o.Raw(addSql).Exec()
  111. if err != nil {
  112. return err
  113. }
  114. }
  115. return
  116. }
  117. // 刷新中金所指标数据
  118. func RefreshEdbDataFromCffex(edbInfoId int, edbCode, startDate string) (err error) {
  119. source := utils.DATA_SOURCE_CFFEX
  120. var suffix string
  121. if strings.Contains(edbCode, "deal") {
  122. suffix = "deal"
  123. } else if strings.Contains(edbCode, "buy") {
  124. suffix = "buy"
  125. } else if strings.Contains(edbCode, "sold") {
  126. suffix = "sold"
  127. }
  128. o := orm.NewOrm()
  129. if err != nil {
  130. return
  131. }
  132. edbInfoIdStr := strconv.Itoa(edbInfoId)
  133. //计算数据
  134. var condition string
  135. var pars []interface{}
  136. if edbCode != "" {
  137. if suffix == "deal" {
  138. condition += " AND deal_code=? "
  139. } else if suffix == "buy" {
  140. condition += " AND buy_code=? "
  141. } else {
  142. condition += " AND sold_code=? "
  143. }
  144. pars = append(pars, edbCode)
  145. }
  146. if startDate != "" {
  147. condition += " AND data_time>=? "
  148. pars = append(pars, startDate)
  149. }
  150. glDataList, err := GetCffexDataByTradeCode(condition, pars)
  151. if err != nil {
  152. return
  153. }
  154. // 真实数据的最大日期 , 插入规则配置的日期
  155. var realDataMaxDate, edbDataInsertConfigDate time.Time
  156. var edbDataInsertConfig *EdbDataInsertConfig
  157. var isFindConfigDateRealData bool //是否找到配置日期的实际数据的值
  158. {
  159. edbDataInsertConfig, err = GetEdbDataInsertConfigByEdbId(edbInfoId)
  160. if err != nil && err.Error() != utils.ErrNoRow() {
  161. return
  162. }
  163. if edbDataInsertConfig != nil {
  164. edbDataInsertConfigDate = edbDataInsertConfig.Date
  165. }
  166. }
  167. //获取指标所有数据
  168. var existCondition string
  169. var existPars []interface{}
  170. existCondition += " AND edb_info_id=? "
  171. existPars = append(existPars, edbInfoId)
  172. if startDate != "" {
  173. existCondition += " AND data_time>=? "
  174. existPars = append(existPars, startDate)
  175. }
  176. existList, err := GetEdbDataByCondition(source, existCondition, existPars)
  177. if err != nil {
  178. return err
  179. }
  180. existMap := make(map[string]*EdbInfoSearchData)
  181. for _, v := range existList {
  182. existMap[v.DataTime] = v
  183. }
  184. addSql := ` INSERT INTO edb_data_cffex(edb_info_id,edb_code,data_time,value,create_time,modify_time,data_timestamp) values `
  185. var isAdd bool
  186. for _, v := range glDataList {
  187. var value string
  188. if suffix == "deal" {
  189. value = v.DealValue
  190. } else if suffix == "buy" {
  191. value = v.BuyValue
  192. } else {
  193. value = v.SoldValue
  194. }
  195. item := v
  196. eDate := item.DataTime
  197. dataTime, err := time.ParseInLocation(utils.FormatDate, eDate, time.Local)
  198. if err != nil {
  199. return err
  200. }
  201. // 下面代码主要目的是处理掉手动插入的数据判断
  202. {
  203. if realDataMaxDate.IsZero() || dataTime.After(realDataMaxDate) {
  204. realDataMaxDate = dataTime
  205. }
  206. if edbDataInsertConfigDate.IsZero() || dataTime.Equal(edbDataInsertConfigDate) {
  207. isFindConfigDateRealData = true
  208. }
  209. }
  210. itemValue := value
  211. if _, ok := existMap[v.DataTime]; !ok {
  212. sValue := itemValue
  213. if sValue != "" {
  214. timestamp := dataTime.UnixNano() / 1e6
  215. timeStr := fmt.Sprintf("%d", timestamp)
  216. saveValue := sValue
  217. if findItem, ok := existMap[eDate]; !ok {
  218. addSql += GetAddSql(edbInfoIdStr, edbCode, eDate, timeStr, saveValue)
  219. isAdd = true
  220. } else {
  221. if findItem != nil && utils.SubFloatToString(findItem.Value, 30) != sValue {
  222. err = ModifyEdbDataById(source, findItem.EdbDataId, sValue)
  223. if err != nil {
  224. return err
  225. }
  226. }
  227. }
  228. }
  229. }
  230. }
  231. // 处理手工数据补充的配置
  232. HandleConfigInsertEdbData(realDataMaxDate, edbDataInsertConfig, edbInfoId, source, existMap, isFindConfigDateRealData)
  233. if isAdd {
  234. addSql = strings.TrimRight(addSql, ",")
  235. _, err = o.Raw(addSql).Exec()
  236. if err != nil {
  237. return err
  238. }
  239. }
  240. return
  241. }