hikyuu 2.2.2__py3-none-win_amd64.whl → 2.2.3__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/cpp/core310.pyd +0 -0
- hikyuu/cpp/core311.pyd +0 -0
- hikyuu/cpp/core312.pyd +0 -0
- hikyuu/cpp/core313.pyd +0 -0
- hikyuu/cpp/core38.pyd +0 -0
- hikyuu/cpp/core39.pyd +0 -0
- hikyuu/cpp/hikyuu.dll +0 -0
- hikyuu/cpp/sqlite3.dll +0 -0
- hikyuu/data/hku_config_template.py +1 -1
- hikyuu/gui/data/MainWindow.py +120 -106
- hikyuu/include/hikyuu/trade_sys/system/crt/SYS_WalkForward.h +1 -7
- hikyuu/include/hikyuu/version.h +4 -4
- {hikyuu-2.2.2.dist-info → hikyuu-2.2.3.dist-info}/METADATA +1 -1
- {hikyuu-2.2.2.dist-info → hikyuu-2.2.3.dist-info}/RECORD +18 -18
- {hikyuu-2.2.2.dist-info → hikyuu-2.2.3.dist-info}/WHEEL +1 -1
- {hikyuu-2.2.2.dist-info → hikyuu-2.2.3.dist-info}/LICENSE +0 -0
- {hikyuu-2.2.2.dist-info → hikyuu-2.2.3.dist-info}/entry_points.txt +0 -0
- {hikyuu-2.2.2.dist-info → hikyuu-2.2.3.dist-info}/top_level.txt +0 -0
hikyuu/cpp/core310.pyd
CHANGED
|
Binary file
|
hikyuu/cpp/core311.pyd
CHANGED
|
Binary file
|
hikyuu/cpp/core312.pyd
CHANGED
|
Binary file
|
hikyuu/cpp/core313.pyd
CHANGED
|
Binary file
|
hikyuu/cpp/core38.pyd
CHANGED
|
Binary file
|
hikyuu/cpp/core39.pyd
CHANGED
|
Binary file
|
hikyuu/cpp/hikyuu.dll
CHANGED
|
Binary file
|
hikyuu/cpp/sqlite3.dll
CHANGED
|
Binary file
|
hikyuu/gui/data/MainWindow.py
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
# Form implementation generated from reading ui file 'MainWindow.ui'
|
|
4
4
|
#
|
|
5
|
-
# Created by: PyQt5 UI code generator 5.15.
|
|
5
|
+
# Created by: PyQt5 UI code generator 5.15.9
|
|
6
6
|
#
|
|
7
7
|
# WARNING: Any manual changes made to this file will be lost when pyuic5 is
|
|
8
8
|
# run again. Do not edit this file unless you know what you are doing.
|
|
@@ -14,7 +14,7 @@ from PyQt5 import QtCore, QtGui, QtWidgets
|
|
|
14
14
|
class Ui_MainWindow(object):
|
|
15
15
|
def setupUi(self, MainWindow):
|
|
16
16
|
MainWindow.setObjectName("MainWindow")
|
|
17
|
-
MainWindow.resize(1131,
|
|
17
|
+
MainWindow.resize(1131, 604)
|
|
18
18
|
self.centralwidget = QtWidgets.QWidget(MainWindow)
|
|
19
19
|
self.centralwidget.setObjectName("centralwidget")
|
|
20
20
|
self.horizontalLayout_12 = QtWidgets.QHBoxLayout(self.centralwidget)
|
|
@@ -48,6 +48,7 @@ class Ui_MainWindow(object):
|
|
|
48
48
|
self.pytdx_radioButton.setObjectName("pytdx_radioButton")
|
|
49
49
|
self.horizontalLayout.addWidget(self.pytdx_radioButton)
|
|
50
50
|
self.label_16 = QtWidgets.QLabel(self.groupBox_2)
|
|
51
|
+
self.label_16.setAlignment(QtCore.Qt.AlignRight|QtCore.Qt.AlignTrailing|QtCore.Qt.AlignVCenter)
|
|
51
52
|
self.label_16.setObjectName("label_16")
|
|
52
53
|
self.horizontalLayout.addWidget(self.label_16)
|
|
53
54
|
self.use_tdx_number_spinBox = QtWidgets.QSpinBox(self.groupBox_2)
|
|
@@ -59,9 +60,11 @@ class Ui_MainWindow(object):
|
|
|
59
60
|
self.label_17 = QtWidgets.QLabel(self.groupBox_2)
|
|
60
61
|
self.label_17.setObjectName("label_17")
|
|
61
62
|
self.horizontalLayout.addWidget(self.label_17)
|
|
63
|
+
spacerItem = QtWidgets.QSpacerItem(40, 20, QtWidgets.QSizePolicy.Expanding, QtWidgets.QSizePolicy.Minimum)
|
|
64
|
+
self.horizontalLayout.addItem(spacerItem)
|
|
62
65
|
self.verticalLayout_12.addLayout(self.horizontalLayout)
|
|
63
|
-
|
|
64
|
-
self.verticalLayout_12.addItem(
|
|
66
|
+
spacerItem1 = QtWidgets.QSpacerItem(20, 10, QtWidgets.QSizePolicy.Minimum, QtWidgets.QSizePolicy.Expanding)
|
|
67
|
+
self.verticalLayout_12.addItem(spacerItem1)
|
|
65
68
|
self.horizontalLayout_5 = QtWidgets.QHBoxLayout()
|
|
66
69
|
self.horizontalLayout_5.setContentsMargins(10, 0, -1, -1)
|
|
67
70
|
self.horizontalLayout_5.setObjectName("horizontalLayout_5")
|
|
@@ -72,12 +75,17 @@ class Ui_MainWindow(object):
|
|
|
72
75
|
self.gridLayout_2 = QtWidgets.QGridLayout()
|
|
73
76
|
self.gridLayout_2.setContentsMargins(10, -1, -1, 10)
|
|
74
77
|
self.gridLayout_2.setObjectName("gridLayout_2")
|
|
75
|
-
self.tdx_dir_lineEdit = QtWidgets.QLineEdit(self.groupBox_2)
|
|
76
|
-
self.tdx_dir_lineEdit.setObjectName("tdx_dir_lineEdit")
|
|
77
|
-
self.gridLayout_2.addWidget(self.tdx_dir_lineEdit, 0, 1, 1, 2)
|
|
78
78
|
self.label_2 = QtWidgets.QLabel(self.groupBox_2)
|
|
79
79
|
self.label_2.setObjectName("label_2")
|
|
80
80
|
self.gridLayout_2.addWidget(self.label_2, 0, 0, 1, 1)
|
|
81
|
+
self.tdx_dir_lineEdit = QtWidgets.QLineEdit(self.groupBox_2)
|
|
82
|
+
sizePolicy = QtWidgets.QSizePolicy(QtWidgets.QSizePolicy.Expanding, QtWidgets.QSizePolicy.Fixed)
|
|
83
|
+
sizePolicy.setHorizontalStretch(1)
|
|
84
|
+
sizePolicy.setVerticalStretch(0)
|
|
85
|
+
sizePolicy.setHeightForWidth(self.tdx_dir_lineEdit.sizePolicy().hasHeightForWidth())
|
|
86
|
+
self.tdx_dir_lineEdit.setSizePolicy(sizePolicy)
|
|
87
|
+
self.tdx_dir_lineEdit.setObjectName("tdx_dir_lineEdit")
|
|
88
|
+
self.gridLayout_2.addWidget(self.tdx_dir_lineEdit, 0, 1, 1, 2)
|
|
81
89
|
self.select_tdx_dir_pushButton = QtWidgets.QPushButton(self.groupBox_2)
|
|
82
90
|
sizePolicy = QtWidgets.QSizePolicy(QtWidgets.QSizePolicy.Preferred, QtWidgets.QSizePolicy.Fixed)
|
|
83
91
|
sizePolicy.setHorizontalStretch(0)
|
|
@@ -88,8 +96,8 @@ class Ui_MainWindow(object):
|
|
|
88
96
|
self.gridLayout_2.addWidget(self.select_tdx_dir_pushButton, 0, 3, 1, 1)
|
|
89
97
|
self.verticalLayout_12.addLayout(self.gridLayout_2)
|
|
90
98
|
self.verticalLayout_13.addWidget(self.groupBox_2)
|
|
91
|
-
|
|
92
|
-
self.verticalLayout_13.addItem(
|
|
99
|
+
spacerItem2 = QtWidgets.QSpacerItem(20, 20, QtWidgets.QSizePolicy.Minimum, QtWidgets.QSizePolicy.Minimum)
|
|
100
|
+
self.verticalLayout_13.addItem(spacerItem2)
|
|
93
101
|
self.groupBox_7 = QtWidgets.QGroupBox(self.tab_4)
|
|
94
102
|
self.groupBox_7.setObjectName("groupBox_7")
|
|
95
103
|
self.verticalLayout_11 = QtWidgets.QVBoxLayout(self.groupBox_7)
|
|
@@ -114,6 +122,8 @@ class Ui_MainWindow(object):
|
|
|
114
122
|
self.import_future_checkBox.setEnabled(False)
|
|
115
123
|
self.import_future_checkBox.setObjectName("import_future_checkBox")
|
|
116
124
|
self.horizontalLayout_3.addWidget(self.import_future_checkBox)
|
|
125
|
+
spacerItem3 = QtWidgets.QSpacerItem(40, 20, QtWidgets.QSizePolicy.Expanding, QtWidgets.QSizePolicy.Minimum)
|
|
126
|
+
self.horizontalLayout_3.addItem(spacerItem3)
|
|
117
127
|
self.verticalLayout_11.addLayout(self.horizontalLayout_3)
|
|
118
128
|
self.horizontalLayout_2 = QtWidgets.QHBoxLayout()
|
|
119
129
|
self.horizontalLayout_2.setContentsMargins(10, -1, -1, -1)
|
|
@@ -135,9 +145,11 @@ class Ui_MainWindow(object):
|
|
|
135
145
|
self.import_time_checkBox.setEnabled(True)
|
|
136
146
|
self.import_time_checkBox.setObjectName("import_time_checkBox")
|
|
137
147
|
self.horizontalLayout_2.addWidget(self.import_time_checkBox)
|
|
148
|
+
spacerItem4 = QtWidgets.QSpacerItem(40, 20, QtWidgets.QSizePolicy.Expanding, QtWidgets.QSizePolicy.Minimum)
|
|
149
|
+
self.horizontalLayout_2.addItem(spacerItem4)
|
|
138
150
|
self.verticalLayout_11.addLayout(self.horizontalLayout_2)
|
|
139
|
-
|
|
140
|
-
self.verticalLayout_11.addItem(
|
|
151
|
+
spacerItem5 = QtWidgets.QSpacerItem(20, 15, QtWidgets.QSizePolicy.Minimum, QtWidgets.QSizePolicy.Minimum)
|
|
152
|
+
self.verticalLayout_11.addItem(spacerItem5)
|
|
141
153
|
self.line = QtWidgets.QFrame(self.groupBox_7)
|
|
142
154
|
self.line.setFrameShape(QtWidgets.QFrame.HLine)
|
|
143
155
|
self.line.setFrameShadow(QtWidgets.QFrame.Sunken)
|
|
@@ -186,11 +198,11 @@ class Ui_MainWindow(object):
|
|
|
186
198
|
self.time_start_dateEdit.setCalendarPopup(True)
|
|
187
199
|
self.time_start_dateEdit.setObjectName("time_start_dateEdit")
|
|
188
200
|
self.gridLayout_4.addWidget(self.time_start_dateEdit, 4, 1, 1, 1)
|
|
189
|
-
|
|
190
|
-
self.gridLayout_4.addItem(
|
|
201
|
+
spacerItem6 = QtWidgets.QSpacerItem(40, 20, QtWidgets.QSizePolicy.Expanding, QtWidgets.QSizePolicy.Minimum)
|
|
202
|
+
self.gridLayout_4.addItem(spacerItem6, 1, 2, 1, 1)
|
|
191
203
|
self.verticalLayout_11.addLayout(self.gridLayout_4)
|
|
192
|
-
|
|
193
|
-
self.verticalLayout_11.addItem(
|
|
204
|
+
spacerItem7 = QtWidgets.QSpacerItem(20, 40, QtWidgets.QSizePolicy.Minimum, QtWidgets.QSizePolicy.Expanding)
|
|
205
|
+
self.verticalLayout_11.addItem(spacerItem7)
|
|
194
206
|
self.verticalLayout_13.addWidget(self.groupBox_7)
|
|
195
207
|
self.tabWidget.addTab(self.tab_4, "")
|
|
196
208
|
self.tab_3 = QtWidgets.QWidget()
|
|
@@ -216,12 +228,12 @@ class Ui_MainWindow(object):
|
|
|
216
228
|
self.enable_mysql_radioButton = QtWidgets.QRadioButton(self.groupBox_4)
|
|
217
229
|
self.enable_mysql_radioButton.setObjectName("enable_mysql_radioButton")
|
|
218
230
|
self.horizontalLayout_19.addWidget(self.enable_mysql_radioButton)
|
|
219
|
-
|
|
220
|
-
self.horizontalLayout_19.addItem(
|
|
231
|
+
spacerItem8 = QtWidgets.QSpacerItem(40, 20, QtWidgets.QSizePolicy.Expanding, QtWidgets.QSizePolicy.Minimum)
|
|
232
|
+
self.horizontalLayout_19.addItem(spacerItem8)
|
|
221
233
|
self.verticalLayout_14.addLayout(self.horizontalLayout_19)
|
|
222
234
|
self.verticalLayout_9.addWidget(self.groupBox_4)
|
|
223
|
-
|
|
224
|
-
self.verticalLayout_9.addItem(
|
|
235
|
+
spacerItem9 = QtWidgets.QSpacerItem(20, 10, QtWidgets.QSizePolicy.Minimum, QtWidgets.QSizePolicy.Fixed)
|
|
236
|
+
self.verticalLayout_9.addItem(spacerItem9)
|
|
225
237
|
self.groupBox_3 = QtWidgets.QGroupBox(self.tab_3)
|
|
226
238
|
sizePolicy = QtWidgets.QSizePolicy(QtWidgets.QSizePolicy.Preferred, QtWidgets.QSizePolicy.Fixed)
|
|
227
239
|
sizePolicy.setHorizontalStretch(0)
|
|
@@ -246,8 +258,8 @@ class Ui_MainWindow(object):
|
|
|
246
258
|
self.gridLayout_3.addWidget(self.label, 0, 0, 1, 1)
|
|
247
259
|
self.verticalLayout_10.addLayout(self.gridLayout_3)
|
|
248
260
|
self.verticalLayout_9.addWidget(self.groupBox_3)
|
|
249
|
-
|
|
250
|
-
self.verticalLayout_9.addItem(
|
|
261
|
+
spacerItem10 = QtWidgets.QSpacerItem(20, 10, QtWidgets.QSizePolicy.Minimum, QtWidgets.QSizePolicy.Fixed)
|
|
262
|
+
self.verticalLayout_9.addItem(spacerItem10)
|
|
251
263
|
self.groupBox = QtWidgets.QGroupBox(self.tab_3)
|
|
252
264
|
self.groupBox.setObjectName("groupBox")
|
|
253
265
|
self.verticalLayout_8 = QtWidgets.QVBoxLayout(self.groupBox)
|
|
@@ -291,11 +303,11 @@ class Ui_MainWindow(object):
|
|
|
291
303
|
self.label_13 = QtWidgets.QLabel(self.groupBox)
|
|
292
304
|
self.label_13.setObjectName("label_13")
|
|
293
305
|
self.gridLayout_5.addWidget(self.label_13, 5, 0, 1, 1)
|
|
294
|
-
|
|
295
|
-
self.gridLayout_5.addItem(
|
|
306
|
+
spacerItem11 = QtWidgets.QSpacerItem(20, 10, QtWidgets.QSizePolicy.Minimum, QtWidgets.QSizePolicy.Fixed)
|
|
307
|
+
self.gridLayout_5.addItem(spacerItem11, 1, 0, 1, 1)
|
|
296
308
|
self.verticalLayout_8.addLayout(self.gridLayout_5)
|
|
297
|
-
|
|
298
|
-
self.verticalLayout_8.addItem(
|
|
309
|
+
spacerItem12 = QtWidgets.QSpacerItem(20, 40, QtWidgets.QSizePolicy.Minimum, QtWidgets.QSizePolicy.Expanding)
|
|
310
|
+
self.verticalLayout_8.addItem(spacerItem12)
|
|
299
311
|
self.verticalLayout_9.addWidget(self.groupBox)
|
|
300
312
|
self.tabWidget.addTab(self.tab_3, "")
|
|
301
313
|
self.tab_2 = QtWidgets.QWidget()
|
|
@@ -316,12 +328,12 @@ class Ui_MainWindow(object):
|
|
|
316
328
|
self.sched_import_timeEdit = QtWidgets.QTimeEdit(self.tab_2)
|
|
317
329
|
self.sched_import_timeEdit.setObjectName("sched_import_timeEdit")
|
|
318
330
|
self.horizontalLayout_14.addWidget(self.sched_import_timeEdit)
|
|
319
|
-
|
|
320
|
-
self.horizontalLayout_14.addItem(
|
|
331
|
+
spacerItem13 = QtWidgets.QSpacerItem(40, 20, QtWidgets.QSizePolicy.Expanding, QtWidgets.QSizePolicy.Minimum)
|
|
332
|
+
self.horizontalLayout_14.addItem(spacerItem13)
|
|
321
333
|
self.horizontalLayout_11.addLayout(self.horizontalLayout_14)
|
|
322
334
|
self.verticalLayout_7.addLayout(self.horizontalLayout_11)
|
|
323
|
-
|
|
324
|
-
self.verticalLayout_7.addItem(
|
|
335
|
+
spacerItem14 = QtWidgets.QSpacerItem(20, 10, QtWidgets.QSizePolicy.Minimum, QtWidgets.QSizePolicy.Fixed)
|
|
336
|
+
self.verticalLayout_7.addItem(spacerItem14)
|
|
325
337
|
self.horizontalLayout_18 = QtWidgets.QHBoxLayout()
|
|
326
338
|
self.horizontalLayout_18.setContentsMargins(10, -1, 10, -1)
|
|
327
339
|
self.horizontalLayout_18.setObjectName("horizontalLayout_18")
|
|
@@ -331,23 +343,24 @@ class Ui_MainWindow(object):
|
|
|
331
343
|
self.import_status_label = QtWidgets.QLabel(self.tab_2)
|
|
332
344
|
self.import_status_label.setObjectName("import_status_label")
|
|
333
345
|
self.horizontalLayout_18.addWidget(self.import_status_label)
|
|
334
|
-
|
|
335
|
-
self.horizontalLayout_18.addItem(
|
|
346
|
+
spacerItem15 = QtWidgets.QSpacerItem(40, 20, QtWidgets.QSizePolicy.Expanding, QtWidgets.QSizePolicy.Minimum)
|
|
347
|
+
self.horizontalLayout_18.addItem(spacerItem15)
|
|
336
348
|
self.verticalLayout_7.addLayout(self.horizontalLayout_18)
|
|
337
|
-
|
|
338
|
-
self.verticalLayout_7.addItem(
|
|
349
|
+
spacerItem16 = QtWidgets.QSpacerItem(20, 20, QtWidgets.QSizePolicy.Minimum, QtWidgets.QSizePolicy.Minimum)
|
|
350
|
+
self.verticalLayout_7.addItem(spacerItem16)
|
|
339
351
|
self.groupBox_5 = QtWidgets.QGroupBox(self.tab_2)
|
|
340
352
|
self.groupBox_5.setObjectName("groupBox_5")
|
|
341
353
|
self.verticalLayout_5 = QtWidgets.QVBoxLayout(self.groupBox_5)
|
|
342
354
|
self.verticalLayout_5.setObjectName("verticalLayout_5")
|
|
343
355
|
self.gridLayout = QtWidgets.QGridLayout()
|
|
344
356
|
self.gridLayout.setObjectName("gridLayout")
|
|
345
|
-
self.
|
|
346
|
-
self.
|
|
347
|
-
self.
|
|
348
|
-
self.
|
|
349
|
-
self.
|
|
350
|
-
self.
|
|
357
|
+
self.hdf5_time_progressBar = QtWidgets.QProgressBar(self.groupBox_5)
|
|
358
|
+
self.hdf5_time_progressBar.setProperty("value", 0)
|
|
359
|
+
self.hdf5_time_progressBar.setObjectName("hdf5_time_progressBar")
|
|
360
|
+
self.gridLayout.addWidget(self.hdf5_time_progressBar, 4, 1, 1, 1)
|
|
361
|
+
self.hdf5_weight_label = QtWidgets.QLabel(self.groupBox_5)
|
|
362
|
+
self.hdf5_weight_label.setObjectName("hdf5_weight_label")
|
|
363
|
+
self.gridLayout.addWidget(self.hdf5_weight_label, 5, 1, 1, 1)
|
|
351
364
|
self.label_14 = QtWidgets.QLabel(self.groupBox_5)
|
|
352
365
|
self.label_14.setObjectName("label_14")
|
|
353
366
|
self.gridLayout.addWidget(self.label_14, 2, 0, 1, 1)
|
|
@@ -355,13 +368,23 @@ class Ui_MainWindow(object):
|
|
|
355
368
|
self.hdf5_trans_progressBar.setProperty("value", 0)
|
|
356
369
|
self.hdf5_trans_progressBar.setObjectName("hdf5_trans_progressBar")
|
|
357
370
|
self.gridLayout.addWidget(self.hdf5_trans_progressBar, 3, 1, 1, 1)
|
|
371
|
+
self.label_4 = QtWidgets.QLabel(self.groupBox_5)
|
|
372
|
+
self.label_4.setObjectName("label_4")
|
|
373
|
+
self.gridLayout.addWidget(self.label_4, 3, 0, 1, 1)
|
|
374
|
+
self.label_8 = QtWidgets.QLabel(self.groupBox_5)
|
|
375
|
+
self.label_8.setObjectName("label_8")
|
|
376
|
+
self.gridLayout.addWidget(self.label_8, 0, 0, 1, 1)
|
|
377
|
+
self.label_5 = QtWidgets.QLabel(self.groupBox_5)
|
|
378
|
+
self.label_5.setObjectName("label_5")
|
|
379
|
+
self.gridLayout.addWidget(self.label_5, 4, 0, 1, 1)
|
|
380
|
+
self.hdf5_5min_progressBar = QtWidgets.QProgressBar(self.groupBox_5)
|
|
381
|
+
self.hdf5_5min_progressBar.setProperty("value", 0)
|
|
382
|
+
self.hdf5_5min_progressBar.setObjectName("hdf5_5min_progressBar")
|
|
383
|
+
self.gridLayout.addWidget(self.hdf5_5min_progressBar, 1, 1, 1, 1)
|
|
358
384
|
self.hdf5_day_progressBar = QtWidgets.QProgressBar(self.groupBox_5)
|
|
359
385
|
self.hdf5_day_progressBar.setProperty("value", 0)
|
|
360
386
|
self.hdf5_day_progressBar.setObjectName("hdf5_day_progressBar")
|
|
361
387
|
self.gridLayout.addWidget(self.hdf5_day_progressBar, 0, 1, 1, 1)
|
|
362
|
-
self.label_5 = QtWidgets.QLabel(self.groupBox_5)
|
|
363
|
-
self.label_5.setObjectName("label_5")
|
|
364
|
-
self.gridLayout.addWidget(self.label_5, 4, 0, 1, 1)
|
|
365
388
|
self.label_12 = QtWidgets.QLabel(self.groupBox_5)
|
|
366
389
|
self.label_12.setObjectName("label_12")
|
|
367
390
|
self.gridLayout.addWidget(self.label_12, 1, 0, 1, 1)
|
|
@@ -369,23 +392,14 @@ class Ui_MainWindow(object):
|
|
|
369
392
|
self.hdf5_min_progressBar.setProperty("value", 0)
|
|
370
393
|
self.hdf5_min_progressBar.setObjectName("hdf5_min_progressBar")
|
|
371
394
|
self.gridLayout.addWidget(self.hdf5_min_progressBar, 2, 1, 1, 1)
|
|
372
|
-
self.hdf5_time_progressBar = QtWidgets.QProgressBar(self.groupBox_5)
|
|
373
|
-
self.hdf5_time_progressBar.setProperty("value", 0)
|
|
374
|
-
self.hdf5_time_progressBar.setObjectName("hdf5_time_progressBar")
|
|
375
|
-
self.gridLayout.addWidget(self.hdf5_time_progressBar, 4, 1, 1, 1)
|
|
376
|
-
self.hdf5_5min_progressBar = QtWidgets.QProgressBar(self.groupBox_5)
|
|
377
|
-
self.hdf5_5min_progressBar.setProperty("value", 0)
|
|
378
|
-
self.hdf5_5min_progressBar.setObjectName("hdf5_5min_progressBar")
|
|
379
|
-
self.gridLayout.addWidget(self.hdf5_5min_progressBar, 1, 1, 1, 1)
|
|
380
395
|
self.label_9 = QtWidgets.QLabel(self.groupBox_5)
|
|
381
396
|
self.label_9.setObjectName("label_9")
|
|
382
397
|
self.gridLayout.addWidget(self.label_9, 5, 0, 1, 1)
|
|
383
|
-
|
|
384
|
-
self.
|
|
385
|
-
self.gridLayout.addWidget(self.hdf5_weight_label, 5, 1, 1, 1)
|
|
398
|
+
spacerItem17 = QtWidgets.QSpacerItem(5, 20, QtWidgets.QSizePolicy.Minimum, QtWidgets.QSizePolicy.Minimum)
|
|
399
|
+
self.gridLayout.addItem(spacerItem17, 0, 2, 1, 1)
|
|
386
400
|
self.verticalLayout_5.addLayout(self.gridLayout)
|
|
387
|
-
|
|
388
|
-
self.verticalLayout_5.addItem(
|
|
401
|
+
spacerItem18 = QtWidgets.QSpacerItem(20, 10, QtWidgets.QSizePolicy.Minimum, QtWidgets.QSizePolicy.Minimum)
|
|
402
|
+
self.verticalLayout_5.addItem(spacerItem18)
|
|
389
403
|
self.import_detail_textEdit = QtWidgets.QTextEdit(self.groupBox_5)
|
|
390
404
|
self.import_detail_textEdit.setFrameShape(QtWidgets.QFrame.NoFrame)
|
|
391
405
|
self.import_detail_textEdit.setReadOnly(True)
|
|
@@ -411,8 +425,8 @@ class Ui_MainWindow(object):
|
|
|
411
425
|
self.label_36.setObjectName("label_36")
|
|
412
426
|
self.verticalLayout.addWidget(self.label_36)
|
|
413
427
|
self.verticalLayout_4.addLayout(self.verticalLayout)
|
|
414
|
-
|
|
415
|
-
self.verticalLayout_4.addItem(
|
|
428
|
+
spacerItem19 = QtWidgets.QSpacerItem(20, 20, QtWidgets.QSizePolicy.Minimum, QtWidgets.QSizePolicy.Fixed)
|
|
429
|
+
self.verticalLayout_4.addItem(spacerItem19)
|
|
416
430
|
self.gridLayout_6 = QtWidgets.QGridLayout()
|
|
417
431
|
self.gridLayout_6.setContentsMargins(20, -1, -1, -1)
|
|
418
432
|
self.gridLayout_6.setObjectName("gridLayout_6")
|
|
@@ -506,8 +520,8 @@ class Ui_MainWindow(object):
|
|
|
506
520
|
self.preload_week_checkBox = QtWidgets.QCheckBox(self.groupBox_6)
|
|
507
521
|
self.preload_week_checkBox.setObjectName("preload_week_checkBox")
|
|
508
522
|
self.gridLayout_6.addWidget(self.preload_week_checkBox, 1, 0, 1, 1)
|
|
509
|
-
|
|
510
|
-
self.gridLayout_6.addItem(
|
|
523
|
+
spacerItem20 = QtWidgets.QSpacerItem(20, 20, QtWidgets.QSizePolicy.Fixed, QtWidgets.QSizePolicy.Minimum)
|
|
524
|
+
self.gridLayout_6.addItem(spacerItem20, 4, 3, 1, 1)
|
|
511
525
|
self.preload_quarter_checkBox = QtWidgets.QCheckBox(self.groupBox_6)
|
|
512
526
|
self.preload_quarter_checkBox.setObjectName("preload_quarter_checkBox")
|
|
513
527
|
self.gridLayout_6.addWidget(self.preload_quarter_checkBox, 3, 0, 1, 1)
|
|
@@ -542,16 +556,16 @@ class Ui_MainWindow(object):
|
|
|
542
556
|
self.preload_year_spinBox.setObjectName("preload_year_spinBox")
|
|
543
557
|
self.gridLayout_6.addWidget(self.preload_year_spinBox, 5, 2, 1, 1)
|
|
544
558
|
self.verticalLayout_4.addLayout(self.gridLayout_6)
|
|
545
|
-
|
|
546
|
-
self.verticalLayout_4.addItem(
|
|
559
|
+
spacerItem21 = QtWidgets.QSpacerItem(20, 40, QtWidgets.QSizePolicy.Minimum, QtWidgets.QSizePolicy.Expanding)
|
|
560
|
+
self.verticalLayout_4.addItem(spacerItem21)
|
|
547
561
|
self.verticalLayout_3.addWidget(self.groupBox_6)
|
|
548
562
|
self.tabWidget.addTab(self.tab_6, "")
|
|
549
563
|
self.tab = QtWidgets.QWidget()
|
|
550
564
|
self.tab.setObjectName("tab")
|
|
551
565
|
self.verticalLayout_2 = QtWidgets.QVBoxLayout(self.tab)
|
|
552
566
|
self.verticalLayout_2.setObjectName("verticalLayout_2")
|
|
553
|
-
|
|
554
|
-
self.verticalLayout_2.addItem(
|
|
567
|
+
spacerItem22 = QtWidgets.QSpacerItem(20, 10, QtWidgets.QSizePolicy.Minimum, QtWidgets.QSizePolicy.Minimum)
|
|
568
|
+
self.verticalLayout_2.addItem(spacerItem22)
|
|
555
569
|
self.horizontalLayout_15 = QtWidgets.QHBoxLayout()
|
|
556
570
|
self.horizontalLayout_15.setContentsMargins(20, -1, -1, -1)
|
|
557
571
|
self.horizontalLayout_15.setObjectName("horizontalLayout_15")
|
|
@@ -561,11 +575,11 @@ class Ui_MainWindow(object):
|
|
|
561
575
|
self.collect_status_label = QtWidgets.QLabel(self.tab)
|
|
562
576
|
self.collect_status_label.setObjectName("collect_status_label")
|
|
563
577
|
self.horizontalLayout_15.addWidget(self.collect_status_label)
|
|
564
|
-
|
|
565
|
-
self.horizontalLayout_15.addItem(
|
|
578
|
+
spacerItem23 = QtWidgets.QSpacerItem(40, 20, QtWidgets.QSizePolicy.Expanding, QtWidgets.QSizePolicy.Minimum)
|
|
579
|
+
self.horizontalLayout_15.addItem(spacerItem23)
|
|
566
580
|
self.verticalLayout_2.addLayout(self.horizontalLayout_15)
|
|
567
|
-
|
|
568
|
-
self.verticalLayout_2.addItem(
|
|
581
|
+
spacerItem24 = QtWidgets.QSpacerItem(20, 10, QtWidgets.QSizePolicy.Minimum, QtWidgets.QSizePolicy.Fixed)
|
|
582
|
+
self.verticalLayout_2.addItem(spacerItem24)
|
|
569
583
|
self.horizontalLayout_13 = QtWidgets.QHBoxLayout()
|
|
570
584
|
self.horizontalLayout_13.setContentsMargins(20, -1, -1, -1)
|
|
571
585
|
self.horizontalLayout_13.setObjectName("horizontalLayout_13")
|
|
@@ -577,11 +591,11 @@ class Ui_MainWindow(object):
|
|
|
577
591
|
self.collect_source_comboBox.addItem("")
|
|
578
592
|
self.collect_source_comboBox.addItem("")
|
|
579
593
|
self.horizontalLayout_13.addWidget(self.collect_source_comboBox)
|
|
580
|
-
|
|
581
|
-
self.horizontalLayout_13.addItem(
|
|
594
|
+
spacerItem25 = QtWidgets.QSpacerItem(40, 20, QtWidgets.QSizePolicy.Expanding, QtWidgets.QSizePolicy.Minimum)
|
|
595
|
+
self.horizontalLayout_13.addItem(spacerItem25)
|
|
582
596
|
self.verticalLayout_2.addLayout(self.horizontalLayout_13)
|
|
583
|
-
|
|
584
|
-
self.verticalLayout_2.addItem(
|
|
597
|
+
spacerItem26 = QtWidgets.QSpacerItem(20, 10, QtWidgets.QSizePolicy.Minimum, QtWidgets.QSizePolicy.Fixed)
|
|
598
|
+
self.verticalLayout_2.addItem(spacerItem26)
|
|
585
599
|
self.horizontalLayout_10 = QtWidgets.QHBoxLayout()
|
|
586
600
|
self.horizontalLayout_10.setContentsMargins(20, -1, -1, -1)
|
|
587
601
|
self.horizontalLayout_10.setObjectName("horizontalLayout_10")
|
|
@@ -592,11 +606,11 @@ class Ui_MainWindow(object):
|
|
|
592
606
|
self.collect_sample_spinBox.setMaximum(86400)
|
|
593
607
|
self.collect_sample_spinBox.setObjectName("collect_sample_spinBox")
|
|
594
608
|
self.horizontalLayout_10.addWidget(self.collect_sample_spinBox)
|
|
595
|
-
|
|
596
|
-
self.horizontalLayout_10.addItem(
|
|
609
|
+
spacerItem27 = QtWidgets.QSpacerItem(40, 20, QtWidgets.QSizePolicy.Expanding, QtWidgets.QSizePolicy.Minimum)
|
|
610
|
+
self.horizontalLayout_10.addItem(spacerItem27)
|
|
597
611
|
self.verticalLayout_2.addLayout(self.horizontalLayout_10)
|
|
598
|
-
|
|
599
|
-
self.verticalLayout_2.addItem(
|
|
612
|
+
spacerItem28 = QtWidgets.QSpacerItem(20, 10, QtWidgets.QSizePolicy.Minimum, QtWidgets.QSizePolicy.Minimum)
|
|
613
|
+
self.verticalLayout_2.addItem(spacerItem28)
|
|
600
614
|
self.horizontalLayout_8 = QtWidgets.QHBoxLayout()
|
|
601
615
|
self.horizontalLayout_8.setContentsMargins(20, -1, -1, -1)
|
|
602
616
|
self.horizontalLayout_8.setObjectName("horizontalLayout_8")
|
|
@@ -615,8 +629,8 @@ class Ui_MainWindow(object):
|
|
|
615
629
|
self.collect_phase1_last_timeEdit = QtWidgets.QTimeEdit(self.tab)
|
|
616
630
|
self.collect_phase1_last_timeEdit.setObjectName("collect_phase1_last_timeEdit")
|
|
617
631
|
self.horizontalLayout_6.addWidget(self.collect_phase1_last_timeEdit)
|
|
618
|
-
|
|
619
|
-
self.horizontalLayout_6.addItem(
|
|
632
|
+
spacerItem29 = QtWidgets.QSpacerItem(40, 20, QtWidgets.QSizePolicy.Expanding, QtWidgets.QSizePolicy.Minimum)
|
|
633
|
+
self.horizontalLayout_6.addItem(spacerItem29)
|
|
620
634
|
self.horizontalLayout_8.addLayout(self.horizontalLayout_6)
|
|
621
635
|
self.verticalLayout_2.addLayout(self.horizontalLayout_8)
|
|
622
636
|
self.horizontalLayout_9 = QtWidgets.QHBoxLayout()
|
|
@@ -637,12 +651,12 @@ class Ui_MainWindow(object):
|
|
|
637
651
|
self.collect_phase2_last_timeEdit = QtWidgets.QTimeEdit(self.tab)
|
|
638
652
|
self.collect_phase2_last_timeEdit.setObjectName("collect_phase2_last_timeEdit")
|
|
639
653
|
self.horizontalLayout_7.addWidget(self.collect_phase2_last_timeEdit)
|
|
640
|
-
|
|
641
|
-
self.horizontalLayout_7.addItem(
|
|
654
|
+
spacerItem30 = QtWidgets.QSpacerItem(40, 20, QtWidgets.QSizePolicy.Expanding, QtWidgets.QSizePolicy.Minimum)
|
|
655
|
+
self.horizontalLayout_7.addItem(spacerItem30)
|
|
642
656
|
self.horizontalLayout_9.addLayout(self.horizontalLayout_7)
|
|
643
657
|
self.verticalLayout_2.addLayout(self.horizontalLayout_9)
|
|
644
|
-
|
|
645
|
-
self.verticalLayout_2.addItem(
|
|
658
|
+
spacerItem31 = QtWidgets.QSpacerItem(20, 10, QtWidgets.QSizePolicy.Minimum, QtWidgets.QSizePolicy.Minimum)
|
|
659
|
+
self.verticalLayout_2.addItem(spacerItem31)
|
|
646
660
|
self.horizontalLayout_16 = QtWidgets.QHBoxLayout()
|
|
647
661
|
self.horizontalLayout_16.setContentsMargins(20, 0, -1, -1)
|
|
648
662
|
self.horizontalLayout_16.setObjectName("horizontalLayout_16")
|
|
@@ -655,8 +669,8 @@ class Ui_MainWindow(object):
|
|
|
655
669
|
self.collect_use_zhima_checkBox.setObjectName("collect_use_zhima_checkBox")
|
|
656
670
|
self.horizontalLayout_16.addWidget(self.collect_use_zhima_checkBox)
|
|
657
671
|
self.verticalLayout_2.addLayout(self.horizontalLayout_16)
|
|
658
|
-
|
|
659
|
-
self.verticalLayout_2.addItem(
|
|
672
|
+
spacerItem32 = QtWidgets.QSpacerItem(20, 10, QtWidgets.QSizePolicy.Minimum, QtWidgets.QSizePolicy.Minimum)
|
|
673
|
+
self.verticalLayout_2.addItem(spacerItem32)
|
|
660
674
|
self.horizontalLayout_17 = QtWidgets.QHBoxLayout()
|
|
661
675
|
self.horizontalLayout_17.setContentsMargins(20, 0, -1, -1)
|
|
662
676
|
self.horizontalLayout_17.setObjectName("horizontalLayout_17")
|
|
@@ -729,29 +743,29 @@ class Ui_MainWindow(object):
|
|
|
729
743
|
self.start_import_pushButton.setText(_translate("MainWindow", "手工执行导入"))
|
|
730
744
|
self.import_status_label.setText(_translate("MainWindow", "请勿盘中导入!"))
|
|
731
745
|
self.groupBox_5.setTitle(_translate("MainWindow", "导入进展"))
|
|
732
|
-
self.
|
|
733
|
-
self.label_4.setText(_translate("MainWindow", "导入分笔数据:"))
|
|
746
|
+
self.hdf5_weight_label.setText(_translate("MainWindow", "TextLabel"))
|
|
734
747
|
self.label_14.setText(_translate("MainWindow", "导入1分钟线:"))
|
|
748
|
+
self.label_4.setText(_translate("MainWindow", "导入分笔数据:"))
|
|
749
|
+
self.label_8.setText(_translate("MainWindow", "导入日线:"))
|
|
735
750
|
self.label_5.setText(_translate("MainWindow", "导入分时数据:"))
|
|
736
751
|
self.label_12.setText(_translate("MainWindow", "导入5分钟线:"))
|
|
737
752
|
self.label_9.setText(_translate("MainWindow", "导入权息数据:"))
|
|
738
|
-
self.hdf5_weight_label.setText(_translate("MainWindow", "TextLabel"))
|
|
739
753
|
self.import_detail_textEdit.setHtml(_translate("MainWindow", "<!DOCTYPE HTML PUBLIC \"-//W3C//DTD HTML 4.0//EN\" \"http://www.w3.org/TR/REC-html40/strict.dtd\">\n"
|
|
740
754
|
"<html><head><meta name=\"qrichtext\" content=\"1\" /><style type=\"text/css\">\n"
|
|
741
755
|
"p, li { white-space: pre-wrap; }\n"
|
|
742
|
-
"</style></head><body style=\" font-family:\'
|
|
743
|
-
"<p style=\" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;\">导入上证日线记录:</p>\n"
|
|
744
|
-
"<p style=\" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;\">导入深证日线记录:</p>\n"
|
|
745
|
-
"<p style=\" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;\">导入上证5分钟线记录:</p>\n"
|
|
746
|
-
"<p style=\" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;\">导入深证5分钟线记录:</p>\n"
|
|
747
|
-
"<p style=\" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;\">导入上证1分钟线记录:</p>\n"
|
|
748
|
-
"<p style=\" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;\">导入深证1分钟线记录:</p>\n"
|
|
749
|
-
"<p style=\" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;\">导入上证分笔记录:</p>\n"
|
|
750
|
-
"<p style=\" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;\">导入深证分笔记录:</p>\n"
|
|
751
|
-
"<p style=\" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;\">导入上证分时数据:</p>\n"
|
|
752
|
-
"<p style=\" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;\">导入深证分时数据:</p>\n"
|
|
753
|
-
"<p style=\" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;\">导入权息数据数:</p>\n"
|
|
754
|
-
"<p style=\" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;\">导入完毕!</p></body></html>"))
|
|
756
|
+
"</style></head><body style=\" font-family:\'Sans Serif\'; font-size:9pt; font-weight:400; font-style:normal;\">\n"
|
|
757
|
+
"<p style=\" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;\"><span style=\" font-family:\'SimSun\';\">导入上证日线记录:</span></p>\n"
|
|
758
|
+
"<p style=\" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;\"><span style=\" font-family:\'SimSun\';\">导入深证日线记录:</span></p>\n"
|
|
759
|
+
"<p style=\" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;\"><span style=\" font-family:\'SimSun\';\">导入上证5分钟线记录:</span></p>\n"
|
|
760
|
+
"<p style=\" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;\"><span style=\" font-family:\'SimSun\';\">导入深证5分钟线记录:</span></p>\n"
|
|
761
|
+
"<p style=\" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;\"><span style=\" font-family:\'SimSun\';\">导入上证1分钟线记录:</span></p>\n"
|
|
762
|
+
"<p style=\" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;\"><span style=\" font-family:\'SimSun\';\">导入深证1分钟线记录:</span></p>\n"
|
|
763
|
+
"<p style=\" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;\"><span style=\" font-family:\'SimSun\';\">导入上证分笔记录:</span></p>\n"
|
|
764
|
+
"<p style=\" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;\"><span style=\" font-family:\'SimSun\';\">导入深证分笔记录:</span></p>\n"
|
|
765
|
+
"<p style=\" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;\"><span style=\" font-family:\'SimSun\';\">导入上证分时数据:</span></p>\n"
|
|
766
|
+
"<p style=\" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;\"><span style=\" font-family:\'SimSun\';\">导入深证分时数据:</span></p>\n"
|
|
767
|
+
"<p style=\" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;\"><span style=\" font-family:\'SimSun\';\">导入权息数据数:</span></p>\n"
|
|
768
|
+
"<p style=\" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;\"><span style=\" font-family:\'SimSun\';\">导入完毕!</span></p></body></html>"))
|
|
755
769
|
self.tabWidget.setTabText(self.tabWidget.indexOf(self.tab_2), _translate("MainWindow", "执行导入"))
|
|
756
770
|
self.groupBox_6.setTitle(_translate("MainWindow", "预加载设置"))
|
|
757
771
|
self.label_35.setText(_translate("MainWindow", "此处为 Hikyuu 运行时的数据预加载设置,请根据机器内存大小选择"))
|
|
@@ -796,12 +810,12 @@ class Ui_MainWindow(object):
|
|
|
796
810
|
self.textBrowser.setHtml(_translate("MainWindow", "<!DOCTYPE HTML PUBLIC \"-//W3C//DTD HTML 4.0//EN\" \"http://www.w3.org/TR/REC-html40/strict.dtd\">\n"
|
|
797
811
|
"<html><head><meta name=\"qrichtext\" content=\"1\" /><style type=\"text/css\">\n"
|
|
798
812
|
"p, li { white-space: pre-wrap; }\n"
|
|
799
|
-
"</style></head><body style=\" font-family:\'
|
|
800
|
-
"<p style=\" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;\">注:</p>\n"
|
|
801
|
-
"<p style=\" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;\"><span style=\" font-size:10pt; font-weight:600; color:#ff0000;\">1、行情采集服务仅对预加载数据有效</span>,在行情采集服务运行期间,hikyuu.interactive运行时将自动连接采集服务获取行情数据,并更新预加载的内容数据。</p>\n"
|
|
802
|
-
"<p style=\"-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;\"><br /></p>\n"
|
|
803
|
-
"<p style=\" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;\">2
|
|
804
|
-
"<p style=\"-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;\"><br /></p>\n"
|
|
805
|
-
"<p style=\" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;\"><span style=\" font-weight:696; color:#0000ff;\">3、此处采集为网络采集,更推荐直接运行安装目录下gui子目录下的 start_qmt.py ,使用miniqmt 实时服务。该程序独立运行,不用关闭,和这里的采集效果一样。注意:miniqmt需要QMT交易端配合,且在同一机器上执行。</span></p></body></html>"))
|
|
813
|
+
"</style></head><body style=\" font-family:\'Sans Serif\'; font-size:9pt; font-weight:400; font-style:normal;\">\n"
|
|
814
|
+
"<p style=\" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;\"><span style=\" font-family:\'SimSun\';\">注:</span></p>\n"
|
|
815
|
+
"<p style=\" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;\"><span style=\" font-family:\'SimSun\'; font-size:10pt; font-weight:600; color:#ff0000;\">1、行情采集服务仅对预加载数据有效</span><span style=\" font-family:\'SimSun\';\">,在行情采集服务运行期间,hikyuu.interactive运行时将自动连接采集服务获取行情数据,并更新预加载的内容数据。</span></p>\n"
|
|
816
|
+
"<p style=\"-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:\'SimSun\';\"><br /></p>\n"
|
|
817
|
+
"<p style=\" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;\"><span style=\" font-family:\'SimSun\';\">2、如使用芝麻代理(</span><a href=\"http://h.zhimaruanjian.com/\"><span style=\" font-family:\'SimSun\'; text-decoration: underline; color:#0000ff;\">http://h.zhimaruanjian.com/</span></a><span style=\" font-family:\'SimSun\';\">),请自行申请(需付费),并确保ip为其白名单。</span></p>\n"
|
|
818
|
+
"<p style=\"-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:\'SimSun\';\"><br /></p>\n"
|
|
819
|
+
"<p style=\" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;\"><span style=\" font-family:\'SimSun\'; font-weight:696; color:#0000ff;\">3、此处采集为网络采集,更推荐直接运行安装目录下gui子目录下的 start_qmt.py ,使用miniqmt 实时服务。该程序独立运行,不用关闭,和这里的采集效果一样。注意:miniqmt需要QMT交易端配合,且在同一机器上执行。</span></p></body></html>"))
|
|
806
820
|
self.tabWidget.setTabText(self.tabWidget.indexOf(self.tab), _translate("MainWindow", "行情采集服务"))
|
|
807
821
|
self.label_41.setText(_translate("MainWindow", "执行日志"))
|
|
@@ -12,16 +12,10 @@
|
|
|
12
12
|
|
|
13
13
|
namespace hku {
|
|
14
14
|
|
|
15
|
-
// SystemPtr HKU_API SYS_WalkForward(const SystemList& candidate_sys_list,
|
|
16
|
-
// const TradeManagerPtr& tm = TradeManagerPtr(),
|
|
17
|
-
// size_t train_len = 100, size_t test_len = 20,
|
|
18
|
-
// const string& key = "帐户平均年收益率%",
|
|
19
|
-
// const TradeManagerPtr& train_tm = TradeManagerPtr());
|
|
20
|
-
|
|
21
15
|
SystemPtr HKU_API SYS_WalkForward(const SystemList& candidate_sys_list,
|
|
22
16
|
const TradeManagerPtr& tm = TradeManagerPtr(),
|
|
23
17
|
size_t train_len = 100, size_t test_len = 20,
|
|
24
|
-
const SelectorPtr& se =
|
|
18
|
+
const SelectorPtr& se = SE_PerformanceOptimal(),
|
|
25
19
|
const TradeManagerPtr& train_tm = TradeManagerPtr());
|
|
26
20
|
|
|
27
21
|
} // namespace hku
|
hikyuu/include/hikyuu/version.h
CHANGED
|
@@ -12,13 +12,13 @@
|
|
|
12
12
|
#define HKU_VERSION_H
|
|
13
13
|
|
|
14
14
|
// clang-format off
|
|
15
|
-
#define HKU_VERSION "2.2.
|
|
15
|
+
#define HKU_VERSION "2.2.3"
|
|
16
16
|
#define HKU_VERSION_MAJOR 2
|
|
17
17
|
#define HKU_VERSION_MINOR 2
|
|
18
|
-
#define HKU_VERSION_ALTER
|
|
19
|
-
#define HKU_VERSION_BUILD
|
|
18
|
+
#define HKU_VERSION_ALTER 3
|
|
19
|
+
#define HKU_VERSION_BUILD 202411031222
|
|
20
20
|
#define HKU_VERSION_MODE "RELEASE"
|
|
21
|
-
#define HKU_VERSION_GIT "2.2.
|
|
21
|
+
#define HKU_VERSION_GIT "2.2.3 master.a225e17f (RELEASE)"
|
|
22
22
|
// clang-format on
|
|
23
23
|
|
|
24
24
|
#endif /* HKU_VERSION_H */
|
|
@@ -23,13 +23,13 @@ hikyuu/cpp/boost_date_time-mt.dll,sha256=eY3-0dhXscVgLV9K0Pm1npVG9PgesrGcG19L7Yw
|
|
|
23
23
|
hikyuu/cpp/boost_serialization-mt.dll,sha256=5XC9B5aNGU-6-0v8U_LV9MAWf7XM7bcgLF0C8Tr5PF4,218112
|
|
24
24
|
hikyuu/cpp/boost_wserialization-mt.dll,sha256=R0_tm7fBsU7-iedUi2URx6k-prlttLnXVk3bJjFlMfA,156672
|
|
25
25
|
hikyuu/cpp/concrt140.dll,sha256=eCkQsj-KZexHf4hve8vcZxAzVK8mO9MMDcyrv7xQa6E,317320
|
|
26
|
-
hikyuu/cpp/core310.pyd,sha256=
|
|
27
|
-
hikyuu/cpp/core311.pyd,sha256=
|
|
28
|
-
hikyuu/cpp/core312.pyd,sha256=
|
|
29
|
-
hikyuu/cpp/core313.pyd,sha256=
|
|
30
|
-
hikyuu/cpp/core38.pyd,sha256=
|
|
31
|
-
hikyuu/cpp/core39.pyd,sha256=
|
|
32
|
-
hikyuu/cpp/hikyuu.dll,sha256=
|
|
26
|
+
hikyuu/cpp/core310.pyd,sha256=MW4ZB3Mv7x48UV4Nj4gOkVdMqfkfjDc6cGNyKH9A5Qg,3487232
|
|
27
|
+
hikyuu/cpp/core311.pyd,sha256=8BV5Zm7DwwsCjz9sEdgvAZPnCXxy5tzNyMPZcPumZVw,3490816
|
|
28
|
+
hikyuu/cpp/core312.pyd,sha256=8QUOCxPfX5j_jh6v8L22D-elOyO1hgJIRL_MUUB0Ssw,3563008
|
|
29
|
+
hikyuu/cpp/core313.pyd,sha256=RYTR43c__hgTV9OaLczSG_Hj9PXjipmwplvXLB-nk9g,3563008
|
|
30
|
+
hikyuu/cpp/core38.pyd,sha256=Fy6fpBA6Ni30WZyL-KW-vFQKU7CzOpA3ATcbfW46VoE,3488256
|
|
31
|
+
hikyuu/cpp/core39.pyd,sha256=NrXbFSHWEQypk5QUMJkqWJcMMeEDlatx7J4DRX15aAQ,3004928
|
|
32
|
+
hikyuu/cpp/hikyuu.dll,sha256=q10bMVeuPRCffjuTSLKIYWZwFGs0TI8MpHJ2oVxeYkY,7373824
|
|
33
33
|
hikyuu/cpp/hku_hdf5.dll,sha256=WhPTtLT9eAaOcLthBLArv_ps-A5xiTXrYAwXHsbKeDI,3434496
|
|
34
34
|
hikyuu/cpp/hku_hdf5_cpp.dll,sha256=KL7R_MmydRnNi6X1vrkCOPJ6x027J8IEb6vCbTrV60E,301056
|
|
35
35
|
hikyuu/cpp/hku_hdf5_hl.dll,sha256=bPgCUWb9eppYXjqL846IiLeWiB9QvRF_syGHTlqpImI,119808
|
|
@@ -42,7 +42,7 @@ hikyuu/cpp/msvcp140_1.dll,sha256=fVIjj_Wnr29KXiKbGnRlog_BfitAHaXakhWjBzvyOMI,255
|
|
|
42
42
|
hikyuu/cpp/msvcp140_2.dll,sha256=7iKzQDJoy6w_KA8aSaf6KFwNAdpgH2kU1v5qrEMGjvo,187312
|
|
43
43
|
hikyuu/cpp/msvcp140_atomic_wait.dll,sha256=qUuIolfmRRSn4Zu-xSI5Hyg4rJMH1ZetstPq-I-FTeM,57224
|
|
44
44
|
hikyuu/cpp/msvcp140_codecvt_ids.dll,sha256=FPlDVH0f2xJQWe6537FGWXr5bKrD6pkCV4WV6bDHH7Q,21392
|
|
45
|
-
hikyuu/cpp/sqlite3.dll,sha256=
|
|
45
|
+
hikyuu/cpp/sqlite3.dll,sha256=Iq2f3q2JynIh_Zo-_beStzaPorrLXtqNOMD9abPnV98,1088512
|
|
46
46
|
hikyuu/cpp/vcruntime140.dll,sha256=1mw7Rwkc6z-NPMFlpD0oWukZIRoMD8t0SR7ldNjUZPg,98736
|
|
47
47
|
hikyuu/cpp/vcruntime140_1.dll,sha256=F1gIWmFSe0J8Q4DwyXbSmovuiJ8qxIDDVqPxZkM79w4,38304
|
|
48
48
|
hikyuu/data/__init__.py,sha256=ugyuFliEqtAwQmH4sTlc16YXKYbFWDmfyk87fErB8-8,21
|
|
@@ -53,7 +53,7 @@ hikyuu/data/common_pytdx.py,sha256=bXUzuv0xXcwnC5gcYfTrt7K-fW7KWOJSwfDPND_A4Jk,3
|
|
|
53
53
|
hikyuu/data/common_sqlite3.py,sha256=o2N9oU1wbhMFzGWLXSrdzV2sWTAQBnroER2hMPYyZRk,4839
|
|
54
54
|
hikyuu/data/em_block_to_mysql.py,sha256=3NhIUSlPCZM8mmo4oRrdILEdgKkExbIVEMnQwynTiZQ,3726
|
|
55
55
|
hikyuu/data/em_block_to_sqlite.py,sha256=ZY5V-Rgk7LUdwZVaTqvHZAUX8v8aOymeoeaERhhgSRA,3585
|
|
56
|
-
hikyuu/data/hku_config_template.py,sha256=
|
|
56
|
+
hikyuu/data/hku_config_template.py,sha256=yzCBVlxWBUx3fASw5VAsm387YJ9Atdl6holKC2TSpg8,6550
|
|
57
57
|
hikyuu/data/pytdx_finance_to_mysql.py,sha256=hXtbPdsEqHdKyZbgooSH11_Kh55DzdknZEKHgbTaDKE,6470
|
|
58
58
|
hikyuu/data/pytdx_finance_to_sqlite.py,sha256=-6JA1pYUdqzhKHx6OegBQqJZcngm3ZqbR4wDYVx628s,7157
|
|
59
59
|
hikyuu/data/pytdx_to_h5.py,sha256=XuH-4MFvS2vKmgamWB7qudaaIDfE6tF-IXvvKCXJofM,24998
|
|
@@ -190,7 +190,7 @@ hikyuu/gui/data/ImportPytdxTransToH5Task.py,sha256=1n7XEj5GDGRS1OL46LL9B0AlMh5cR
|
|
|
190
190
|
hikyuu/gui/data/ImportTdxToH5Task.py,sha256=lQeGGD-wxtTX3td39w-_xzwFiXP0FsbO3zPkG_mYRzI,4635
|
|
191
191
|
hikyuu/gui/data/ImportWeightToSqliteTask.py,sha256=TGlruqq6wEa1UW_X7-gg7DVm9_XFNnp0XNSciPKUWvM,5274
|
|
192
192
|
hikyuu/gui/data/ImportZhBond10Task.py,sha256=JxPdWW4egjZK0kspHt5RPe9uMltw-dYQhSBilQsKX1Q,1661
|
|
193
|
-
hikyuu/gui/data/MainWindow.py,sha256=
|
|
193
|
+
hikyuu/gui/data/MainWindow.py,sha256=2rGRXeYlyHZNn3XVOuaJU-7qb8sCPYfuT2QbUMWFtQk,59860
|
|
194
194
|
hikyuu/gui/data/SchedImportThread.py,sha256=8BmGwgxowjMWWbrB_D-iTSkW0cYLZhCjWNALUD6rBfI,1935
|
|
195
195
|
hikyuu/gui/data/UsePytdxImportToH5Thread.py,sha256=lmxzGUae11HPwGHoLFJWV-2b1PR3oXgKrkf9ilqJZJo,17271
|
|
196
196
|
hikyuu/gui/data/UseTdxImportToH5Thread.py,sha256=P4iit-7ftd4wHNHWTkGG4X-YvaWfDn2XUpSZqFzPo9U,8110
|
|
@@ -220,7 +220,7 @@ hikyuu/include/hikyuu/config.h,sha256=coJ3wAfuxysJy-rqWJUBHFBsALuRhrwpcUkqb5JrYu
|
|
|
220
220
|
hikyuu/include/hikyuu/debug.h,sha256=r54YJUkujUt5D9Xj11fpIw9c93kZsqU3ykljXBsqxo0,843
|
|
221
221
|
hikyuu/include/hikyuu/doc.h,sha256=M5Va0lgJSlORIkMvUhmV480V0XcxwyyL3wu_fCMcVI4,6967
|
|
222
222
|
hikyuu/include/hikyuu/hikyuu.h,sha256=D4n8yy8BLhRyceGCzAIbrTCoyvEOGa0NtygcQW6accI,1583
|
|
223
|
-
hikyuu/include/hikyuu/version.h,sha256=
|
|
223
|
+
hikyuu/include/hikyuu/version.h,sha256=xKnERGBMABD1eKI2BF4iEFFjgM73Kj2Sa3qbCQf-qRc,507
|
|
224
224
|
hikyuu/include/hikyuu/analysis/__init__.py,sha256=frcCV1k9oG9oKj3dpUqdJg1PxRT2RSN_XKdLCPjaYaY,2
|
|
225
225
|
hikyuu/include/hikyuu/analysis/analysis_sys.h,sha256=WJpfpLeKqpUjGFwmiRf_NCX8NvAHqBRuPDxMi4n-iVs,3239
|
|
226
226
|
hikyuu/include/hikyuu/analysis/combinate.h,sha256=--OhYTVLQ8bUNgl47V0uNO0IjSULxu7bXhYWbjNY4Ig,4196
|
|
@@ -686,7 +686,7 @@ hikyuu/include/hikyuu/trade_sys/system/TradeRequest.h,sha256=sV3AVFHgjACavIb0Lv2
|
|
|
686
686
|
hikyuu/include/hikyuu/trade_sys/system/__init__.py,sha256=frcCV1k9oG9oKj3dpUqdJg1PxRT2RSN_XKdLCPjaYaY,2
|
|
687
687
|
hikyuu/include/hikyuu/trade_sys/system/build_in.h,sha256=sOrro6TDbZhbLByzMy-iJIaIIed6Nz8_p-nHUCwPiVk,247
|
|
688
688
|
hikyuu/include/hikyuu/trade_sys/system/crt/SYS_Simple.h,sha256=TW8LPnBbYWkf8y7DBAfdzJ7P4Sc2xp0Ug5vHM6bNujc,2156
|
|
689
|
-
hikyuu/include/hikyuu/trade_sys/system/crt/SYS_WalkForward.h,sha256=
|
|
689
|
+
hikyuu/include/hikyuu/trade_sys/system/crt/SYS_WalkForward.h,sha256=wg2TjPIs90rbsENkP_GA-HaNuMJkPs7stPs_uS_aAq4,675
|
|
690
690
|
hikyuu/include/hikyuu/trade_sys/system/crt/__init__.py,sha256=frcCV1k9oG9oKj3dpUqdJg1PxRT2RSN_XKdLCPjaYaY,2
|
|
691
691
|
hikyuu/include/hikyuu/trade_sys/system/imp/DelegateSystem.h,sha256=GOzAaEiY7BPrWx7e6cY2RFoPJUatZfQGZqSUIDBM2cw,1619
|
|
692
692
|
hikyuu/include/hikyuu/trade_sys/system/imp/WalkForwardSystem.h,sha256=2gf6mgf7BakAR607FZX0PgGeOMINlrq3Ykkdcz8sWIA,2262
|
|
@@ -812,9 +812,9 @@ hikyuu/util/notebook.py,sha256=zToRjn0gqrs11SC6CK3IvJUWcerBMID_byxSn255BWk,1159
|
|
|
812
812
|
hikyuu/util/singleton.py,sha256=ADnNpIUK63Q7iqkVv9XVptAPHg3iPlPGv1eYCPXjn34,793
|
|
813
813
|
hikyuu/util/slice.py,sha256=ZPvGFc7MO3USnAS4ADMnjJaPqTRFV0nXY_ssgfysxJ4,1759
|
|
814
814
|
hikyuu/util/timeout.py,sha256=n1KdeXfXgh6fJKdrxmmL5PU6zIkeuVp1LKMwll8okDo,3031
|
|
815
|
-
hikyuu-2.2.
|
|
816
|
-
hikyuu-2.2.
|
|
817
|
-
hikyuu-2.2.
|
|
818
|
-
hikyuu-2.2.
|
|
819
|
-
hikyuu-2.2.
|
|
820
|
-
hikyuu-2.2.
|
|
815
|
+
hikyuu-2.2.3.dist-info/LICENSE,sha256=HrhfyXIkWY2tGFK11kg7vPCqhgh5DcxleloqdhrpyMY,11558
|
|
816
|
+
hikyuu-2.2.3.dist-info/METADATA,sha256=81vOqOiz_SGBRlMNjH_XeFOGbVMLti3HKHfe4BifBLE,8443
|
|
817
|
+
hikyuu-2.2.3.dist-info/WHEEL,sha256=37evyuMEjsyAveQX40iT43Lz7iWGYiYX5J9a6lEUCNg,97
|
|
818
|
+
hikyuu-2.2.3.dist-info/entry_points.txt,sha256=YSbsDH-RPGc57mPTWqwHT9VO_3aaWtXSytQbVzJX2I0,97
|
|
819
|
+
hikyuu-2.2.3.dist-info/top_level.txt,sha256=74p4phalMQrLyirWR2dV_bYl9pjwKz3Orp2qr0f0Auw,4018
|
|
820
|
+
hikyuu-2.2.3.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|