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.
Files changed (42) 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/data/mysql_upgrade/0024.sql +2 -0
  13. hikyuu/draw/drawplot/matplotlib_draw.py +6 -1
  14. hikyuu/examples/notebook/Demo/Demo1.ipynb +85 -84
  15. hikyuu/gui/HikyuuTDX.py +16 -15
  16. hikyuu/gui/data/MainWindow.py +14 -11
  17. hikyuu/hub.py +3 -3
  18. hikyuu/include/hikyuu/DataType.h +3 -1
  19. hikyuu/include/hikyuu/StockManager.h +10 -0
  20. hikyuu/include/hikyuu/data_driver/BlockInfoDriver.h +15 -1
  21. hikyuu/include/hikyuu/data_driver/block_info/mysql/MySQLBlockInfoDriver.h +8 -1
  22. hikyuu/include/hikyuu/data_driver/block_info/qianlong/QLBlockInfoDriver.h +3 -1
  23. hikyuu/include/hikyuu/data_driver/block_info/sqlite/SQLiteBlockInfoDriver.h +8 -1
  24. hikyuu/include/hikyuu/trade_manage/OrderBrokerBase.h +25 -0
  25. hikyuu/include/hikyuu/trade_manage/TradeManagerBase.h +0 -4
  26. hikyuu/include/hikyuu/trade_sys/selector/imp/optimal/PerformanceOptimalSelector.h +1 -1
  27. hikyuu/include/hikyuu/utilities/Parameter.h +2 -2
  28. hikyuu/include/hikyuu/utilities/db_connect/mysql/MySQLStatement.h +1 -0
  29. hikyuu/include/hikyuu/version.h +4 -4
  30. hikyuu/test/Datetime.py +12 -12
  31. hikyuu/test/Indicator.py +36 -36
  32. hikyuu/test/KData.py +11 -11
  33. hikyuu/test/Stock.py +10 -10
  34. {hikyuu-2.2.3.dist-info → hikyuu-2.2.4.dist-info}/METADATA +24 -1
  35. {hikyuu-2.2.3.dist-info → hikyuu-2.2.4.dist-info}/RECORD +39 -40
  36. hikyuu/sqlite3.dll +0 -0
  37. hikyuu/vcruntime140.dll +0 -0
  38. hikyuu/vcruntime140_1.dll +0 -0
  39. {hikyuu-2.2.3.dist-info → hikyuu-2.2.4.dist-info}/LICENSE +0 -0
  40. {hikyuu-2.2.3.dist-info → hikyuu-2.2.4.dist-info}/WHEEL +0 -0
  41. {hikyuu-2.2.3.dist-info → hikyuu-2.2.4.dist-info}/entry_points.txt +0 -0
  42. {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
@@ -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: