hikyuu 2.5.2__py3-none-win_amd64.whl → 2.5.5__py3-none-win_amd64.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- hikyuu/__init__.py +5 -1
- hikyuu/__init__.pyi +522 -511
- hikyuu/analysis/__init__.pyi +490 -485
- hikyuu/analysis/analysis.pyi +491 -486
- hikyuu/core.pyi +492 -487
- hikyuu/cpp/__init__.pyi +2 -2
- hikyuu/cpp/core310.pyd +0 -0
- hikyuu/cpp/core310.pyi +249 -26
- hikyuu/cpp/core311.pyd +0 -0
- hikyuu/cpp/core311.pyi +249 -26
- hikyuu/cpp/core312.pyd +0 -0
- hikyuu/cpp/core312.pyi +249 -26
- hikyuu/cpp/core313.pyd +0 -0
- hikyuu/cpp/core313.pyi +243 -26
- hikyuu/cpp/core38.pyd +0 -0
- hikyuu/cpp/core38.pyi +249 -26
- hikyuu/cpp/core39.pyd +0 -0
- hikyuu/cpp/core39.pyi +249 -26
- hikyuu/cpp/hikyuu.dll +0 -0
- hikyuu/cpp/hikyuu.lib +0 -0
- hikyuu/data/mysql_upgrade/0027.sql +6 -0
- hikyuu/data/pytdx_to_h5.py +7 -4
- hikyuu/data/pytdx_to_mysql.py +7 -4
- hikyuu/data/sqlite_upgrade/0027.sql +8 -0
- hikyuu/draw/drawplot/__init__.py +8 -1
- hikyuu/draw/drawplot/__init__.pyi +11 -7
- hikyuu/draw/drawplot/bokeh_draw.pyi +509 -500
- hikyuu/draw/drawplot/common.pyi +1 -1
- hikyuu/draw/drawplot/echarts_draw.pyi +511 -502
- hikyuu/draw/drawplot/matplotlib_draw.py +129 -8
- hikyuu/draw/drawplot/matplotlib_draw.pyi +571 -515
- hikyuu/draw/elder.pyi +11 -11
- hikyuu/draw/kaufman.pyi +18 -18
- hikyuu/draw/volume.pyi +10 -10
- hikyuu/extend.pyi +501 -495
- hikyuu/fetcher/stock/zh_block_em.py +18 -7
- hikyuu/hub.py +112 -6
- hikyuu/hub.pyi +39 -13
- hikyuu/include/hikyuu/DataType.h +1 -2
- hikyuu/include/hikyuu/StockManager.h +2 -1
- hikyuu/include/hikyuu/StrategyContext.h +12 -3
- hikyuu/include/hikyuu/indicator/Indicator.h +24 -0
- hikyuu/include/hikyuu/indicator/Indicator2InImp.h +1 -0
- hikyuu/include/hikyuu/indicator/build_in.h +2 -0
- hikyuu/include/hikyuu/indicator/crt/ATR.h +2 -13
- hikyuu/include/hikyuu/indicator/crt/BARSSINCE.h +14 -2
- hikyuu/include/hikyuu/indicator/crt/KALMAN.h +30 -0
- hikyuu/include/hikyuu/indicator/crt/TR.h +32 -0
- hikyuu/include/hikyuu/indicator/imp/IAtr.h +3 -1
- hikyuu/include/hikyuu/indicator/imp/IBarsSince.h +6 -0
- hikyuu/include/hikyuu/indicator/imp/IKalman.h +27 -0
- hikyuu/include/hikyuu/indicator/imp/ITr.h +35 -0
- hikyuu/include/hikyuu/python/convert_any.h +299 -0
- hikyuu/include/hikyuu/trade_manage/PositionRecord.h +5 -4
- hikyuu/include/hikyuu/trade_sys/allocatefunds/crt/AF_MultiFactor.h +1 -1
- hikyuu/include/hikyuu/trade_sys/allocatefunds/imp/MultiFactorAllocaterFunds.h +3 -0
- hikyuu/include/hikyuu/trade_sys/condition/ConditionBase.h +4 -1
- hikyuu/include/hikyuu/trade_sys/condition/imp/{SubCondition.h → logic/SubCondition.h} +1 -1
- hikyuu/include/hikyuu/trade_sys/environment/EnvironmentBase.h +20 -6
- hikyuu/include/hikyuu/trade_sys/environment/build_in.h +1 -0
- hikyuu/include/hikyuu/trade_sys/environment/crt/EV_Logic.h +35 -0
- hikyuu/include/hikyuu/trade_sys/environment/imp/logic/AddEnvironment.h +42 -0
- hikyuu/include/hikyuu/trade_sys/environment/imp/logic/AndEnvironment.h +42 -0
- hikyuu/include/hikyuu/trade_sys/environment/imp/logic/DivEnvironment.h +42 -0
- hikyuu/include/hikyuu/trade_sys/environment/imp/logic/MultiEnvironment.h +42 -0
- hikyuu/include/hikyuu/trade_sys/environment/imp/logic/OrEnvironment.h +42 -0
- hikyuu/include/hikyuu/trade_sys/environment/imp/logic/SubEnvironment.h +42 -0
- hikyuu/include/hikyuu/trade_sys/environment/imp/logic/__init__.py +1 -0
- hikyuu/include/hikyuu/trade_sys/portfolio/Portfolio.h +0 -4
- hikyuu/include/hikyuu/trade_sys/signal/crt/SG_Logic.h +68 -7
- hikyuu/include/hikyuu/trade_sys/signal/imp/logic/AndSignal.h +19 -0
- hikyuu/include/hikyuu/trade_sys/signal/imp/logic/OperatorSignal.h +1 -0
- hikyuu/include/hikyuu/trade_sys/signal/imp/logic/OperatorValueSignal.h +1 -0
- hikyuu/include/hikyuu/trade_sys/signal/imp/logic/OrSignal.h +19 -0
- hikyuu/include/hikyuu/utilities/datetime/Datetime.h +2 -1
- hikyuu/include/hikyuu/version.h +4 -4
- hikyuu/indicator/indicator.py +1 -0
- hikyuu/trade_manage/__init__.pyi +506 -499
- hikyuu/trade_manage/broker.pyi +3 -3
- hikyuu/trade_manage/broker_easytrader.pyi +1 -1
- hikyuu/trade_manage/trade.pyi +506 -499
- hikyuu/trade_sys/trade_sys.py +4 -3
- hikyuu/util/__init__.pyi +1 -1
- hikyuu/util/singleton.pyi +1 -1
- {hikyuu-2.5.2.dist-info → hikyuu-2.5.5.dist-info}/METADATA +3 -2
- {hikyuu-2.5.2.dist-info → hikyuu-2.5.5.dist-info}/RECORD +90 -73
- {hikyuu-2.5.2.dist-info → hikyuu-2.5.5.dist-info}/top_level.txt +1 -0
- {hikyuu-2.5.2.dist-info → hikyuu-2.5.5.dist-info}/LICENSE +0 -0
- {hikyuu-2.5.2.dist-info → hikyuu-2.5.5.dist-info}/WHEEL +0 -0
- {hikyuu-2.5.2.dist-info → hikyuu-2.5.5.dist-info}/entry_points.txt +0 -0
hikyuu/extend.pyi
CHANGED
|
@@ -5,496 +5,502 @@ from datetime import time
|
|
|
5
5
|
from datetime import timedelta
|
|
6
6
|
from datetime import timezone
|
|
7
7
|
from datetime import tzinfo
|
|
8
|
-
import hikyuu.cpp.
|
|
9
|
-
from hikyuu.cpp.
|
|
10
|
-
from hikyuu.cpp.
|
|
11
|
-
from hikyuu.cpp.
|
|
12
|
-
from hikyuu.cpp.
|
|
13
|
-
from hikyuu.cpp.
|
|
14
|
-
from hikyuu.cpp.
|
|
15
|
-
from hikyuu.cpp.
|
|
16
|
-
from hikyuu.cpp.
|
|
17
|
-
from hikyuu.cpp.
|
|
18
|
-
from hikyuu.cpp.
|
|
19
|
-
from hikyuu.cpp.
|
|
20
|
-
from hikyuu.cpp.
|
|
21
|
-
from hikyuu.cpp.
|
|
22
|
-
from hikyuu.cpp.
|
|
23
|
-
from hikyuu.cpp.
|
|
24
|
-
from hikyuu.cpp.
|
|
25
|
-
from hikyuu.cpp.
|
|
26
|
-
from hikyuu.cpp.
|
|
27
|
-
from hikyuu.cpp.
|
|
28
|
-
from hikyuu.cpp.
|
|
29
|
-
from hikyuu.cpp.
|
|
30
|
-
from hikyuu.cpp.
|
|
31
|
-
from hikyuu.cpp.
|
|
32
|
-
from hikyuu.cpp.
|
|
33
|
-
from hikyuu.cpp.
|
|
34
|
-
from hikyuu.cpp.
|
|
35
|
-
from hikyuu.cpp.
|
|
36
|
-
from hikyuu.cpp.
|
|
37
|
-
from hikyuu.cpp.
|
|
38
|
-
from hikyuu.cpp.
|
|
39
|
-
from hikyuu.cpp.
|
|
40
|
-
from hikyuu.cpp.
|
|
41
|
-
from hikyuu.cpp.
|
|
42
|
-
from hikyuu.cpp.
|
|
43
|
-
from hikyuu.cpp.
|
|
44
|
-
from hikyuu.cpp.
|
|
45
|
-
from hikyuu.cpp.
|
|
46
|
-
from hikyuu.cpp.
|
|
47
|
-
from hikyuu.cpp.
|
|
48
|
-
from hikyuu.cpp.
|
|
49
|
-
from hikyuu.cpp.
|
|
50
|
-
from hikyuu.cpp.
|
|
51
|
-
from hikyuu.cpp.
|
|
52
|
-
from hikyuu.cpp.
|
|
53
|
-
from hikyuu.cpp.
|
|
54
|
-
from hikyuu.cpp.
|
|
55
|
-
from hikyuu.cpp.
|
|
56
|
-
from hikyuu.cpp.
|
|
57
|
-
from hikyuu.cpp.
|
|
58
|
-
from hikyuu.cpp.
|
|
59
|
-
from hikyuu.cpp.
|
|
60
|
-
from hikyuu.cpp.
|
|
61
|
-
from hikyuu.cpp.
|
|
62
|
-
from hikyuu.cpp.
|
|
63
|
-
from hikyuu.cpp.
|
|
64
|
-
from hikyuu.cpp.
|
|
65
|
-
from hikyuu.cpp.
|
|
66
|
-
from hikyuu.cpp.
|
|
67
|
-
from hikyuu.cpp.
|
|
68
|
-
from hikyuu.cpp.
|
|
69
|
-
from hikyuu.cpp.
|
|
70
|
-
from hikyuu.cpp.
|
|
71
|
-
from hikyuu.cpp.
|
|
72
|
-
from hikyuu.cpp.
|
|
73
|
-
from hikyuu.cpp.
|
|
74
|
-
from hikyuu.cpp.
|
|
75
|
-
from hikyuu.cpp.
|
|
76
|
-
from hikyuu.cpp.
|
|
77
|
-
from hikyuu.cpp.
|
|
78
|
-
from hikyuu.cpp.
|
|
79
|
-
from hikyuu.cpp.
|
|
80
|
-
from hikyuu.cpp.
|
|
81
|
-
from hikyuu.cpp.
|
|
82
|
-
from hikyuu.cpp.
|
|
83
|
-
from hikyuu.cpp.
|
|
84
|
-
from hikyuu.cpp.
|
|
85
|
-
from hikyuu.cpp.
|
|
86
|
-
from hikyuu.cpp.
|
|
87
|
-
from hikyuu.cpp.
|
|
88
|
-
from hikyuu.cpp.
|
|
89
|
-
from hikyuu.cpp.
|
|
90
|
-
from hikyuu.cpp.
|
|
91
|
-
from hikyuu.cpp.
|
|
92
|
-
from hikyuu.cpp.
|
|
93
|
-
from hikyuu.cpp.
|
|
94
|
-
from hikyuu.cpp.
|
|
95
|
-
from hikyuu.cpp.
|
|
96
|
-
from hikyuu.cpp.
|
|
97
|
-
from hikyuu.cpp.
|
|
98
|
-
from hikyuu.cpp.
|
|
99
|
-
from hikyuu.cpp.
|
|
100
|
-
from hikyuu.cpp.
|
|
101
|
-
from hikyuu.cpp.
|
|
102
|
-
from hikyuu.cpp.
|
|
103
|
-
from hikyuu.cpp.
|
|
104
|
-
from hikyuu.cpp.
|
|
105
|
-
from hikyuu.cpp.
|
|
106
|
-
from hikyuu.cpp.
|
|
107
|
-
from hikyuu.cpp.
|
|
108
|
-
from hikyuu.cpp.
|
|
109
|
-
from hikyuu.cpp.
|
|
110
|
-
from hikyuu.cpp.
|
|
111
|
-
from hikyuu.cpp.
|
|
112
|
-
from hikyuu.cpp.
|
|
113
|
-
from hikyuu.cpp.
|
|
114
|
-
from hikyuu.cpp.
|
|
115
|
-
from hikyuu.cpp.
|
|
116
|
-
from hikyuu.cpp.
|
|
117
|
-
from hikyuu.cpp.
|
|
118
|
-
from hikyuu.cpp.
|
|
119
|
-
from hikyuu.cpp.
|
|
120
|
-
from hikyuu.cpp.
|
|
121
|
-
from hikyuu.cpp.
|
|
122
|
-
from hikyuu.cpp.
|
|
123
|
-
from hikyuu.cpp.
|
|
124
|
-
from hikyuu.cpp.
|
|
125
|
-
from hikyuu.cpp.
|
|
126
|
-
from hikyuu.cpp.
|
|
127
|
-
from hikyuu.cpp.
|
|
128
|
-
from hikyuu.cpp.
|
|
129
|
-
from hikyuu.cpp.
|
|
130
|
-
from hikyuu.cpp.
|
|
131
|
-
from hikyuu.cpp.
|
|
132
|
-
from hikyuu.cpp.
|
|
133
|
-
from hikyuu.cpp.
|
|
134
|
-
from hikyuu.cpp.
|
|
135
|
-
from hikyuu.cpp.
|
|
136
|
-
from hikyuu.cpp.
|
|
137
|
-
from hikyuu.cpp.
|
|
138
|
-
from hikyuu.cpp.
|
|
139
|
-
from hikyuu.cpp.
|
|
140
|
-
from hikyuu.cpp.
|
|
141
|
-
from hikyuu.cpp.
|
|
142
|
-
from hikyuu.cpp.
|
|
143
|
-
from hikyuu.cpp.
|
|
144
|
-
from hikyuu.cpp.
|
|
145
|
-
from hikyuu.cpp.
|
|
146
|
-
from hikyuu.cpp.
|
|
147
|
-
from hikyuu.cpp.
|
|
148
|
-
from hikyuu.cpp.
|
|
149
|
-
from hikyuu.cpp.
|
|
150
|
-
from hikyuu.cpp.
|
|
151
|
-
from hikyuu.cpp.
|
|
152
|
-
from hikyuu.cpp.
|
|
153
|
-
from hikyuu.cpp.
|
|
154
|
-
from hikyuu.cpp.
|
|
155
|
-
from hikyuu.cpp.
|
|
156
|
-
from hikyuu.cpp.
|
|
157
|
-
from hikyuu.cpp.
|
|
158
|
-
from hikyuu.cpp.
|
|
159
|
-
from hikyuu.cpp.
|
|
160
|
-
from hikyuu.cpp.
|
|
161
|
-
from hikyuu.cpp.
|
|
162
|
-
from hikyuu.cpp.
|
|
163
|
-
from hikyuu.cpp.
|
|
164
|
-
from hikyuu.cpp.
|
|
165
|
-
from hikyuu.cpp.
|
|
166
|
-
from hikyuu.cpp.
|
|
167
|
-
from hikyuu.cpp.
|
|
168
|
-
from hikyuu.cpp.
|
|
169
|
-
from hikyuu.cpp.
|
|
170
|
-
from hikyuu.cpp.
|
|
171
|
-
from hikyuu.cpp.
|
|
172
|
-
from hikyuu.cpp.
|
|
173
|
-
from hikyuu.cpp.
|
|
174
|
-
from hikyuu.cpp.
|
|
175
|
-
from hikyuu.cpp.
|
|
176
|
-
from hikyuu.cpp.
|
|
177
|
-
from hikyuu.cpp.
|
|
178
|
-
from hikyuu.cpp.
|
|
179
|
-
from hikyuu.cpp.
|
|
180
|
-
from hikyuu.cpp.
|
|
181
|
-
from hikyuu.cpp.
|
|
182
|
-
from hikyuu.cpp.
|
|
183
|
-
from hikyuu.cpp.
|
|
184
|
-
from hikyuu.cpp.
|
|
185
|
-
from hikyuu.cpp.
|
|
186
|
-
from hikyuu.cpp.
|
|
187
|
-
from hikyuu.cpp.
|
|
188
|
-
from hikyuu.cpp.
|
|
189
|
-
from hikyuu.cpp.
|
|
190
|
-
from hikyuu.cpp.
|
|
191
|
-
from hikyuu.cpp.
|
|
192
|
-
from hikyuu.cpp.
|
|
193
|
-
from hikyuu.cpp.
|
|
194
|
-
from hikyuu.cpp.
|
|
195
|
-
from hikyuu.cpp.
|
|
196
|
-
from hikyuu.cpp.
|
|
197
|
-
from hikyuu.cpp.
|
|
198
|
-
from hikyuu.cpp.
|
|
199
|
-
from hikyuu.cpp.
|
|
200
|
-
from hikyuu.cpp.
|
|
201
|
-
from hikyuu.cpp.
|
|
202
|
-
from hikyuu.cpp.
|
|
203
|
-
from hikyuu.cpp.
|
|
204
|
-
from hikyuu.cpp.
|
|
205
|
-
from hikyuu.cpp.
|
|
206
|
-
from hikyuu.cpp.
|
|
207
|
-
from hikyuu.cpp.
|
|
208
|
-
from hikyuu.cpp.
|
|
209
|
-
from hikyuu.cpp.
|
|
210
|
-
from hikyuu.cpp.
|
|
211
|
-
from hikyuu.cpp.
|
|
212
|
-
from hikyuu.cpp.
|
|
213
|
-
from hikyuu.cpp.
|
|
214
|
-
from hikyuu.cpp.
|
|
215
|
-
from hikyuu.cpp.
|
|
216
|
-
from hikyuu.cpp.
|
|
217
|
-
from hikyuu.cpp.
|
|
218
|
-
from hikyuu.cpp.
|
|
219
|
-
from hikyuu.cpp.
|
|
220
|
-
from hikyuu.cpp.
|
|
221
|
-
from hikyuu.cpp.
|
|
222
|
-
from hikyuu.cpp.
|
|
223
|
-
from hikyuu.cpp.
|
|
224
|
-
from hikyuu.cpp.
|
|
225
|
-
from hikyuu.cpp.
|
|
226
|
-
from hikyuu.cpp.
|
|
227
|
-
from hikyuu.cpp.
|
|
228
|
-
from hikyuu.cpp.
|
|
229
|
-
from hikyuu.cpp.
|
|
230
|
-
from hikyuu.cpp.
|
|
231
|
-
from hikyuu.cpp.
|
|
232
|
-
from hikyuu.cpp.
|
|
233
|
-
from hikyuu.cpp.
|
|
234
|
-
from hikyuu.cpp.
|
|
235
|
-
from hikyuu.cpp.
|
|
236
|
-
from hikyuu.cpp.
|
|
237
|
-
from hikyuu.cpp.
|
|
238
|
-
from hikyuu.cpp.
|
|
239
|
-
from hikyuu.cpp.
|
|
240
|
-
from hikyuu.cpp.
|
|
241
|
-
from hikyuu.cpp.
|
|
242
|
-
from hikyuu.cpp.
|
|
243
|
-
from hikyuu.cpp.
|
|
244
|
-
from hikyuu.cpp.
|
|
245
|
-
from hikyuu.cpp.
|
|
246
|
-
from hikyuu.cpp.
|
|
247
|
-
from hikyuu.cpp.
|
|
248
|
-
from hikyuu.cpp.
|
|
249
|
-
from hikyuu.cpp.
|
|
250
|
-
from hikyuu.cpp.
|
|
251
|
-
from hikyuu.cpp.
|
|
252
|
-
from hikyuu.cpp.
|
|
253
|
-
from hikyuu.cpp.
|
|
254
|
-
from hikyuu.cpp.
|
|
255
|
-
from hikyuu.cpp.
|
|
256
|
-
from hikyuu.cpp.
|
|
257
|
-
from hikyuu.cpp.
|
|
258
|
-
from hikyuu.cpp.
|
|
259
|
-
from hikyuu.cpp.
|
|
260
|
-
from hikyuu.cpp.
|
|
261
|
-
from hikyuu.cpp.
|
|
262
|
-
from hikyuu.cpp.
|
|
263
|
-
from hikyuu.cpp.
|
|
264
|
-
from hikyuu.cpp.
|
|
265
|
-
from hikyuu.cpp.
|
|
266
|
-
from hikyuu.cpp.
|
|
267
|
-
from hikyuu.cpp.
|
|
268
|
-
from hikyuu.cpp.
|
|
269
|
-
from hikyuu.cpp.
|
|
270
|
-
from hikyuu.cpp.
|
|
271
|
-
from hikyuu.cpp.
|
|
272
|
-
from hikyuu.cpp.
|
|
273
|
-
from hikyuu.cpp.
|
|
274
|
-
from hikyuu.cpp.
|
|
275
|
-
from hikyuu.cpp.
|
|
276
|
-
from hikyuu.cpp.
|
|
277
|
-
from hikyuu.cpp.
|
|
278
|
-
from hikyuu.cpp.
|
|
279
|
-
from hikyuu.cpp.
|
|
280
|
-
from hikyuu.cpp.
|
|
281
|
-
from hikyuu.cpp.
|
|
282
|
-
from hikyuu.cpp.
|
|
283
|
-
from hikyuu.cpp.
|
|
284
|
-
from hikyuu.cpp.
|
|
285
|
-
from hikyuu.cpp.
|
|
286
|
-
from hikyuu.cpp.
|
|
287
|
-
from hikyuu.cpp.
|
|
288
|
-
from hikyuu.cpp.
|
|
289
|
-
from hikyuu.cpp.
|
|
290
|
-
from hikyuu.cpp.
|
|
291
|
-
from hikyuu.cpp.
|
|
292
|
-
from hikyuu.cpp.
|
|
293
|
-
from hikyuu.cpp.
|
|
294
|
-
from hikyuu.cpp.
|
|
295
|
-
from hikyuu.cpp.
|
|
296
|
-
from hikyuu.cpp.
|
|
297
|
-
from hikyuu.cpp.
|
|
298
|
-
from hikyuu.cpp.
|
|
299
|
-
from hikyuu.cpp.
|
|
300
|
-
from hikyuu.cpp.
|
|
301
|
-
from hikyuu.cpp.
|
|
302
|
-
from hikyuu.cpp.
|
|
303
|
-
from hikyuu.cpp.
|
|
304
|
-
from hikyuu.cpp.
|
|
305
|
-
from hikyuu.cpp.
|
|
306
|
-
from hikyuu.cpp.
|
|
307
|
-
from hikyuu.cpp.
|
|
308
|
-
from hikyuu.cpp.
|
|
309
|
-
from hikyuu.cpp.
|
|
310
|
-
from hikyuu.cpp.
|
|
311
|
-
from hikyuu.cpp.
|
|
312
|
-
from hikyuu.cpp.
|
|
313
|
-
from hikyuu.cpp.
|
|
314
|
-
from hikyuu.cpp.
|
|
315
|
-
from hikyuu.cpp.
|
|
316
|
-
from hikyuu.cpp.
|
|
317
|
-
from hikyuu.cpp.
|
|
318
|
-
from hikyuu.cpp.
|
|
319
|
-
from hikyuu.cpp.
|
|
320
|
-
from hikyuu.cpp.
|
|
321
|
-
from hikyuu.cpp.
|
|
322
|
-
from hikyuu.cpp.
|
|
323
|
-
from hikyuu.cpp.
|
|
324
|
-
from hikyuu.cpp.
|
|
325
|
-
from hikyuu.cpp.
|
|
326
|
-
from hikyuu.cpp.
|
|
327
|
-
from hikyuu.cpp.
|
|
328
|
-
from hikyuu.cpp.
|
|
329
|
-
from hikyuu.cpp.
|
|
330
|
-
from hikyuu.cpp.
|
|
331
|
-
from hikyuu.cpp.
|
|
332
|
-
from hikyuu.cpp.
|
|
333
|
-
from hikyuu.cpp.
|
|
334
|
-
from hikyuu.cpp.
|
|
335
|
-
from hikyuu.cpp.
|
|
336
|
-
from hikyuu.cpp.
|
|
337
|
-
from hikyuu.cpp.
|
|
338
|
-
from hikyuu.cpp.
|
|
339
|
-
from hikyuu.cpp.
|
|
340
|
-
from hikyuu.cpp.
|
|
341
|
-
from hikyuu.cpp.
|
|
342
|
-
from hikyuu.cpp.
|
|
343
|
-
from hikyuu.cpp.
|
|
344
|
-
from hikyuu.cpp.
|
|
345
|
-
from hikyuu.cpp.
|
|
346
|
-
from hikyuu.cpp.
|
|
347
|
-
from hikyuu.cpp.
|
|
348
|
-
from hikyuu.cpp.
|
|
349
|
-
from hikyuu.cpp.
|
|
350
|
-
from hikyuu.cpp.
|
|
351
|
-
from hikyuu.cpp.
|
|
352
|
-
from hikyuu.cpp.
|
|
353
|
-
from hikyuu.cpp.
|
|
354
|
-
from hikyuu.cpp.
|
|
355
|
-
from hikyuu.cpp.
|
|
356
|
-
from hikyuu.cpp.
|
|
357
|
-
from hikyuu.cpp.
|
|
358
|
-
from hikyuu.cpp.
|
|
359
|
-
from hikyuu.cpp.
|
|
360
|
-
from hikyuu.cpp.
|
|
361
|
-
from hikyuu.cpp.
|
|
362
|
-
from hikyuu.cpp.
|
|
363
|
-
from hikyuu.cpp.
|
|
364
|
-
from hikyuu.cpp.
|
|
365
|
-
from hikyuu.cpp.
|
|
366
|
-
from hikyuu.cpp.
|
|
367
|
-
from hikyuu.cpp.
|
|
368
|
-
from hikyuu.cpp.
|
|
369
|
-
from hikyuu.cpp.
|
|
370
|
-
from hikyuu.cpp.
|
|
371
|
-
from hikyuu.cpp.
|
|
372
|
-
from hikyuu.cpp.
|
|
373
|
-
from hikyuu.cpp.
|
|
374
|
-
from hikyuu.cpp.
|
|
375
|
-
from hikyuu.cpp.
|
|
376
|
-
from hikyuu.cpp.
|
|
377
|
-
from hikyuu.cpp.
|
|
378
|
-
from hikyuu.cpp.
|
|
379
|
-
from hikyuu.cpp.
|
|
380
|
-
from hikyuu.cpp.
|
|
381
|
-
from hikyuu.cpp.
|
|
382
|
-
from hikyuu.cpp.
|
|
383
|
-
from hikyuu.cpp.
|
|
384
|
-
from hikyuu.cpp.
|
|
385
|
-
from hikyuu.cpp.
|
|
386
|
-
from hikyuu.cpp.
|
|
387
|
-
from hikyuu.cpp.
|
|
388
|
-
from hikyuu.cpp.
|
|
389
|
-
from hikyuu.cpp.
|
|
390
|
-
from hikyuu.cpp.
|
|
391
|
-
from hikyuu.cpp.
|
|
392
|
-
from hikyuu.cpp.
|
|
393
|
-
from hikyuu.cpp.
|
|
394
|
-
from hikyuu.cpp.
|
|
395
|
-
from hikyuu.cpp.
|
|
396
|
-
from hikyuu.cpp.
|
|
397
|
-
from hikyuu.cpp.
|
|
398
|
-
from hikyuu.cpp.
|
|
399
|
-
from hikyuu.cpp.
|
|
400
|
-
from hikyuu.cpp.
|
|
401
|
-
from hikyuu.cpp.
|
|
402
|
-
from hikyuu.cpp.
|
|
403
|
-
from hikyuu.cpp.
|
|
404
|
-
from hikyuu.cpp.
|
|
405
|
-
from hikyuu.cpp.
|
|
406
|
-
from hikyuu.cpp.
|
|
407
|
-
from hikyuu.cpp.
|
|
408
|
-
from hikyuu.cpp.
|
|
409
|
-
from hikyuu.cpp.
|
|
410
|
-
from hikyuu.cpp.
|
|
411
|
-
from hikyuu.cpp.
|
|
412
|
-
from hikyuu.cpp.
|
|
413
|
-
from hikyuu.cpp.
|
|
414
|
-
from hikyuu.cpp.
|
|
415
|
-
from hikyuu.cpp.
|
|
416
|
-
from hikyuu.cpp.
|
|
417
|
-
from hikyuu.cpp.
|
|
418
|
-
from hikyuu.cpp.
|
|
419
|
-
from hikyuu.cpp.
|
|
420
|
-
from hikyuu.cpp.
|
|
421
|
-
from hikyuu.cpp.
|
|
422
|
-
from hikyuu.cpp.
|
|
423
|
-
from hikyuu.cpp.
|
|
424
|
-
from hikyuu.cpp.
|
|
425
|
-
from hikyuu.cpp.
|
|
426
|
-
from hikyuu.cpp.
|
|
427
|
-
from hikyuu.cpp.
|
|
428
|
-
from hikyuu.cpp.
|
|
429
|
-
from hikyuu.cpp.
|
|
430
|
-
from hikyuu.cpp.
|
|
431
|
-
from hikyuu.cpp.
|
|
432
|
-
from hikyuu.cpp.
|
|
433
|
-
from hikyuu.cpp.
|
|
434
|
-
from hikyuu.cpp.
|
|
435
|
-
from hikyuu.cpp.
|
|
436
|
-
from hikyuu.cpp.
|
|
437
|
-
from hikyuu.cpp.
|
|
438
|
-
from hikyuu.cpp.
|
|
439
|
-
from hikyuu.cpp.
|
|
440
|
-
from hikyuu.cpp.
|
|
441
|
-
from hikyuu.cpp.
|
|
442
|
-
from hikyuu.cpp.
|
|
443
|
-
from hikyuu.cpp.
|
|
444
|
-
from hikyuu.cpp.
|
|
445
|
-
from hikyuu.cpp.
|
|
446
|
-
from hikyuu.cpp.
|
|
447
|
-
from hikyuu.cpp.
|
|
448
|
-
from hikyuu.cpp.
|
|
449
|
-
from hikyuu.cpp.
|
|
450
|
-
from hikyuu.cpp.
|
|
451
|
-
from hikyuu.cpp.
|
|
452
|
-
from hikyuu.cpp.
|
|
453
|
-
from hikyuu.cpp.
|
|
454
|
-
from hikyuu.cpp.
|
|
455
|
-
from hikyuu.cpp.
|
|
456
|
-
from hikyuu.cpp.
|
|
457
|
-
from hikyuu.cpp.
|
|
458
|
-
from hikyuu.cpp.
|
|
459
|
-
from hikyuu.cpp.
|
|
460
|
-
from hikyuu.cpp.
|
|
461
|
-
from hikyuu.cpp.
|
|
462
|
-
from hikyuu.cpp.
|
|
463
|
-
from hikyuu.cpp.
|
|
464
|
-
from hikyuu.cpp.
|
|
465
|
-
from hikyuu.cpp.
|
|
466
|
-
from hikyuu.cpp.
|
|
467
|
-
from hikyuu.cpp.
|
|
468
|
-
from hikyuu.cpp.
|
|
469
|
-
from hikyuu.cpp.
|
|
470
|
-
from hikyuu.cpp.
|
|
471
|
-
from hikyuu.cpp.
|
|
472
|
-
from hikyuu.cpp.
|
|
473
|
-
from hikyuu.cpp.
|
|
474
|
-
from hikyuu.cpp.
|
|
475
|
-
from hikyuu.cpp.
|
|
476
|
-
from hikyuu.cpp.
|
|
477
|
-
from hikyuu.cpp.
|
|
478
|
-
from hikyuu.cpp.
|
|
479
|
-
from hikyuu.cpp.
|
|
480
|
-
from hikyuu.cpp.
|
|
481
|
-
from hikyuu.cpp.
|
|
482
|
-
from hikyuu.cpp.
|
|
483
|
-
from hikyuu.cpp.
|
|
484
|
-
from hikyuu.cpp.
|
|
485
|
-
from hikyuu.cpp.
|
|
486
|
-
from hikyuu.cpp.
|
|
487
|
-
from hikyuu.cpp.
|
|
488
|
-
from hikyuu.cpp.
|
|
489
|
-
from hikyuu.cpp.
|
|
490
|
-
from hikyuu.cpp.
|
|
491
|
-
from hikyuu.cpp.
|
|
492
|
-
from hikyuu.cpp.
|
|
8
|
+
import hikyuu.cpp.core38
|
|
9
|
+
from hikyuu.cpp.core38 import ABS
|
|
10
|
+
from hikyuu.cpp.core38 import ACOS
|
|
11
|
+
from hikyuu.cpp.core38 import AD
|
|
12
|
+
from hikyuu.cpp.core38 import ADVANCE
|
|
13
|
+
from hikyuu.cpp.core38 import AF_EqualWeight
|
|
14
|
+
from hikyuu.cpp.core38 import AF_FixedWeight
|
|
15
|
+
from hikyuu.cpp.core38 import AF_FixedWeightList
|
|
16
|
+
from hikyuu.cpp.core38 import AF_MultiFactor
|
|
17
|
+
from hikyuu.cpp.core38 import ALIGN
|
|
18
|
+
from hikyuu.cpp.core38 import AMA
|
|
19
|
+
from hikyuu.cpp.core38 import ASIN
|
|
20
|
+
from hikyuu.cpp.core38 import ATAN
|
|
21
|
+
from hikyuu.cpp.core38 import ATR
|
|
22
|
+
from hikyuu.cpp.core38 import AVEDEV
|
|
23
|
+
from hikyuu.cpp.core38 import AllocateFundsBase
|
|
24
|
+
from hikyuu.cpp.core38 import BACKSET
|
|
25
|
+
from hikyuu.cpp.core38 import BARSCOUNT
|
|
26
|
+
from hikyuu.cpp.core38 import BARSLAST
|
|
27
|
+
from hikyuu.cpp.core38 import BARSSINCE
|
|
28
|
+
from hikyuu.cpp.core38 import BARSSINCEN
|
|
29
|
+
from hikyuu.cpp.core38 import BETWEEN
|
|
30
|
+
from hikyuu.cpp.core38 import BLOCKSETNUM
|
|
31
|
+
from hikyuu.cpp.core38 import BUSINESS
|
|
32
|
+
from hikyuu.cpp.core38 import Block
|
|
33
|
+
from hikyuu.cpp.core38 import BlockInfoDriver
|
|
34
|
+
from hikyuu.cpp.core38 import BorrowRecord
|
|
35
|
+
from hikyuu.cpp.core38 import BrokerPositionRecord
|
|
36
|
+
from hikyuu.cpp.core38 import CEILING
|
|
37
|
+
from hikyuu.cpp.core38 import CN_Bool
|
|
38
|
+
from hikyuu.cpp.core38 import CN_OPLine
|
|
39
|
+
from hikyuu.cpp.core38 import CONTEXT
|
|
40
|
+
from hikyuu.cpp.core38 import CONTEXT_K
|
|
41
|
+
from hikyuu.cpp.core38 import CORR
|
|
42
|
+
from hikyuu.cpp.core38 import COS
|
|
43
|
+
from hikyuu.cpp.core38 import COST
|
|
44
|
+
from hikyuu.cpp.core38 import COUNT
|
|
45
|
+
from hikyuu.cpp.core38 import CROSS
|
|
46
|
+
from hikyuu.cpp.core38 import CVAL
|
|
47
|
+
from hikyuu.cpp.core38 import CYCLE
|
|
48
|
+
from hikyuu.cpp.core38 import C_AMO
|
|
49
|
+
from hikyuu.cpp.core38 import C_CLOSE
|
|
50
|
+
from hikyuu.cpp.core38 import C_HIGH
|
|
51
|
+
from hikyuu.cpp.core38 import C_KDATA
|
|
52
|
+
from hikyuu.cpp.core38 import C_LOW
|
|
53
|
+
from hikyuu.cpp.core38 import C_OPEN
|
|
54
|
+
from hikyuu.cpp.core38 import C_VOL
|
|
55
|
+
from hikyuu.cpp.core38 import ConditionBase
|
|
56
|
+
from hikyuu.cpp.core38 import Constant
|
|
57
|
+
from hikyuu.cpp.core38 import CostRecord
|
|
58
|
+
from hikyuu.cpp.core38 import DATE
|
|
59
|
+
from hikyuu.cpp.core38 import DAY
|
|
60
|
+
from hikyuu.cpp.core38 import DECLINE
|
|
61
|
+
from hikyuu.cpp.core38 import DEVSQ
|
|
62
|
+
from hikyuu.cpp.core38 import DIFF
|
|
63
|
+
from hikyuu.cpp.core38 import DIRECT
|
|
64
|
+
from hikyuu.cpp.core38 import DISCARD
|
|
65
|
+
from hikyuu.cpp.core38 import DMA
|
|
66
|
+
from hikyuu.cpp.core38 import DOWNNDAY
|
|
67
|
+
from hikyuu.cpp.core38 import DROPNA
|
|
68
|
+
from hikyuu.cpp.core38 import DataDriverFactory
|
|
69
|
+
from hikyuu.cpp.core38 import Datetime
|
|
70
|
+
from hikyuu.cpp.core38 import DatetimeList
|
|
71
|
+
from hikyuu.cpp.core38 import Days
|
|
72
|
+
from hikyuu.cpp.core38 import EMA
|
|
73
|
+
from hikyuu.cpp.core38 import EVERY
|
|
74
|
+
from hikyuu.cpp.core38 import EV_Bool
|
|
75
|
+
from hikyuu.cpp.core38 import EV_TwoLine
|
|
76
|
+
from hikyuu.cpp.core38 import EXIST
|
|
77
|
+
from hikyuu.cpp.core38 import EXP
|
|
78
|
+
from hikyuu.cpp.core38 import EnvironmentBase
|
|
79
|
+
from hikyuu.cpp.core38 import FILTER
|
|
80
|
+
from hikyuu.cpp.core38 import FINANCE
|
|
81
|
+
from hikyuu.cpp.core38 import FLOOR
|
|
82
|
+
from hikyuu.cpp.core38 import FundsRecord
|
|
83
|
+
from hikyuu.cpp.core38 import HHV
|
|
84
|
+
from hikyuu.cpp.core38 import HHVBARS
|
|
85
|
+
from hikyuu.cpp.core38 import HKUException
|
|
86
|
+
from hikyuu.cpp.core38 import HOUR
|
|
87
|
+
from hikyuu.cpp.core38 import HSL
|
|
88
|
+
from hikyuu.cpp.core38 import Hours
|
|
89
|
+
from hikyuu.cpp.core38 import IC
|
|
90
|
+
from hikyuu.cpp.core38 import ICIR
|
|
91
|
+
from hikyuu.cpp.core38 import IF
|
|
92
|
+
from hikyuu.cpp.core38 import INBLOCK
|
|
93
|
+
from hikyuu.cpp.core38 import INDEXA
|
|
94
|
+
from hikyuu.cpp.core38 import INDEXADV
|
|
95
|
+
from hikyuu.cpp.core38 import INDEXC
|
|
96
|
+
from hikyuu.cpp.core38 import INDEXDEC
|
|
97
|
+
from hikyuu.cpp.core38 import INDEXH
|
|
98
|
+
from hikyuu.cpp.core38 import INDEXL
|
|
99
|
+
from hikyuu.cpp.core38 import INDEXO
|
|
100
|
+
from hikyuu.cpp.core38 import INDEXV
|
|
101
|
+
from hikyuu.cpp.core38 import INSUM
|
|
102
|
+
from hikyuu.cpp.core38 import INTPART
|
|
103
|
+
from hikyuu.cpp.core38 import IR
|
|
104
|
+
from hikyuu.cpp.core38 import ISINF
|
|
105
|
+
from hikyuu.cpp.core38 import ISINFA
|
|
106
|
+
from hikyuu.cpp.core38 import ISLASTBAR
|
|
107
|
+
from hikyuu.cpp.core38 import ISNA
|
|
108
|
+
from hikyuu.cpp.core38 import IndParam
|
|
109
|
+
from hikyuu.cpp.core38 import Indicator
|
|
110
|
+
from hikyuu.cpp.core38 import IndicatorImp
|
|
111
|
+
from hikyuu.cpp.core38 import JUMPDOWN
|
|
112
|
+
from hikyuu.cpp.core38 import JUMPUP
|
|
113
|
+
from hikyuu.cpp.core38 import KALMAN
|
|
114
|
+
from hikyuu.cpp.core38 import KDATA_PART
|
|
115
|
+
from hikyuu.cpp.core38 import KData
|
|
116
|
+
from hikyuu.cpp.core38 import KDataDriver
|
|
117
|
+
from hikyuu.cpp.core38 import KRecord
|
|
118
|
+
from hikyuu.cpp.core38 import KRecordList
|
|
119
|
+
from hikyuu.cpp.core38 import LAST
|
|
120
|
+
from hikyuu.cpp.core38 import LASTVALUE
|
|
121
|
+
from hikyuu.cpp.core38 import LIUTONGPAN
|
|
122
|
+
from hikyuu.cpp.core38 import LLV
|
|
123
|
+
from hikyuu.cpp.core38 import LLVBARS
|
|
124
|
+
from hikyuu.cpp.core38 import LN
|
|
125
|
+
from hikyuu.cpp.core38 import LOG
|
|
126
|
+
from hikyuu.cpp.core38 import LOG_LEVEL
|
|
127
|
+
from hikyuu.cpp.core38 import LONGCROSS
|
|
128
|
+
from hikyuu.cpp.core38 import LoanRecord
|
|
129
|
+
from hikyuu.cpp.core38 import MA
|
|
130
|
+
from hikyuu.cpp.core38 import MACD
|
|
131
|
+
from hikyuu.cpp.core38 import MAX
|
|
132
|
+
from hikyuu.cpp.core38 import MDD
|
|
133
|
+
from hikyuu.cpp.core38 import MF_EqualWeight
|
|
134
|
+
from hikyuu.cpp.core38 import MF_ICIRWeight
|
|
135
|
+
from hikyuu.cpp.core38 import MF_ICWeight
|
|
136
|
+
from hikyuu.cpp.core38 import MF_Weight
|
|
137
|
+
from hikyuu.cpp.core38 import MIN
|
|
138
|
+
from hikyuu.cpp.core38 import MINUTE
|
|
139
|
+
from hikyuu.cpp.core38 import MM_FixedCapital
|
|
140
|
+
from hikyuu.cpp.core38 import MM_FixedCapitalFunds
|
|
141
|
+
from hikyuu.cpp.core38 import MM_FixedCount
|
|
142
|
+
from hikyuu.cpp.core38 import MM_FixedCountTps
|
|
143
|
+
from hikyuu.cpp.core38 import MM_FixedPercent
|
|
144
|
+
from hikyuu.cpp.core38 import MM_FixedRisk
|
|
145
|
+
from hikyuu.cpp.core38 import MM_FixedUnits
|
|
146
|
+
from hikyuu.cpp.core38 import MM_Nothing
|
|
147
|
+
from hikyuu.cpp.core38 import MM_WilliamsFixedRisk
|
|
148
|
+
from hikyuu.cpp.core38 import MOD
|
|
149
|
+
from hikyuu.cpp.core38 import MONTH
|
|
150
|
+
from hikyuu.cpp.core38 import MRR
|
|
151
|
+
from hikyuu.cpp.core38 import MarketInfo
|
|
152
|
+
from hikyuu.cpp.core38 import Microseconds
|
|
153
|
+
from hikyuu.cpp.core38 import Milliseconds
|
|
154
|
+
from hikyuu.cpp.core38 import Minutes
|
|
155
|
+
from hikyuu.cpp.core38 import MoneyManagerBase
|
|
156
|
+
from hikyuu.cpp.core38 import MultiFactorBase
|
|
157
|
+
from hikyuu.cpp.core38 import NDAY
|
|
158
|
+
from hikyuu.cpp.core38 import NOT
|
|
159
|
+
from hikyuu.cpp.core38 import OrderBrokerBase
|
|
160
|
+
from hikyuu.cpp.core38 import PF_Simple
|
|
161
|
+
from hikyuu.cpp.core38 import PF_WithoutAF
|
|
162
|
+
from hikyuu.cpp.core38 import PG_FixedHoldDays
|
|
163
|
+
from hikyuu.cpp.core38 import PG_FixedPercent
|
|
164
|
+
from hikyuu.cpp.core38 import PG_NoGoal
|
|
165
|
+
from hikyuu.cpp.core38 import POS
|
|
166
|
+
from hikyuu.cpp.core38 import POW
|
|
167
|
+
from hikyuu.cpp.core38 import PRICELIST
|
|
168
|
+
from hikyuu.cpp.core38 import Parameter
|
|
169
|
+
from hikyuu.cpp.core38 import Performance
|
|
170
|
+
from hikyuu.cpp.core38 import Portfolio
|
|
171
|
+
from hikyuu.cpp.core38 import PositionRecord
|
|
172
|
+
from hikyuu.cpp.core38 import PositionRecordList
|
|
173
|
+
from hikyuu.cpp.core38 import ProfitGoalBase
|
|
174
|
+
from hikyuu.cpp.core38 import Query
|
|
175
|
+
from hikyuu.cpp.core38 import RECOVER_BACKWARD
|
|
176
|
+
from hikyuu.cpp.core38 import RECOVER_EQUAL_BACKWARD
|
|
177
|
+
from hikyuu.cpp.core38 import RECOVER_EQUAL_FORWARD
|
|
178
|
+
from hikyuu.cpp.core38 import RECOVER_FORWARD
|
|
179
|
+
from hikyuu.cpp.core38 import REF
|
|
180
|
+
from hikyuu.cpp.core38 import REPLACE
|
|
181
|
+
from hikyuu.cpp.core38 import RESULT
|
|
182
|
+
from hikyuu.cpp.core38 import REVERSE
|
|
183
|
+
from hikyuu.cpp.core38 import ROC
|
|
184
|
+
from hikyuu.cpp.core38 import ROCP
|
|
185
|
+
from hikyuu.cpp.core38 import ROCR
|
|
186
|
+
from hikyuu.cpp.core38 import ROCR100
|
|
187
|
+
from hikyuu.cpp.core38 import ROUND
|
|
188
|
+
from hikyuu.cpp.core38 import ROUNDDOWN
|
|
189
|
+
from hikyuu.cpp.core38 import ROUNDUP
|
|
190
|
+
from hikyuu.cpp.core38 import RSI
|
|
191
|
+
from hikyuu.cpp.core38 import SAFTYLOSS
|
|
192
|
+
from hikyuu.cpp.core38 import SE_Fixed
|
|
193
|
+
from hikyuu.cpp.core38 import SE_MaxFundsOptimal
|
|
194
|
+
from hikyuu.cpp.core38 import SE_MultiFactor
|
|
195
|
+
from hikyuu.cpp.core38 import SE_PerformanceOptimal
|
|
196
|
+
from hikyuu.cpp.core38 import SE_Signal
|
|
197
|
+
from hikyuu.cpp.core38 import SGN
|
|
198
|
+
from hikyuu.cpp.core38 import SG_Add
|
|
199
|
+
from hikyuu.cpp.core38 import SG_AllwaysBuy
|
|
200
|
+
from hikyuu.cpp.core38 import SG_And
|
|
201
|
+
from hikyuu.cpp.core38 import SG_Band
|
|
202
|
+
from hikyuu.cpp.core38 import SG_Bool
|
|
203
|
+
from hikyuu.cpp.core38 import SG_Buy
|
|
204
|
+
from hikyuu.cpp.core38 import SG_Cross
|
|
205
|
+
from hikyuu.cpp.core38 import SG_CrossGold
|
|
206
|
+
from hikyuu.cpp.core38 import SG_Cycle
|
|
207
|
+
from hikyuu.cpp.core38 import SG_Div
|
|
208
|
+
from hikyuu.cpp.core38 import SG_Flex
|
|
209
|
+
from hikyuu.cpp.core38 import SG_Mul
|
|
210
|
+
from hikyuu.cpp.core38 import SG_OneSide
|
|
211
|
+
from hikyuu.cpp.core38 import SG_Or
|
|
212
|
+
from hikyuu.cpp.core38 import SG_Sell
|
|
213
|
+
from hikyuu.cpp.core38 import SG_Single
|
|
214
|
+
from hikyuu.cpp.core38 import SG_Single2
|
|
215
|
+
from hikyuu.cpp.core38 import SG_Sub
|
|
216
|
+
from hikyuu.cpp.core38 import SIN
|
|
217
|
+
from hikyuu.cpp.core38 import SLICE
|
|
218
|
+
from hikyuu.cpp.core38 import SLOPE
|
|
219
|
+
from hikyuu.cpp.core38 import SMA
|
|
220
|
+
from hikyuu.cpp.core38 import SPEARMAN
|
|
221
|
+
from hikyuu.cpp.core38 import SP_FixedPercent
|
|
222
|
+
from hikyuu.cpp.core38 import SP_FixedValue
|
|
223
|
+
from hikyuu.cpp.core38 import SQRT
|
|
224
|
+
from hikyuu.cpp.core38 import STDEV
|
|
225
|
+
from hikyuu.cpp.core38 import STDP
|
|
226
|
+
from hikyuu.cpp.core38 import ST_FixedPercent
|
|
227
|
+
from hikyuu.cpp.core38 import ST_Indicator
|
|
228
|
+
from hikyuu.cpp.core38 import ST_Saftyloss
|
|
229
|
+
from hikyuu.cpp.core38 import SUM
|
|
230
|
+
from hikyuu.cpp.core38 import SUMBARS
|
|
231
|
+
from hikyuu.cpp.core38 import SYS_Simple
|
|
232
|
+
from hikyuu.cpp.core38 import SYS_WalkForward
|
|
233
|
+
from hikyuu.cpp.core38 import ScoreRecord
|
|
234
|
+
from hikyuu.cpp.core38 import ScoreRecordList
|
|
235
|
+
from hikyuu.cpp.core38 import Seconds
|
|
236
|
+
from hikyuu.cpp.core38 import SelectorBase
|
|
237
|
+
from hikyuu.cpp.core38 import SignalBase
|
|
238
|
+
from hikyuu.cpp.core38 import SlippageBase
|
|
239
|
+
from hikyuu.cpp.core38 import SpotRecord
|
|
240
|
+
from hikyuu.cpp.core38 import Stock
|
|
241
|
+
from hikyuu.cpp.core38 import StockManager
|
|
242
|
+
from hikyuu.cpp.core38 import StockTypeInfo
|
|
243
|
+
from hikyuu.cpp.core38 import StockWeight
|
|
244
|
+
from hikyuu.cpp.core38 import StockWeightList
|
|
245
|
+
from hikyuu.cpp.core38 import StoplossBase
|
|
246
|
+
from hikyuu.cpp.core38 import Strategy
|
|
247
|
+
from hikyuu.cpp.core38 import StrategyContext
|
|
248
|
+
from hikyuu.cpp.core38 import System
|
|
249
|
+
from hikyuu.cpp.core38 import SystemPart
|
|
250
|
+
from hikyuu.cpp.core38 import SystemWeight
|
|
251
|
+
from hikyuu.cpp.core38 import SystemWeightList
|
|
252
|
+
from hikyuu.cpp.core38 import TAN
|
|
253
|
+
from hikyuu.cpp.core38 import TA_ACCBANDS
|
|
254
|
+
from hikyuu.cpp.core38 import TA_ACOS
|
|
255
|
+
from hikyuu.cpp.core38 import TA_AD
|
|
256
|
+
from hikyuu.cpp.core38 import TA_ADD
|
|
257
|
+
from hikyuu.cpp.core38 import TA_ADOSC
|
|
258
|
+
from hikyuu.cpp.core38 import TA_ADX
|
|
259
|
+
from hikyuu.cpp.core38 import TA_ADXR
|
|
260
|
+
from hikyuu.cpp.core38 import TA_APO
|
|
261
|
+
from hikyuu.cpp.core38 import TA_AROON
|
|
262
|
+
from hikyuu.cpp.core38 import TA_AROONOSC
|
|
263
|
+
from hikyuu.cpp.core38 import TA_ASIN
|
|
264
|
+
from hikyuu.cpp.core38 import TA_ATAN
|
|
265
|
+
from hikyuu.cpp.core38 import TA_ATR
|
|
266
|
+
from hikyuu.cpp.core38 import TA_AVGDEV
|
|
267
|
+
from hikyuu.cpp.core38 import TA_AVGPRICE
|
|
268
|
+
from hikyuu.cpp.core38 import TA_BBANDS
|
|
269
|
+
from hikyuu.cpp.core38 import TA_BETA
|
|
270
|
+
from hikyuu.cpp.core38 import TA_BOP
|
|
271
|
+
from hikyuu.cpp.core38 import TA_CCI
|
|
272
|
+
from hikyuu.cpp.core38 import TA_CDL2CROWS
|
|
273
|
+
from hikyuu.cpp.core38 import TA_CDL3BLACKCROWS
|
|
274
|
+
from hikyuu.cpp.core38 import TA_CDL3INSIDE
|
|
275
|
+
from hikyuu.cpp.core38 import TA_CDL3LINESTRIKE
|
|
276
|
+
from hikyuu.cpp.core38 import TA_CDL3OUTSIDE
|
|
277
|
+
from hikyuu.cpp.core38 import TA_CDL3STARSINSOUTH
|
|
278
|
+
from hikyuu.cpp.core38 import TA_CDL3WHITESOLDIERS
|
|
279
|
+
from hikyuu.cpp.core38 import TA_CDLABANDONEDBABY
|
|
280
|
+
from hikyuu.cpp.core38 import TA_CDLADVANCEBLOCK
|
|
281
|
+
from hikyuu.cpp.core38 import TA_CDLBELTHOLD
|
|
282
|
+
from hikyuu.cpp.core38 import TA_CDLBREAKAWAY
|
|
283
|
+
from hikyuu.cpp.core38 import TA_CDLCLOSINGMARUBOZU
|
|
284
|
+
from hikyuu.cpp.core38 import TA_CDLCONCEALBABYSWALL
|
|
285
|
+
from hikyuu.cpp.core38 import TA_CDLCOUNTERATTACK
|
|
286
|
+
from hikyuu.cpp.core38 import TA_CDLDARKCLOUDCOVER
|
|
287
|
+
from hikyuu.cpp.core38 import TA_CDLDOJI
|
|
288
|
+
from hikyuu.cpp.core38 import TA_CDLDOJISTAR
|
|
289
|
+
from hikyuu.cpp.core38 import TA_CDLDRAGONFLYDOJI
|
|
290
|
+
from hikyuu.cpp.core38 import TA_CDLENGULFING
|
|
291
|
+
from hikyuu.cpp.core38 import TA_CDLEVENINGDOJISTAR
|
|
292
|
+
from hikyuu.cpp.core38 import TA_CDLEVENINGSTAR
|
|
293
|
+
from hikyuu.cpp.core38 import TA_CDLGAPSIDESIDEWHITE
|
|
294
|
+
from hikyuu.cpp.core38 import TA_CDLGRAVESTONEDOJI
|
|
295
|
+
from hikyuu.cpp.core38 import TA_CDLHAMMER
|
|
296
|
+
from hikyuu.cpp.core38 import TA_CDLHANGINGMAN
|
|
297
|
+
from hikyuu.cpp.core38 import TA_CDLHARAMI
|
|
298
|
+
from hikyuu.cpp.core38 import TA_CDLHARAMICROSS
|
|
299
|
+
from hikyuu.cpp.core38 import TA_CDLHIGHWAVE
|
|
300
|
+
from hikyuu.cpp.core38 import TA_CDLHIKKAKE
|
|
301
|
+
from hikyuu.cpp.core38 import TA_CDLHIKKAKEMOD
|
|
302
|
+
from hikyuu.cpp.core38 import TA_CDLHOMINGPIGEON
|
|
303
|
+
from hikyuu.cpp.core38 import TA_CDLIDENTICAL3CROWS
|
|
304
|
+
from hikyuu.cpp.core38 import TA_CDLINNECK
|
|
305
|
+
from hikyuu.cpp.core38 import TA_CDLINVERTEDHAMMER
|
|
306
|
+
from hikyuu.cpp.core38 import TA_CDLKICKING
|
|
307
|
+
from hikyuu.cpp.core38 import TA_CDLKICKINGBYLENGTH
|
|
308
|
+
from hikyuu.cpp.core38 import TA_CDLLADDERBOTTOM
|
|
309
|
+
from hikyuu.cpp.core38 import TA_CDLLONGLEGGEDDOJI
|
|
310
|
+
from hikyuu.cpp.core38 import TA_CDLLONGLINE
|
|
311
|
+
from hikyuu.cpp.core38 import TA_CDLMARUBOZU
|
|
312
|
+
from hikyuu.cpp.core38 import TA_CDLMATCHINGLOW
|
|
313
|
+
from hikyuu.cpp.core38 import TA_CDLMATHOLD
|
|
314
|
+
from hikyuu.cpp.core38 import TA_CDLMORNINGDOJISTAR
|
|
315
|
+
from hikyuu.cpp.core38 import TA_CDLMORNINGSTAR
|
|
316
|
+
from hikyuu.cpp.core38 import TA_CDLONNECK
|
|
317
|
+
from hikyuu.cpp.core38 import TA_CDLPIERCING
|
|
318
|
+
from hikyuu.cpp.core38 import TA_CDLRICKSHAWMAN
|
|
319
|
+
from hikyuu.cpp.core38 import TA_CDLRISEFALL3METHODS
|
|
320
|
+
from hikyuu.cpp.core38 import TA_CDLSEPARATINGLINES
|
|
321
|
+
from hikyuu.cpp.core38 import TA_CDLSHOOTINGSTAR
|
|
322
|
+
from hikyuu.cpp.core38 import TA_CDLSHORTLINE
|
|
323
|
+
from hikyuu.cpp.core38 import TA_CDLSPINNINGTOP
|
|
324
|
+
from hikyuu.cpp.core38 import TA_CDLSTALLEDPATTERN
|
|
325
|
+
from hikyuu.cpp.core38 import TA_CDLSTICKSANDWICH
|
|
326
|
+
from hikyuu.cpp.core38 import TA_CDLTAKURI
|
|
327
|
+
from hikyuu.cpp.core38 import TA_CDLTASUKIGAP
|
|
328
|
+
from hikyuu.cpp.core38 import TA_CDLTHRUSTING
|
|
329
|
+
from hikyuu.cpp.core38 import TA_CDLTRISTAR
|
|
330
|
+
from hikyuu.cpp.core38 import TA_CDLUNIQUE3RIVER
|
|
331
|
+
from hikyuu.cpp.core38 import TA_CDLUPSIDEGAP2CROWS
|
|
332
|
+
from hikyuu.cpp.core38 import TA_CDLXSIDEGAP3METHODS
|
|
333
|
+
from hikyuu.cpp.core38 import TA_CEIL
|
|
334
|
+
from hikyuu.cpp.core38 import TA_CMO
|
|
335
|
+
from hikyuu.cpp.core38 import TA_CORREL
|
|
336
|
+
from hikyuu.cpp.core38 import TA_COS
|
|
337
|
+
from hikyuu.cpp.core38 import TA_COSH
|
|
338
|
+
from hikyuu.cpp.core38 import TA_DEMA
|
|
339
|
+
from hikyuu.cpp.core38 import TA_DIV
|
|
340
|
+
from hikyuu.cpp.core38 import TA_DX
|
|
341
|
+
from hikyuu.cpp.core38 import TA_EMA
|
|
342
|
+
from hikyuu.cpp.core38 import TA_EXP
|
|
343
|
+
from hikyuu.cpp.core38 import TA_FLOOR
|
|
344
|
+
from hikyuu.cpp.core38 import TA_HT_DCPERIOD
|
|
345
|
+
from hikyuu.cpp.core38 import TA_HT_DCPHASE
|
|
346
|
+
from hikyuu.cpp.core38 import TA_HT_PHASOR
|
|
347
|
+
from hikyuu.cpp.core38 import TA_HT_SINE
|
|
348
|
+
from hikyuu.cpp.core38 import TA_HT_TRENDLINE
|
|
349
|
+
from hikyuu.cpp.core38 import TA_HT_TRENDMODE
|
|
350
|
+
from hikyuu.cpp.core38 import TA_IMI
|
|
351
|
+
from hikyuu.cpp.core38 import TA_KAMA
|
|
352
|
+
from hikyuu.cpp.core38 import TA_LINEARREG
|
|
353
|
+
from hikyuu.cpp.core38 import TA_LINEARREG_ANGLE
|
|
354
|
+
from hikyuu.cpp.core38 import TA_LINEARREG_INTERCEPT
|
|
355
|
+
from hikyuu.cpp.core38 import TA_LINEARREG_SLOPE
|
|
356
|
+
from hikyuu.cpp.core38 import TA_LN
|
|
357
|
+
from hikyuu.cpp.core38 import TA_LOG10
|
|
358
|
+
from hikyuu.cpp.core38 import TA_MA
|
|
359
|
+
from hikyuu.cpp.core38 import TA_MACD
|
|
360
|
+
from hikyuu.cpp.core38 import TA_MACDEXT
|
|
361
|
+
from hikyuu.cpp.core38 import TA_MACDFIX
|
|
362
|
+
from hikyuu.cpp.core38 import TA_MAMA
|
|
363
|
+
from hikyuu.cpp.core38 import TA_MAVP
|
|
364
|
+
from hikyuu.cpp.core38 import TA_MAX
|
|
365
|
+
from hikyuu.cpp.core38 import TA_MAXINDEX
|
|
366
|
+
from hikyuu.cpp.core38 import TA_MEDPRICE
|
|
367
|
+
from hikyuu.cpp.core38 import TA_MFI
|
|
368
|
+
from hikyuu.cpp.core38 import TA_MIDPOINT
|
|
369
|
+
from hikyuu.cpp.core38 import TA_MIDPRICE
|
|
370
|
+
from hikyuu.cpp.core38 import TA_MIN
|
|
371
|
+
from hikyuu.cpp.core38 import TA_MININDEX
|
|
372
|
+
from hikyuu.cpp.core38 import TA_MINMAX
|
|
373
|
+
from hikyuu.cpp.core38 import TA_MINMAXINDEX
|
|
374
|
+
from hikyuu.cpp.core38 import TA_MINUS_DI
|
|
375
|
+
from hikyuu.cpp.core38 import TA_MINUS_DM
|
|
376
|
+
from hikyuu.cpp.core38 import TA_MOM
|
|
377
|
+
from hikyuu.cpp.core38 import TA_MULT
|
|
378
|
+
from hikyuu.cpp.core38 import TA_NATR
|
|
379
|
+
from hikyuu.cpp.core38 import TA_OBV
|
|
380
|
+
from hikyuu.cpp.core38 import TA_PLUS_DI
|
|
381
|
+
from hikyuu.cpp.core38 import TA_PLUS_DM
|
|
382
|
+
from hikyuu.cpp.core38 import TA_PPO
|
|
383
|
+
from hikyuu.cpp.core38 import TA_ROC
|
|
384
|
+
from hikyuu.cpp.core38 import TA_ROCP
|
|
385
|
+
from hikyuu.cpp.core38 import TA_ROCR
|
|
386
|
+
from hikyuu.cpp.core38 import TA_ROCR100
|
|
387
|
+
from hikyuu.cpp.core38 import TA_RSI
|
|
388
|
+
from hikyuu.cpp.core38 import TA_SAR
|
|
389
|
+
from hikyuu.cpp.core38 import TA_SAREXT
|
|
390
|
+
from hikyuu.cpp.core38 import TA_SIN
|
|
391
|
+
from hikyuu.cpp.core38 import TA_SINH
|
|
392
|
+
from hikyuu.cpp.core38 import TA_SMA
|
|
393
|
+
from hikyuu.cpp.core38 import TA_SQRT
|
|
394
|
+
from hikyuu.cpp.core38 import TA_STDDEV
|
|
395
|
+
from hikyuu.cpp.core38 import TA_STOCH
|
|
396
|
+
from hikyuu.cpp.core38 import TA_STOCHF
|
|
397
|
+
from hikyuu.cpp.core38 import TA_STOCHRSI
|
|
398
|
+
from hikyuu.cpp.core38 import TA_SUB
|
|
399
|
+
from hikyuu.cpp.core38 import TA_SUM
|
|
400
|
+
from hikyuu.cpp.core38 import TA_T3
|
|
401
|
+
from hikyuu.cpp.core38 import TA_TAN
|
|
402
|
+
from hikyuu.cpp.core38 import TA_TANH
|
|
403
|
+
from hikyuu.cpp.core38 import TA_TEMA
|
|
404
|
+
from hikyuu.cpp.core38 import TA_TRANGE
|
|
405
|
+
from hikyuu.cpp.core38 import TA_TRIMA
|
|
406
|
+
from hikyuu.cpp.core38 import TA_TRIX
|
|
407
|
+
from hikyuu.cpp.core38 import TA_TSF
|
|
408
|
+
from hikyuu.cpp.core38 import TA_TYPPRICE
|
|
409
|
+
from hikyuu.cpp.core38 import TA_ULTOSC
|
|
410
|
+
from hikyuu.cpp.core38 import TA_VAR
|
|
411
|
+
from hikyuu.cpp.core38 import TA_WCLPRICE
|
|
412
|
+
from hikyuu.cpp.core38 import TA_WILLR
|
|
413
|
+
from hikyuu.cpp.core38 import TA_WMA
|
|
414
|
+
from hikyuu.cpp.core38 import TC_FixedA
|
|
415
|
+
from hikyuu.cpp.core38 import TC_FixedA2015
|
|
416
|
+
from hikyuu.cpp.core38 import TC_FixedA2017
|
|
417
|
+
from hikyuu.cpp.core38 import TC_TestStub
|
|
418
|
+
from hikyuu.cpp.core38 import TC_Zero
|
|
419
|
+
from hikyuu.cpp.core38 import TIME
|
|
420
|
+
from hikyuu.cpp.core38 import TIMELINE
|
|
421
|
+
from hikyuu.cpp.core38 import TIMELINEVOL
|
|
422
|
+
from hikyuu.cpp.core38 import TR
|
|
423
|
+
from hikyuu.cpp.core38 import TURNOVER
|
|
424
|
+
from hikyuu.cpp.core38 import TimeDelta
|
|
425
|
+
from hikyuu.cpp.core38 import TimeLineList
|
|
426
|
+
from hikyuu.cpp.core38 import TimeLineRecord
|
|
427
|
+
from hikyuu.cpp.core38 import TradeCostBase
|
|
428
|
+
from hikyuu.cpp.core38 import TradeManager
|
|
429
|
+
from hikyuu.cpp.core38 import TradeRecord
|
|
430
|
+
from hikyuu.cpp.core38 import TradeRecordList
|
|
431
|
+
from hikyuu.cpp.core38 import TradeRequest
|
|
432
|
+
from hikyuu.cpp.core38 import TransList
|
|
433
|
+
from hikyuu.cpp.core38 import TransRecord
|
|
434
|
+
from hikyuu.cpp.core38 import UPNDAY
|
|
435
|
+
from hikyuu.cpp.core38 import VAR
|
|
436
|
+
from hikyuu.cpp.core38 import VARP
|
|
437
|
+
from hikyuu.cpp.core38 import VIGOR
|
|
438
|
+
from hikyuu.cpp.core38 import WEAVE
|
|
439
|
+
from hikyuu.cpp.core38 import WEEK
|
|
440
|
+
from hikyuu.cpp.core38 import WINNER
|
|
441
|
+
from hikyuu.cpp.core38 import WMA
|
|
442
|
+
from hikyuu.cpp.core38 import YEAR
|
|
443
|
+
from hikyuu.cpp.core38 import ZHBOND10
|
|
444
|
+
from hikyuu.cpp.core38 import ZONGGUBEN
|
|
445
|
+
from hikyuu.cpp.core38 import ZSCORE
|
|
446
|
+
from hikyuu.cpp.core38 import __add__ as __old_Datetime_add__
|
|
447
|
+
from hikyuu.cpp.core38 import __add__ as __old_TimeDelta_add__
|
|
448
|
+
from hikyuu.cpp.core38 import __init__ as __old_Datetime_init__
|
|
449
|
+
from hikyuu.cpp.core38 import __init__ as old_Query_init
|
|
450
|
+
from hikyuu.cpp.core38 import __init__ as __old_StrategyContext_init__
|
|
451
|
+
from hikyuu.cpp.core38 import __init__ as __old_TimeDelta_init__
|
|
452
|
+
from hikyuu.cpp.core38 import __sub__ as __old_Datetime_sub__
|
|
453
|
+
from hikyuu.cpp.core38 import __sub__ as __old_TimeDelta_sub__
|
|
454
|
+
from hikyuu.cpp.core38 import batch_calculate_inds
|
|
455
|
+
from hikyuu.cpp.core38 import can_upgrade
|
|
456
|
+
from hikyuu.cpp.core38 import close_ostream_to_python
|
|
457
|
+
from hikyuu.cpp.core38 import close_spend_time
|
|
458
|
+
from hikyuu.cpp.core38 import combinate_ind
|
|
459
|
+
from hikyuu.cpp.core38 import combinate_index
|
|
460
|
+
from hikyuu.cpp.core38 import crtBrokerTM
|
|
461
|
+
from hikyuu.cpp.core38 import crtSEOptimal
|
|
462
|
+
from hikyuu.cpp.core38 import crtTM
|
|
463
|
+
from hikyuu.cpp.core38 import crt_pf_strategy
|
|
464
|
+
from hikyuu.cpp.core38 import crt_sys_strategy
|
|
465
|
+
from hikyuu.cpp.core38 import find_optimal_system
|
|
466
|
+
from hikyuu.cpp.core38 import find_optimal_system_multi
|
|
467
|
+
from hikyuu.cpp.core38 import get_block
|
|
468
|
+
from hikyuu.cpp.core38 import get_business_name
|
|
469
|
+
from hikyuu.cpp.core38 import get_data_from_buffer_server
|
|
470
|
+
from hikyuu.cpp.core38 import get_date_range
|
|
471
|
+
from hikyuu.cpp.core38 import get_kdata
|
|
472
|
+
from hikyuu.cpp.core38 import get_last_version
|
|
473
|
+
from hikyuu.cpp.core38 import get_log_level
|
|
474
|
+
from hikyuu.cpp.core38 import get_stock
|
|
475
|
+
from hikyuu.cpp.core38 import get_system_part_enum
|
|
476
|
+
from hikyuu.cpp.core38 import get_system_part_name
|
|
477
|
+
from hikyuu.cpp.core38 import get_version
|
|
478
|
+
from hikyuu.cpp.core38 import get_version_git
|
|
479
|
+
from hikyuu.cpp.core38 import get_version_with_build
|
|
480
|
+
from hikyuu.cpp.core38 import hikyuu_init
|
|
481
|
+
from hikyuu.cpp.core38 import inner_analysis_sys_list
|
|
482
|
+
from hikyuu.cpp.core38 import inner_combinate_ind_analysis
|
|
483
|
+
from hikyuu.cpp.core38 import inner_combinate_ind_analysis_with_block
|
|
484
|
+
from hikyuu.cpp.core38 import isinf
|
|
485
|
+
from hikyuu.cpp.core38 import isnan
|
|
486
|
+
from hikyuu.cpp.core38 import open_ostream_to_python
|
|
487
|
+
from hikyuu.cpp.core38 import open_spend_time
|
|
488
|
+
from hikyuu.cpp.core38 import roundDown
|
|
489
|
+
from hikyuu.cpp.core38 import roundEx
|
|
490
|
+
from hikyuu.cpp.core38 import roundUp
|
|
491
|
+
from hikyuu.cpp.core38 import run_in_strategy
|
|
492
|
+
from hikyuu.cpp.core38 import set_log_level
|
|
493
|
+
from hikyuu.cpp.core38 import set_python_in_interactive
|
|
494
|
+
from hikyuu.cpp.core38 import set_python_in_jupyter
|
|
495
|
+
from hikyuu.cpp.core38 import start_spot_agent
|
|
496
|
+
from hikyuu.cpp.core38 import stop_spot_agent
|
|
497
|
+
from hikyuu.cpp.core38 import toPriceList
|
|
493
498
|
import numpy as np
|
|
494
499
|
import os as os
|
|
495
500
|
import pandas as pd
|
|
496
501
|
import sys as sys
|
|
497
|
-
|
|
502
|
+
import typing
|
|
503
|
+
__all__ = ['ABS', 'ACOS', 'AD', 'ADVANCE', 'AF_EqualWeight', 'AF_FixedWeight', 'AF_FixedWeightList', 'AF_MultiFactor', 'ALIGN', 'AMA', 'ASIN', 'ATAN', 'ATR', 'AVEDEV', 'AllocateFundsBase', 'BACKSET', 'BARSCOUNT', 'BARSLAST', 'BARSSINCE', 'BARSSINCEN', 'BETWEEN', 'BLOCKSETNUM', 'BUSINESS', 'Block', 'BlockInfoDriver', 'BorrowRecord', 'BrokerPositionRecord', 'CEILING', 'CN_Bool', 'CN_OPLine', 'CONTEXT', 'CONTEXT_K', 'CORR', 'COS', 'COST', 'COUNT', 'CROSS', 'CVAL', 'CYCLE', 'C_AMO', 'C_CLOSE', 'C_HIGH', 'C_KDATA', 'C_LOW', 'C_OPEN', 'C_VOL', 'ConditionBase', 'Constant', 'CostRecord', 'DATE', 'DAY', 'DEBUG', 'DECLINE', 'DEVSQ', 'DIFF', 'DIRECT', 'DISCARD', 'DMA', 'DOWNNDAY', 'DROPNA', 'DataDriverFactory', 'Datetime', 'DatetimeList', 'DatetimeList_to_df', 'DatetimeList_to_np', 'Datetime_date', 'Datetime_datetime', 'Days', 'EMA', 'ERROR', 'EVERY', 'EV_Bool', 'EV_TwoLine', 'EXIST', 'EXP', 'EnvironmentBase', 'FATAL', 'FILTER', 'FINANCE', 'FLOOR', 'FundsRecord', 'HHV', 'HHVBARS', 'HKUException', 'HOUR', 'HSL', 'Hours', 'IC', 'ICIR', 'IF', 'INBLOCK', 'INDEXA', 'INDEXADV', 'INDEXC', 'INDEXDEC', 'INDEXH', 'INDEXL', 'INDEXO', 'INDEXV', 'INFO', 'INSUM', 'INTPART', 'IR', 'ISINF', 'ISINFA', 'ISLASTBAR', 'ISNA', 'IndParam', 'Indicator', 'IndicatorImp', 'JUMPDOWN', 'JUMPUP', 'KALMAN', 'KDATA_PART', 'KData', 'KDataDriver', 'KData_getitem', 'KData_iter', 'KData_to_df', 'KData_to_np', 'KRecord', 'KRecordList', 'LAST', 'LASTVALUE', 'LIUTONGPAN', 'LLV', 'LLVBARS', 'LN', 'LOG', 'LOG_LEVEL', 'LONGCROSS', 'LoanRecord', 'MA', 'MACD', 'MAX', 'MAXYEAR', 'MDD', 'MF_EqualWeight', 'MF_ICIRWeight', 'MF_ICWeight', 'MF_Weight', 'MIN', 'MINUTE', 'MINYEAR', 'MM_FixedCapital', 'MM_FixedCapitalFunds', 'MM_FixedCount', 'MM_FixedCountTps', 'MM_FixedPercent', 'MM_FixedRisk', 'MM_FixedUnits', 'MM_Nothing', 'MM_WilliamsFixedRisk', 'MOD', 'MONTH', 'MRR', 'MarketInfo', 'Microseconds', 'Milliseconds', 'Minutes', 'MoneyManagerBase', 'MultiFactorBase', 'NDAY', 'NOT', 'OFF', 'OrderBrokerBase', 'PF_Simple', 'PF_WithoutAF', 'PG_FixedHoldDays', 'PG_FixedPercent', 'PG_NoGoal', 'POS', 'POW', 'PRICELIST', 'Parameter', 'Parameter_items', 'Parameter_iter', 'Parameter_keys', 'Parameter_to_dict', 'Performance', 'Portfolio', 'PositionRecord', 'PositionRecordList', 'ProfitGoalBase', 'Query', 'RECOVER_BACKWARD', 'RECOVER_EQUAL_BACKWARD', 'RECOVER_EQUAL_FORWARD', 'RECOVER_FORWARD', 'REF', 'REPLACE', 'RESULT', 'REVERSE', 'ROC', 'ROCP', 'ROCR', 'ROCR100', 'ROUND', 'ROUNDDOWN', 'ROUNDUP', 'RSI', 'SAFTYLOSS', 'SE_Fixed', 'SE_MaxFundsOptimal', 'SE_MultiFactor', 'SE_PerformanceOptimal', 'SE_Signal', 'SGN', 'SG_Add', 'SG_AllwaysBuy', 'SG_And', 'SG_Band', 'SG_Bool', 'SG_Buy', 'SG_Cross', 'SG_CrossGold', 'SG_Cycle', 'SG_Div', 'SG_Flex', 'SG_Mul', 'SG_OneSide', 'SG_Or', 'SG_Sell', 'SG_Single', 'SG_Single2', 'SG_Sub', 'SIN', 'SLICE', 'SLOPE', 'SMA', 'SPEARMAN', 'SP_FixedPercent', 'SP_FixedValue', 'SQRT', 'STDEV', 'STDP', 'ST_FixedPercent', 'ST_Indicator', 'ST_Saftyloss', 'SUM', 'SUMBARS', 'SYS_Simple', 'SYS_WalkForward', 'ScoreRecord', 'ScoreRecordList', 'Seconds', 'SelectorBase', 'SignalBase', 'SlippageBase', 'SpotRecord', 'Stock', 'StockManager', 'StockTypeInfo', 'StockWeight', 'StockWeightList', 'StoplossBase', 'Strategy', 'StrategyContext', 'System', 'SystemPart', 'SystemWeight', 'SystemWeightList', 'TAN', 'TA_ACCBANDS', 'TA_ACOS', 'TA_AD', 'TA_ADD', 'TA_ADOSC', 'TA_ADX', 'TA_ADXR', 'TA_APO', 'TA_AROON', 'TA_AROONOSC', 'TA_ASIN', 'TA_ATAN', 'TA_ATR', 'TA_AVGDEV', 'TA_AVGPRICE', 'TA_BBANDS', 'TA_BETA', 'TA_BOP', 'TA_CCI', 'TA_CDL2CROWS', 'TA_CDL3BLACKCROWS', 'TA_CDL3INSIDE', 'TA_CDL3LINESTRIKE', 'TA_CDL3OUTSIDE', 'TA_CDL3STARSINSOUTH', 'TA_CDL3WHITESOLDIERS', 'TA_CDLABANDONEDBABY', 'TA_CDLADVANCEBLOCK', 'TA_CDLBELTHOLD', 'TA_CDLBREAKAWAY', 'TA_CDLCLOSINGMARUBOZU', 'TA_CDLCONCEALBABYSWALL', 'TA_CDLCOUNTERATTACK', 'TA_CDLDARKCLOUDCOVER', 'TA_CDLDOJI', 'TA_CDLDOJISTAR', 'TA_CDLDRAGONFLYDOJI', 'TA_CDLENGULFING', 'TA_CDLEVENINGDOJISTAR', 'TA_CDLEVENINGSTAR', 'TA_CDLGAPSIDESIDEWHITE', 'TA_CDLGRAVESTONEDOJI', 'TA_CDLHAMMER', 'TA_CDLHANGINGMAN', 'TA_CDLHARAMI', 'TA_CDLHARAMICROSS', 'TA_CDLHIGHWAVE', 'TA_CDLHIKKAKE', 'TA_CDLHIKKAKEMOD', 'TA_CDLHOMINGPIGEON', 'TA_CDLIDENTICAL3CROWS', 'TA_CDLINNECK', 'TA_CDLINVERTEDHAMMER', 'TA_CDLKICKING', 'TA_CDLKICKINGBYLENGTH', 'TA_CDLLADDERBOTTOM', 'TA_CDLLONGLEGGEDDOJI', 'TA_CDLLONGLINE', 'TA_CDLMARUBOZU', 'TA_CDLMATCHINGLOW', 'TA_CDLMATHOLD', 'TA_CDLMORNINGDOJISTAR', 'TA_CDLMORNINGSTAR', 'TA_CDLONNECK', 'TA_CDLPIERCING', 'TA_CDLRICKSHAWMAN', 'TA_CDLRISEFALL3METHODS', 'TA_CDLSEPARATINGLINES', 'TA_CDLSHOOTINGSTAR', 'TA_CDLSHORTLINE', 'TA_CDLSPINNINGTOP', 'TA_CDLSTALLEDPATTERN', 'TA_CDLSTICKSANDWICH', 'TA_CDLTAKURI', 'TA_CDLTASUKIGAP', 'TA_CDLTHRUSTING', 'TA_CDLTRISTAR', 'TA_CDLUNIQUE3RIVER', 'TA_CDLUPSIDEGAP2CROWS', 'TA_CDLXSIDEGAP3METHODS', 'TA_CEIL', 'TA_CMO', 'TA_CORREL', 'TA_COS', 'TA_COSH', 'TA_DEMA', 'TA_DIV', 'TA_DX', 'TA_EMA', 'TA_EXP', 'TA_FLOOR', 'TA_HT_DCPERIOD', 'TA_HT_DCPHASE', 'TA_HT_PHASOR', 'TA_HT_SINE', 'TA_HT_TRENDLINE', 'TA_HT_TRENDMODE', 'TA_IMI', 'TA_KAMA', 'TA_LINEARREG', 'TA_LINEARREG_ANGLE', 'TA_LINEARREG_INTERCEPT', 'TA_LINEARREG_SLOPE', 'TA_LN', 'TA_LOG10', 'TA_MA', 'TA_MACD', 'TA_MACDEXT', 'TA_MACDFIX', 'TA_MAMA', 'TA_MAVP', 'TA_MAX', 'TA_MAXINDEX', 'TA_MEDPRICE', 'TA_MFI', 'TA_MIDPOINT', 'TA_MIDPRICE', 'TA_MIN', 'TA_MININDEX', 'TA_MINMAX', 'TA_MINMAXINDEX', 'TA_MINUS_DI', 'TA_MINUS_DM', 'TA_MOM', 'TA_MULT', 'TA_NATR', 'TA_OBV', 'TA_PLUS_DI', 'TA_PLUS_DM', 'TA_PPO', 'TA_ROC', 'TA_ROCP', 'TA_ROCR', 'TA_ROCR100', 'TA_RSI', 'TA_SAR', 'TA_SAREXT', 'TA_SIN', 'TA_SINH', 'TA_SMA', 'TA_SQRT', 'TA_STDDEV', 'TA_STOCH', 'TA_STOCHF', 'TA_STOCHRSI', 'TA_SUB', 'TA_SUM', 'TA_T3', 'TA_TAN', 'TA_TANH', 'TA_TEMA', 'TA_TRANGE', 'TA_TRIMA', 'TA_TRIX', 'TA_TSF', 'TA_TYPPRICE', 'TA_ULTOSC', 'TA_VAR', 'TA_WCLPRICE', 'TA_WILLR', 'TA_WMA', 'TC_FixedA', 'TC_FixedA2015', 'TC_FixedA2017', 'TC_TestStub', 'TC_Zero', 'TIME', 'TIMELINE', 'TIMELINEVOL', 'TR', 'TRACE', 'TURNOVER', 'TimeDelta', 'TimeDelta_timedelta', 'TimeLineList', 'TimeLineRecord', 'TimeLine_to_df', 'TimeLine_to_np', 'TradeCostBase', 'TradeManager', 'TradeRecord', 'TradeRecordList', 'TradeRequest', 'TransList', 'TransList_to_df', 'TransList_to_np', 'TransRecord', 'UPNDAY', 'VAR', 'VARP', 'VIGOR', 'WARN', 'WEAVE', 'WEEK', 'WINNER', 'WMA', 'YEAR', 'ZHBOND10', 'ZONGGUBEN', 'ZSCORE', 'batch_calculate_inds', 'can_upgrade', 'close_ostream_to_python', 'close_spend_time', 'combinate_ind', 'combinate_index', 'constant', 'crtBrokerTM', 'crtSEOptimal', 'crtTM', 'crt_pf_strategy', 'crt_sys_strategy', 'date', 'datetime', 'datetime_CAPI', 'find_optimal_system', 'find_optimal_system_multi', 'get_block', 'get_business_name', 'get_data_from_buffer_server', 'get_date_range', 'get_kdata', 'get_last_version', 'get_log_level', 'get_stock', 'get_system_part_enum', 'get_system_part_name', 'get_version', 'get_version_git', 'get_version_with_build', 'hikyuu_init', 'inner_analysis_sys_list', 'inner_combinate_ind_analysis', 'inner_combinate_ind_analysis_with_block', 'isinf', 'isnan', 'new_Query_init', 'np', 'old_Query_init', 'open_ostream_to_python', 'open_spend_time', 'os', 'pd', 'roundDown', 'roundEx', 'roundUp', 'run_in_strategy', 'set_log_level', 'set_python_in_interactive', 'set_python_in_jupyter', 'start_spot_agent', 'stop_spot_agent', 'sys', 'time', 'timedelta', 'timezone', 'toPriceList', 'tzinfo']
|
|
498
504
|
def DatetimeList_to_df(data):
|
|
499
505
|
"""
|
|
500
506
|
仅在安装了pandas模块时生效,转换为pandas.DataFrame
|
|
@@ -612,14 +618,14 @@ def new_Query_init(self, start = 0, end = None, ktype = 'DAY', recover_type = ..
|
|
|
612
618
|
:rtype: KQuery
|
|
613
619
|
|
|
614
620
|
"""
|
|
615
|
-
DEBUG: hikyuu.cpp.
|
|
616
|
-
ERROR: hikyuu.cpp.
|
|
617
|
-
FATAL: hikyuu.cpp.
|
|
618
|
-
INFO: hikyuu.cpp.
|
|
621
|
+
DEBUG: hikyuu.cpp.core38.LOG_LEVEL # value = <LOG_LEVEL.DEBUG: 1>
|
|
622
|
+
ERROR: hikyuu.cpp.core38.LOG_LEVEL # value = <LOG_LEVEL.ERROR: 4>
|
|
623
|
+
FATAL: hikyuu.cpp.core38.LOG_LEVEL # value = <LOG_LEVEL.FATAL: 5>
|
|
624
|
+
INFO: hikyuu.cpp.core38.LOG_LEVEL # value = <LOG_LEVEL.INFO: 2>
|
|
619
625
|
MAXYEAR: int = 9999
|
|
620
626
|
MINYEAR: int = 1
|
|
621
|
-
OFF: hikyuu.cpp.
|
|
622
|
-
TRACE: hikyuu.cpp.
|
|
623
|
-
|
|
624
|
-
|
|
625
|
-
|
|
627
|
+
OFF: hikyuu.cpp.core38.LOG_LEVEL # value = <LOG_LEVEL.OFF: 6>
|
|
628
|
+
TRACE: hikyuu.cpp.core38.LOG_LEVEL # value = <LOG_LEVEL.TRACE: 0>
|
|
629
|
+
WARN: hikyuu.cpp.core38.LOG_LEVEL # value = <LOG_LEVEL.WARN: 3>
|
|
630
|
+
constant: hikyuu.cpp.core38.Constant # value = <hikyuu.cpp.core38.Constant object>
|
|
631
|
+
datetime_CAPI: typing.Any # value = <capsule object "datetime.datetime_CAPI" at 0x0000028912E00720>
|