hikyuu 2.2.3__py3-none-win_amd64.whl → 2.2.4__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/boost_date_time-mt.dll +0 -0
- hikyuu/cpp/boost_serialization-mt.dll +0 -0
- hikyuu/cpp/boost_wserialization-mt.dll +0 -0
- 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/hikyuu.lib +0 -0
- hikyuu/data/mysql_upgrade/0024.sql +2 -0
- hikyuu/draw/drawplot/matplotlib_draw.py +6 -1
- hikyuu/examples/notebook/Demo/Demo1.ipynb +85 -84
- hikyuu/gui/HikyuuTDX.py +16 -15
- hikyuu/gui/data/MainWindow.py +14 -11
- hikyuu/hub.py +3 -3
- hikyuu/include/hikyuu/DataType.h +3 -1
- hikyuu/include/hikyuu/StockManager.h +10 -0
- hikyuu/include/hikyuu/data_driver/BlockInfoDriver.h +15 -1
- hikyuu/include/hikyuu/data_driver/block_info/mysql/MySQLBlockInfoDriver.h +8 -1
- hikyuu/include/hikyuu/data_driver/block_info/qianlong/QLBlockInfoDriver.h +3 -1
- hikyuu/include/hikyuu/data_driver/block_info/sqlite/SQLiteBlockInfoDriver.h +8 -1
- hikyuu/include/hikyuu/trade_manage/OrderBrokerBase.h +25 -0
- hikyuu/include/hikyuu/trade_manage/TradeManagerBase.h +0 -4
- hikyuu/include/hikyuu/trade_sys/selector/imp/optimal/PerformanceOptimalSelector.h +1 -1
- hikyuu/include/hikyuu/utilities/Parameter.h +2 -2
- hikyuu/include/hikyuu/utilities/db_connect/mysql/MySQLStatement.h +1 -0
- hikyuu/include/hikyuu/version.h +4 -4
- hikyuu/test/Datetime.py +12 -12
- hikyuu/test/Indicator.py +36 -36
- hikyuu/test/KData.py +11 -11
- hikyuu/test/Stock.py +10 -10
- {hikyuu-2.2.3.dist-info → hikyuu-2.2.4.dist-info}/METADATA +24 -1
- {hikyuu-2.2.3.dist-info → hikyuu-2.2.4.dist-info}/RECORD +39 -40
- hikyuu/sqlite3.dll +0 -0
- hikyuu/vcruntime140.dll +0 -0
- hikyuu/vcruntime140_1.dll +0 -0
- {hikyuu-2.2.3.dist-info → hikyuu-2.2.4.dist-info}/LICENSE +0 -0
- {hikyuu-2.2.3.dist-info → hikyuu-2.2.4.dist-info}/WHEEL +0 -0
- {hikyuu-2.2.3.dist-info → hikyuu-2.2.4.dist-info}/entry_points.txt +0 -0
- {hikyuu-2.2.3.dist-info → hikyuu-2.2.4.dist-info}/top_level.txt +0 -0
|
Binary file
|
|
Binary file
|
|
Binary file
|
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/hikyuu.lib
ADDED
|
Binary file
|
|
@@ -24,10 +24,15 @@ def set_mpl_params():
|
|
|
24
24
|
if in_interactive_session():
|
|
25
25
|
rcParams['interactive'] = True
|
|
26
26
|
|
|
27
|
+
if sys.platform == 'darwin':
|
|
28
|
+
matplotlib.rcParams['font.sans-serif'] = 'Arial Unicode MS'
|
|
29
|
+
return
|
|
30
|
+
|
|
27
31
|
rcParams['font.family'] = 'sans-serif'
|
|
28
32
|
rcParams['axes.unicode_minus'] = False
|
|
29
33
|
|
|
30
|
-
expected_fonts = ['Microsoft YaHei', 'SimSun', 'SimHei',
|
|
34
|
+
expected_fonts = ['Microsoft YaHei', 'SimSun', 'SimHei',
|
|
35
|
+
'Source Han Sans CN', 'Noto Sans CJK JP', 'Arial Unicode MS']
|
|
31
36
|
current_fonts = matplotlib.rcParams['font.sans-serif']
|
|
32
37
|
for font in expected_fonts:
|
|
33
38
|
if font in current_fonts:
|