qihuo_get_indicators.py 2.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192
  1. # coding:utf-8
  2. import time
  3. from datetime import datetime as dt
  4. import socket
  5. import pandas as pd
  6. import numpy as np
  7. from sqlalchemy import create_engine, text
  8. from jqdatasdk import *
  9. import pymysql
  10. import multiprocessing as mp
  11. from multiprocessing import freeze_support
  12. import concurrent.futures
  13. import math
  14. import talib as ta
  15. import os
  16. import traceback
  17. import random
  18. import logging
  19. from myindicator import myind
  20. import psutil
  21. from tqdm import tqdm
  22. from itertools import islice
  23. from func_timeout import func_set_timeout, FunctionTimedOut
  24. from apscheduler.schedulers.blocking import BlockingScheduler
  25. # 显示最大行与列
  26. pd.set_option('display.max_rows', None)
  27. pd.set_option('display.max_columns', None)
  28. def tech_anal(table_list):
  29. # 创建数据库连接
  30. engine = create_engine('mysql+pymysql://root:r6kEwqWU9!v3@localhost:3307/qihuo')
  31. engine_tech = create_engine('mysql+pymysql://root:r6kEwqWU9!v3@localhost:3307/qihuo_tech')
  32. for i in table_list:
  33. df = pd.read_sql_table(i, con=engine)
  34. print(i)
  35. try:
  36. myind.get_macd_data(df)
  37. myind.get_ris(df)
  38. myind.get_bias(df)
  39. myind.get_wilr(df)
  40. df = df.round(2)
  41. df_temp, t_signals = myind.get_hlfx(df)
  42. df = pd.merge(df, df_temp, on='time', how='left')
  43. df['HL'].fillna(value='-', inplace=True)
  44. df = df.reset_index(drop=True)
  45. df = df.replace([np.inf, -np.inf], np.nan)
  46. df = df.round(2)
  47. except BaseException as e:
  48. print(f'{i}计算有问题', e)
  49. else:
  50. # 存入数据库
  51. try:
  52. # pass
  53. df.to_sql('%s' % i, con=engine_tech, index=False, if_exists='replace')
  54. # df.to_sql('%s_1d' % stock, con=engine_tech2, index=False, if_exists='replace')
  55. except BaseException as e:
  56. print(f'{i}存储有问题', e)
  57. traceback.print_exc()
  58. exit()
  59. # 从qihuo数据库读取所有表数据
  60. def read_sql():
  61. while True:
  62. try:
  63. db = pymysql.connect(host='localhost',
  64. user='root',
  65. port=3307,
  66. password='r6kEwqWU9!v3',
  67. database='qihuo')
  68. cursor = db.cursor()
  69. cursor.execute("show tables like '%%%s%%' " % '00.')
  70. table_list = [tuple[0] for tuple in cursor.fetchall()]
  71. cursor.close()
  72. db.close()
  73. except Exception as e:
  74. print(e)
  75. time.sleep(5)
  76. continue
  77. finally:
  78. break
  79. return table_list
  80. if __name__ == '__main__':
  81. print('start')
  82. table_list = read_sql()
  83. print('已读取期货表')
  84. tech_anal(table_list)