-
Notifications
You must be signed in to change notification settings - Fork 49
/
PyAutoTrading.pyw
395 lines (351 loc) · 15.4 KB
/
PyAutoTrading.pyw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
# -*- encoding: utf8 -*-
__author__ = '人在江湖'
__email__ = '[email protected]'
import time
import win32con
import tkinter.messagebox
from tkinter import *
from tkinter.ttk import *
import datetime
import threading
import tushare as ts
from winguiauto import *
import pickle
is_start = False
is_monitor = True
set_stock_info = []
order_msg = []
actual_stock_info = []
is_activated = [1] * 5 # 1:准备 0:交易成功 -1:交易失败
def findWantedControls(hwnd):
# 获取双向委托界面level3窗体下所有控件句柄
hwndChildLevel1 = dumpSpecifiedWindow(hwnd, wantedClass='AfxMDIFrame42s')
hwndChildLevel2 = dumpSpecifiedWindow(hwndChildLevel1[0])
for handler in hwndChildLevel2:
hwndChildLevel3 = dumpSpecifiedWindow(handler)
if len(hwndChildLevel3) == 70: # 在hwndChildLevel3下,共有70个子窗体
return hwndChildLevel3
def closePopupWindow(hwnd, wantedText=None, wantedClass=None):
# 如果有弹出式窗口,点击它的确定按钮
hwndPopup = findPopupWindow(hwnd)
if hwndPopup:
hwndControl = findControl(hwndPopup, wantedText, wantedClass)
clickButton(hwndControl)
time.sleep(1)
return True
return False
def buy(hwnd, stock_code, stock_number):
pressKey(hwnd, win32con.VK_F6)
hwndControls = findWantedControls(hwnd)
if closePopupWindow(hwnd, wantedClass='Button'):
time.sleep(5)
click(hwndControls[2])
time.sleep(.5)
setEditText(hwndControls[2], stock_code)
time.sleep(.5)
click(hwndControls[7])
time.sleep(.5)
setEditText(hwndControls[7], stock_number)
time.sleep(.5)
clickButton(hwndControls[8])
time.sleep(1)
return not closePopupWindow(hwnd, wantedClass='Button')
def sell(hwnd, stock_code, stock_number):
pressKey(hwnd, win32con.VK_F6)
hwndControls = findWantedControls(hwnd)
if closePopupWindow(hwnd, wantedClass='Button'):
time.sleep(5)
click(hwndControls[11])
time.sleep(.5)
setEditText(hwndControls[11], stock_code)
time.sleep(.5)
click(hwndControls[16])
time.sleep(.5)
setEditText(hwndControls[16], stock_number)
time.sleep(.5)
clickButton(hwndControls[17])
time.sleep(1)
return not closePopupWindow(hwnd, wantedClass='Button')
def order(hwnd_parent, stock_code, stock_number, trade_direction):
if trade_direction == 'B':
return buy(hwnd_parent, stock_code, stock_number)
if trade_direction == 'S':
return sell(hwnd_parent, stock_code, stock_number)
def tradingInit():
# 获取交易软件句柄
hwnd_parent = findSpecifiedTopWindow(wantedText='网上股票交易系统5.0')
if hwnd_parent == 0:
tkinter.messagebox.showerror('错误', '请先打开华泰证券交易软件,再运行本软件')
return
return hwnd_parent
def getStockData(items_info):
code_name_price = []
stock_codes = []
for item in items_info:
stock_codes.append(item[0])
try:
df = ts.get_realtime_quotes(stock_codes)
for i in range(len(df)):
code_name_price.append((df['code'][i], df['name'][i], float(df['price'][i])))
except:
return []
# print(code_name_price)
return code_name_price
def monitor():
# 股价监控函数
global actual_stock_info, order_msg, is_activated, set_stock_info
hwnd = tradingInit()
# 如果hwnd为零,直接终止循环
while is_monitor and hwnd:
time.sleep(3)
if is_start:
actual_stock_info = getStockData(set_stock_info)
for actual_code, actual_name, actual_price in actual_stock_info:
for row, (set_code, set_relation, set_price, set_direction, set_quantity, set_time) in enumerate(
set_stock_info):
if actual_code == set_code and actual_code and set_code \
and is_activated[row] == 1 and set_relation \
and set_direction and set_quantity and set_price > 0 \
and datetime.datetime.now().time() > set_time:
if set_relation == '>' and actual_price > set_price:
dt = datetime.datetime.now()
if order(hwnd, set_code, set_quantity, set_direction):
order_msg.append(
(dt.strftime('%x'), dt.strftime('%X'), actual_code,
actual_name, set_direction,
actual_price, set_quantity, '成功'))
is_activated[row] = 0
else:
order_msg.append(
(dt.strftime('%x'), dt.strftime('%X'), actual_code,
actual_name, set_direction,
actual_price, set_quantity, '失败'))
is_activated[row] = -1
if set_relation == '<' and actual_price < set_price:
dt = datetime.datetime.now()
if order(hwnd, set_code, set_quantity, set_direction):
order_msg.append(
(dt.strftime('%x'), dt.strftime('%X'), actual_code,
actual_name, set_direction,
actual_price, set_quantity, '成功'))
is_activated[row] = 0
else:
order_msg.append(
(dt.strftime('%x'), dt.strftime('%X'), actual_code,
actual_name, set_direction,
actual_price, set_quantity, '失败'))
is_activated[row] = -1
class StockGui:
def __init__(self):
self.window = Tk()
self.window.title("股票交易伴侣")
self.window.resizable(0, 0)
frame1 = Frame(self.window)
frame1.pack(padx=10, pady=10)
Label(frame1, text="股票代码", width=8, justify=CENTER).grid(
row=1, column=1, padx=5, pady=5)
Label(frame1, text="股票名称", width=8, justify=CENTER).grid(
row=1, column=2, padx=5, pady=5)
Label(frame1, text="当前价格", width=8, justify=CENTER).grid(
row=1, column=3, padx=5, pady=5)
Label(frame1, text="关系", width=4, justify=CENTER).grid(
row=1, column=4, padx=5, pady=5)
Label(frame1, text="价格", width=8, justify=CENTER).grid(
row=1, column=5, padx=5, pady=5)
Label(frame1, text="方向", width=4, justify=CENTER).grid(
row=1, column=6, padx=5, pady=5)
Label(frame1, text="数量", width=8, justify=CENTER).grid(
row=1, column=7, padx=5, pady=5)
Label(frame1, text="时间可选", width=8, justify=CENTER).grid(
row=1, column=8, padx=5, pady=5)
Label(frame1, text="状态", width=4, justify=CENTER).grid(
row=1, column=9, padx=5, pady=5)
self.rows = 5
self.cols = 9
self.variable = []
for row in range(self.rows):
self.variable.append([])
for col in range(self.cols):
temp = StringVar()
self.variable[row].append(temp)
for row in range(self.rows):
Entry(frame1, textvariable=self.variable[row][0],
width=8).grid(row=row + 2, column=1, padx=5, pady=5)
Entry(frame1, textvariable=self.variable[row][1], state=DISABLED,
width=8).grid(row=row + 2, column=2, padx=5, pady=5)
Entry(frame1, textvariable=self.variable[row][2], state=DISABLED,
width=8).grid(row=row + 2, column=3, padx=5, pady=5)
Combobox(frame1, values=('<', '>'), textvariable=self.variable[row][3],
width=2).grid(row=row + 2, column=4, padx=5, pady=5)
Spinbox(frame1, from_=0, to=1000, textvariable=self.variable[row][4],
increment=0.01, width=6).grid(row=row + 2, column=5, padx=5, pady=5)
Combobox(frame1, values=('B', 'S'), textvariable=self.variable[row][5],
width=2).grid(row=row + 2, column=6, padx=5, pady=5)
Spinbox(frame1, from_=0, to=100000, textvariable=self.variable[row][6],
increment=100, width=6).grid(row=row + 2, column=7, padx=5, pady=5)
Entry(frame1, textvariable=self.variable[row][7],
width=8).grid(row=row + 2, column=8, padx=5, pady=5)
Entry(frame1, textvariable=self.variable[row][8], state=DISABLED,
width=4).grid(row=row + 2, column=9, padx=5, pady=5)
frame3 = Frame(self.window)
frame3.pack(padx=10, pady=10)
self.start_bt = Button(frame3, text="开始", command=self.start)
self.start_bt.pack(side=LEFT)
self.set_bt = Button(frame3, text='重置买卖', command=self.setFlags)
self.set_bt.pack(side=LEFT)
Button(frame3, text="历史记录", command=self.displayHisRecords).pack(side=LEFT)
Button(frame3, text='保存', command=self.save).pack(side=LEFT)
self.load_bt = Button(frame3, text='载入', command=self.load)
self.load_bt.pack(side=LEFT)
self.window.protocol(name="WM_DELETE_WINDOW", func=self.close)
self.window.after(100, self.updateControls)
self.window.mainloop()
def displayHisRecords(self):
'''
显示历史信息
:return:
'''
global order_msg
tp = Toplevel()
tp.title('历史记录')
tp.resizable(0, 1)
scrollbar = Scrollbar(tp)
scrollbar.pack(side=RIGHT, fill=Y)
col_name = ['日期', '时间', '证券代码', '证券名称', '方向', '价格', '数量', '备注']
tree = Treeview(
tp, show='headings', columns=col_name, height=30, yscrollcommand=scrollbar.set)
tree.pack(expand=1, fill=Y)
scrollbar.config(command=tree.yview)
for name in col_name:
tree.heading(name, text=name)
tree.column(name, width=70, anchor=CENTER)
for msg in order_msg:
tree.insert('', 0, values=msg)
def save(self):
'''
保存设置
:return:
'''
global set_stock_info, order_msg, actual_stock_info
with open('stockInfo.dat', 'wb') as fp:
pickle.dump(set_stock_info, fp)
pickle.dump(actual_stock_info, fp)
pickle.dump(order_msg, fp)
def load(self):
'''
载入设置
:return:
'''
global set_stock_info, order_msg, actual_stock_info
with open('stockInfo.dat', 'rb') as fp:
set_stock_info = pickle.load(fp)
actual_stock_info = pickle.load(fp)
order_msg = pickle.load(fp)
for row in range(self.rows):
for col in range(self.cols):
if col == 0:
self.variable[row][col].set(set_stock_info[row][0])
elif col == 1:
self.variable[row][col].set(actual_stock_info[row][1])
elif col == 2:
self.variable[row][col].set(actual_stock_info[row][2])
elif col == 3:
self.variable[row][col].set(set_stock_info[row][1])
elif col == 4:
self.variable[row][col].set(set_stock_info[row][2])
elif col == 5:
self.variable[row][col].set(set_stock_info[row][3])
elif col == 6:
self.variable[row][col].set(set_stock_info[row][4])
elif col == 7:
self.variable[row][col].set(set_stock_info[row][5].strftime('%X'))
def setFlags(self):
# 重置买卖标志
global is_start, is_activated
if is_start is False:
is_activated = [1] * 5
def updateControls(self):
'''
实时股票名称、价格、状态信息
:return:
'''
global set_stock_info, actual_stock_info, is_start
if is_start:
for row, (set_code, _, _, _, _, _) in enumerate(set_stock_info):
for actual_code, actual_name, actual_price in actual_stock_info:
if actual_code == set_code and actual_code and set_code:
self.variable[row][1].set(actual_name)
self.variable[row][2].set(str(actual_price))
if is_activated[row] == 1:
self.variable[row][8].set('监控')
elif is_activated[row] == -1:
self.variable[row][8].set('失败')
elif is_activated[row] == 0:
self.variable[row][8].set('成功')
self.window.after(3000, self.updateControls)
def start(self):
global is_start
if is_start is False:
is_start = True
else:
is_start = False
if is_start:
self.getItems()
# print(set_stock_info)
self.start_bt['text'] = '停止'
self.set_bt['state'] = DISABLED
self.load_bt['state'] = DISABLED
else:
self.start_bt['text'] = '开始'
self.set_bt['state'] = NORMAL
self.load_bt['state'] = NORMAL
def close(self):
# 关闭软件时,停止monitor线程
global is_monitor
is_monitor = False
self.window.quit()
def getItems(self):
global set_stock_info
set_stock_info = []
# 获取买卖价格数量输入项等
for row in range(self.rows):
set_stock_info.append([])
for col in range(self.cols):
temp = self.variable[row][col].get().strip()
if col == 0:
if len(temp) == 6 and temp.isdigit(): # 判断股票代码是否为6位数
set_stock_info[row].append(temp)
else:
set_stock_info[row].append('')
elif col == 3:
if temp in ('>', '<'):
set_stock_info[row].append(temp)
else:
set_stock_info[row].append('')
elif col == 4:
try:
set_stock_info[row].append(float(temp)) # 把价格转为数字
except ValueError:
set_stock_info[row].append(0)
elif col == 5:
if temp in ('B', 'S'):
set_stock_info[row].append(temp)
else:
set_stock_info[row].append('')
elif col == 6:
if temp.isdigit() and int(temp) >= 100:
set_stock_info[row].append(str(int(temp) // 100 * 100))
else:
set_stock_info[row].append('')
elif col == 7:
try:
set_stock_info[row].append(datetime.datetime.strptime(temp, '%H:%M:%S').time())
except ValueError:
set_stock_info[row].append(datetime.datetime.strptime('1:00:00', '%H:%M:%S').time())
if __name__ == '__main__':
t1 = threading.Thread(target=StockGui)
t2 = threading.Thread(target=monitor)
t1.start()
t2.start()
t1.join()
t2.join()