get_history_price.py 1.2 KB

123456789101112131415161718192021222324252627282930313233
  1. from jqdatasdk import *
  2. auth('18616891214','Ea?*7f68nD.dafcW34d!')
  3. from sqlalchemy import create_engine
  4. # 获得代码列表
  5. stocks = list(get_all_securities(['stock'], date='2022-02-25').index)
  6. # 建立stocks 数据库
  7. engine = create_engine('mysql+pymysql://root:r6kEwqWU9!v3@localhost:3307/stocks?charset=utf8')
  8. # 定义周期级别
  9. fre = '30m'
  10. print('ready to get history')
  11. # 逐一取数据,写入sql
  12. for stock in stocks[0:10]:
  13. print(stock)
  14. df_stock = get_price(stock, start_date='2022-01-01 00:00:00', end_date='2022-01-05 00:00:00',
  15. frequency=fre, fields=['open', 'close', 'high', 'low', 'volume', 'money'], skip_paused=False,
  16. fq='pre', count=None, panel=False)
  17. # 去除无数据日
  18. df_stock = df_stock.dropna(axis=0)
  19. # 重置index
  20. df_stock.reset_index(inplace=True)
  21. # df_stock.index = df_stock.index + index_len + 1
  22. # 保留日期数据
  23. df_stock.rename(columns={'index': 'date'}, inplace=True)
  24. # 写入数据库
  25. df_stock.to_sql('stk%s_%s' % (stock[:6], fre), con=engine, if_exists='append')
  26. with engine.connect() as con:
  27. con.execute('ALTER TABLE stk%s_%s ADD PRIMARY KEY (`date`);' % (stock[:6], fre))