get_local_data.py 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. #coding:utf-8
  2. from datetime import datetime as dt
  3. # 用get_market_data订阅历史和实时行情
  4. import time
  5. import pandas as pd
  6. from xtquant import xtdata
  7. def real_price(data):
  8. for i in data:
  9. list.append(i)
  10. xtdata.unsubscribe_quote(id)
  11. print(i)
  12. print(list)
  13. if __name__=='__main__':
  14. '''
  15. from xtquant import xtdata
  16. s = '000001.SZ'
  17. # 实际使用时,该接口每天盘后执行一次即可
  18. # 该接口会下载历史行情并落地到本地,随后即可通过xtdata.get_local_data接口调用本地行情
  19. # 同时间、同股票、同周期的行情下载一次即可,
  20. xtdata.download_history_data(s, '1d','','')
  21. xtdata.download_history_data('000001.SH', '1d','','')
  22. data = xtdata.get_market_data([], [s], '1d', end_time='', count=-1, dividend_type='back')
  23. # data2 = xtdata.get_local_data([], [s], '1d', end_time='', count=2,dividend_type='back')
  24. print('data from get_local_data:\n')
  25. df = pd.DataFrame()
  26. for column in data:
  27. if column in ['time', 'open', 'high', 'low', 'close', 'volume', 'amount']:
  28. # print(f" {column}\n {data[column].head()}\n")
  29. print(column, data[column].T)
  30. df=pd.concat([df, data[column].T],axis=1)
  31. df.columns = ['time', 'open', 'high', 'low', 'close', 'volume', 'amount']
  32. df['time']=df['time'].apply(lambda x: dt.fromtimestamp(x / 1000.0))
  33. print('!!!!!!!', df)
  34. # print(df['time'].apply(lambda x: dt.fromtimestamp(x / 1000.0)))
  35. df2 = pd.concat([data[i].T for i in ['time', 'open', 'high', 'low', 'close', 'volume', 'amount']], axis=1)
  36. df2.columns = ['time', 'open', 'high', 'low', 'close', 'volume', 'amount']
  37. df2['time']=df2['time'].apply(lambda x: dt.fromtimestamp(x / 1000.0))
  38. print('>>>>>>>>>>>', df2)
  39. print(df.index)
  40. exit()
  41. #
  42. # for column in data2:
  43. # print(f" {column}\n {data2[column].head()}\n")
  44. '''
  45. list=[]
  46. stocks = xtdata.get_stock_list_in_sector('沪深A股')
  47. id = xtdata.subscribe_whole_quote(stocks, callback=real_price)
  48. print(list)
  49. xtdata.run()
  50. print(list)