hikyuu 2.2.2__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 (820) hide show
  1. hikyuu/LICENSE.txt +21 -0
  2. hikyuu/__init__.py +137 -0
  3. hikyuu/analysis/__init__.py +14 -0
  4. hikyuu/analysis/analysis.py +151 -0
  5. hikyuu/config/__init__.py +1 -0
  6. hikyuu/config/block/__init__.py +0 -0
  7. hikyuu/config/block/dybk.ini +5357 -0
  8. hikyuu/config/block/gnbk.ini +50024 -0
  9. hikyuu/config/block/hybk.ini +5464 -0
  10. hikyuu/config/block/self.ini +10 -0
  11. hikyuu/config/block/zsbk.ini +65543 -0
  12. hikyuu/core.py +27 -0
  13. hikyuu/cpp/__init__.py +1 -0
  14. hikyuu/cpp/boost_date_time-mt.dll +0 -0
  15. hikyuu/cpp/boost_serialization-mt.dll +0 -0
  16. hikyuu/cpp/boost_wserialization-mt.dll +0 -0
  17. hikyuu/cpp/concrt140.dll +0 -0
  18. hikyuu/cpp/core310.pyd +0 -0
  19. hikyuu/cpp/core311.pyd +0 -0
  20. hikyuu/cpp/core312.pyd +0 -0
  21. hikyuu/cpp/core313.pyd +0 -0
  22. hikyuu/cpp/core38.pyd +0 -0
  23. hikyuu/cpp/core39.pyd +0 -0
  24. hikyuu/cpp/hikyuu.dll +0 -0
  25. hikyuu/cpp/hku_hdf5.dll +0 -0
  26. hikyuu/cpp/hku_hdf5_cpp.dll +0 -0
  27. hikyuu/cpp/hku_hdf5_hl.dll +0 -0
  28. hikyuu/cpp/hku_hdf5_hl_cpp.dll +0 -0
  29. hikyuu/cpp/libcrypto-1_1-x64.dll +0 -0
  30. hikyuu/cpp/libmysql.dll +0 -0
  31. hikyuu/cpp/libssl-1_1-x64.dll +0 -0
  32. hikyuu/cpp/msvcp140.dll +0 -0
  33. hikyuu/cpp/msvcp140_1.dll +0 -0
  34. hikyuu/cpp/msvcp140_2.dll +0 -0
  35. hikyuu/cpp/msvcp140_atomic_wait.dll +0 -0
  36. hikyuu/cpp/msvcp140_codecvt_ids.dll +0 -0
  37. hikyuu/cpp/sqlite3.dll +0 -0
  38. hikyuu/cpp/vcruntime140.dll +0 -0
  39. hikyuu/cpp/vcruntime140_1.dll +0 -0
  40. hikyuu/data/__init__.py +1 -0
  41. hikyuu/data/common.py +248 -0
  42. hikyuu/data/common_h5.py +398 -0
  43. hikyuu/data/common_mysql.py +485 -0
  44. hikyuu/data/common_pytdx.py +108 -0
  45. hikyuu/data/common_sqlite3.py +140 -0
  46. hikyuu/data/em_block_to_mysql.py +120 -0
  47. hikyuu/data/em_block_to_sqlite.py +117 -0
  48. hikyuu/data/hku_config_template.py +266 -0
  49. hikyuu/data/mysql_upgrade/0001.sql +5 -0
  50. hikyuu/data/mysql_upgrade/0002.sql +3 -0
  51. hikyuu/data/mysql_upgrade/0003.sql +9 -0
  52. hikyuu/data/mysql_upgrade/0004.sql +26 -0
  53. hikyuu/data/mysql_upgrade/0005.sql +3 -0
  54. hikyuu/data/mysql_upgrade/0006.sql +2 -0
  55. hikyuu/data/mysql_upgrade/0007.sql +20 -0
  56. hikyuu/data/mysql_upgrade/0008.sql +6 -0
  57. hikyuu/data/mysql_upgrade/0009.sql +36 -0
  58. hikyuu/data/mysql_upgrade/0010.sql +5 -0
  59. hikyuu/data/mysql_upgrade/0011.sql +5 -0
  60. hikyuu/data/mysql_upgrade/0012.sql +5 -0
  61. hikyuu/data/mysql_upgrade/0013.sql +2389 -0
  62. hikyuu/data/mysql_upgrade/0014.sql +3 -0
  63. hikyuu/data/mysql_upgrade/0015.sql +4 -0
  64. hikyuu/data/mysql_upgrade/0016.sql +4 -0
  65. hikyuu/data/mysql_upgrade/0017.sql +5 -0
  66. hikyuu/data/mysql_upgrade/0018.sql +2 -0
  67. hikyuu/data/mysql_upgrade/0019.sql +6 -0
  68. hikyuu/data/mysql_upgrade/0020.sql +4 -0
  69. hikyuu/data/mysql_upgrade/0021.sql +4 -0
  70. hikyuu/data/mysql_upgrade/0022.sql +5 -0
  71. hikyuu/data/mysql_upgrade/0023.sql +4 -0
  72. hikyuu/data/mysql_upgrade/__init__.py +1 -0
  73. hikyuu/data/mysql_upgrade/createdb.sql +265 -0
  74. hikyuu/data/pytdx_finance_to_mysql.py +129 -0
  75. hikyuu/data/pytdx_finance_to_sqlite.py +162 -0
  76. hikyuu/data/pytdx_to_h5.py +662 -0
  77. hikyuu/data/pytdx_to_mysql.py +803 -0
  78. hikyuu/data/pytdx_weight_to_mysql.py +196 -0
  79. hikyuu/data/pytdx_weight_to_sqlite.py +192 -0
  80. hikyuu/data/sqlite_mem.py +84 -0
  81. hikyuu/data/sqlite_mem_sql/__init__.py +1 -0
  82. hikyuu/data/sqlite_mem_sql/createdb.sql +126 -0
  83. hikyuu/data/sqlite_upgrade/0001.sql +4 -0
  84. hikyuu/data/sqlite_upgrade/0002.sql +48 -0
  85. hikyuu/data/sqlite_upgrade/0003.sql +18 -0
  86. hikyuu/data/sqlite_upgrade/0004.sql +11 -0
  87. hikyuu/data/sqlite_upgrade/0005.sql +28 -0
  88. hikyuu/data/sqlite_upgrade/0006.sql +5 -0
  89. hikyuu/data/sqlite_upgrade/0007.sql +4 -0
  90. hikyuu/data/sqlite_upgrade/0008.sql +22 -0
  91. hikyuu/data/sqlite_upgrade/0009.sql +8 -0
  92. hikyuu/data/sqlite_upgrade/0010.sql +5 -0
  93. hikyuu/data/sqlite_upgrade/0011.sql +16 -0
  94. hikyuu/data/sqlite_upgrade/0012.sql +15 -0
  95. hikyuu/data/sqlite_upgrade/0013.sql +9 -0
  96. hikyuu/data/sqlite_upgrade/0014.sql +607 -0
  97. hikyuu/data/sqlite_upgrade/0015.sql +7 -0
  98. hikyuu/data/sqlite_upgrade/0016.sql +8 -0
  99. hikyuu/data/sqlite_upgrade/0017.sql +16 -0
  100. hikyuu/data/sqlite_upgrade/0018.sql +5 -0
  101. hikyuu/data/sqlite_upgrade/0019.sql +4 -0
  102. hikyuu/data/sqlite_upgrade/0020.sql +4 -0
  103. hikyuu/data/sqlite_upgrade/0021.sql +6 -0
  104. hikyuu/data/sqlite_upgrade/0022.sql +6 -0
  105. hikyuu/data/sqlite_upgrade/0023.sql +7 -0
  106. hikyuu/data/sqlite_upgrade/0024.sql +22 -0
  107. hikyuu/data/sqlite_upgrade/__init__.py +1 -0
  108. hikyuu/data/sqlite_upgrade/createdb.sql +61 -0
  109. hikyuu/data/tdx_to_h5.py +464 -0
  110. hikyuu/data/tdx_to_mysql.py +464 -0
  111. hikyuu/data/weight_to_mysql.py +72 -0
  112. hikyuu/data/weight_to_sqlite.py +70 -0
  113. hikyuu/data/zh_bond10_to_mysql.py +30 -0
  114. hikyuu/data/zh_bond10_to_sqlite.py +42 -0
  115. hikyuu/data_driver/__init__.py +49 -0
  116. hikyuu/data_driver/jqdata_data_driver.py +277 -0
  117. hikyuu/data_driver/pytdx_data_driver.py +292 -0
  118. hikyuu/deprecated.py +651 -0
  119. hikyuu/draw/__init__.py +59 -0
  120. hikyuu/draw/drawplot/__init__.py +291 -0
  121. hikyuu/draw/drawplot/bokeh_draw.py +583 -0
  122. hikyuu/draw/drawplot/common.py +89 -0
  123. hikyuu/draw/drawplot/echarts_draw.py +402 -0
  124. hikyuu/draw/drawplot/matplotlib_draw.py +832 -0
  125. hikyuu/draw/elder.py +135 -0
  126. hikyuu/draw/kaufman.py +192 -0
  127. hikyuu/draw/volume.py +122 -0
  128. hikyuu/examples/Turtle_SG.py +47 -0
  129. hikyuu/examples/__init__.py +1 -0
  130. hikyuu/examples/examples_init.py +33 -0
  131. hikyuu/examples/notebook/000-Index.ipynb +76 -0
  132. hikyuu/examples/notebook/001-overview.ipynb +345 -0
  133. hikyuu/examples/notebook/002-HowToGetStock.ipynb +265 -0
  134. hikyuu/examples/notebook/003-HowToGetKDataAndDraw.ipynb +375 -0
  135. hikyuu/examples/notebook/004-IndicatorOverview.ipynb +501 -0
  136. hikyuu/examples/notebook/005-Drawplot.ipynb +321 -0
  137. hikyuu/examples/notebook/006-TradeManager.ipynb +381 -0
  138. hikyuu/examples/notebook/007-SystemDetails.ipynb +380 -0
  139. hikyuu/examples/notebook/008-Pickle.ipynb +127 -0
  140. hikyuu/examples/notebook/009-RealData.ipynb +110 -0
  141. hikyuu/examples/notebook/010-Portfolio.ipynb +333 -0
  142. hikyuu/examples/notebook/011-PyechartsDrawplot.ipynb +21821 -0
  143. hikyuu/examples/notebook/Demo/Demo1.ipynb +622 -0
  144. hikyuu/examples/notebook/Demo/Demo2.ipynb +665 -0
  145. hikyuu/examples/notebook/Demo/__init__.py +1 -0
  146. hikyuu/examples/notebook/README.md +1 -0
  147. hikyuu/examples/notebook/__init__.py +1 -0
  148. hikyuu/examples/notebook/images/002_01_block_config.png +0 -0
  149. hikyuu/examples/notebook/images/008_01_tocsv.png +0 -0
  150. hikyuu/examples/notebook/images/008_02_tocsv_look.png +0 -0
  151. hikyuu/examples/notebook/images/008_03_pickle.png +0 -0
  152. hikyuu/examples/notebook/images/__init__.py +1 -0
  153. hikyuu/examples/quick_crtsg.py +40 -0
  154. hikyuu/extend.py +387 -0
  155. hikyuu/fetcher/__init__.py +8 -0
  156. hikyuu/fetcher/proxy/__init__.py +12 -0
  157. hikyuu/fetcher/proxy/proxy.py +39 -0
  158. hikyuu/fetcher/proxy/zhima.py +63 -0
  159. hikyuu/fetcher/stock/__init__.py +8 -0
  160. hikyuu/fetcher/stock/zh_block_em.py +140 -0
  161. hikyuu/fetcher/stock/zh_stock_a_huatai.py +51 -0
  162. hikyuu/fetcher/stock/zh_stock_a_pytdx.py +139 -0
  163. hikyuu/fetcher/stock/zh_stock_a_qmt.py +58 -0
  164. hikyuu/fetcher/stock/zh_stock_a_sina_qq.py +229 -0
  165. hikyuu/flat/Spot.py +440 -0
  166. hikyuu/flat/SpotList.py +74 -0
  167. hikyuu/flat/__init__.py +4 -0
  168. hikyuu/gui/HikyuuTDX.py +839 -0
  169. hikyuu/gui/__init__.py +1 -0
  170. hikyuu/gui/data/CollectSpotThread.py +43 -0
  171. hikyuu/gui/data/CollectToMemThread.py +123 -0
  172. hikyuu/gui/data/CollectToMySQLThread.py +178 -0
  173. hikyuu/gui/data/EscapetimeThread.py +32 -0
  174. hikyuu/gui/data/ImportBlockInfoTask.py +55 -0
  175. hikyuu/gui/data/ImportHistoryFinanceTask.py +141 -0
  176. hikyuu/gui/data/ImportPytdxTimeToH5Task.py +94 -0
  177. hikyuu/gui/data/ImportPytdxToH5Task.py +98 -0
  178. hikyuu/gui/data/ImportPytdxTransToH5Task.py +94 -0
  179. hikyuu/gui/data/ImportTdxToH5Task.py +111 -0
  180. hikyuu/gui/data/ImportWeightToSqliteTask.py +114 -0
  181. hikyuu/gui/data/ImportZhBond10Task.py +48 -0
  182. hikyuu/gui/data/MainWindow.py +807 -0
  183. hikyuu/gui/data/SchedImportThread.py +62 -0
  184. hikyuu/gui/data/UsePytdxImportToH5Thread.py +371 -0
  185. hikyuu/gui/data/UseTdxImportToH5Thread.py +182 -0
  186. hikyuu/gui/data/__init__.py +1 -0
  187. hikyuu/gui/data/tool.py +43 -0
  188. hikyuu/gui/hikyuu.ico +0 -0
  189. hikyuu/gui/importdata.py +166 -0
  190. hikyuu/gui/spot_server.py +336 -0
  191. hikyuu/gui/start_huatai_insight.py +510 -0
  192. hikyuu/gui/start_qmt.py +122 -0
  193. hikyuu/hub.py +634 -0
  194. hikyuu/include/__init__.py +1 -0
  195. hikyuu/include/hikyuu/Block.h +173 -0
  196. hikyuu/include/hikyuu/DataType.h +171 -0
  197. hikyuu/include/hikyuu/GlobalInitializer.h +46 -0
  198. hikyuu/include/hikyuu/HistoryFinanceInfo.h +35 -0
  199. hikyuu/include/hikyuu/KData.h +271 -0
  200. hikyuu/include/hikyuu/KDataImp.h +94 -0
  201. hikyuu/include/hikyuu/KQuery.h +275 -0
  202. hikyuu/include/hikyuu/KRecord.h +94 -0
  203. hikyuu/include/hikyuu/MarketInfo.h +132 -0
  204. hikyuu/include/hikyuu/Stock.h +351 -0
  205. hikyuu/include/hikyuu/StockManager.h +361 -0
  206. hikyuu/include/hikyuu/StockMapIterator.h +72 -0
  207. hikyuu/include/hikyuu/StockTypeInfo.h +127 -0
  208. hikyuu/include/hikyuu/StockWeight.h +148 -0
  209. hikyuu/include/hikyuu/StrategyContext.h +107 -0
  210. hikyuu/include/hikyuu/TimeLineRecord.h +71 -0
  211. hikyuu/include/hikyuu/TransRecord.h +79 -0
  212. hikyuu/include/hikyuu/ZhBond10.h +36 -0
  213. hikyuu/include/hikyuu/__init__.py +1 -0
  214. hikyuu/include/hikyuu/analysis/__init__.py +1 -0
  215. hikyuu/include/hikyuu/analysis/analysis_sys.h +76 -0
  216. hikyuu/include/hikyuu/analysis/combinate.h +115 -0
  217. hikyuu/include/hikyuu/config.h +48 -0
  218. hikyuu/include/hikyuu/data_driver/BaseInfoDriver.h +201 -0
  219. hikyuu/include/hikyuu/data_driver/BlockInfoDriver.h +94 -0
  220. hikyuu/include/hikyuu/data_driver/DataDriverFactory.h +58 -0
  221. hikyuu/include/hikyuu/data_driver/DriverConnectPool.h +146 -0
  222. hikyuu/include/hikyuu/data_driver/HistoryFinanceReader.h +36 -0
  223. hikyuu/include/hikyuu/data_driver/KDataDriver.h +194 -0
  224. hikyuu/include/hikyuu/data_driver/__init__.py +1 -0
  225. hikyuu/include/hikyuu/data_driver/base_info/__init__.py +1 -0
  226. hikyuu/include/hikyuu/data_driver/base_info/mysql/MySQLBaseInfoDriver.h +54 -0
  227. hikyuu/include/hikyuu/data_driver/base_info/mysql/__init__.py +1 -0
  228. hikyuu/include/hikyuu/data_driver/base_info/sqlite/SQLiteBaseInfoDriver.h +50 -0
  229. hikyuu/include/hikyuu/data_driver/base_info/sqlite/__init__.py +1 -0
  230. hikyuu/include/hikyuu/data_driver/base_info/table/HistoryFinanceFieldTable.h +19 -0
  231. hikyuu/include/hikyuu/data_driver/base_info/table/HistoryFinanceTable.h +23 -0
  232. hikyuu/include/hikyuu/data_driver/base_info/table/HolidayTable.h +29 -0
  233. hikyuu/include/hikyuu/data_driver/base_info/table/MarketInfoTable.h +127 -0
  234. hikyuu/include/hikyuu/data_driver/base_info/table/StockTable.h +64 -0
  235. hikyuu/include/hikyuu/data_driver/base_info/table/StockTypeInfoTable.h +108 -0
  236. hikyuu/include/hikyuu/data_driver/base_info/table/StockWeightTable.h +52 -0
  237. hikyuu/include/hikyuu/data_driver/base_info/table/ZhBond10Table.h +20 -0
  238. hikyuu/include/hikyuu/data_driver/base_info/table/__init__.py +1 -0
  239. hikyuu/include/hikyuu/data_driver/block_info/__init__.py +1 -0
  240. hikyuu/include/hikyuu/data_driver/block_info/mysql/MySQLBlockInfoDriver.h +29 -0
  241. hikyuu/include/hikyuu/data_driver/block_info/mysql/__init__.py +1 -0
  242. hikyuu/include/hikyuu/data_driver/block_info/qianlong/QLBlockInfoDriver.h +29 -0
  243. hikyuu/include/hikyuu/data_driver/block_info/qianlong/__init__.py +1 -0
  244. hikyuu/include/hikyuu/data_driver/block_info/sqlite/SQLiteBlockInfoDriver.h +29 -0
  245. hikyuu/include/hikyuu/data_driver/block_info/sqlite/__init__.py +1 -0
  246. hikyuu/include/hikyuu/data_driver/kdata/DoNothingKDataDriver.h +33 -0
  247. hikyuu/include/hikyuu/data_driver/kdata/__init__.py +1 -0
  248. hikyuu/include/hikyuu/data_driver/kdata/cvs/KDataTempCsvDriver.h +106 -0
  249. hikyuu/include/hikyuu/data_driver/kdata/cvs/__init__.py +1 -0
  250. hikyuu/include/hikyuu/data_driver/kdata/hdf5/H5KDataDriver.h +89 -0
  251. hikyuu/include/hikyuu/data_driver/kdata/hdf5/H5Record.h +50 -0
  252. hikyuu/include/hikyuu/data_driver/kdata/hdf5/__init__.py +1 -0
  253. hikyuu/include/hikyuu/data_driver/kdata/mysql/KRecordTable.h +124 -0
  254. hikyuu/include/hikyuu/data_driver/kdata/mysql/MySQLKDataDriver.h +78 -0
  255. hikyuu/include/hikyuu/data_driver/kdata/mysql/__init__.py +1 -0
  256. hikyuu/include/hikyuu/data_driver/kdata/sqlite/SQLiteKDataDriver.h +62 -0
  257. hikyuu/include/hikyuu/data_driver/kdata/sqlite/__init__.py +1 -0
  258. hikyuu/include/hikyuu/data_driver/kdata/tdx/TdxKDataDriver.h +63 -0
  259. hikyuu/include/hikyuu/data_driver/kdata/tdx/__init__.py +1 -0
  260. hikyuu/include/hikyuu/debug.h +32 -0
  261. hikyuu/include/hikyuu/doc.h +166 -0
  262. hikyuu/include/hikyuu/global/GlobalSpotAgent.h +33 -0
  263. hikyuu/include/hikyuu/global/SpotRecord.h +52 -0
  264. hikyuu/include/hikyuu/global/__init__.py +1 -0
  265. hikyuu/include/hikyuu/global/agent/SpotAgent.h +143 -0
  266. hikyuu/include/hikyuu/global/agent/__init__.py +1 -0
  267. hikyuu/include/hikyuu/global/agent/hikyuu/__init__.py +1 -0
  268. hikyuu/include/hikyuu/global/agent/hikyuu/flat/__init__.py +1 -0
  269. hikyuu/include/hikyuu/global/agent/spot_generated.h +527 -0
  270. hikyuu/include/hikyuu/global/schedule/__init__.py +1 -0
  271. hikyuu/include/hikyuu/global/schedule/inner_tasks.h +16 -0
  272. hikyuu/include/hikyuu/global/schedule/scheduler.h +24 -0
  273. hikyuu/include/hikyuu/global/sysinfo.h +67 -0
  274. hikyuu/include/hikyuu/hikyuu.h +55 -0
  275. hikyuu/include/hikyuu/indicator/IndParam.h +39 -0
  276. hikyuu/include/hikyuu/indicator/Indicator.h +403 -0
  277. hikyuu/include/hikyuu/indicator/IndicatorImp.h +413 -0
  278. hikyuu/include/hikyuu/indicator/__init__.py +1 -0
  279. hikyuu/include/hikyuu/indicator/build_in.h +114 -0
  280. hikyuu/include/hikyuu/indicator/crt/ABS.h +34 -0
  281. hikyuu/include/hikyuu/indicator/crt/ACOS.h +36 -0
  282. hikyuu/include/hikyuu/indicator/crt/AD.h +28 -0
  283. hikyuu/include/hikyuu/indicator/crt/ADVANCE.h +32 -0
  284. hikyuu/include/hikyuu/indicator/crt/ALIGN.h +42 -0
  285. hikyuu/include/hikyuu/indicator/crt/AMA.h +113 -0
  286. hikyuu/include/hikyuu/indicator/crt/ASIN.h +36 -0
  287. hikyuu/include/hikyuu/indicator/crt/ATAN.h +36 -0
  288. hikyuu/include/hikyuu/indicator/crt/ATR.h +44 -0
  289. hikyuu/include/hikyuu/indicator/crt/AVEDEV.h +45 -0
  290. hikyuu/include/hikyuu/indicator/crt/BACKSET.h +44 -0
  291. hikyuu/include/hikyuu/indicator/crt/BARSCOUNT.h +37 -0
  292. hikyuu/include/hikyuu/indicator/crt/BARSLAST.h +41 -0
  293. hikyuu/include/hikyuu/indicator/crt/BARSSINCE.h +41 -0
  294. hikyuu/include/hikyuu/indicator/crt/BETWEEN.h +85 -0
  295. hikyuu/include/hikyuu/indicator/crt/BLOCKSETNUM.h +23 -0
  296. hikyuu/include/hikyuu/indicator/crt/CEILING.h +38 -0
  297. hikyuu/include/hikyuu/indicator/crt/CORR.h +24 -0
  298. hikyuu/include/hikyuu/indicator/crt/COS.h +36 -0
  299. hikyuu/include/hikyuu/indicator/crt/COST.h +34 -0
  300. hikyuu/include/hikyuu/indicator/crt/COUNT.h +54 -0
  301. hikyuu/include/hikyuu/indicator/crt/CROSS.h +48 -0
  302. hikyuu/include/hikyuu/indicator/crt/CVAL.h +35 -0
  303. hikyuu/include/hikyuu/indicator/crt/DECLINE.h +32 -0
  304. hikyuu/include/hikyuu/indicator/crt/DEVSQ.h +40 -0
  305. hikyuu/include/hikyuu/indicator/crt/DIFF.h +31 -0
  306. hikyuu/include/hikyuu/indicator/crt/DMA.h +34 -0
  307. hikyuu/include/hikyuu/indicator/crt/DOWNNDAY.h +43 -0
  308. hikyuu/include/hikyuu/indicator/crt/DROPNA.h +31 -0
  309. hikyuu/include/hikyuu/indicator/crt/EMA.h +44 -0
  310. hikyuu/include/hikyuu/indicator/crt/EVERY.h +44 -0
  311. hikyuu/include/hikyuu/indicator/crt/EXIST.h +44 -0
  312. hikyuu/include/hikyuu/indicator/crt/EXP.h +34 -0
  313. hikyuu/include/hikyuu/indicator/crt/FILTER.h +44 -0
  314. hikyuu/include/hikyuu/indicator/crt/FINANCE.h +20 -0
  315. hikyuu/include/hikyuu/indicator/crt/FLOOR.h +38 -0
  316. hikyuu/include/hikyuu/indicator/crt/HHV.h +44 -0
  317. hikyuu/include/hikyuu/indicator/crt/HHVBARS.h +44 -0
  318. hikyuu/include/hikyuu/indicator/crt/HSL.h +39 -0
  319. hikyuu/include/hikyuu/indicator/crt/IC.h +41 -0
  320. hikyuu/include/hikyuu/indicator/crt/ICIR.h +51 -0
  321. hikyuu/include/hikyuu/indicator/crt/INSUM.h +33 -0
  322. hikyuu/include/hikyuu/indicator/crt/INTPART.h +38 -0
  323. hikyuu/include/hikyuu/indicator/crt/IR.h +44 -0
  324. hikyuu/include/hikyuu/indicator/crt/KDATA.h +72 -0
  325. hikyuu/include/hikyuu/indicator/crt/LAST.h +100 -0
  326. hikyuu/include/hikyuu/indicator/crt/LIUTONGPAN.h +23 -0
  327. hikyuu/include/hikyuu/indicator/crt/LLV.h +46 -0
  328. hikyuu/include/hikyuu/indicator/crt/LLVBARS.h +44 -0
  329. hikyuu/include/hikyuu/indicator/crt/LN.h +36 -0
  330. hikyuu/include/hikyuu/indicator/crt/LOG.h +35 -0
  331. hikyuu/include/hikyuu/indicator/crt/LONGCROSS.h +68 -0
  332. hikyuu/include/hikyuu/indicator/crt/MA.h +44 -0
  333. hikyuu/include/hikyuu/indicator/crt/MACD.h +62 -0
  334. hikyuu/include/hikyuu/indicator/crt/MAX.h +45 -0
  335. hikyuu/include/hikyuu/indicator/crt/MDD.h +29 -0
  336. hikyuu/include/hikyuu/indicator/crt/MIN.h +45 -0
  337. hikyuu/include/hikyuu/indicator/crt/MOD.h +49 -0
  338. hikyuu/include/hikyuu/indicator/crt/MRR.h +29 -0
  339. hikyuu/include/hikyuu/indicator/crt/NDAY.h +43 -0
  340. hikyuu/include/hikyuu/indicator/crt/NOT.h +35 -0
  341. hikyuu/include/hikyuu/indicator/crt/POS.h +21 -0
  342. hikyuu/include/hikyuu/indicator/crt/POW.h +48 -0
  343. hikyuu/include/hikyuu/indicator/crt/PRICELIST.h +59 -0
  344. hikyuu/include/hikyuu/indicator/crt/RECOVER.h +45 -0
  345. hikyuu/include/hikyuu/indicator/crt/REF.h +48 -0
  346. hikyuu/include/hikyuu/indicator/crt/RESULT.h +20 -0
  347. hikyuu/include/hikyuu/indicator/crt/REVERSE.h +36 -0
  348. hikyuu/include/hikyuu/indicator/crt/ROC.h +39 -0
  349. hikyuu/include/hikyuu/indicator/crt/ROCP.h +39 -0
  350. hikyuu/include/hikyuu/indicator/crt/ROCR.h +39 -0
  351. hikyuu/include/hikyuu/indicator/crt/ROCR100.h +39 -0
  352. hikyuu/include/hikyuu/indicator/crt/ROUND.h +36 -0
  353. hikyuu/include/hikyuu/indicator/crt/ROUNDDOWN.h +36 -0
  354. hikyuu/include/hikyuu/indicator/crt/ROUNDUP.h +36 -0
  355. hikyuu/include/hikyuu/indicator/crt/RSI.h +43 -0
  356. hikyuu/include/hikyuu/indicator/crt/SAFTYLOSS.h +79 -0
  357. hikyuu/include/hikyuu/indicator/crt/SGN.h +34 -0
  358. hikyuu/include/hikyuu/indicator/crt/SIN.h +36 -0
  359. hikyuu/include/hikyuu/indicator/crt/SLICE.h +44 -0
  360. hikyuu/include/hikyuu/indicator/crt/SLOPE.h +44 -0
  361. hikyuu/include/hikyuu/indicator/crt/SMA.h +72 -0
  362. hikyuu/include/hikyuu/indicator/crt/SPEARMAN.h +23 -0
  363. hikyuu/include/hikyuu/indicator/crt/SQRT.h +41 -0
  364. hikyuu/include/hikyuu/indicator/crt/STDEV.h +44 -0
  365. hikyuu/include/hikyuu/indicator/crt/STDP.h +38 -0
  366. hikyuu/include/hikyuu/indicator/crt/SUM.h +44 -0
  367. hikyuu/include/hikyuu/indicator/crt/SUMBARS.h +44 -0
  368. hikyuu/include/hikyuu/indicator/crt/TAN.h +36 -0
  369. hikyuu/include/hikyuu/indicator/crt/TIME.h +69 -0
  370. hikyuu/include/hikyuu/indicator/crt/TIMELINE.h +23 -0
  371. hikyuu/include/hikyuu/indicator/crt/TIMELINEVOL.h +21 -0
  372. hikyuu/include/hikyuu/indicator/crt/TURNOVER.h +21 -0
  373. hikyuu/include/hikyuu/indicator/crt/UPNDAY.h +43 -0
  374. hikyuu/include/hikyuu/indicator/crt/VAR.h +40 -0
  375. hikyuu/include/hikyuu/indicator/crt/VARP.h +40 -0
  376. hikyuu/include/hikyuu/indicator/crt/VIGOR.h +34 -0
  377. hikyuu/include/hikyuu/indicator/crt/ZHBOND10.h +27 -0
  378. hikyuu/include/hikyuu/indicator/crt/ZONGGUBEN.h +17 -0
  379. hikyuu/include/hikyuu/indicator/crt/ZSCORE.h +30 -0
  380. hikyuu/include/hikyuu/indicator/crt/__init__.py +1 -0
  381. hikyuu/include/hikyuu/indicator/imp/IAbs.h +26 -0
  382. hikyuu/include/hikyuu/indicator/imp/IAcos.h +28 -0
  383. hikyuu/include/hikyuu/indicator/imp/IAd.h +30 -0
  384. hikyuu/include/hikyuu/indicator/imp/IAdvance.h +29 -0
  385. hikyuu/include/hikyuu/indicator/imp/IAlign.h +28 -0
  386. hikyuu/include/hikyuu/indicator/imp/IAma.h +38 -0
  387. hikyuu/include/hikyuu/indicator/imp/IAsin.h +28 -0
  388. hikyuu/include/hikyuu/indicator/imp/IAtan.h +28 -0
  389. hikyuu/include/hikyuu/indicator/imp/IAtr.h +28 -0
  390. hikyuu/include/hikyuu/indicator/imp/IBackset.h +33 -0
  391. hikyuu/include/hikyuu/indicator/imp/IBarsCount.h +28 -0
  392. hikyuu/include/hikyuu/indicator/imp/IBarsLast.h +28 -0
  393. hikyuu/include/hikyuu/indicator/imp/IBarsSince.h +28 -0
  394. hikyuu/include/hikyuu/indicator/imp/IBlockSetNum.h +28 -0
  395. hikyuu/include/hikyuu/indicator/imp/ICeil.h +31 -0
  396. hikyuu/include/hikyuu/indicator/imp/ICorr.h +42 -0
  397. hikyuu/include/hikyuu/indicator/imp/ICos.h +28 -0
  398. hikyuu/include/hikyuu/indicator/imp/ICount.h +32 -0
  399. hikyuu/include/hikyuu/indicator/imp/ICval.h +29 -0
  400. hikyuu/include/hikyuu/indicator/imp/IDecline.h +29 -0
  401. hikyuu/include/hikyuu/indicator/imp/IDevsq.h +29 -0
  402. hikyuu/include/hikyuu/indicator/imp/IDiff.h +29 -0
  403. hikyuu/include/hikyuu/indicator/imp/IDma.h +47 -0
  404. hikyuu/include/hikyuu/indicator/imp/IDropna.h +28 -0
  405. hikyuu/include/hikyuu/indicator/imp/IEma.h +29 -0
  406. hikyuu/include/hikyuu/indicator/imp/IEvery.h +32 -0
  407. hikyuu/include/hikyuu/indicator/imp/IExist.h +32 -0
  408. hikyuu/include/hikyuu/indicator/imp/IExp.h +28 -0
  409. hikyuu/include/hikyuu/indicator/imp/IFilter.h +34 -0
  410. hikyuu/include/hikyuu/indicator/imp/IFinance.h +25 -0
  411. hikyuu/include/hikyuu/indicator/imp/IFloor.h +31 -0
  412. hikyuu/include/hikyuu/indicator/imp/IHhvbars.h +29 -0
  413. hikyuu/include/hikyuu/indicator/imp/IHighLine.h +34 -0
  414. hikyuu/include/hikyuu/indicator/imp/IIc.h +45 -0
  415. hikyuu/include/hikyuu/indicator/imp/IInSum.h +28 -0
  416. hikyuu/include/hikyuu/indicator/imp/IIntpart.h +31 -0
  417. hikyuu/include/hikyuu/indicator/imp/IKData.h +29 -0
  418. hikyuu/include/hikyuu/indicator/imp/ILiuTongPan.h +29 -0
  419. hikyuu/include/hikyuu/indicator/imp/ILn.h +28 -0
  420. hikyuu/include/hikyuu/indicator/imp/ILog.h +28 -0
  421. hikyuu/include/hikyuu/indicator/imp/ILowLine.h +30 -0
  422. hikyuu/include/hikyuu/indicator/imp/ILowLineBars.h +29 -0
  423. hikyuu/include/hikyuu/indicator/imp/IMa.h +27 -0
  424. hikyuu/include/hikyuu/indicator/imp/IMacd.h +41 -0
  425. hikyuu/include/hikyuu/indicator/imp/IMdd.h +23 -0
  426. hikyuu/include/hikyuu/indicator/imp/IMrr.h +23 -0
  427. hikyuu/include/hikyuu/indicator/imp/INot.h +26 -0
  428. hikyuu/include/hikyuu/indicator/imp/IPow.h +32 -0
  429. hikyuu/include/hikyuu/indicator/imp/IPriceList.h +29 -0
  430. hikyuu/include/hikyuu/indicator/imp/IRecover.h +29 -0
  431. hikyuu/include/hikyuu/indicator/imp/IRef.h +34 -0
  432. hikyuu/include/hikyuu/indicator/imp/IResult.h +26 -0
  433. hikyuu/include/hikyuu/indicator/imp/IReverse.h +28 -0
  434. hikyuu/include/hikyuu/indicator/imp/IRoc.h +29 -0
  435. hikyuu/include/hikyuu/indicator/imp/IRocp.h +29 -0
  436. hikyuu/include/hikyuu/indicator/imp/IRocr.h +29 -0
  437. hikyuu/include/hikyuu/indicator/imp/IRocr100.h +29 -0
  438. hikyuu/include/hikyuu/indicator/imp/IRound.h +32 -0
  439. hikyuu/include/hikyuu/indicator/imp/IRoundDown.h +32 -0
  440. hikyuu/include/hikyuu/indicator/imp/IRoundUp.h +32 -0
  441. hikyuu/include/hikyuu/indicator/imp/ISaftyLoss.h +44 -0
  442. hikyuu/include/hikyuu/indicator/imp/ISign.h +28 -0
  443. hikyuu/include/hikyuu/indicator/imp/ISin.h +28 -0
  444. hikyuu/include/hikyuu/indicator/imp/ISlice.h +25 -0
  445. hikyuu/include/hikyuu/indicator/imp/ISlope.h +25 -0
  446. hikyuu/include/hikyuu/indicator/imp/ISma.h +34 -0
  447. hikyuu/include/hikyuu/indicator/imp/ISpearman.h +42 -0
  448. hikyuu/include/hikyuu/indicator/imp/ISqrt.h +31 -0
  449. hikyuu/include/hikyuu/indicator/imp/IStdev.h +31 -0
  450. hikyuu/include/hikyuu/indicator/imp/IStdp.h +33 -0
  451. hikyuu/include/hikyuu/indicator/imp/ISum.h +27 -0
  452. hikyuu/include/hikyuu/indicator/imp/ISumBars.h +30 -0
  453. hikyuu/include/hikyuu/indicator/imp/ITan.h +28 -0
  454. hikyuu/include/hikyuu/indicator/imp/ITime.h +33 -0
  455. hikyuu/include/hikyuu/indicator/imp/ITimeLine.h +32 -0
  456. hikyuu/include/hikyuu/indicator/imp/IVar.h +32 -0
  457. hikyuu/include/hikyuu/indicator/imp/IVarp.h +32 -0
  458. hikyuu/include/hikyuu/indicator/imp/IVigor.h +35 -0
  459. hikyuu/include/hikyuu/indicator/imp/IZScore.h +25 -0
  460. hikyuu/include/hikyuu/indicator/imp/IZhBond10.h +30 -0
  461. hikyuu/include/hikyuu/indicator/imp/IZongGuBen.h +25 -0
  462. hikyuu/include/hikyuu/indicator/imp/__init__.py +1 -0
  463. hikyuu/include/hikyuu/python/__init__.py +1 -0
  464. hikyuu/include/hikyuu/python/pickle_support.h +90 -0
  465. hikyuu/include/hikyuu/python/pybind_utils.h +103 -0
  466. hikyuu/include/hikyuu/serialization/Block_serialization.h +55 -0
  467. hikyuu/include/hikyuu/serialization/Datetime_serialization.h +40 -0
  468. hikyuu/include/hikyuu/serialization/KData_serialization.h +45 -0
  469. hikyuu/include/hikyuu/serialization/KQuery_serialization.h +79 -0
  470. hikyuu/include/hikyuu/serialization/KRecord_serialization.h +50 -0
  471. hikyuu/include/hikyuu/serialization/MarketInfo_serialization.h +68 -0
  472. hikyuu/include/hikyuu/serialization/PriceList_serialization.h +66 -0
  473. hikyuu/include/hikyuu/serialization/StockTypeInfo_serialization.h +62 -0
  474. hikyuu/include/hikyuu/serialization/StockWeight_serialization.h +65 -0
  475. hikyuu/include/hikyuu/serialization/Stock_serialization.h +47 -0
  476. hikyuu/include/hikyuu/serialization/TimeDelta_serialization.h +44 -0
  477. hikyuu/include/hikyuu/serialization/TimeLineRecord_serialization.h +42 -0
  478. hikyuu/include/hikyuu/serialization/TransRecord_serialization.h +44 -0
  479. hikyuu/include/hikyuu/serialization/__init__.py +1 -0
  480. hikyuu/include/hikyuu/serialization/all.h +26 -0
  481. hikyuu/include/hikyuu/strategy/BrokerTradeManager.h +433 -0
  482. hikyuu/include/hikyuu/strategy/RunPortfolioInStrategy.h +37 -0
  483. hikyuu/include/hikyuu/strategy/RunSystemInStrategy.h +38 -0
  484. hikyuu/include/hikyuu/strategy/Strategy.h +191 -0
  485. hikyuu/include/hikyuu/strategy/__init__.py +1 -0
  486. hikyuu/include/hikyuu/trade_manage/BorrowRecord.h +91 -0
  487. hikyuu/include/hikyuu/trade_manage/CostRecord.h +67 -0
  488. hikyuu/include/hikyuu/trade_manage/FundsRecord.h +110 -0
  489. hikyuu/include/hikyuu/trade_manage/LoanRecord.h +64 -0
  490. hikyuu/include/hikyuu/trade_manage/OrderBrokerBase.h +182 -0
  491. hikyuu/include/hikyuu/trade_manage/Performance.h +80 -0
  492. hikyuu/include/hikyuu/trade_manage/PositionRecord.h +108 -0
  493. hikyuu/include/hikyuu/trade_manage/TradeCostBase.h +174 -0
  494. hikyuu/include/hikyuu/trade_manage/TradeManager.h +487 -0
  495. hikyuu/include/hikyuu/trade_manage/TradeManagerBase.h +782 -0
  496. hikyuu/include/hikyuu/trade_manage/TradeRecord.h +151 -0
  497. hikyuu/include/hikyuu/trade_manage/__init__.py +1 -0
  498. hikyuu/include/hikyuu/trade_manage/build_in.h +19 -0
  499. hikyuu/include/hikyuu/trade_manage/crt/TC_FixedA.h +45 -0
  500. hikyuu/include/hikyuu/trade_manage/crt/TC_FixedA2015.h +43 -0
  501. hikyuu/include/hikyuu/trade_manage/crt/TC_FixedA2017.h +44 -0
  502. hikyuu/include/hikyuu/trade_manage/crt/TC_TestStub.h +21 -0
  503. hikyuu/include/hikyuu/trade_manage/crt/TC_Zero.h +25 -0
  504. hikyuu/include/hikyuu/trade_manage/crt/__init__.py +1 -0
  505. hikyuu/include/hikyuu/trade_manage/crt/crtTM.h +33 -0
  506. hikyuu/include/hikyuu/trade_manage/imp/FixedA2015TradeCost.h +53 -0
  507. hikyuu/include/hikyuu/trade_manage/imp/FixedA2017TradeCost.h +56 -0
  508. hikyuu/include/hikyuu/trade_manage/imp/FixedATradeCost.h +88 -0
  509. hikyuu/include/hikyuu/trade_manage/imp/TradeCostStub.h +48 -0
  510. hikyuu/include/hikyuu/trade_manage/imp/ZeroTradeCost.h +50 -0
  511. hikyuu/include/hikyuu/trade_manage/imp/__init__.py +1 -0
  512. hikyuu/include/hikyuu/trade_sys/__init__.py +1 -0
  513. hikyuu/include/hikyuu/trade_sys/all.h +24 -0
  514. hikyuu/include/hikyuu/trade_sys/allocatefunds/AllocateFundsBase.h +229 -0
  515. hikyuu/include/hikyuu/trade_sys/allocatefunds/__init__.py +1 -0
  516. hikyuu/include/hikyuu/trade_sys/allocatefunds/build_in.h +16 -0
  517. hikyuu/include/hikyuu/trade_sys/allocatefunds/crt/AF_EqualWeight.h +25 -0
  518. hikyuu/include/hikyuu/trade_sys/allocatefunds/crt/AF_FixedWeight.h +26 -0
  519. hikyuu/include/hikyuu/trade_sys/allocatefunds/crt/AF_MultiFactor.h +21 -0
  520. hikyuu/include/hikyuu/trade_sys/allocatefunds/crt/__init__.py +1 -0
  521. hikyuu/include/hikyuu/trade_sys/allocatefunds/imp/EqualWeightAllocateFunds.h +27 -0
  522. hikyuu/include/hikyuu/trade_sys/allocatefunds/imp/FixedWeightAllocateFunds.h +28 -0
  523. hikyuu/include/hikyuu/trade_sys/allocatefunds/imp/MultiFactorAllocaterFunds.h +23 -0
  524. hikyuu/include/hikyuu/trade_sys/allocatefunds/imp/__init__.py +1 -0
  525. hikyuu/include/hikyuu/trade_sys/condition/ConditionBase.h +241 -0
  526. hikyuu/include/hikyuu/trade_sys/condition/__init__.py +1 -0
  527. hikyuu/include/hikyuu/trade_sys/condition/build_in.h +17 -0
  528. hikyuu/include/hikyuu/trade_sys/condition/crt/CN_Bool.h +22 -0
  529. hikyuu/include/hikyuu/trade_sys/condition/crt/CN_Logic.h +35 -0
  530. hikyuu/include/hikyuu/trade_sys/condition/crt/CN_Manual.h +20 -0
  531. hikyuu/include/hikyuu/trade_sys/condition/crt/CN_OPLine.h +26 -0
  532. hikyuu/include/hikyuu/trade_sys/condition/crt/__init__.py +1 -0
  533. hikyuu/include/hikyuu/trade_sys/condition/imp/BoolCondition.h +40 -0
  534. hikyuu/include/hikyuu/trade_sys/condition/imp/ManualCondition.h +23 -0
  535. hikyuu/include/hikyuu/trade_sys/condition/imp/OPLineCondition.h +44 -0
  536. hikyuu/include/hikyuu/trade_sys/condition/imp/SubCondition.h +42 -0
  537. hikyuu/include/hikyuu/trade_sys/condition/imp/__init__.py +1 -0
  538. hikyuu/include/hikyuu/trade_sys/condition/imp/logic/AddCondition.h +42 -0
  539. hikyuu/include/hikyuu/trade_sys/condition/imp/logic/AndCondition.h +42 -0
  540. hikyuu/include/hikyuu/trade_sys/condition/imp/logic/DivCondition.h +42 -0
  541. hikyuu/include/hikyuu/trade_sys/condition/imp/logic/MultiCondition.h +42 -0
  542. hikyuu/include/hikyuu/trade_sys/condition/imp/logic/OrCondition.h +42 -0
  543. hikyuu/include/hikyuu/trade_sys/condition/imp/logic/__init__.py +1 -0
  544. hikyuu/include/hikyuu/trade_sys/environment/EnvironmentBase.h +178 -0
  545. hikyuu/include/hikyuu/trade_sys/environment/__init__.py +1 -0
  546. hikyuu/include/hikyuu/trade_sys/environment/build_in.h +16 -0
  547. hikyuu/include/hikyuu/trade_sys/environment/crt/EV_Bool.h +23 -0
  548. hikyuu/include/hikyuu/trade_sys/environment/crt/EV_Manual.h +20 -0
  549. hikyuu/include/hikyuu/trade_sys/environment/crt/EV_TwoLine.h +28 -0
  550. hikyuu/include/hikyuu/trade_sys/environment/crt/__init__.py +1 -0
  551. hikyuu/include/hikyuu/trade_sys/environment/imp/BoolEnvironment.h +41 -0
  552. hikyuu/include/hikyuu/trade_sys/environment/imp/ManualEnvironment.h +23 -0
  553. hikyuu/include/hikyuu/trade_sys/environment/imp/TwoLineEnvironment.h +47 -0
  554. hikyuu/include/hikyuu/trade_sys/environment/imp/__init__.py +1 -0
  555. hikyuu/include/hikyuu/trade_sys/moneymanager/MoneyManagerBase.h +230 -0
  556. hikyuu/include/hikyuu/trade_sys/moneymanager/__init__.py +1 -0
  557. hikyuu/include/hikyuu/trade_sys/moneymanager/build_in.h +20 -0
  558. hikyuu/include/hikyuu/trade_sys/moneymanager/crt/MM_FixedCapital.h +20 -0
  559. hikyuu/include/hikyuu/trade_sys/moneymanager/crt/MM_FixedCount.h +28 -0
  560. hikyuu/include/hikyuu/trade_sys/moneymanager/crt/MM_FixedPercent.h +27 -0
  561. hikyuu/include/hikyuu/trade_sys/moneymanager/crt/MM_FixedRisk.h +20 -0
  562. hikyuu/include/hikyuu/trade_sys/moneymanager/crt/MM_FixedUnits.h +20 -0
  563. hikyuu/include/hikyuu/trade_sys/moneymanager/crt/MM_Nothing.h +24 -0
  564. hikyuu/include/hikyuu/trade_sys/moneymanager/crt/MM_WilliamsFixedRisk.h +20 -0
  565. hikyuu/include/hikyuu/trade_sys/moneymanager/crt/__init__.py +1 -0
  566. hikyuu/include/hikyuu/trade_sys/moneymanager/imp/FixedCapitalMoneyManager.h +28 -0
  567. hikyuu/include/hikyuu/trade_sys/moneymanager/imp/FixedCountMoneyManager.h +38 -0
  568. hikyuu/include/hikyuu/trade_sys/moneymanager/imp/FixedPercentMoneyManager.h +34 -0
  569. hikyuu/include/hikyuu/trade_sys/moneymanager/imp/FixedRiskMoneyManager.h +28 -0
  570. hikyuu/include/hikyuu/trade_sys/moneymanager/imp/FixedUnitsMoneyManager.h +28 -0
  571. hikyuu/include/hikyuu/trade_sys/moneymanager/imp/NotMoneyManager.h +30 -0
  572. hikyuu/include/hikyuu/trade_sys/moneymanager/imp/WilliamsFixedRiskMoneyManager.h +28 -0
  573. hikyuu/include/hikyuu/trade_sys/moneymanager/imp/__init__.py +1 -0
  574. hikyuu/include/hikyuu/trade_sys/multifactor/MultiFactorBase.h +275 -0
  575. hikyuu/include/hikyuu/trade_sys/multifactor/ScoreRecord.h +51 -0
  576. hikyuu/include/hikyuu/trade_sys/multifactor/__init__.py +1 -0
  577. hikyuu/include/hikyuu/trade_sys/multifactor/build_in.h +12 -0
  578. hikyuu/include/hikyuu/trade_sys/multifactor/crt/MF_EqualWeight.h +29 -0
  579. hikyuu/include/hikyuu/trade_sys/multifactor/crt/MF_ICIRWeight.h +30 -0
  580. hikyuu/include/hikyuu/trade_sys/multifactor/crt/MF_ICWeight.h +30 -0
  581. hikyuu/include/hikyuu/trade_sys/multifactor/crt/__init__.py +1 -0
  582. hikyuu/include/hikyuu/trade_sys/multifactor/imp/EqualWeightMultiFactor.h +25 -0
  583. hikyuu/include/hikyuu/trade_sys/multifactor/imp/ICIRMultiFactor.h +27 -0
  584. hikyuu/include/hikyuu/trade_sys/multifactor/imp/ICMultiFactor.h +27 -0
  585. hikyuu/include/hikyuu/trade_sys/multifactor/imp/__init__.py +1 -0
  586. hikyuu/include/hikyuu/trade_sys/portfolio/Portfolio.h +256 -0
  587. hikyuu/include/hikyuu/trade_sys/portfolio/__init__.py +1 -0
  588. hikyuu/include/hikyuu/trade_sys/portfolio/build_in.h +14 -0
  589. hikyuu/include/hikyuu/trade_sys/portfolio/crt/PF_Simple.h +23 -0
  590. hikyuu/include/hikyuu/trade_sys/portfolio/crt/__init__.py +1 -0
  591. hikyuu/include/hikyuu/trade_sys/portfolio/imp/__init__.py +1 -0
  592. hikyuu/include/hikyuu/trade_sys/profitgoal/ProfitGoalBase.h +189 -0
  593. hikyuu/include/hikyuu/trade_sys/profitgoal/__init__.py +1 -0
  594. hikyuu/include/hikyuu/trade_sys/profitgoal/build_in.h +16 -0
  595. hikyuu/include/hikyuu/trade_sys/profitgoal/crt/PG_FixedHoldDays.h +26 -0
  596. hikyuu/include/hikyuu/trade_sys/profitgoal/crt/PG_FixedPercent.h +25 -0
  597. hikyuu/include/hikyuu/trade_sys/profitgoal/crt/PG_NoGoal.h +24 -0
  598. hikyuu/include/hikyuu/trade_sys/profitgoal/crt/__init__.py +1 -0
  599. hikyuu/include/hikyuu/trade_sys/profitgoal/imp/FixedHoldDays.h +29 -0
  600. hikyuu/include/hikyuu/trade_sys/profitgoal/imp/FixedPercentProfitGoal.h +28 -0
  601. hikyuu/include/hikyuu/trade_sys/profitgoal/imp/NoGoalProfitGoal.h +27 -0
  602. hikyuu/include/hikyuu/trade_sys/profitgoal/imp/__init__.py +1 -0
  603. hikyuu/include/hikyuu/trade_sys/selector/SelectorBase.h +245 -0
  604. hikyuu/include/hikyuu/trade_sys/selector/SystemWeight.h +70 -0
  605. hikyuu/include/hikyuu/trade_sys/selector/__init__.py +1 -0
  606. hikyuu/include/hikyuu/trade_sys/selector/build_in.h +18 -0
  607. hikyuu/include/hikyuu/trade_sys/selector/crt/SE_Fixed.h +38 -0
  608. hikyuu/include/hikyuu/trade_sys/selector/crt/SE_Logic.h +43 -0
  609. hikyuu/include/hikyuu/trade_sys/selector/crt/SE_MultiFactor.h +40 -0
  610. hikyuu/include/hikyuu/trade_sys/selector/crt/SE_Optimal.h +26 -0
  611. hikyuu/include/hikyuu/trade_sys/selector/crt/SE_Signal.h +30 -0
  612. hikyuu/include/hikyuu/trade_sys/selector/crt/__init__.py +1 -0
  613. hikyuu/include/hikyuu/trade_sys/selector/imp/FixedSelector.h +28 -0
  614. hikyuu/include/hikyuu/trade_sys/selector/imp/MultiFactorSelector.h +52 -0
  615. hikyuu/include/hikyuu/trade_sys/selector/imp/SignalSelector.h +30 -0
  616. hikyuu/include/hikyuu/trade_sys/selector/imp/__init__.py +1 -0
  617. hikyuu/include/hikyuu/trade_sys/selector/imp/logic/OperatorAddSelector.h +19 -0
  618. hikyuu/include/hikyuu/trade_sys/selector/imp/logic/OperatorAddValueSelector.h +19 -0
  619. hikyuu/include/hikyuu/trade_sys/selector/imp/logic/OperatorDivSelector.h +19 -0
  620. hikyuu/include/hikyuu/trade_sys/selector/imp/logic/OperatorDivValueSelector.h +19 -0
  621. hikyuu/include/hikyuu/trade_sys/selector/imp/logic/OperatorInvertDivValueSelector.h +19 -0
  622. hikyuu/include/hikyuu/trade_sys/selector/imp/logic/OperatorInvertSubValueSelector.h +19 -0
  623. hikyuu/include/hikyuu/trade_sys/selector/imp/logic/OperatorMulSelector.h +19 -0
  624. hikyuu/include/hikyuu/trade_sys/selector/imp/logic/OperatorMulValueSelector.h +19 -0
  625. hikyuu/include/hikyuu/trade_sys/selector/imp/logic/OperatorSelector.h +108 -0
  626. hikyuu/include/hikyuu/trade_sys/selector/imp/logic/OperatorSubSelector.h +19 -0
  627. hikyuu/include/hikyuu/trade_sys/selector/imp/logic/OperatorSubValueSelector.h +19 -0
  628. hikyuu/include/hikyuu/trade_sys/selector/imp/logic/OperatorValueSelector.h +94 -0
  629. hikyuu/include/hikyuu/trade_sys/selector/imp/logic/__init__.py +1 -0
  630. hikyuu/include/hikyuu/trade_sys/selector/imp/optimal/MaxFundsOptimalSelector.h +27 -0
  631. hikyuu/include/hikyuu/trade_sys/selector/imp/optimal/OptimalSelectorBase.h +86 -0
  632. hikyuu/include/hikyuu/trade_sys/selector/imp/optimal/PerformanceOptimalSelector.h +42 -0
  633. hikyuu/include/hikyuu/trade_sys/selector/imp/optimal/__init__.py +1 -0
  634. hikyuu/include/hikyuu/trade_sys/signal/SignalBase.h +249 -0
  635. hikyuu/include/hikyuu/trade_sys/signal/__init__.py +1 -0
  636. hikyuu/include/hikyuu/trade_sys/signal/build_in.h +22 -0
  637. hikyuu/include/hikyuu/trade_sys/signal/crt/SG_AllwaysBuy.h +20 -0
  638. hikyuu/include/hikyuu/trade_sys/signal/crt/SG_Band.h +37 -0
  639. hikyuu/include/hikyuu/trade_sys/signal/crt/SG_Bool.h +28 -0
  640. hikyuu/include/hikyuu/trade_sys/signal/crt/SG_Cross.h +28 -0
  641. hikyuu/include/hikyuu/trade_sys/signal/crt/SG_CrossGold.h +29 -0
  642. hikyuu/include/hikyuu/trade_sys/signal/crt/SG_Cycle.h +20 -0
  643. hikyuu/include/hikyuu/trade_sys/signal/crt/SG_Flex.h +29 -0
  644. hikyuu/include/hikyuu/trade_sys/signal/crt/SG_Manual.h +20 -0
  645. hikyuu/include/hikyuu/trade_sys/signal/crt/SG_Single.h +56 -0
  646. hikyuu/include/hikyuu/trade_sys/signal/crt/__init__.py +1 -0
  647. hikyuu/include/hikyuu/trade_sys/signal/imp/AllwaysBuySignal.h +25 -0
  648. hikyuu/include/hikyuu/trade_sys/signal/imp/BandSignal.h +46 -0
  649. hikyuu/include/hikyuu/trade_sys/signal/imp/BandSignal2.h +47 -0
  650. hikyuu/include/hikyuu/trade_sys/signal/imp/BoolSignal.h +46 -0
  651. hikyuu/include/hikyuu/trade_sys/signal/imp/CrossGoldSignal.h +46 -0
  652. hikyuu/include/hikyuu/trade_sys/signal/imp/CrossSignal.h +46 -0
  653. hikyuu/include/hikyuu/trade_sys/signal/imp/CycleSignal.h +25 -0
  654. hikyuu/include/hikyuu/trade_sys/signal/imp/ManualSignal.h +23 -0
  655. hikyuu/include/hikyuu/trade_sys/signal/imp/SingleSignal.h +45 -0
  656. hikyuu/include/hikyuu/trade_sys/signal/imp/SingleSignal2.h +45 -0
  657. hikyuu/include/hikyuu/trade_sys/signal/imp/__init__.py +1 -0
  658. hikyuu/include/hikyuu/trade_sys/slippage/SlippageBase.h +170 -0
  659. hikyuu/include/hikyuu/trade_sys/slippage/__init__.py +1 -0
  660. hikyuu/include/hikyuu/trade_sys/slippage/build_in.h +15 -0
  661. hikyuu/include/hikyuu/trade_sys/slippage/crt/SP_FixedPercent.h +26 -0
  662. hikyuu/include/hikyuu/trade_sys/slippage/crt/SP_FixedValue.h +26 -0
  663. hikyuu/include/hikyuu/trade_sys/slippage/crt/__init__.py +1 -0
  664. hikyuu/include/hikyuu/trade_sys/slippage/imp/FixedPercentSlippage.h +28 -0
  665. hikyuu/include/hikyuu/trade_sys/slippage/imp/FixedValueSlippage.h +28 -0
  666. hikyuu/include/hikyuu/trade_sys/slippage/imp/__init__.py +1 -0
  667. hikyuu/include/hikyuu/trade_sys/stoploss/StoplossBase.h +199 -0
  668. hikyuu/include/hikyuu/trade_sys/stoploss/__init__.py +1 -0
  669. hikyuu/include/hikyuu/trade_sys/stoploss/build_in.h +16 -0
  670. hikyuu/include/hikyuu/trade_sys/stoploss/crt/ST_FixedPercent.h +25 -0
  671. hikyuu/include/hikyuu/trade_sys/stoploss/crt/ST_Indicator.h +21 -0
  672. hikyuu/include/hikyuu/trade_sys/stoploss/crt/ST_Saftyloss.h +37 -0
  673. hikyuu/include/hikyuu/trade_sys/stoploss/crt/__init__.py +1 -0
  674. hikyuu/include/hikyuu/trade_sys/stoploss/imp/FixedPercentStoploss.h +30 -0
  675. hikyuu/include/hikyuu/trade_sys/stoploss/imp/IndicatorStoploss.h +50 -0
  676. hikyuu/include/hikyuu/trade_sys/stoploss/imp/__init__.py +1 -0
  677. hikyuu/include/hikyuu/trade_sys/system/System.h +639 -0
  678. hikyuu/include/hikyuu/trade_sys/system/SystemPart.h +54 -0
  679. hikyuu/include/hikyuu/trade_sys/system/TradeRequest.h +94 -0
  680. hikyuu/include/hikyuu/trade_sys/system/__init__.py +1 -0
  681. hikyuu/include/hikyuu/trade_sys/system/build_in.h +15 -0
  682. hikyuu/include/hikyuu/trade_sys/system/crt/SYS_Simple.h +50 -0
  683. hikyuu/include/hikyuu/trade_sys/system/crt/SYS_WalkForward.h +27 -0
  684. hikyuu/include/hikyuu/trade_sys/system/crt/__init__.py +1 -0
  685. hikyuu/include/hikyuu/trade_sys/system/imp/DelegateSystem.h +51 -0
  686. hikyuu/include/hikyuu/trade_sys/system/imp/WalkForwardSystem.h +70 -0
  687. hikyuu/include/hikyuu/trade_sys/system/imp/WalkForwardTradeManager.h +465 -0
  688. hikyuu/include/hikyuu/trade_sys/system/imp/__init__.py +1 -0
  689. hikyuu/include/hikyuu/utilities/ConnectPool.h +163 -0
  690. hikyuu/include/hikyuu/utilities/FilterNode.h +267 -0
  691. hikyuu/include/hikyuu/utilities/LRUCache11.h +230 -0
  692. hikyuu/include/hikyuu/utilities/Log.h +411 -0
  693. hikyuu/include/hikyuu/utilities/Null.h +143 -0
  694. hikyuu/include/hikyuu/utilities/Parameter.h +511 -0
  695. hikyuu/include/hikyuu/utilities/ResourcePool.h +636 -0
  696. hikyuu/include/hikyuu/utilities/SpendTimer.h +305 -0
  697. hikyuu/include/hikyuu/utilities/TimerManager.h +552 -0
  698. hikyuu/include/hikyuu/utilities/__init__.py +1 -0
  699. hikyuu/include/hikyuu/utilities/any_to_string.h +142 -0
  700. hikyuu/include/hikyuu/utilities/arithmetic.h +401 -0
  701. hikyuu/include/hikyuu/utilities/base64.h +52 -0
  702. hikyuu/include/hikyuu/utilities/config.h +41 -0
  703. hikyuu/include/hikyuu/utilities/cppdef.h +25 -0
  704. hikyuu/include/hikyuu/utilities/datetime/Datetime.h +438 -0
  705. hikyuu/include/hikyuu/utilities/datetime/TimeDelta.h +343 -0
  706. hikyuu/include/hikyuu/utilities/datetime/__init__.py +1 -0
  707. hikyuu/include/hikyuu/utilities/db_connect/AutoTransAction.h +124 -0
  708. hikyuu/include/hikyuu/utilities/db_connect/DBCondition.h +248 -0
  709. hikyuu/include/hikyuu/utilities/db_connect/DBConnect.h +30 -0
  710. hikyuu/include/hikyuu/utilities/db_connect/DBConnectBase.h +658 -0
  711. hikyuu/include/hikyuu/utilities/db_connect/DBUpgrade.h +28 -0
  712. hikyuu/include/hikyuu/utilities/db_connect/SQLException.h +62 -0
  713. hikyuu/include/hikyuu/utilities/db_connect/SQLResultSet.h +248 -0
  714. hikyuu/include/hikyuu/utilities/db_connect/SQLStatementBase.h +305 -0
  715. hikyuu/include/hikyuu/utilities/db_connect/TableMacro.h +2579 -0
  716. hikyuu/include/hikyuu/utilities/db_connect/__init__.py +1 -0
  717. hikyuu/include/hikyuu/utilities/db_connect/mysql/MySQLConnect.h +56 -0
  718. hikyuu/include/hikyuu/utilities/db_connect/mysql/MySQLStatement.h +87 -0
  719. hikyuu/include/hikyuu/utilities/db_connect/mysql/__init__.py +1 -0
  720. hikyuu/include/hikyuu/utilities/db_connect/sqlite/SQLiteConnect.h +89 -0
  721. hikyuu/include/hikyuu/utilities/db_connect/sqlite/SQLiteStatement.h +71 -0
  722. hikyuu/include/hikyuu/utilities/db_connect/sqlite/SQLiteUtil.h +80 -0
  723. hikyuu/include/hikyuu/utilities/db_connect/sqlite/__init__.py +1 -0
  724. hikyuu/include/hikyuu/utilities/exception.h +52 -0
  725. hikyuu/include/hikyuu/utilities/http_client/HttpClient.h +229 -0
  726. hikyuu/include/hikyuu/utilities/http_client/__init__.py +1 -0
  727. hikyuu/include/hikyuu/utilities/http_client/nng_wrap.h +517 -0
  728. hikyuu/include/hikyuu/utilities/http_client/url.h +25 -0
  729. hikyuu/include/hikyuu/utilities/ini_parser/IniParser.h +104 -0
  730. hikyuu/include/hikyuu/utilities/ini_parser/__init__.py +1 -0
  731. hikyuu/include/hikyuu/utilities/md5.h +41 -0
  732. hikyuu/include/hikyuu/utilities/mo/__init__.py +1 -0
  733. hikyuu/include/hikyuu/utilities/mo/mo.h +48 -0
  734. hikyuu/include/hikyuu/utilities/mo/moFileReader.h +836 -0
  735. hikyuu/include/hikyuu/utilities/node/NodeClient.h +175 -0
  736. hikyuu/include/hikyuu/utilities/node/NodeError.h +66 -0
  737. hikyuu/include/hikyuu/utilities/node/NodeMessage.h +80 -0
  738. hikyuu/include/hikyuu/utilities/node/NodeServer.h +246 -0
  739. hikyuu/include/hikyuu/utilities/node/__init__.py +1 -0
  740. hikyuu/include/hikyuu/utilities/os.h +102 -0
  741. hikyuu/include/hikyuu/utilities/osdef.h +159 -0
  742. hikyuu/include/hikyuu/utilities/runtimeinfo.h +35 -0
  743. hikyuu/include/hikyuu/utilities/snowflake.h +110 -0
  744. hikyuu/include/hikyuu/utilities/string_view.h +70 -0
  745. hikyuu/include/hikyuu/utilities/thread/FuncWrapper.h +85 -0
  746. hikyuu/include/hikyuu/utilities/thread/InterruptFlag.h +30 -0
  747. hikyuu/include/hikyuu/utilities/thread/MQStealQueue.h +112 -0
  748. hikyuu/include/hikyuu/utilities/thread/MQStealThreadPool.h +315 -0
  749. hikyuu/include/hikyuu/utilities/thread/MQThreadPool.h +275 -0
  750. hikyuu/include/hikyuu/utilities/thread/StealThreadPool.h +309 -0
  751. hikyuu/include/hikyuu/utilities/thread/ThreadPool.h +231 -0
  752. hikyuu/include/hikyuu/utilities/thread/ThreadSafeQueue.h +101 -0
  753. hikyuu/include/hikyuu/utilities/thread/WorkStealQueue.h +105 -0
  754. hikyuu/include/hikyuu/utilities/thread/__init__.py +1 -0
  755. hikyuu/include/hikyuu/utilities/thread/algorithm.h +110 -0
  756. hikyuu/include/hikyuu/utilities/thread/thread.h +10 -0
  757. hikyuu/include/hikyuu/version.h +24 -0
  758. hikyuu/indicator/__init__.py +29 -0
  759. hikyuu/indicator/indicator.py +157 -0
  760. hikyuu/indicator/pyind.py +47 -0
  761. hikyuu/indicator/talib_wrap.py +1264 -0
  762. hikyuu/interactive.py +331 -0
  763. hikyuu/setup.py +104 -0
  764. hikyuu/shell/__init__.py +0 -0
  765. hikyuu/shell/cmdserver.py +126 -0
  766. hikyuu/shell/hkucmd.py +110 -0
  767. hikyuu/shell/hkushell.py +20 -0
  768. hikyuu/sqlite3.dll +0 -0
  769. hikyuu/strategy/__init__.py +2 -0
  770. hikyuu/strategy/strategy_demo1.py +54 -0
  771. hikyuu/strategy/strategy_demo2.py +47 -0
  772. hikyuu/strategy/strategy_demo3.py +24 -0
  773. hikyuu/test/AllocateFunds.py +25 -0
  774. hikyuu/test/Condition.py +95 -0
  775. hikyuu/test/Datetime.py +61 -0
  776. hikyuu/test/Environment.py +88 -0
  777. hikyuu/test/Indicator.py +233 -0
  778. hikyuu/test/KData.py +64 -0
  779. hikyuu/test/MarketInfo.py +26 -0
  780. hikyuu/test/MoneyManager.py +88 -0
  781. hikyuu/test/Parameter.py +62 -0
  782. hikyuu/test/ProfitGoal.py +83 -0
  783. hikyuu/test/Signal.py +160 -0
  784. hikyuu/test/Slippage.py +88 -0
  785. hikyuu/test/Stock.py +127 -0
  786. hikyuu/test/StockTypeInfo.py +47 -0
  787. hikyuu/test/Stoploss.py +86 -0
  788. hikyuu/test/TradeCost.py +71 -0
  789. hikyuu/test/__init__.py +0 -0
  790. hikyuu/test/test.py +63 -0
  791. hikyuu/test/test_init.py +36 -0
  792. hikyuu/tools/__init__.py +1 -0
  793. hikyuu/tools/copy_file.py +16 -0
  794. hikyuu/tools/delete_index.py +50 -0
  795. hikyuu/tools/fenge.py +139 -0
  796. hikyuu/tools/h5_data_clear.py +163 -0
  797. hikyuu/tools/mysql_clear_last_day_data.py +61 -0
  798. hikyuu/tools/update_block_info.py +168 -0
  799. hikyuu/trade_manage/__init__.py +30 -0
  800. hikyuu/trade_manage/broker.py +95 -0
  801. hikyuu/trade_manage/broker_easytrader.py +63 -0
  802. hikyuu/trade_manage/broker_mail.py +101 -0
  803. hikyuu/trade_manage/trade.py +111 -0
  804. hikyuu/trade_sys/__init__.py +27 -0
  805. hikyuu/trade_sys/trade_sys.py +251 -0
  806. hikyuu/util/__init__.py +49 -0
  807. hikyuu/util/check.py +153 -0
  808. hikyuu/util/mylog.py +264 -0
  809. hikyuu/util/notebook.py +47 -0
  810. hikyuu/util/singleton.py +29 -0
  811. hikyuu/util/slice.py +43 -0
  812. hikyuu/util/timeout.py +83 -0
  813. hikyuu/vcruntime140.dll +0 -0
  814. hikyuu/vcruntime140_1.dll +0 -0
  815. hikyuu-2.2.2.dist-info/LICENSE +201 -0
  816. hikyuu-2.2.2.dist-info/METADATA +127 -0
  817. hikyuu-2.2.2.dist-info/RECORD +820 -0
  818. hikyuu-2.2.2.dist-info/WHEEL +5 -0
  819. hikyuu-2.2.2.dist-info/entry_points.txt +3 -0
  820. hikyuu-2.2.2.dist-info/top_level.txt +112 -0
@@ -0,0 +1,832 @@
1
+ # -*- coding: utf8 -*-
2
+ # cp936
3
+ """
4
+ 交互模式下绘制相关图形,如K线图,美式K线图
5
+ """
6
+ import sys
7
+ import datetime
8
+ import logging
9
+ import numpy as np
10
+ import matplotlib
11
+ from pylab import Rectangle, gca, figure, ylabel, axes, draw
12
+ from matplotlib import rcParams
13
+ from matplotlib.font_manager import FontManager, _log as fm_logger
14
+ from matplotlib.lines import Line2D, TICKLEFT, TICKRIGHT
15
+ from matplotlib.ticker import FuncFormatter, FixedLocator
16
+
17
+ from hikyuu import *
18
+
19
+ from .common import get_draw_title
20
+
21
+
22
+ def set_mpl_params():
23
+ '''设置交互及中文环境参数'''
24
+ if in_interactive_session():
25
+ rcParams['interactive'] = True
26
+
27
+ rcParams['font.family'] = 'sans-serif'
28
+ rcParams['axes.unicode_minus'] = False
29
+
30
+ expected_fonts = ['Microsoft YaHei', 'SimSun', 'SimHei', 'Source Han Sans CN', 'Noto Sans CJK JP']
31
+ current_fonts = matplotlib.rcParams['font.sans-serif']
32
+ for font in expected_fonts:
33
+ if font in current_fonts:
34
+ return
35
+
36
+ with LoggingContext(fm_logger, level=logging.WARNING):
37
+ all_fonts = [f.name for f in FontManager().ttflist]
38
+ for font in expected_fonts:
39
+ if font in all_fonts:
40
+ current_fonts.insert(0, font)
41
+ break
42
+ matplotlib.rcParams['font.sans-serif'] = current_fonts
43
+
44
+
45
+ def create_one_axes_figure(figsize=(10, 6)):
46
+ """生成一个仅含有1个坐标轴的figure,并返回其坐标轴对象
47
+
48
+ :param figsize: (宽, 高)
49
+ :return: ax
50
+ """
51
+ rect1 = [0.05, 0.05, 0.9, 0.90]
52
+ fg = figure(figsize=figsize)
53
+ ax1 = fg.add_axes(rect1)
54
+ return ax1
55
+
56
+
57
+ def create_two_axes_figure(figsize=(10, 8)):
58
+ """生成一个含有2个坐标轴的figure,并返回坐标轴列表
59
+
60
+ :param figsize: (宽, 高)
61
+ :return: (ax1, ax2)
62
+ """
63
+ rect1 = [0.05, 0.35, 0.9, 0.60]
64
+ rect2 = [0.05, 0.05, 0.9, 0.30]
65
+
66
+ fg = figure(figsize=figsize)
67
+ ax1 = fg.add_axes(rect1)
68
+ ax2 = fg.add_axes(rect2, sharex=ax1)
69
+
70
+ return ax1, ax2
71
+
72
+
73
+ def create_three_axes_figure(figsize=(10, 8)):
74
+ """生成一个含有3个坐标轴的figure,并返回坐标轴列表
75
+
76
+ :param figsize: (宽, 高)
77
+ :return: (ax1, ax2, ax3)
78
+ """
79
+ rect1 = [0.05, 0.45, 0.9, 0.50]
80
+ rect2 = [0.05, 0.25, 0.9, 0.20]
81
+ rect3 = [0.05, 0.05, 0.9, 0.20]
82
+
83
+ fg = figure(figsize=figsize)
84
+ ax1 = fg.add_axes(rect1)
85
+ ax2 = fg.add_axes(rect2, sharex=ax1)
86
+ ax3 = fg.add_axes(rect3, sharex=ax1)
87
+
88
+ return ax1, ax2, ax3
89
+
90
+
91
+ def create_four_axes_figure(figsize=(10, 8)):
92
+ """生成一个含有4个坐标轴的figure,并返回坐标轴列表
93
+
94
+ :param figsize: (宽, 高)
95
+ :return: (ax1, ax2, ax3, ax4)
96
+ """
97
+ rect1 = [0.05, 0.50, 0.9, 0.45]
98
+ rect2 = [0.05, 0.35, 0.9, 0.15]
99
+ rect3 = [0.05, 0.20, 0.9, 0.15]
100
+ rect4 = [0.05, 0.05, 0.9, 0.15]
101
+
102
+ fg = figure(figsize=figsize)
103
+ ax1 = fg.add_axes(rect1)
104
+ ax2 = fg.add_axes(rect2, sharex=ax1)
105
+ ax3 = fg.add_axes(rect3, sharex=ax1)
106
+ ax4 = fg.add_axes(rect4, sharex=ax1)
107
+
108
+ return ax1, ax2, ax3, ax4
109
+
110
+
111
+ def create_figure(n=1, figsize=(10, 8)):
112
+ """生成含有指定坐标轴数量的窗口,最大只支持4个坐标轴。
113
+
114
+ :param int n: 坐标轴数量
115
+ :param figsize: (宽, 高)
116
+ :return: (ax1, ax2, ...) 根据指定的坐标轴数量而定,超出[1,4]个坐标轴时,返回None
117
+ """
118
+ if n == 1:
119
+ return create_one_axes_figure(figsize)
120
+ elif n == 2:
121
+ return create_two_axes_figure(figsize)
122
+ elif n == 3:
123
+ return create_three_axes_figure(figsize)
124
+ elif n == 4:
125
+ return create_four_axes_figure(figsize)
126
+ else:
127
+ print("Max support axes number is 4!")
128
+ return None
129
+
130
+
131
+ class StockFuncFormatter(object):
132
+ """用于坐标轴显示日期
133
+ 关于matplotlib中FuncFormatter的使用方法,请参见:
134
+ http://matplotlib.sourceforge.net/examples/api/date_index_formatter.html
135
+ """
136
+
137
+ def __init__(self, ix2date):
138
+ self.__ix2date = ix2date
139
+
140
+ def __call__(self, x, pos=None): # IGNORE:W0613
141
+ result = ''
142
+ ix = int(x)
143
+ if ix in self.__ix2date:
144
+ result = self.__ix2date[ix]
145
+ return result
146
+
147
+
148
+ def getDayLocatorAndFormatter(dates):
149
+ """获取显示日线时使用的Major Locator和Major Formatter"""
150
+ sep = int(len(dates) / 10)
151
+ loc = [
152
+ (i, str(d) if (i != (len(dates) - 1)) and (i % sep != 0) else "{}-{}-{}".format(d.year, d.month, d.day))
153
+ for i, d in enumerate(dates)
154
+ ]
155
+ fixed_loc = [i for i in range(len(dates)) if (i == (len(dates) - 1)) or (i != 0 and i % sep == 0)]
156
+
157
+ month_loc = FixedLocator(fixed_loc)
158
+ month_fm = FuncFormatter(StockFuncFormatter(dict(loc)))
159
+ return month_loc, month_fm
160
+
161
+
162
+ def getMinLocatorAndFormatter(dates):
163
+ """获取显示分钟线时使用的Major Locator和Major Formatter"""
164
+ sep = len(dates) / 5
165
+ loc = [
166
+ (i, str(d) if i % sep != 0 else "{}-{}-{} {}:{}".format(d.year, d.month, d.day, d.hour, d.minute))
167
+ for i, d in enumerate(dates)
168
+ ]
169
+ fixed_loc = [i for i in range(len(dates)) if i != 0 and i % sep == 0]
170
+
171
+ month_loc = FixedLocator(fixed_loc)
172
+ month_fm = FuncFormatter(StockFuncFormatter(dict(loc)))
173
+ return month_loc, month_fm
174
+
175
+
176
+ def ax_set_locator_formatter(axes, dates, typ):
177
+ """ 设置指定坐标轴的日期显示,根据指定的K线类型优化X轴坐标显示
178
+
179
+ :param axes: 指定的坐标轴
180
+ :param dates: Datetime构成可迭代序列
181
+ :param Query.KType typ: K线类型
182
+ """
183
+ major_loc, major_fm = None, None
184
+ if typ == Query.DAY:
185
+ major_loc, major_fm = getDayLocatorAndFormatter(dates)
186
+ elif typ == Query.WEEK:
187
+ major_loc, major_fm = getDayLocatorAndFormatter(dates)
188
+ elif typ == Query.MONTH:
189
+ major_loc, major_fm = getDayLocatorAndFormatter(dates)
190
+ elif typ == Query.QUARTER:
191
+ major_loc, major_fm = getDayLocatorAndFormatter(dates)
192
+ elif typ == Query.HALFYEAR:
193
+ major_loc, major_fm = getDayLocatorAndFormatter(dates)
194
+ elif typ == Query.YEAR:
195
+ major_loc, major_fm = getDayLocatorAndFormatter(dates)
196
+ else:
197
+ major_loc, major_fm = getMinLocatorAndFormatter(dates)
198
+
199
+ axes.xaxis.set_major_locator(major_loc)
200
+ axes.xaxis.set_major_formatter(major_fm)
201
+
202
+
203
+ def adjust_axes_show(axeslist):
204
+ """用于调整上下紧密相连的坐标轴显示时,其上一坐标轴最小值刻度和下一坐标轴最大值刻度
205
+ 显示重叠的问题。
206
+
207
+ :param axeslist: 上下相连的坐标轴列表 (ax1,ax2,...)
208
+ """
209
+ for ax in axeslist[:-1]:
210
+ for label in ax.get_xticklabels():
211
+ label.set_visible(False)
212
+ ylabels = ax.get_yticklabels()
213
+ ylabels[0].set_visible(False)
214
+
215
+
216
+ def kplot(kdata, new=True, axes=None, colorup='r', colordown='g'):
217
+ """绘制K线图
218
+
219
+ :param KData kdata: K线数据
220
+ :param bool new: 是否在新窗口中显示,只在没有指定axes时生效
221
+ :param axes: 指定的坐标轴
222
+ :param colorup: the color of the rectangle where close >= open
223
+ :param colordown: the color of the rectangle where close < open
224
+ """
225
+ if not kdata:
226
+ print("kdata is None")
227
+ return
228
+
229
+ if not axes:
230
+ axes = create_figure() if new else gca()
231
+
232
+ alpha = 1.0
233
+ width = 0.6
234
+ OFFSET = width / 2.0
235
+ rfcolor = matplotlib.rcParams['axes.facecolor']
236
+ for i in range(len(kdata)):
237
+ record = kdata[i]
238
+ open, high, low, close = record.open, record.high, record.low, record.close
239
+ if close >= open:
240
+ color = colorup
241
+ lower = open
242
+ height = close - open
243
+ rect = Rectangle(xy=(i - OFFSET, lower), width=width, height=height, facecolor=rfcolor, edgecolor=color)
244
+ else:
245
+ color = colordown
246
+ lower = close
247
+ height = open - close
248
+ rect = Rectangle(xy=(i - OFFSET, lower), width=width, height=height, facecolor=color, edgecolor=color)
249
+
250
+ vline1 = Line2D(xdata=(i, i), ydata=(low, lower), color=color, linewidth=0.5, antialiased=True)
251
+ vline2 = Line2D(xdata=(i, i), ydata=(lower + height, high), color=color, linewidth=0.5, antialiased=True)
252
+ rect.set_alpha(alpha)
253
+
254
+ axes.add_line(vline1)
255
+ axes.add_line(vline2)
256
+ axes.add_patch(rect)
257
+
258
+ title = get_draw_title(kdata)
259
+ axes.set_title(title)
260
+ last_record = kdata[-1]
261
+ color = 'r' if last_record.close > kdata[-2].close else 'g'
262
+ text = u'%s 开:%.2f 高:%.2f 低:%.2f 收:%.2f 涨幅:%.2f%%' % (
263
+ last_record.datetime.number / 10000, last_record.open, last_record.high, last_record.low, last_record.close,
264
+ 100 * (last_record.close - kdata[-2].close) / kdata[-2].close
265
+ )
266
+ axes.text(
267
+ 0.99, 0.97, text, horizontalalignment='right', verticalalignment='top', transform=axes.transAxes, color=color
268
+ )
269
+
270
+ axes.autoscale_view()
271
+ axes.set_xlim(-1, len(kdata) + 1)
272
+ ax_set_locator_formatter(axes, kdata.get_datetime_list(), kdata.get_query().ktype)
273
+ # draw()
274
+
275
+
276
+ def mkplot(kdata, new=True, axes=None, colorup='r', colordown='g', ticksize=3):
277
+ """绘制美式K线图
278
+
279
+ :param KData kdata: K线数据
280
+ :param bool new: 是否在新窗口中显示,只在没有指定axes时生效
281
+ :param axes: 指定的坐标轴
282
+ :param colorup: the color of the lines where close >= open
283
+ :param colordown: the color of the lines where close < open
284
+ :param ticksize: open/close tick marker in points
285
+ """
286
+ if not kdata:
287
+ print("kdata is None")
288
+ return
289
+
290
+ if not axes:
291
+ axes = create_figure() if new else gca()
292
+
293
+ for t in range(len(kdata)):
294
+ record = kdata[t]
295
+ open, high, low, close = record.open, record.high, record.low, record.close
296
+ color = colorup if close >= open else colordown
297
+
298
+ vline = Line2D(xdata=(t, t), ydata=(low, high), color=color, antialiased=False)
299
+ oline = Line2D(
300
+ xdata=(t, t), ydata=(open, open), color=color, antialiased=False, marker=TICKLEFT, markersize=ticksize
301
+ )
302
+ cline = Line2D(
303
+ xdata=(t, t), ydata=(close, close), color=color, antialiased=False, markersize=ticksize, marker=TICKRIGHT
304
+ )
305
+
306
+ axes.add_line(vline)
307
+ axes.add_line(oline)
308
+ axes.add_line(cline)
309
+
310
+ title = get_draw_title(kdata)
311
+ axes.set_title(title)
312
+ last_record = kdata[-1]
313
+ color = 'r' if last_record.close > kdata[-2].close else 'g'
314
+ text = u'%s 开:%.2f 高:%.2f 低:%.2f 收:%.2f' % (
315
+ last_record.datetime.number / 10000, last_record.open, last_record.high, last_record.low, last_record.close
316
+ )
317
+ axes.text(
318
+ 0.99, 0.97, text, horizontalalignment='right', verticalalignment='top', transform=axes.transAxes, color=color
319
+ )
320
+
321
+ axes.autoscale_view()
322
+ axes.set_xlim(-1, len(kdata) + 1)
323
+ ax_set_locator_formatter(axes, kdata.get_datetime_list(), kdata.get_query().ktype)
324
+ # draw()
325
+
326
+
327
+ def iplot(
328
+ indicator,
329
+ new=True,
330
+ axes=None,
331
+ kref=None,
332
+ legend_on=False,
333
+ text_on=False,
334
+ text_color='k',
335
+ zero_on=False,
336
+ label=None,
337
+ *args,
338
+ **kwargs
339
+ ):
340
+ """绘制indicator曲线
341
+
342
+ :param Indicator indicator: indicator实例
343
+ :param axes: 指定的坐标轴
344
+ :param new: 是否在新窗口中显示,只在没有指定axes时生效
345
+ :param kref: 参考的K线数据,以便绘制日期X坐标
346
+ :param legend_on: 是否打开图例
347
+ :param text_on: 是否在左上角显示指标名称及其参数
348
+ :param text_color: 指标名称解释文字的颜色,默认为黑色
349
+ :param zero_on: 是否需要在y=0轴上绘制一条直线
350
+ :param str label: label显示文字信息,text_on 及 legend_on 为 True 时生效
351
+ :param args: pylab plot参数
352
+ :param kwargs: pylab plot参数,如:marker(标记类型)、
353
+ markerfacecolor(标记颜色)、
354
+ markeredgecolor(标记的边缘颜色)
355
+ """
356
+ if not indicator:
357
+ print("indicator is None")
358
+ return
359
+
360
+ if not axes:
361
+ axes = create_figure() if new else gca()
362
+
363
+ if not label:
364
+ label = "%s %.2f" % (indicator.long_name, indicator[-1])
365
+
366
+ py_indicatr = [None if x == constant.null_price else x for x in indicator]
367
+ axes.plot(py_indicatr, '-', label=label, *args, **kwargs)
368
+
369
+ if legend_on:
370
+ leg = axes.legend(loc='upper left')
371
+ leg.get_frame().set_alpha(0.5)
372
+
373
+ if text_on:
374
+ if not axes.texts:
375
+ axes.text(
376
+ 0.01,
377
+ 0.97,
378
+ label,
379
+ horizontalalignment='left',
380
+ verticalalignment='top',
381
+ transform=axes.transAxes,
382
+ color=text_color
383
+ )
384
+ else:
385
+ temp_str = axes.texts[0].get_text() + ' ' + label
386
+ axes.texts[0].set_text(temp_str)
387
+
388
+ if zero_on:
389
+ ylim = axes.get_ylim()
390
+ if ylim[0] < 0 < ylim[1]:
391
+ axes.hlines(0, 0, len(indicator))
392
+
393
+ axes.autoscale_view()
394
+ axes.set_xlim(-1, len(indicator) + 1)
395
+ if kref:
396
+ ax_set_locator_formatter(axes, kref.get_datetime_list(), kref.get_query().ktype)
397
+ else:
398
+ k = indicator.get_context()
399
+ if len(k) > 0:
400
+ ax_set_locator_formatter(axes, k.get_datetime_list(), k.get_query().ktype)
401
+ # draw()
402
+
403
+
404
+ def ibar(
405
+ indicator,
406
+ new=True,
407
+ axes=None,
408
+ kref=None,
409
+ legend_on=False,
410
+ text_on=False,
411
+ text_color='k',
412
+ label=None,
413
+ width=0.4,
414
+ color='r',
415
+ edgecolor='r',
416
+ zero_on=False,
417
+ *args,
418
+ **kwargs
419
+ ):
420
+ """绘制indicator柱状图
421
+
422
+ :param Indicator indicator: Indicator实例
423
+ :param axes: 指定的坐标轴
424
+ :param new: 是否在新窗口中显示,只在没有指定axes时生效
425
+ :param kref: 参考的K线数据,以便绘制日期X坐标
426
+ :param legend_on: 是否打开图例
427
+ :param text_on: 是否在左上角显示指标名称及其参数
428
+ :param text_color: 指标名称解释文字的颜色,默认为黑色
429
+ :param str label: label显示文字信息,text_on 及 legend_on 为 True 时生效
430
+ :param zero_on: 是否需要在y=0轴上绘制一条直线
431
+ :param width: Bar的宽度
432
+ :param color: Bar的颜色
433
+ :param edgecolor: Bar边缘颜色
434
+ :param args: pylab plot参数
435
+ :param kwargs: pylab plot参数
436
+ """
437
+ if not indicator:
438
+ print("indicator is None")
439
+ return
440
+
441
+ if not axes:
442
+ axes = create_figure() if new else gca()
443
+
444
+ if not label:
445
+ label = "%s %.2f" % (indicator.long_name, indicator[-1])
446
+
447
+ py_indicatr = [None if x == constant.null_price else x for x in indicator]
448
+ x = [i - 0.2 for i in range(len(indicator))]
449
+ y = py_indicatr
450
+
451
+ axes.bar(x, py_indicatr, width=width, color=color, edgecolor=edgecolor, *args, **kwargs)
452
+
453
+ if legend_on:
454
+ leg = axes.legend(loc='upper left')
455
+ leg.get_frame().set_alpha(0.5)
456
+
457
+ if text_on:
458
+ if not axes.texts:
459
+ axes.text(
460
+ 0.01,
461
+ 0.97,
462
+ label,
463
+ horizontalalignment='left',
464
+ verticalalignment='top',
465
+ transform=axes.transAxes,
466
+ color=text_color
467
+ )
468
+ else:
469
+ temp_str = axes.texts[0].get_text() + ' ' + label
470
+ axes.texts[0].set_text(temp_str)
471
+
472
+ if zero_on:
473
+ ylim = axes.get_ylim()
474
+ if ylim[0] < 0 < ylim[1]:
475
+ axes.hlines(0, 0, len(indicator))
476
+
477
+ axes.autoscale_view()
478
+ axes.set_xlim(-1, len(indicator) + 1)
479
+ if kref:
480
+ ax_set_locator_formatter(axes, kref.get_datetime_list(), kref.get_query().ktype)
481
+ else:
482
+ k = indicator.get_context()
483
+ if len(k) > 0:
484
+ ax_set_locator_formatter(axes, k.get_datetime_list(), k.get_query().ktype)
485
+ # draw()
486
+
487
+
488
+ def ax_draw_macd(axes, kdata, n1=12, n2=26, n3=9):
489
+ """绘制MACD
490
+
491
+ :param axes: 指定的坐标轴
492
+ :param KData kdata: KData
493
+ :param int n1: 指标 MACD 的参数1
494
+ :param int n2: 指标 MACD 的参数2
495
+ :param int n3: 指标 MACD 的参数3
496
+ """
497
+ macd = MACD(CLOSE(kdata), n1, n2, n3)
498
+ bmacd, fmacd, smacd = macd.get_result(0), macd.get_result(1), macd.get_result(2)
499
+
500
+ text = 'MACD(%s,%s,%s) DIF:%.2f, DEA:%.2f, BAR:%.2f' % (n1, n2, n3, fmacd[-1], smacd[-1], bmacd[-1])
501
+ axes.text(0.01, 0.97, text, horizontalalignment='left', verticalalignment='top', transform=axes.transAxes)
502
+ total = len(kdata)
503
+ x = [i - 0.2 for i in range(total)]
504
+ x1 = [x[i] for i, d in enumerate(bmacd) if d > 0]
505
+ y1 = [i for i in bmacd if i > 0]
506
+ x2 = [x[i] for i, d in enumerate(bmacd) if d <= 0]
507
+ y2 = [i for i in bmacd if i <= 0]
508
+ axes.bar(x1, y1, width=0.4, color='r', edgecolor='r')
509
+ axes.bar(x2, y2, width=0.4, color='g', edgecolor='g')
510
+
511
+ axt = axes.twinx()
512
+ axt.grid(False)
513
+ axt.set_yticks([])
514
+ fmacd.plot(axes=axt, linestyle='--', legend_on=False, text_on=False)
515
+ smacd.plot(axes=axt, legend_on=False, text_on=False)
516
+
517
+ for label in axt.get_xticklabels():
518
+ label.set_visible(False)
519
+
520
+
521
+ def ax_draw_macd2(axes, ref, kdata, n1=12, n2=26, n3=9):
522
+ """绘制MACD。
523
+ 当BAR值变化与参考序列ref变化不一致时,显示为灰色,
524
+ 当BAR和参考序列ref同时上涨,显示红色
525
+ 当BAR和参考序列ref同时下跌,显示绿色
526
+
527
+ :param axes: 指定的坐标轴
528
+ :param ref: 参考序列,EMA
529
+ :param KData kdata: KData
530
+ :param int n1: 指标 MACD 的参数1
531
+ :param int n2: 指标 MACD 的参数2
532
+ :param int n3: 指标 MACD 的参数3
533
+ """
534
+ macd = MACD(CLOSE(kdata), n1, n2, n3)
535
+ bmacd, fmacd, smacd = macd.get_result(0), macd.get_result(1), macd.get_result(2)
536
+
537
+ text = 'MACD(%s,%s,%s) DIF:%.2f, DEA:%.2f, BAR:%.2f' % (n1, n2, n3, fmacd[-1], smacd[-1], bmacd[-1])
538
+ axes.text(0.01, 0.97, text, horizontalalignment='left', verticalalignment='top', transform=axes.transAxes)
539
+ total = len(kdata)
540
+ x = [i - 0.2 for i in range(0, total)]
541
+ y = bmacd
542
+ x1, x2, x3 = [x[0]], [], []
543
+ y1, y2, y3 = [y[0]], [], []
544
+ for i in range(1, total):
545
+ if ref[i] - ref[i - 1] > 0 and y[i] - y[i - 1] > 0:
546
+ x2.append(x[i])
547
+ y2.append(y[i])
548
+ elif ref[i] - ref[i - 1] < 0 and y[i] - y[i - 1] < 0:
549
+ x3.append(x[i])
550
+ y3.append(y[i])
551
+ else:
552
+ x1.append(x[i])
553
+ y1.append(y[i])
554
+
555
+ axes.bar(x1, y1, width=0.4, color='#BFBFBF', edgecolor='#BFBFBF')
556
+ axes.bar(x2, y2, width=0.4, color='r', edgecolor='r')
557
+ axes.bar(x3, y3, width=0.4, color='g', edgecolor='g')
558
+
559
+ axt = axes.twinx()
560
+ axt.grid(False)
561
+ axt.set_yticks([])
562
+ fmacd.plot(axes=axt, linestyle='--', legend_on=False, text_on=False)
563
+ smacd.plot(axes=axt, legend_on=False, text_on=False)
564
+
565
+ for label in axt.get_xticklabels():
566
+ label.set_visible(False)
567
+
568
+
569
+ def sgplot(sg, new=True, axes=None, style=1, kdata=None):
570
+ """绘制买入/卖出信号
571
+
572
+ :param SignalBase sg: 信号指示器
573
+ :param new: 仅在未指定axes的情况下生效,当为True时,创建新的窗口对象并在其中进行绘制
574
+ :param axes: 指定在那个轴对象中进行绘制
575
+ :param style: 1 | 2 信号箭头绘制样式
576
+ :param KData kdata: 指定的KData(即信号发生器的交易对象),
577
+ 如该值为None,则认为该信号发生器已经指定了交易对象,
578
+ 否则,使用该参数作为交易对象
579
+ """
580
+ kdata = sg.to if kdata is None else kdata
581
+ refdates = kdata.get_datetime_list()
582
+ date_index = dict([(d, i) for i, d in enumerate(refdates)])
583
+
584
+ if axes is None:
585
+ if new:
586
+ axes = create_figure()
587
+ kplot(kdata, axes=axes)
588
+ else:
589
+ axes = gca()
590
+
591
+ ylim = axes.get_ylim()
592
+ height = ylim[1] - ylim[0]
593
+
594
+ if style == 1:
595
+ arrow_buy = dict(arrowstyle="->")
596
+ arrow_sell = arrow_buy
597
+ else:
598
+ arrow_buy = dict(facecolor='red', frac=0.5)
599
+ arrow_sell = dict(facecolor='blue', frac=0.5)
600
+
601
+ dates = sg.get_buy_signal()
602
+ for d in dates:
603
+ if d not in date_index:
604
+ continue
605
+ pos = date_index[d]
606
+ krecord = kdata[pos]
607
+ axes.annotate(
608
+ 'B', (pos, krecord.low - height * 0.01), (pos, krecord.low - height * 0.1),
609
+ arrowprops=arrow_buy,
610
+ horizontalalignment='center',
611
+ verticalalignment='bottom',
612
+ color='red'
613
+ )
614
+
615
+ dates = sg.get_sell_signal()
616
+ for d in dates:
617
+ if d not in date_index:
618
+ continue
619
+ pos = date_index[d]
620
+ krecord = kdata[pos]
621
+ axes.annotate(
622
+ 'S', (pos, krecord.high + height * 0.01), (pos, krecord.high + height * 0.1),
623
+ arrowprops=arrow_sell,
624
+ horizontalalignment='center',
625
+ verticalalignment='top',
626
+ color='blue'
627
+ )
628
+
629
+
630
+ def evplot(ev, ref_kdata, new=True, axes=None):
631
+ """绘制市场有效判断
632
+
633
+ :param EnvironmentBase cn: 系统有效条件
634
+ :param KData ref_kdata: 用于日期参考
635
+ :param new: 仅在未指定axes的情况下生效,当为True时,创建新的窗口对象并在其中进行绘制
636
+ :param axes: 指定在那个轴对象中进行绘制
637
+ """
638
+ refdates = ref_kdata.get_datetime_list()
639
+ if axes is None:
640
+ if new:
641
+ axes = create_figure(2)
642
+ kplot(ref_kdata, axes=axes[0])
643
+ axes = axes[1]
644
+ else:
645
+ axes = gca()
646
+
647
+ x = np.array([i for i in range(len(refdates))])
648
+ y1 = np.array([1 if ev.is_valid(d) else -1 for d in refdates])
649
+ y2 = np.array([-1 if ev.is_valid(d) else 1 for d in refdates])
650
+ axes.fill_between(x, y1, y2, where=y2 > y1, facecolor='blue', alpha=0.6)
651
+ axes.fill_between(x, y1, y2, where=y2 < y1, facecolor='red', alpha=0.6)
652
+
653
+
654
+ def cnplot(cn, new=True, axes=None, kdata=None):
655
+ """绘制系统有效条件
656
+
657
+ :param ConditionBase cn: 系统有效条件
658
+ :param new: 仅在未指定axes的情况下生效,当为True时,创建新的窗口对象并在其中进行绘制
659
+ :param axes: 指定在那个轴对象中进行绘制
660
+ :param KData kdata: 指定的KData,如该值为None,则认为该系统有效条件已经
661
+ 指定了交易对象,否则,使用该参数作为交易对象
662
+ """
663
+ if kdata is None:
664
+ kdata = cn.to
665
+ else:
666
+ cn.to = kdata
667
+
668
+ refdates = kdata.get_datetime_list()
669
+ if axes is None:
670
+ if new:
671
+ axes = create_figure(2)
672
+ kplot(kdata, axes=axes[0])
673
+ axes = axes[1]
674
+ else:
675
+ axes = gca()
676
+
677
+ x = np.array([i for i in range(len(refdates))])
678
+ y1 = np.array([1 if cn.is_valid(d) else -1 for d in refdates])
679
+ y2 = np.array([-1 if cn.is_valid(d) else 1 for d in refdates])
680
+ axes.fill_between(x, y1, y2, where=y2 > y1, facecolor='blue', alpha=0.6)
681
+ axes.fill_between(x, y1, y2, where=y2 < y1, facecolor='red', alpha=0.6)
682
+
683
+
684
+ def sysplot(sys, new=True, axes=None, style=1, only_draw_close=False):
685
+ """绘制系统实际买入/卖出信号
686
+
687
+ :param SystemBase sys: 系统实例
688
+ :param new: 仅在未指定axes的情况下生效,当为True时,
689
+ 创建新的窗口对象并在其中进行绘制
690
+ :param axes: 指定在那个轴对象中进行绘制
691
+ :param style: 1 | 2 信号箭头绘制样式
692
+ :param bool only_draw_close: 不绘制K线,仅绘制 close
693
+ """
694
+ kdata = sys.to
695
+
696
+ refdates = kdata.get_datetime_list()
697
+ date_index = dict([(d, i) for i, d in enumerate(refdates)])
698
+
699
+ if axes is None:
700
+ if new:
701
+ axes = create_figure()
702
+ if only_draw_close:
703
+ iplot(kdata.close, axes=axes)
704
+ else:
705
+ kplot(kdata, axes=axes)
706
+ else:
707
+ axes = gca()
708
+
709
+ ylim = axes.get_ylim()
710
+ height = ylim[1] - ylim[0]
711
+
712
+ if style == 1:
713
+ arrow_buy = dict(arrowstyle="->")
714
+ arrow_sell = arrow_buy
715
+ else:
716
+ arrow_buy = dict(facecolor='red', frac=0.5)
717
+ arrow_sell = dict(facecolor='blue', frac=0.5)
718
+
719
+ tds = sys.tm.get_trade_list()
720
+ buy_dates = []
721
+ sell_dates = []
722
+ for t in tds:
723
+ if t.business == BUSINESS.BUY:
724
+ buy_dates.append(t.datetime)
725
+ elif t.business == BUSINESS.SELL:
726
+ sell_dates.append(t.datetime)
727
+ else:
728
+ pass
729
+
730
+ for d in buy_dates:
731
+ if d not in date_index:
732
+ continue
733
+ pos = date_index[d]
734
+ krecord = kdata[pos]
735
+ axes.annotate(
736
+ 'B', (pos, krecord.low - height * 0.01), (pos, krecord.low - height * 0.1),
737
+ arrowprops=arrow_buy,
738
+ horizontalalignment='center',
739
+ verticalalignment='bottom',
740
+ color='red'
741
+ )
742
+
743
+ for d in sell_dates:
744
+ if d not in date_index:
745
+ continue
746
+ pos = date_index[d]
747
+ krecord = kdata[pos]
748
+ axes.annotate(
749
+ 'S', (pos, krecord.high + height * 0.01), (pos, krecord.high + height * 0.1),
750
+ arrowprops=arrow_sell,
751
+ horizontalalignment='center',
752
+ verticalalignment='top',
753
+ color='blue'
754
+ )
755
+
756
+
757
+ def sys_performance(sys, ref_stk=None):
758
+ if ref_stk is None:
759
+ ref_stk = get_stock('sh000300')
760
+
761
+ query = sys.query
762
+ sh000001_k = get_kdata('sh000001', query)
763
+ ref_dates = sh000001_k.get_datetime_list()
764
+
765
+ ref_k = ref_stk.get_kdata(query)
766
+
767
+ funds_list = sys.tm.get_funds_list(ref_dates)
768
+ funds = [f.total_assets for f in funds_list]
769
+ funds = VALUE(funds)
770
+ funds_return = [f.total_assets / f.total_base if f.total_base != 0.0 else constant.null_price for f in funds_list]
771
+ funds_return = VALUE(funds_return, align_dates=ref_dates)
772
+ funds_return.name = "系统累积收益率"
773
+ ref_return = ALIGN(ROCR(ref_k.close, 0), ref_dates)
774
+ ref_return.name = f"{ref_stk.name}({ref_stk.market_code})"
775
+
776
+ per = Performance()
777
+ text = per.report(sys.tm, sh000001_k[-1].datetime)
778
+
779
+ # 计算最大回撤
780
+ max_pullback = min(MDD(funds).to_np())
781
+
782
+ # 计算 sharp
783
+ bond = ZHBOND10(ref_dates)
784
+ sigma = STDEV(ROCP(funds), len(ref_dates))
785
+ sigma = 15.874507866387544 * sigma[-1] # 15.874 = sqrt(252)
786
+ sharp = (per['帐户平均年收益率%'] - bond[-1]) * 0.01 / sigma if sigma != 0.0 else 0.0
787
+
788
+ invest_total = per['累计投入本金'] + per['累计投入资产']
789
+ cur_fund = per['当前总资产']
790
+ t1 = '投入总资产: {:<.2f} 当前总资产: {:<.2f} 当前盈利: {:<.2f}'.format(
791
+ invest_total, cur_fund, cur_fund - invest_total)
792
+ t2 = '当前策略收益: {:<.2f}% 年化收益率: {:<.2f}% 最大回撤: {:<.2f}%'.format(
793
+ funds_return[-1]*100 - 100, per["帐户平均年收益率%"], max_pullback)
794
+ t3 = '系统胜率: {:<.2f}% 盈/亏比: 1 : {:<.2f} 夏普比率: {:<.2f}'.format(
795
+ per['赢利交易比例%'], per['净赢利/亏损比例'], sharp)
796
+
797
+ import matplotlib.pyplot as plt
798
+ fg = plt.figure(figsize=(15, 10))
799
+ gs = fg.add_gridspec(5, 4)
800
+ ax1 = fg.add_subplot(gs[:4, :3])
801
+ ax2 = fg.add_subplot(gs[:, 3:])
802
+ ax3 = fg.add_subplot(gs[4:, :3])
803
+ ref_return.plot(axes=ax1, legend_on=True)
804
+ funds_return.plot(axes=ax1, legend_on=True)
805
+ if isinstance(sys, System):
806
+ stk = sys.get_stock()
807
+ ax1.set_title(f"{sys.name} {stk.name}({stk.market_code}) 累积收益率")
808
+ else:
809
+ ax1.set_title(f"{sys.name} 累积收益率")
810
+ label = t1 + '\n\n' + t2 + '\n\n' + t3
811
+ ax2.text(0,
812
+ 1,
813
+ text,
814
+ horizontalalignment='left',
815
+ verticalalignment='top',
816
+ transform=ax2.transAxes,
817
+ # color='r'
818
+ )
819
+ ax3.text(0.02,
820
+ 0.9,
821
+ label,
822
+ horizontalalignment='left',
823
+ verticalalignment='top',
824
+ transform=ax3.transAxes,
825
+ # color='r'
826
+ )
827
+ ax2.xaxis.set_visible(False)
828
+ ax2.yaxis.set_visible(False)
829
+ ax2.set_frame_on(False)
830
+ ax3.xaxis.set_visible(False)
831
+ ax3.yaxis.set_visible(False)
832
+ ax3.set_frame_on(False)