| | |
| | | from utils import data_export_util |
| | | import multiprocessing |
| | | |
| | | from log_module import log |
| | | from log_module import log, log_export |
| | | from db import mysql_data, redis_manager |
| | | import server |
| | | from config import settings |
| | |
| | | btn = FlatButton(frame, text="获取m值", command=lambda: compute_m(code.get())) |
| | | btn.place(x=10, y=130) |
| | | |
| | | btn = FlatButton(frame, text="导出交易日志", command=lambda: log.export_l2_log(code.get())) |
| | | btn = FlatButton(frame, text="导出交易日志", command=lambda: log_export.export_l2_log(code.get())) |
| | | btn.place(x=80, y=130) |
| | | |
| | | btn = FlatButton(frame, text="清空l2数据", command=lambda: clear_l2(code.get())) |