hikyuu 2.2.2__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.
Files changed (45) hide show
  1. hikyuu/cpp/boost_date_time-mt.dll +0 -0
  2. hikyuu/cpp/boost_serialization-mt.dll +0 -0
  3. hikyuu/cpp/boost_wserialization-mt.dll +0 -0
  4. hikyuu/cpp/core310.pyd +0 -0
  5. hikyuu/cpp/core311.pyd +0 -0
  6. hikyuu/cpp/core312.pyd +0 -0
  7. hikyuu/cpp/core313.pyd +0 -0
  8. hikyuu/cpp/core38.pyd +0 -0
  9. hikyuu/cpp/core39.pyd +0 -0
  10. hikyuu/cpp/hikyuu.dll +0 -0
  11. hikyuu/cpp/hikyuu.lib +0 -0
  12. hikyuu/cpp/sqlite3.dll +0 -0
  13. hikyuu/data/hku_config_template.py +1 -1
  14. hikyuu/data/mysql_upgrade/0024.sql +2 -0
  15. hikyuu/draw/drawplot/matplotlib_draw.py +6 -1
  16. hikyuu/examples/notebook/Demo/Demo1.ipynb +85 -84
  17. hikyuu/gui/HikyuuTDX.py +16 -15
  18. hikyuu/gui/data/MainWindow.py +129 -112
  19. hikyuu/hub.py +3 -3
  20. hikyuu/include/hikyuu/DataType.h +3 -1
  21. hikyuu/include/hikyuu/StockManager.h +10 -0
  22. hikyuu/include/hikyuu/data_driver/BlockInfoDriver.h +15 -1
  23. hikyuu/include/hikyuu/data_driver/block_info/mysql/MySQLBlockInfoDriver.h +8 -1
  24. hikyuu/include/hikyuu/data_driver/block_info/qianlong/QLBlockInfoDriver.h +3 -1
  25. hikyuu/include/hikyuu/data_driver/block_info/sqlite/SQLiteBlockInfoDriver.h +8 -1
  26. hikyuu/include/hikyuu/trade_manage/OrderBrokerBase.h +25 -0
  27. hikyuu/include/hikyuu/trade_manage/TradeManagerBase.h +0 -4
  28. hikyuu/include/hikyuu/trade_sys/selector/imp/optimal/PerformanceOptimalSelector.h +1 -1
  29. hikyuu/include/hikyuu/trade_sys/system/crt/SYS_WalkForward.h +1 -7
  30. hikyuu/include/hikyuu/utilities/Parameter.h +2 -2
  31. hikyuu/include/hikyuu/utilities/db_connect/mysql/MySQLStatement.h +1 -0
  32. hikyuu/include/hikyuu/version.h +4 -4
  33. hikyuu/test/Datetime.py +12 -12
  34. hikyuu/test/Indicator.py +36 -36
  35. hikyuu/test/KData.py +11 -11
  36. hikyuu/test/Stock.py +10 -10
  37. {hikyuu-2.2.2.dist-info → hikyuu-2.2.4.dist-info}/METADATA +24 -1
  38. {hikyuu-2.2.2.dist-info → hikyuu-2.2.4.dist-info}/RECORD +42 -43
  39. {hikyuu-2.2.2.dist-info → hikyuu-2.2.4.dist-info}/WHEEL +1 -1
  40. hikyuu/sqlite3.dll +0 -0
  41. hikyuu/vcruntime140.dll +0 -0
  42. hikyuu/vcruntime140_1.dll +0 -0
  43. {hikyuu-2.2.2.dist-info → hikyuu-2.2.4.dist-info}/LICENSE +0 -0
  44. {hikyuu-2.2.2.dist-info → hikyuu-2.2.4.dist-info}/entry_points.txt +0 -0
  45. {hikyuu-2.2.2.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
hikyuu/cpp/sqlite3.dll CHANGED
Binary file
@@ -169,7 +169,7 @@ enable = True
169
169
 
170
170
  [tdx]
171
171
  enable = False
172
- ;dir = d:\TdxW_HuaTai
172
+ ;dir = d:/TdxW_HuaTai
173
173
 
174
174
  [pytdx]
175
175
  enable = False
@@ -0,0 +1,2 @@
1
+ DELETE FROM `hku_base`.`coderuletype` where `marketid`=1 and `codepre`='519' and `type`=4;
2
+ UPDATE `hku_base`.`version` set `version` = 24;
@@ -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', 'Source Han Sans CN', 'Noto Sans CJK JP']
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: