start implementing outgoing trades

This commit is contained in:
2023-01-06 15:09:43 +01:00
parent af4de2df62
commit fd14e4578d
8 changed files with 130 additions and 40 deletions

View File

@@ -24,7 +24,7 @@ if __name__ == "__main__":
# app = gui.Gui()
app, window = gui_pyside6.start_app()
reader = trader.Log_Reader(window)
reader_thread = Thread(target=reader.read_log, args=(conf['General']['log_file'], window))
reader_thread = Thread(target=reader.read_log, args=(conf['General']['log_file'],))
log.debug(f'Starting reader thread for "{conf["General"]["log_file"]}"')
reader_thread.start()
# clipboard_thread = Thread(target=clipboard.clipboard_poll, args=(app,))