vip全市场行情.py 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. #coding:utf-8
  2. import datetime
  3. import time
  4. from xtquant import xtdata
  5. import pandas as pd
  6. xtdata.get_client()
  7. print(xtdata.data_dir)
  8. def call_back(historyArrived=1,dataBackType=0,data=[]):
  9. """
  10. :param historyArrived: 1表示服务器数据,0表示本地数据
  11. :param dataBackType: 0:全量历史数据 1:最新一条数据,覆盖上一条 2:追加的最新新数据
  12. :param data: 订阅的数据
  13. :return:
  14. """
  15. now = datetime.datetime.now()
  16. now = datetime.datetime.strftime(now, "%Y-%m-%d %H:%M:%S")
  17. print('callback_data:', now, historyArrived, dataBackType, data)
  18. if __name__ == '__main__':
  19. stock_list = xtdata.get_stock_list_in_sector("沪深300")
  20. print(stock_list)
  21. t1 = time.time()
  22. count = 0
  23. for s in stock_list:
  24. # 行情订阅
  25. subscribe_no = xtdata.subscribe_quote(stock_code=s, end_time=time.strftime("%Y%m%d"), count=1, period="1d", callback=call_back)
  26. # print("subscribe_no:", subscribe_no)
  27. # # 阻塞线程接收行情回调
  28. #xtdata.subscribing()
  29. continue
  30. data_day = xtdata.get_market_data_ex(['high', 'open', 'low', 'close', 'volume'], [s],
  31. period='1d', end_time= time.strftime("%Y%m%d"), dividend_type='front', count=1,)
  32. print(count, s, data_day[s].to_dict('index'))
  33. count += 1