update_data_tosql.py 2.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. from jqdatasdk import *
  2. from sqlalchemy import create_engine
  3. import pandas as pd
  4. from datetime import datetime as dt
  5. import datetime
  6. auth('18616891214', 'Ea?*7f68nD.dafcW34d!')
  7. stocks = list(get_all_securities(['stock'], date=dt.today().strftime('%Y-%m-%d')).index)
  8. engine = create_engine('mysql+pymysql://root:r6kEwqWU9!v3@localhost:3307/stocks?charset=utf8')
  9. for fre in ['1d', '30m']:
  10. print('ready to write to mysql %s' % fre)
  11. for stock in stocks:
  12. print(stock)
  13. try:
  14. index_len = pd.read_sql_table('stk%s_%s' % (stock, fre), con=engine).iloc[-1, 0]
  15. if fre == '1d':
  16. startdate = pd.read_sql_table('stk%s_%s' % (stock, fre), con=engine).iloc[-1, 1] + datetime.timedelta(
  17. days=1)
  18. elif fre == '30m':
  19. startdate = pd.read_sql_table('stk%s_%s' % (stock, fre), con=engine).iloc[-1, 1] + datetime.timedelta(
  20. minutes=5)
  21. print(startdate)
  22. df_stock = get_price(stock, start_date=startdate, end_date=dt.today().strftime('%Y-%m-%d %H:%M:%S'),
  23. frequency=fre, fields=['open', 'close', 'high', 'low', 'volume', 'money'],
  24. skip_paused=False,
  25. fq='pre', count=None, panel=False)
  26. df_stock = df_stock.dropna(axis=0)
  27. df_stock.reset_index(inplace=True)
  28. df_stock.rename(columns={'index': 'date'}, inplace=True)
  29. df_stock.index = df_stock.index + index_len + 1
  30. df_stock.to_sql('stk%s_%s' % (stock, fre), con=engine, index=True, if_exists='append')
  31. except BaseException:
  32. df_stock = get_price(stock, start_date='2008-01-01 00:00:00', end_date=dt.today().strftime('%Y-%m-%d %H:%M:%S'),
  33. frequency=fre, fields=['open', 'close', 'high', 'low', 'volume', 'money'],
  34. skip_paused=False,
  35. fq='pre', count=None, panel=False)
  36. df_stock = df_stock.dropna(axis=0)
  37. df_stock.reset_index(inplace=True)
  38. df_stock.rename(columns={'index': 'date'}, inplace=True)
  39. df_stock.to_sql('stk%s_%s' % (stock, fre), con=engine, index=True, if_exists='append')
  40. with engine.connect() as con:
  41. con.execute("ALTER TABLE `stk%s_%s` ADD PRIMARY KEY (`date`);" % (stock, fre))