-
Notifications
You must be signed in to change notification settings - Fork 20
/
demo.py
68 lines (61 loc) · 1.5 KB
/
demo.py
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
# %%
# 用VSCode打开后,可直接用`Shift+Enter`分块执行
# 也可以复制到Notebook中执行
# %%
from thsauto import THS
# 初次使用请在`debug=True`模式下多测试几次
# 再次测试在模拟炒股下再开启`debug=False`
# 然后再在其它账号下`debug=True`模式下测试
# 最后是其它账号下`debug=False`下交易
t = THS(debug=True, skip_popup=False)
t.connect(addr="emulator-5554")
# t.connect(addr="38edccd4")
# t.connect(addr="192.168.31.20:40851")
# %%
# 可事后再改成可以下单,也可以在下单函数中指定
# t.debug = False
# %%
t.refresh()
# %%
# 资产
balance = t.get_balance()
balance
# %%
# 持仓
positions = t.get_positions()
positions
# %%
# 委托
orders = t.get_orders(break_after_done=True)
orders
# %%
# 委托。未处理的原始数据
t.orders
# %%
# 支持股票代码
confirm, prompt = t.buy(-100, 5, code='600000')
confirm, prompt
# %%
# 支持股票名称。只要在键盘精灵中排第一即可
confirm, prompt = t.sell('300', '11', symbol='万科A', debug=True)
confirm, prompt
# %%
# 支持拼音缩写。只要在键盘精灵中排第一即可
confirm, prompt = t.sell(200, float('nan'), symbol='gzmt', skip_popup=True)
confirm, prompt
# %%
# 撤第一条
confirm, prompt = t.cancel_single(t.order_at(0))
confirm, prompt
# %%
# 撤卖
confirm, prompt = t.cancel_multiple('buy')
confirm, prompt
# %%
# 全撤
confirm, prompt = t.cancel_multiple('all', debug=False)
confirm, prompt
# %%
confirm, prompt = t.cancel_multiple('sell')
confirm, prompt
# %%