• 大小: 4KB
    文件类型: .7z
    金币: 2
    下载: 1 次
    发布日期: 2021-06-09
  • 语言: Python
  • 标签: python  20行  day文件  

资源简介

只有20行的python代码,可以解析同花顺日线文件.

资源截图

代码片段和文件信息

#!/usr/bin/env python3
#coding=utf-8
import os io sys time json base64 struct
fOpend = open(‘600000.day‘‘rb‘)
fread = fOpend.read();
fOpend.close()
fLen = len(fread)
fPoint = 6 #跳过开头
dataNumfPointlineLenlineCount = struct.unpack_from(‘print(dataNumfPointlineLenlineCount)
while fPoint < fLen:
    dateopenVhighVlowVcloseVmoneyvaluedat8dat9dat10dat11 = struct.unpack_from(‘<11I‘ fread fPoint)
    #日期开盘 最高 最低收盘  成交额成交量
    openV &= 0x0FFFFFFF
    highV &= 0x0FFFFFFF
    lowV &= 0x0FFFFFFF
    closeV &= 0x0FFFFFFF
    print(dateopenVhighVlowVcloseVmoneyvaluedat8dat9dat10dat11)
    fPoint += lineLen

评论

共有 条评论