2018-11-19 02:42:31 +08:00
|
|
|
|
# coding:utf-8
|
|
|
|
|
#
|
|
|
|
|
# The MIT License (MIT)
|
|
|
|
|
#
|
2019-02-24 19:36:47 +08:00
|
|
|
|
# Copyright (c) 2010-2019 fasiondog/hikyuu
|
2018-11-19 02:42:31 +08:00
|
|
|
|
#
|
|
|
|
|
# Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
|
|
|
# of this software and associated documentation files (the "Software"), to deal
|
|
|
|
|
# in the Software without restriction, including without limitation the rights
|
|
|
|
|
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
|
|
|
# copies of the Software, and to permit persons to whom the Software is
|
|
|
|
|
# furnished to do so, subject to the following conditions:
|
|
|
|
|
#
|
|
|
|
|
# The above copyright notice and this permission notice shall be included in all
|
|
|
|
|
# copies or substantial portions of the Software.
|
|
|
|
|
#
|
|
|
|
|
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
|
|
|
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
|
|
|
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
|
|
|
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
|
|
|
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
|
|
|
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
|
|
|
# SOFTWARE.
|
|
|
|
|
|
|
|
|
|
import os.path
|
|
|
|
|
import struct
|
|
|
|
|
import datetime
|
|
|
|
|
import math
|
|
|
|
|
import sys
|
|
|
|
|
|
|
|
|
|
import mysql.connector
|
|
|
|
|
import tables as tb
|
|
|
|
|
|
|
|
|
|
from io import SEEK_END, SEEK_SET
|
|
|
|
|
|
2020-09-27 21:51:58 +08:00
|
|
|
|
from hikyuu.data.common import get_stktype_list, MARKETID
|
|
|
|
|
from hikyuu.data.common_mysql import (
|
2020-09-26 18:16:33 +08:00
|
|
|
|
create_database, get_marketid, get_codepre_list, get_table, get_lastdatetime
|
|
|
|
|
)
|
2018-11-22 01:21:28 +08:00
|
|
|
|
|
2020-09-26 18:16:33 +08:00
|
|
|
|
from hikyuu.data.weight_to_mysql import qianlong_import_weight
|
2018-11-19 02:42:31 +08:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
def ProgressBar(cur, total):
|
|
|
|
|
percent = '{:.0%}'.format(cur / total)
|
|
|
|
|
sys.stdout.write('\r')
|
2020-09-26 18:16:33 +08:00
|
|
|
|
sys.stdout.write("[%-50s] %s" % ('=' * int(math.floor(cur * 50 / total)), percent))
|
2018-11-19 02:42:31 +08:00
|
|
|
|
sys.stdout.flush()
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
def tdx_import_stock_name_from_file(connect, filename, market, quotations=None):
|
|
|
|
|
"""更新每只股票的名称、当前是否有效性、起始日期及结束日期
|
|
|
|
|
如果导入的代码表中不存在对应的代码,则认为该股已失效
|
|
|
|
|
|
2018-11-22 01:21:28 +08:00
|
|
|
|
:param connect: mysql实例
|
2018-11-19 02:42:31 +08:00
|
|
|
|
:param filename: 代码表文件名
|
|
|
|
|
:param market: 'SH' | 'SZ'
|
|
|
|
|
:param quotations: 待导入的行情类别列表,空为导入全部 'stock' | 'fund' | 'bond' | None
|
|
|
|
|
"""
|
|
|
|
|
cur = connect.cursor()
|
|
|
|
|
|
|
|
|
|
newStockDict = {}
|
|
|
|
|
with open(filename, 'rb') as f:
|
|
|
|
|
data = f.read(50)
|
|
|
|
|
data = f.read(314)
|
|
|
|
|
while data:
|
|
|
|
|
a = struct.unpack('6s 17s 8s 283s', data)
|
|
|
|
|
stockcode = a[0].decode()
|
2020-09-26 18:16:33 +08:00
|
|
|
|
try:
|
|
|
|
|
stockname = a[2].decode(encoding='gbk').encode('utf8')
|
|
|
|
|
except:
|
|
|
|
|
print(stockname)
|
|
|
|
|
data = f.read(314)
|
|
|
|
|
continue
|
2018-11-19 02:42:31 +08:00
|
|
|
|
pos = stockname.find(0x00)
|
|
|
|
|
if pos >= 0:
|
|
|
|
|
stockname = stockname[:pos]
|
|
|
|
|
newStockDict[stockcode] = stockname.decode(encoding='utf8').strip()
|
|
|
|
|
data = f.read(314)
|
|
|
|
|
|
|
|
|
|
marketid = get_marketid(connect, market)
|
|
|
|
|
|
|
|
|
|
stktype_list = get_stktype_list(quotations)
|
2020-09-26 18:16:33 +08:00
|
|
|
|
cur.execute(
|
|
|
|
|
"select stockid, code, name, valid from `hku_base`.`stock` where marketid={} and type in {}"
|
|
|
|
|
.format(marketid, stktype_list)
|
|
|
|
|
)
|
2018-11-19 02:42:31 +08:00
|
|
|
|
a = cur.fetchall()
|
|
|
|
|
oldStockDict = {}
|
|
|
|
|
for oldstock in a:
|
2020-09-26 18:16:33 +08:00
|
|
|
|
oldstockid, oldcode, oldname, oldvalid = oldstock[0], oldstock[1], oldstock[2], int(
|
|
|
|
|
oldstock[3]
|
|
|
|
|
)
|
2018-11-19 02:42:31 +08:00
|
|
|
|
oldStockDict[oldcode] = oldstockid
|
|
|
|
|
|
|
|
|
|
# 新的代码表中无此股票,则置为无效
|
|
|
|
|
if (oldvalid == 1) and (oldcode not in newStockDict):
|
|
|
|
|
cur.execute("update `hku_base`.`stock` set valid=0 where stockid=%i" % oldstockid)
|
|
|
|
|
|
|
|
|
|
# 股票名称发生变化,更新股票名称;如果原无效,则置为有效
|
|
|
|
|
if oldcode in newStockDict:
|
|
|
|
|
if oldname != newStockDict[oldcode]:
|
2020-09-26 18:16:33 +08:00
|
|
|
|
cur.execute(
|
|
|
|
|
"update `hku_base`.`stock` set name='%s' where stockid=%i" %
|
|
|
|
|
(newStockDict[oldcode], oldstockid)
|
|
|
|
|
)
|
2018-11-19 02:42:31 +08:00
|
|
|
|
if oldvalid == 0:
|
2020-09-26 18:16:33 +08:00
|
|
|
|
cur.execute(
|
|
|
|
|
"update `hku_base`.`stock` set valid=1, endDate=99999999 where stockid=%i" %
|
|
|
|
|
oldstockid
|
|
|
|
|
)
|
2018-11-19 02:42:31 +08:00
|
|
|
|
|
|
|
|
|
# 处理新出现的股票
|
|
|
|
|
codepre_list = get_codepre_list(connect, marketid, quotations)
|
|
|
|
|
|
|
|
|
|
today = datetime.date.today()
|
|
|
|
|
today = today.year * 10000 + today.month * 100 + today.day
|
|
|
|
|
count = 0
|
|
|
|
|
for code in newStockDict:
|
|
|
|
|
if code not in oldStockDict:
|
|
|
|
|
for codepre in codepre_list:
|
|
|
|
|
length = len(codepre[0])
|
|
|
|
|
if code[:length] == codepre[0]:
|
|
|
|
|
count += 1
|
|
|
|
|
#print(market, code, newStockDict[code], codepre)
|
|
|
|
|
sql = "insert into `hku_base`.`stock` (marketid, code, name, type, valid, startDate, endDate) \
|
|
|
|
|
values (%s, '%s', '%s', %s, %s, %s, %s)" \
|
|
|
|
|
% (marketid, code, newStockDict[code], codepre[1], 1, today, 99999999)
|
|
|
|
|
cur.execute(sql)
|
|
|
|
|
break
|
|
|
|
|
|
|
|
|
|
#print('%s新增股票数:%i' % (market.upper(), count))
|
|
|
|
|
connect.commit()
|
|
|
|
|
cur.close()
|
|
|
|
|
return count
|
|
|
|
|
|
|
|
|
|
|
2018-11-22 01:21:28 +08:00
|
|
|
|
def to_mysql_ktype(ktype):
|
|
|
|
|
n_ktype = ktype.upper()
|
|
|
|
|
if n_ktype == 'DAY':
|
|
|
|
|
return n_ktype
|
|
|
|
|
if n_ktype == '1MIN':
|
|
|
|
|
return 'MIN'
|
|
|
|
|
if n_ktype == '5MIN':
|
|
|
|
|
return 'MIN5'
|
|
|
|
|
|
2020-09-26 18:16:33 +08:00
|
|
|
|
|
2018-11-22 01:21:28 +08:00
|
|
|
|
def tdx_import_day_data_from_file(connect, filename, ktype, market, stock_record):
|
2018-11-19 02:42:31 +08:00
|
|
|
|
"""从通达信盘后数据导入日K线
|
|
|
|
|
|
2018-11-22 01:21:28 +08:00
|
|
|
|
:param connect : 数据库连接实例
|
2018-11-19 02:42:31 +08:00
|
|
|
|
:param filename: 通达信日线数据文件名
|
2018-11-22 01:21:28 +08:00
|
|
|
|
:param ktype : 'DAY' | '1MIN' | '5MIN'
|
2018-11-19 02:42:31 +08:00
|
|
|
|
:param stock_record: 股票的相关数据 (stockid, marketid, code, valid, type)
|
|
|
|
|
:return: 导入的记录数
|
|
|
|
|
"""
|
|
|
|
|
add_record_count = 0
|
|
|
|
|
if not os.path.exists(filename):
|
|
|
|
|
return add_record_count
|
|
|
|
|
|
2020-09-26 18:16:33 +08:00
|
|
|
|
stockid, marketid, code, valid, stktype = stock_record[0], stock_record[1], stock_record[
|
|
|
|
|
2], stock_record[3], stock_record[4]
|
2018-11-19 02:42:31 +08:00
|
|
|
|
|
2018-11-22 01:21:28 +08:00
|
|
|
|
table = get_table(connect, market, code, to_mysql_ktype(ktype))
|
|
|
|
|
lastdatetime = get_lastdatetime(connect, table)
|
|
|
|
|
if lastdatetime is not None:
|
|
|
|
|
lastdatetime = lastdatetime / 10000
|
2018-11-19 02:42:31 +08:00
|
|
|
|
|
2018-11-25 16:46:07 +08:00
|
|
|
|
buf = []
|
2018-11-22 01:21:28 +08:00
|
|
|
|
cur = connect.cursor()
|
2018-11-19 02:42:31 +08:00
|
|
|
|
with open(filename, 'rb') as src_file:
|
|
|
|
|
data = src_file.read(32)
|
|
|
|
|
while data:
|
|
|
|
|
record = struct.unpack('iiiiifii', data)
|
|
|
|
|
if lastdatetime and record[0] <= lastdatetime:
|
|
|
|
|
data = src_file.read(32)
|
|
|
|
|
continue
|
|
|
|
|
|
2018-11-22 01:21:28 +08:00
|
|
|
|
if record[2] >= record[1] >= record[3] > 0 \
|
|
|
|
|
and record[2] >= record[4] >= record[3] > 0 \
|
|
|
|
|
and record[5] >= 0 \
|
|
|
|
|
and record[6] >= 0:
|
2020-09-26 18:16:33 +08:00
|
|
|
|
buf.append(
|
|
|
|
|
(
|
|
|
|
|
record[0] * 10000, record[1] * 0.01, record[2] * 0.01, record[3] * 0.01,
|
|
|
|
|
record[4] * 0.01, round(record[5] * 0.001),
|
|
|
|
|
record[6] if stktype == 2 else round(record[6] * 0.01)
|
|
|
|
|
)
|
|
|
|
|
)
|
2018-11-22 01:21:28 +08:00
|
|
|
|
add_record_count += 1
|
2018-11-19 02:42:31 +08:00
|
|
|
|
|
|
|
|
|
data = src_file.read(32)
|
|
|
|
|
|
|
|
|
|
if add_record_count > 0:
|
2018-11-25 16:46:07 +08:00
|
|
|
|
sql = "INSERT INTO {tablename} (date, open, high, low, close, amount, count) " \
|
|
|
|
|
"VALUES (%s, %s, %s, %s, %s, %s, %s)".format(tablename=table)
|
|
|
|
|
cur.executemany(sql, buf)
|
2018-11-22 01:21:28 +08:00
|
|
|
|
connect.commit()
|
2018-11-19 02:42:31 +08:00
|
|
|
|
|
|
|
|
|
#更新基础信息数据库中股票对应的起止日期及其有效标志
|
|
|
|
|
if valid == 0:
|
2018-11-22 01:21:28 +08:00
|
|
|
|
sql = "update `hku_base`.`stock` set valid=1, " \
|
|
|
|
|
"startdate=(select min(date)/10000 from {table}), " \
|
|
|
|
|
"enddate=(select max(date)/10000 from {table}) " \
|
|
|
|
|
"where stockid={stockid}".format(table=table, stockid=stockid)
|
|
|
|
|
cur.execute("sql")
|
2018-11-19 02:42:31 +08:00
|
|
|
|
connect.commit()
|
|
|
|
|
|
|
|
|
|
#记录最新更新日期
|
|
|
|
|
if (code == '000001' and marketid == MARKETID.SH) \
|
2018-11-22 01:21:28 +08:00
|
|
|
|
or (code == '399001' and marketid == MARKETID.SZ):
|
|
|
|
|
sql = "update `hku_base`.`market` set lastdate=(select max(date)/10000 from {table}) " \
|
|
|
|
|
"where marketid={marketid}".format(table=table, marketid=marketid)
|
|
|
|
|
try:
|
|
|
|
|
cur.execute(sql)
|
|
|
|
|
except:
|
|
|
|
|
print(sql)
|
2018-11-25 16:46:07 +08:00
|
|
|
|
connect.commit()
|
2018-11-22 01:21:28 +08:00
|
|
|
|
|
2018-11-25 16:46:07 +08:00
|
|
|
|
#connect.commit()
|
2018-11-19 02:42:31 +08:00
|
|
|
|
|
2018-11-22 01:21:28 +08:00
|
|
|
|
cur.close()
|
2018-11-19 02:42:31 +08:00
|
|
|
|
return add_record_count
|
|
|
|
|
|
|
|
|
|
|
2018-11-22 01:21:28 +08:00
|
|
|
|
def tdx_import_min_data_from_file(connect, filename, ktype, market, stock_record):
|
2018-11-19 02:42:31 +08:00
|
|
|
|
"""从通达信盘后数据导入1分钟或5分钟K线
|
|
|
|
|
|
|
|
|
|
:param connect : sqlite3连接实例
|
|
|
|
|
:param filename: 通达信K线数据文件名
|
2018-11-22 01:21:28 +08:00
|
|
|
|
:param ktype: 'DAY' | '1MIN' | '5MIN'
|
2018-11-19 02:42:31 +08:00
|
|
|
|
:param stock_record: 股票的相关数据 (stockid, marketid, code, valid, type)
|
|
|
|
|
:return: 导入的记录数
|
|
|
|
|
"""
|
|
|
|
|
add_record_count = 0
|
|
|
|
|
if not os.path.exists(filename):
|
|
|
|
|
return add_record_count
|
|
|
|
|
|
2020-09-26 18:16:33 +08:00
|
|
|
|
stockid, marketid, code, valid, stktype = stock_record[0], stock_record[1], stock_record[
|
|
|
|
|
2], stock_record[3], stock_record[4]
|
2018-11-19 02:42:31 +08:00
|
|
|
|
|
2018-11-22 01:21:28 +08:00
|
|
|
|
table = get_table(connect, market, code, to_mysql_ktype(ktype))
|
|
|
|
|
lastdatetime = get_lastdatetime(connect, table)
|
2018-11-19 02:42:31 +08:00
|
|
|
|
|
2018-11-22 01:21:28 +08:00
|
|
|
|
cur = connect.cursor()
|
2018-11-19 02:42:31 +08:00
|
|
|
|
with open(filename, 'rb') as src_file:
|
2020-09-26 18:16:33 +08:00
|
|
|
|
|
2018-11-19 02:42:31 +08:00
|
|
|
|
def trans_date(yymm, hhmm):
|
|
|
|
|
tmp_date = yymm >> 11
|
|
|
|
|
remainder = yymm & 0x7ff
|
|
|
|
|
year = tmp_date + 2004
|
|
|
|
|
month = remainder // 100
|
|
|
|
|
day = remainder % 100
|
|
|
|
|
hh = hhmm // 60
|
|
|
|
|
mm = hhmm % 60
|
|
|
|
|
return year * 100000000 + month * 1000000 + day * 10000 + hh * 100 + mm
|
|
|
|
|
|
|
|
|
|
def get_date(pos):
|
|
|
|
|
src_file.seek(pos * 32, SEEK_SET)
|
|
|
|
|
data = src_file.read(4)
|
|
|
|
|
a = struct.unpack('hh', data)
|
|
|
|
|
return trans_date(a[0], a[1])
|
|
|
|
|
|
|
|
|
|
def find_pos():
|
|
|
|
|
src_file.seek(0, SEEK_END)
|
|
|
|
|
pos = src_file.tell()
|
|
|
|
|
total = pos // 32
|
|
|
|
|
if lastdatetime is None:
|
|
|
|
|
return total, 0
|
|
|
|
|
|
|
|
|
|
low, high = 0, total - 1
|
|
|
|
|
mid = high // 2
|
|
|
|
|
while mid <= high:
|
|
|
|
|
cur_date = get_date(low)
|
|
|
|
|
if cur_date > lastdatetime:
|
|
|
|
|
mid = low
|
|
|
|
|
break
|
|
|
|
|
|
|
|
|
|
cur_date = get_date(high)
|
|
|
|
|
if cur_date <= lastdatetime:
|
|
|
|
|
mid = high + 1
|
|
|
|
|
break
|
|
|
|
|
|
|
|
|
|
cur_date = get_date(mid)
|
|
|
|
|
if cur_date <= lastdatetime:
|
|
|
|
|
low = mid + 1
|
|
|
|
|
else:
|
|
|
|
|
high = mid - 1
|
|
|
|
|
|
|
|
|
|
mid = (low + high) // 2
|
|
|
|
|
|
|
|
|
|
return total, mid
|
|
|
|
|
|
|
|
|
|
file_total, pos = find_pos()
|
|
|
|
|
if pos < file_total:
|
|
|
|
|
src_file.seek(pos * 32, SEEK_SET)
|
|
|
|
|
|
|
|
|
|
data = src_file.read(32)
|
|
|
|
|
while data:
|
|
|
|
|
record = struct.unpack('hhfffffii', data)
|
2018-11-22 01:21:28 +08:00
|
|
|
|
if record[3] >= record[2] >= record[4] > 0\
|
|
|
|
|
and record[3] >= record[5] >= record[4] >0\
|
|
|
|
|
and record[5] >=0 \
|
|
|
|
|
and record[6] >=0:
|
|
|
|
|
sql = "INSERT INTO {tablename} (date, open, high, low, close, amount, count) " \
|
|
|
|
|
"VALUES (%s, %s, %s, %s, %s, %s, %s)".format(tablename=table)
|
2020-09-26 18:16:33 +08:00
|
|
|
|
cur.execute(
|
|
|
|
|
sql, (
|
|
|
|
|
trans_date(record[0], record[1]), round(record[2], 2),
|
|
|
|
|
round(record[3], 2), round(record[4], 2), round(record[5],
|
|
|
|
|
2), record[6] * 0.001,
|
|
|
|
|
record[7] if stktype == 2 else round(record[7] * 0.01)
|
|
|
|
|
)
|
|
|
|
|
)
|
2018-11-22 01:21:28 +08:00
|
|
|
|
add_record_count += 1
|
2018-11-19 02:42:31 +08:00
|
|
|
|
|
|
|
|
|
data = src_file.read(32)
|
|
|
|
|
|
|
|
|
|
if add_record_count > 0:
|
2018-11-22 01:21:28 +08:00
|
|
|
|
connect.commit()
|
2018-11-19 02:42:31 +08:00
|
|
|
|
|
2018-11-22 01:21:28 +08:00
|
|
|
|
cur.close()
|
2018-11-19 02:42:31 +08:00
|
|
|
|
return add_record_count
|
|
|
|
|
|
|
|
|
|
|
2018-11-22 01:21:28 +08:00
|
|
|
|
def tdx_import_data(connect, market, ktype, quotations, src_dir, progress=ProgressBar):
|
2018-11-19 02:42:31 +08:00
|
|
|
|
"""导入通达信指定盘后数据路径中的K线数据。注:只导入基础信息数据库中存在的股票。
|
|
|
|
|
|
|
|
|
|
:param connect : sqlit3链接
|
|
|
|
|
:param market : 'SH' | 'SZ'
|
|
|
|
|
:param ktype : 'DAY' | '1MIN' | '5MIN'
|
|
|
|
|
:param quotations: 'stock' | 'fund' | 'bond'
|
|
|
|
|
:param src_dir : 盘后K线数据路径,如上证5分钟线:D:\\Tdx\\vipdoc\\sh\\fzline
|
|
|
|
|
:param progress : 进度显示函数
|
|
|
|
|
:return: 导入记录数
|
|
|
|
|
"""
|
|
|
|
|
add_record_count = 0
|
|
|
|
|
market = market.upper()
|
|
|
|
|
|
|
|
|
|
if ktype.upper() == "DAY":
|
|
|
|
|
suffix = ".day"
|
|
|
|
|
func_import_from_file = tdx_import_day_data_from_file
|
|
|
|
|
elif ktype.upper() == "1MIN":
|
|
|
|
|
suffix = ".lc1"
|
|
|
|
|
func_import_from_file = tdx_import_min_data_from_file
|
|
|
|
|
elif ktype.upper() == "5MIN":
|
|
|
|
|
suffix = ".lc5"
|
|
|
|
|
func_import_from_file = tdx_import_min_data_from_file
|
|
|
|
|
|
|
|
|
|
marketid = get_marketid(connect, market)
|
|
|
|
|
stktype_list = get_stktype_list(quotations)
|
2018-11-22 01:21:28 +08:00
|
|
|
|
sql = "select stockid, marketid, code, valid, type from `hku_base`.`stock` " \
|
|
|
|
|
"where marketid={} and type in {}".format(marketid, stktype_list)
|
2018-11-19 02:42:31 +08:00
|
|
|
|
|
|
|
|
|
cur = connect.cursor()
|
2018-11-22 01:21:28 +08:00
|
|
|
|
cur.execute(sql)
|
|
|
|
|
a = cur.fetchall()
|
2018-11-19 02:42:31 +08:00
|
|
|
|
|
|
|
|
|
total = len(a)
|
|
|
|
|
for i, stock in enumerate(a):
|
|
|
|
|
if stock[3] == 0:
|
|
|
|
|
if progress:
|
|
|
|
|
progress(i, total)
|
|
|
|
|
continue
|
|
|
|
|
|
2020-09-26 18:16:33 +08:00
|
|
|
|
filename = src_dir + "\\" + market.lower() + stock[2] + suffix
|
2018-11-22 01:21:28 +08:00
|
|
|
|
this_count = func_import_from_file(connect, filename, ktype, market, stock)
|
2018-11-19 02:42:31 +08:00
|
|
|
|
add_record_count += this_count
|
|
|
|
|
if this_count > 0:
|
|
|
|
|
if ktype == 'DAY':
|
2018-11-22 01:21:28 +08:00
|
|
|
|
#update_hdf5_extern_data(h5file, market.upper() + stock[2], 'DAY')
|
|
|
|
|
pass
|
2018-11-19 02:42:31 +08:00
|
|
|
|
elif ktype == '5MIN':
|
2018-11-22 01:21:28 +08:00
|
|
|
|
#update_hdf5_extern_data(h5file, market.upper() + stock[2], '5MIN')
|
|
|
|
|
pass
|
2018-11-19 02:42:31 +08:00
|
|
|
|
if progress:
|
|
|
|
|
progress(i, total)
|
|
|
|
|
|
|
|
|
|
connect.commit()
|
|
|
|
|
return add_record_count
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if __name__ == '__main__':
|
2020-09-26 18:16:33 +08:00
|
|
|
|
|
2018-11-19 02:42:31 +08:00
|
|
|
|
import time
|
|
|
|
|
starttime = time.time()
|
2020-09-26 18:16:33 +08:00
|
|
|
|
|
2018-11-19 02:42:31 +08:00
|
|
|
|
host = '127.0.0.1'
|
|
|
|
|
port = 3306
|
|
|
|
|
usr = 'root'
|
2020-09-27 23:53:26 +08:00
|
|
|
|
pwd = ''
|
2018-11-19 02:42:31 +08:00
|
|
|
|
|
|
|
|
|
src_dir = "D:\\TdxW_HuaTai"
|
2020-09-26 18:16:33 +08:00
|
|
|
|
quotations = ['stock', 'fund'] #通达信盘后数据没有债券
|
|
|
|
|
|
2018-11-19 02:42:31 +08:00
|
|
|
|
connect = mysql.connector.connect(user=usr, password=pwd, host=host, port=port)
|
|
|
|
|
create_database(connect)
|
|
|
|
|
|
|
|
|
|
add_count = 0
|
|
|
|
|
|
|
|
|
|
print("导入股票代码表")
|
2020-09-26 18:16:33 +08:00
|
|
|
|
add_count = tdx_import_stock_name_from_file(
|
|
|
|
|
connect, src_dir + "\\T0002\\hq_cache\\shm.tnf", 'SH', quotations
|
|
|
|
|
)
|
|
|
|
|
add_count += tdx_import_stock_name_from_file(
|
|
|
|
|
connect, src_dir + "\\T0002\\hq_cache\\szm.tnf", 'SZ', quotations
|
|
|
|
|
)
|
2018-11-19 02:42:31 +08:00
|
|
|
|
print("新增股票数:", add_count)
|
|
|
|
|
|
|
|
|
|
print("\n导入上证日线数据")
|
2018-11-22 01:21:28 +08:00
|
|
|
|
add_count = tdx_import_data(connect, 'SH', 'DAY', quotations, src_dir + "\\vipdoc\\sh\\lday")
|
2018-11-19 02:42:31 +08:00
|
|
|
|
print("\n导入数量:", add_count)
|
2020-09-27 21:51:58 +08:00
|
|
|
|
|
2018-11-19 02:42:31 +08:00
|
|
|
|
print("\n导入深证日线数据")
|
2018-11-25 16:46:07 +08:00
|
|
|
|
add_count = tdx_import_data(connect, 'SZ', 'DAY', quotations, src_dir + "\\vipdoc\\sz\\lday")
|
2018-11-19 02:42:31 +08:00
|
|
|
|
print("\n导入数量:", add_count)
|
2020-09-27 21:51:58 +08:00
|
|
|
|
"""
|
2018-11-19 02:42:31 +08:00
|
|
|
|
print("\n导入上证5分钟数据")
|
2018-11-22 01:21:28 +08:00
|
|
|
|
add_count = tdx_import_data(connect, 'SH', '5MIN', quotations, src_dir + "\\vipdoc\\sh\\fzline")
|
2018-11-19 02:42:31 +08:00
|
|
|
|
print("\n导入数量:", add_count)
|
|
|
|
|
|
|
|
|
|
print("\n导入深证5分钟数据")
|
2018-11-25 16:46:07 +08:00
|
|
|
|
add_count = tdx_import_data(connect, 'SZ', '5MIN', quotations, src_dir + "\\vipdoc\\sz\\fzline")
|
2018-11-19 02:42:31 +08:00
|
|
|
|
print("\n导入数量:", add_count)
|
|
|
|
|
|
|
|
|
|
print("\n导入上证1分钟数据")
|
2020-09-26 18:16:33 +08:00
|
|
|
|
add_count = tdx_import_data(
|
|
|
|
|
connect, 'SH', '1MIN', quotations, src_dir + "\\vipdoc\\sh\\minline"
|
|
|
|
|
)
|
2018-11-19 02:42:31 +08:00
|
|
|
|
print("\n导入数量:", add_count)
|
|
|
|
|
|
|
|
|
|
print("\n导入深证1分钟数据")
|
2020-09-26 18:16:33 +08:00
|
|
|
|
add_count = tdx_import_data(
|
|
|
|
|
connect, 'SZ', '1MIN', quotations, src_dir + "\\vipdoc\\sz\\minline"
|
|
|
|
|
)
|
2018-11-19 02:42:31 +08:00
|
|
|
|
print("\n导入数量:", add_count)
|
2020-09-26 18:16:33 +08:00
|
|
|
|
"""
|
|
|
|
|
"""
|
2018-11-19 02:42:31 +08:00
|
|
|
|
print("\n导入权息数据")
|
|
|
|
|
print("正在下载权息数据...")
|
|
|
|
|
import urllib.request
|
2020-09-26 18:16:33 +08:00
|
|
|
|
net_file = urllib.request.urlopen(
|
|
|
|
|
'http://www.qianlong.com.cn/download/history/weight.rar', timeout=60
|
|
|
|
|
)
|
2018-11-25 16:46:07 +08:00
|
|
|
|
dest_dir = os.path.expanduser('~/.hikyuu')
|
2018-11-19 02:42:31 +08:00
|
|
|
|
dest_filename = dest_dir + '/weight.rar'
|
|
|
|
|
with open(dest_filename, 'wb') as file:
|
|
|
|
|
file.write(net_file.read())
|
|
|
|
|
|
|
|
|
|
print("下载完成,正在解压...")
|
|
|
|
|
os.system('unrar x -o+ -inul {} {}'.format(dest_filename, dest_dir))
|
|
|
|
|
|
|
|
|
|
print("解压完成,正在导入...")
|
|
|
|
|
add_count = qianlong_import_weight(connect, dest_dir + '/weight', 'SH')
|
|
|
|
|
add_count += qianlong_import_weight(connect, dest_dir + '/weight', 'SZ')
|
|
|
|
|
print("导入数量:", add_count)
|
|
|
|
|
connect.commit()
|
|
|
|
|
connect.close()
|
2020-09-26 18:16:33 +08:00
|
|
|
|
"""
|
|
|
|
|
|
2018-11-19 02:42:31 +08:00
|
|
|
|
endtime = time.time()
|
|
|
|
|
print("\nTotal time:")
|
2020-09-26 18:16:33 +08:00
|
|
|
|
print("%.2fs" % (endtime - starttime))
|
|
|
|
|
print("%.2fm" % ((endtime - starttime) / 60))
|