Administrator
2023-08-02 b069d586b7ed4fbefd9bac22ae796f185962e7fe
gui.py
@@ -13,7 +13,7 @@
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
@@ -1011,7 +1011,7 @@
        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()))