hikyuu 2.6.8__py3-none-macosx_11_0_arm64.whl → 2.7.0.4__py3-none-macosx_11_0_arm64.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/.style.yapf +350 -0
- hikyuu/__init__.py +32 -18
- hikyuu/__init__.pyi +46 -20
- hikyuu/analysis/__init__.pyi +32 -11
- hikyuu/analysis/analysis.pyi +33 -12
- hikyuu/core.py +2 -0
- hikyuu/core.pyi +34 -13
- hikyuu/cpp/core310.pyi +504 -108
- hikyuu/cpp/core310.so +0 -0
- hikyuu/cpp/core311.pyi +504 -108
- hikyuu/cpp/core311.so +0 -0
- hikyuu/cpp/core312.pyi +504 -108
- hikyuu/cpp/core312.so +0 -0
- hikyuu/cpp/core313.pyi +504 -108
- hikyuu/cpp/core313.so +0 -0
- hikyuu/cpp/i18n/zh_CN/hikyuu.mo +0 -0
- hikyuu/cpp/libboost_charconv-mt.dylib +0 -0
- hikyuu/cpp/libboost_chrono-mt.dylib +0 -0
- hikyuu/cpp/libboost_date_time-mt.dylib +0 -0
- hikyuu/cpp/libboost_serialization-mt.dylib +0 -0
- hikyuu/cpp/libboost_system-mt.dylib +0 -0
- hikyuu/cpp/libboost_thread-mt.dylib +0 -0
- hikyuu/cpp/libboost_wserialization-mt.dylib +0 -0
- hikyuu/cpp/libhikyuu.dylib +0 -0
- hikyuu/cpp/libsqlite3.dylib +0 -0
- hikyuu/data/clickhouse_upgrade/createdb.sql +105 -105
- hikyuu/data/common.py +3 -3
- hikyuu/data/common_clickhouse.py +1 -1
- hikyuu/data/download_block.py +351 -0
- hikyuu/data/em_block_to_clickhouse.py +26 -74
- hikyuu/data/em_block_to_mysql.py +25 -75
- hikyuu/data/em_block_to_sqlite.py +26 -78
- hikyuu/data/hku_config_template.py +3 -3
- hikyuu/data/pytdx_to_clickhouse.py +15 -11
- hikyuu/data/pytdx_to_h5.py +6 -2
- hikyuu/data/pytdx_to_mysql.py +5 -1
- hikyuu/data/pytdx_weight_to_clickhouse.py +1 -1
- hikyuu/data/pytdx_weight_to_mysql.py +1 -1
- hikyuu/data/pytdx_weight_to_sqlite.py +1 -1
- hikyuu/data/zh_bond10_to_clickhouse.py +1 -1
- hikyuu/draw/drawplot/__init__.pyi +1 -1
- hikyuu/draw/drawplot/bokeh_draw.pyi +34 -14
- hikyuu/draw/drawplot/echarts_draw.pyi +34 -14
- hikyuu/draw/drawplot/matplotlib_draw.py +4 -74
- hikyuu/draw/drawplot/matplotlib_draw.pyi +34 -14
- hikyuu/examples/notebook/Demo/Demo1.ipynb +48 -33
- hikyuu/examples/notebook/LICENSE +20 -0
- hikyuu/extend.py +0 -7
- hikyuu/extend.pyi +35 -14
- hikyuu/fetcher/stock/zh_block_em.py +12 -40
- hikyuu/gui/HikyuuTDX.py +99 -31
- hikyuu/gui/data/CollectSpotThread.py +1 -1
- hikyuu/gui/data/EscapetimeThread.py +8 -14
- hikyuu/gui/data/ImportBlockInfoTask.py +3 -10
- hikyuu/gui/data/MainWindow.py +1196 -717
- hikyuu/gui/data/MainWindow.ui +2059 -0
- hikyuu/gui/data/SchedImportThread.py +2 -2
- hikyuu/gui/data/UsePytdxImportToH5Thread.py +3 -3
- hikyuu/gui/data/UseQmtImportToH5Thread.py +2 -2
- hikyuu/gui/data/UseTdxImportToH5Thread.py +3 -3
- hikyuu/gui/data/tool.py +32 -25
- hikyuu/gui/dataserver.py +5 -3
- hikyuu/gui/images/liandongxiaopu.png +0 -0
- hikyuu/gui/importdata.py +4 -0
- hikyuu/hub.pyi +6 -6
- hikyuu/include/hikyuu/DataType.h +4 -16
- hikyuu/include/hikyuu/KData.h +14 -3
- hikyuu/include/hikyuu/KDataPrivatedBufferImp.h +1 -1
- hikyuu/include/hikyuu/KDataSharedBufferImp.h +1 -1
- hikyuu/include/hikyuu/KQuery.h +2 -2
- hikyuu/include/hikyuu/Stock.h +4 -1
- hikyuu/include/hikyuu/StockManager.h +13 -3
- hikyuu/include/hikyuu/data_driver/BaseInfoDriver.h +8 -0
- hikyuu/include/hikyuu/data_driver/BlockInfoDriver.h +6 -0
- hikyuu/include/hikyuu/data_driver/KDataDriver.h +26 -1
- hikyuu/include/hikyuu/data_driver/base_info/mysql/MySQLBaseInfoDriver.h +1 -1
- hikyuu/include/hikyuu/data_driver/base_info/sqlite/SQLiteBaseInfoDriver.h +1 -1
- hikyuu/include/hikyuu/data_driver/block_info/mysql/MySQLBlockInfoDriver.h +2 -1
- hikyuu/include/hikyuu/data_driver/block_info/qianlong/QLBlockInfoDriver.h +2 -1
- hikyuu/include/hikyuu/data_driver/block_info/sqlite/SQLiteBlockInfoDriver.h +2 -1
- hikyuu/include/hikyuu/data_driver/kdata/DoNothingKDataDriver.h +1 -1
- hikyuu/include/hikyuu/data_driver/kdata/cvs/KDataTempCsvDriver.h +1 -1
- hikyuu/include/hikyuu/data_driver/kdata/hdf5/H5KDataDriver.h +1 -1
- hikyuu/include/hikyuu/data_driver/kdata/mysql/MySQLKDataDriver.h +1 -1
- hikyuu/include/hikyuu/data_driver/kdata/sqlite/SQLiteKDataDriver.h +1 -1
- hikyuu/include/hikyuu/data_driver/kdata/tdx/TdxKDataDriver.h +1 -1
- hikyuu/include/hikyuu/hikyuu.h +1 -1
- hikyuu/include/hikyuu/indicator/build_in.h +1 -0
- hikyuu/include/hikyuu/indicator/crt/CYCLE.h +4 -4
- hikyuu/include/hikyuu/indicator/crt/HSL.h +2 -2
- hikyuu/include/hikyuu/indicator/crt/QUANTILE_TRUNC.h +30 -0
- hikyuu/include/hikyuu/indicator/crt/TURNOVER.h +1 -0
- hikyuu/include/hikyuu/indicator/crt/ZSCORE.h +2 -2
- hikyuu/include/hikyuu/indicator/imp/IQuantileTrunc.h +25 -0
- hikyuu/include/hikyuu/lang.h +15 -2
- hikyuu/include/hikyuu/misc.h +38 -0
- hikyuu/include/hikyuu/plugin/dataserver.h +2 -1
- hikyuu/include/hikyuu/plugin/device.h +10 -0
- hikyuu/include/hikyuu/plugin/extind.h +37 -0
- hikyuu/include/hikyuu/plugin/hkuextra.h +0 -18
- hikyuu/include/hikyuu/plugin/interface/DataServerPluginInterface.h +2 -2
- hikyuu/include/hikyuu/plugin/interface/DevicePluginInterface.h +2 -0
- hikyuu/include/hikyuu/plugin/interface/ExtendIndicatorsPluginInterface.h +12 -0
- hikyuu/include/hikyuu/plugin/interface/HkuExtraPluginInterface.h +0 -14
- hikyuu/include/hikyuu/plugin/interface/plugins.h +3 -1
- hikyuu/include/hikyuu/python/pybind_utils.h +3 -2
- hikyuu/include/hikyuu/strategy/RunSystemInStrategy.h +3 -0
- hikyuu/include/hikyuu/trade_manage/Performance.h +4 -4
- hikyuu/include/hikyuu/trade_manage/TradeManagerBase.h +10 -1
- hikyuu/include/hikyuu/trade_sys/moneymanager/imp/FixedCapitalFundsMM.h +0 -4
- hikyuu/include/hikyuu/trade_sys/multifactor/MultiFactorBase.h +36 -3
- hikyuu/include/hikyuu/trade_sys/multifactor/NormalizeBase.h +125 -0
- hikyuu/include/hikyuu/trade_sys/multifactor/ScoresFilterBase.h +125 -0
- hikyuu/include/hikyuu/trade_sys/multifactor/build_in.h +3 -0
- hikyuu/include/hikyuu/trade_sys/multifactor/buildin_norm.h +36 -0
- hikyuu/include/hikyuu/trade_sys/multifactor/buildin_scfilter.h +51 -0
- hikyuu/include/hikyuu/trade_sys/multifactor/filter/GroupSCFilter.h +24 -0
- hikyuu/include/hikyuu/trade_sys/multifactor/filter/IgnoreLessOrEqualValueSCFilter.h +24 -0
- hikyuu/include/hikyuu/trade_sys/multifactor/filter/IgnoreNanSCFilter.h +24 -0
- hikyuu/include/hikyuu/trade_sys/multifactor/filter/MinAmountPercentSCFilter.h +25 -0
- hikyuu/include/hikyuu/trade_sys/multifactor/filter/PriceSCFilter.h +24 -0
- hikyuu/include/hikyuu/trade_sys/multifactor/filter/TopNSCFilter.h +24 -0
- hikyuu/include/hikyuu/trade_sys/multifactor/imp/EqualWeightMultiFactor.h +1 -1
- hikyuu/include/hikyuu/trade_sys/multifactor/imp/ICIRMultiFactor.h +1 -1
- hikyuu/include/hikyuu/trade_sys/multifactor/imp/ICMultiFactor.h +1 -1
- hikyuu/include/hikyuu/trade_sys/multifactor/imp/WeightMultiFactor.h +1 -1
- hikyuu/include/hikyuu/trade_sys/multifactor/normalize/NormMinMax.h +23 -0
- hikyuu/include/hikyuu/trade_sys/multifactor/normalize/NormQuantile.h +28 -0
- hikyuu/include/hikyuu/trade_sys/multifactor/normalize/NormQuantileUniform.h +28 -0
- hikyuu/include/hikyuu/trade_sys/multifactor/normalize/NormZScore.h +25 -0
- hikyuu/include/hikyuu/trade_sys/multifactor/normalize/__init__.py +1 -0
- hikyuu/include/hikyuu/trade_sys/multifactor/normalize/quantile_trunc.h +16 -0
- hikyuu/include/hikyuu/trade_sys/portfolio/Portfolio.h +7 -0
- hikyuu/include/hikyuu/trade_sys/portfolio/imp/SimplePortfolio.h +7 -0
- hikyuu/include/hikyuu/trade_sys/portfolio/imp/WithoutAFPortfolio.h +7 -0
- hikyuu/include/hikyuu/trade_sys/selector/SelectorBase.h +49 -0
- hikyuu/include/hikyuu/trade_sys/selector/build_in.h +1 -0
- hikyuu/include/hikyuu/trade_sys/selector/crt/SE_MultiFactor2.h +40 -0
- hikyuu/include/hikyuu/trade_sys/selector/imp/MultiFactorSelector.h +0 -3
- hikyuu/include/hikyuu/trade_sys/selector/imp/MultiFactorSelector2.h +49 -0
- hikyuu/include/hikyuu/trade_sys/selector/imp/logic/OperatorSelector.h +1 -1
- hikyuu/include/hikyuu/trade_sys/selector/imp/logic/OperatorValueSelector.h +1 -1
- hikyuu/include/hikyuu/trade_sys/signal/imp/BandSignal2.h +0 -4
- hikyuu/include/hikyuu/trade_sys/signal/imp/logic/AddValueSignal.h +2 -2
- hikyuu/include/hikyuu/trade_sys/signal/imp/logic/DivValueSignal.h +2 -2
- hikyuu/include/hikyuu/trade_sys/signal/imp/logic/MulValueSignal.h +2 -2
- hikyuu/include/hikyuu/trade_sys/signal/imp/logic/OperatorSignal.h +1 -1
- hikyuu/include/hikyuu/trade_sys/signal/imp/logic/OperatorValueSignal.h +4 -4
- hikyuu/include/hikyuu/trade_sys/signal/imp/logic/SubValueSignal.h +2 -2
- hikyuu/include/hikyuu/trade_sys/slippage/build_in.h +5 -1
- hikyuu/include/hikyuu/trade_sys/slippage/crt/SP_LogNormal.h +22 -0
- hikyuu/include/hikyuu/trade_sys/slippage/crt/SP_Normal.h +22 -0
- hikyuu/include/hikyuu/trade_sys/slippage/crt/SP_TruncNormal.h +25 -0
- hikyuu/include/hikyuu/trade_sys/slippage/crt/SP_Uniform.h +23 -0
- hikyuu/include/hikyuu/trade_sys/slippage/imp/LogNormalSlippage.h +28 -0
- hikyuu/include/hikyuu/trade_sys/slippage/imp/NormalSlippage.h +28 -0
- hikyuu/include/hikyuu/trade_sys/slippage/imp/TruncNormalSlippage.h +28 -0
- hikyuu/include/hikyuu/trade_sys/slippage/imp/UniformSlippage.h +24 -0
- hikyuu/include/hikyuu/trade_sys/system/System.h +14 -1
- hikyuu/include/hikyuu/utilities/SpendTimer.h +17 -7
- hikyuu/include/hikyuu/utilities/arithmetic.h +55 -0
- hikyuu/include/hikyuu/utilities/db_connect/mysql/MySQLConnect.h +1 -1
- hikyuu/include/hikyuu/utilities/db_connect/mysql/MySQLStatement.h +1 -1
- hikyuu/include/hikyuu/utilities/db_connect/sqlite/SQLiteConnect.h +1 -1
- hikyuu/include/hikyuu/utilities/db_connect/sqlite/SQLiteStatement.h +1 -1
- hikyuu/include/hikyuu/utilities/plugin/PluginLoader.h +4 -1
- hikyuu/include/hikyuu/version.h +5 -5
- hikyuu/matplotlibrc +349 -0
- hikyuu/plugin/libbacktest.dylib +0 -0
- hikyuu/plugin/libclickhousedriver.dylib +0 -0
- hikyuu/plugin/libdataserver.dylib +0 -0
- hikyuu/plugin/libdataserver_parquet.dylib +0 -0
- hikyuu/plugin/libdevice.dylib +0 -0
- hikyuu/plugin/libextind.dylib +0 -0
- hikyuu/plugin/libhkuextra.dylib +0 -0
- hikyuu/plugin/libimport2hdf5.dylib +0 -0
- hikyuu/plugin/libtmreport.dylib +0 -0
- hikyuu/trade_manage/__init__.pyi +34 -14
- hikyuu/trade_manage/trade.py +0 -2
- hikyuu/trade_manage/trade.pyi +34 -14
- hikyuu/util/__init__.pyi +1 -1
- hikyuu/util/singleton.pyi +1 -1
- {hikyuu-2.6.8.dist-info → hikyuu-2.7.0.4.dist-info}/METADATA +47 -36
- {hikyuu-2.6.8.dist-info → hikyuu-2.7.0.4.dist-info}/RECORD +188 -158
- {hikyuu-2.6.8.dist-info → hikyuu-2.7.0.4.dist-info}/WHEEL +1 -1
- {hikyuu-2.6.8.dist-info → hikyuu-2.7.0.4.dist-info}/top_level.txt +2 -2
- hikyuu/data_driver/__init__.py +0 -49
- hikyuu/data_driver/jqdata_data_driver.py +0 -277
- hikyuu/data_driver/pytdx_data_driver.py +0 -292
- hikyuu/fetcher/stock/zh_stock_a_huatai.py +0 -51
- hikyuu/fetcher/stock/zh_stock_a_pytdx.py +0 -129
- hikyuu/gui/data/CollectToMemThread.py +0 -123
- hikyuu/gui/data/CollectToMySQLThread.py +0 -178
- hikyuu/gui/start_huatai_insight.py +0 -510
- hikyuu/include/hikyuu/views/arrow_common.h +0 -38
- hikyuu/include/hikyuu/views/arrow_views.h +0 -117
- hikyuu/setup.py +0 -104
- hikyuu/tools/update_block_info.py +0 -168
- hikyuu-2.6.8.dist-info/LICENSE +0 -201
- /hikyuu/include/hikyuu/{views → trade_sys/multifactor/filter}/__init__.py +0 -0
- {hikyuu-2.6.8.dist-info → hikyuu-2.7.0.4.dist-info}/entry_points.txt +0 -0
hikyuu/__init__.pyi
CHANGED
|
@@ -17,8 +17,8 @@ from hikyuu.cpp.core313 import ConditionBase
|
|
|
17
17
|
from hikyuu.cpp.core313 import Constant
|
|
18
18
|
from hikyuu.cpp.core313 import CostRecord
|
|
19
19
|
from hikyuu.cpp.core313 import DataDriverFactory
|
|
20
|
-
from hikyuu.cpp.core313 import Datetime as D
|
|
21
20
|
from hikyuu.cpp.core313 import Datetime
|
|
21
|
+
from hikyuu.cpp.core313 import Datetime as D
|
|
22
22
|
from hikyuu.cpp.core313 import DatetimeList
|
|
23
23
|
from hikyuu.cpp.core313 import EnvironmentBase
|
|
24
24
|
from hikyuu.cpp.core313 import FundsRecord
|
|
@@ -36,6 +36,7 @@ from hikyuu.cpp.core313 import LoanRecord
|
|
|
36
36
|
from hikyuu.cpp.core313 import MarketInfo
|
|
37
37
|
from hikyuu.cpp.core313 import MoneyManagerBase
|
|
38
38
|
from hikyuu.cpp.core313 import MultiFactorBase
|
|
39
|
+
from hikyuu.cpp.core313 import NormalizeBase
|
|
39
40
|
from hikyuu.cpp.core313 import OrderBrokerBase
|
|
40
41
|
from hikyuu.cpp.core313 import Parameter
|
|
41
42
|
from hikyuu.cpp.core313 import Performance
|
|
@@ -43,10 +44,11 @@ from hikyuu.cpp.core313 import Portfolio
|
|
|
43
44
|
from hikyuu.cpp.core313 import PositionRecord
|
|
44
45
|
from hikyuu.cpp.core313 import PositionRecordList
|
|
45
46
|
from hikyuu.cpp.core313 import ProfitGoalBase
|
|
46
|
-
from hikyuu.cpp.core313 import Query as Q
|
|
47
47
|
from hikyuu.cpp.core313 import Query
|
|
48
|
+
from hikyuu.cpp.core313 import Query as Q
|
|
48
49
|
from hikyuu.cpp.core313 import ScoreRecord
|
|
49
50
|
from hikyuu.cpp.core313 import ScoreRecordList
|
|
51
|
+
from hikyuu.cpp.core313 import ScoresFilterBase
|
|
50
52
|
from hikyuu.cpp.core313 import SelectorBase
|
|
51
53
|
from hikyuu.cpp.core313 import SignalBase
|
|
52
54
|
from hikyuu.cpp.core313 import SlippageBase
|
|
@@ -82,6 +84,7 @@ from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 im
|
|
|
82
84
|
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import AF_FixedWeightList
|
|
83
85
|
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import AF_MultiFactor
|
|
84
86
|
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import AGG_COUNT
|
|
87
|
+
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import AGG_FUNC
|
|
85
88
|
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import AGG_MAD
|
|
86
89
|
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import AGG_MAX
|
|
87
90
|
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import AGG_MEAN
|
|
@@ -144,6 +147,13 @@ from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 im
|
|
|
144
147
|
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import FILTER
|
|
145
148
|
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import FINANCE
|
|
146
149
|
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import FLOOR
|
|
150
|
+
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import GROUP_COUNT
|
|
151
|
+
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import GROUP_FUNC
|
|
152
|
+
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import GROUP_MAX
|
|
153
|
+
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import GROUP_MEAN
|
|
154
|
+
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import GROUP_MIN
|
|
155
|
+
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import GROUP_PROD
|
|
156
|
+
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import GROUP_SUM
|
|
147
157
|
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import HHV
|
|
148
158
|
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import HHVBARS
|
|
149
159
|
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import HOUR
|
|
@@ -173,8 +183,8 @@ from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 im
|
|
|
173
183
|
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import KALMAN
|
|
174
184
|
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import KDATA_PART
|
|
175
185
|
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import LAST
|
|
176
|
-
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import LASTVALUE
|
|
177
186
|
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import LASTVALUE as CONST
|
|
187
|
+
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import LASTVALUE
|
|
178
188
|
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import LIUTONGPAN
|
|
179
189
|
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import LIUTONGPAN as CAPITAL
|
|
180
190
|
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import LLV
|
|
@@ -208,6 +218,11 @@ from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 im
|
|
|
208
218
|
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import Milliseconds
|
|
209
219
|
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import Minutes
|
|
210
220
|
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import NDAY
|
|
221
|
+
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import NORM_MinMax
|
|
222
|
+
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import NORM_NOTHING
|
|
223
|
+
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import NORM_Quantile
|
|
224
|
+
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import NORM_Quantile_Uniform
|
|
225
|
+
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import NORM_Zscore
|
|
211
226
|
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import NOT
|
|
212
227
|
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import PF_Simple
|
|
213
228
|
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import PF_WithoutAF
|
|
@@ -218,6 +233,7 @@ from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 im
|
|
|
218
233
|
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import POW
|
|
219
234
|
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import PRICELIST
|
|
220
235
|
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import PRICELIST as VALUE
|
|
236
|
+
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import QUANTILE_TRUNC
|
|
221
237
|
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import RANK
|
|
222
238
|
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import RECOVER_BACKWARD
|
|
223
239
|
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import RECOVER_EQUAL_BACKWARD
|
|
@@ -237,10 +253,17 @@ from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 im
|
|
|
237
253
|
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import ROUNDUP
|
|
238
254
|
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import RSI
|
|
239
255
|
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import SAFTYLOSS
|
|
256
|
+
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import SCFilter_AmountLimit
|
|
257
|
+
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import SCFilter_Group
|
|
258
|
+
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import SCFilter_IgnoreNan
|
|
259
|
+
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import SCFilter_LessOrEqualValue
|
|
260
|
+
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import SCFilter_Price
|
|
261
|
+
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import SCFilter_TopN
|
|
240
262
|
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import SE_EvaluateOptimal
|
|
241
263
|
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import SE_Fixed
|
|
242
264
|
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import SE_MaxFundsOptimal
|
|
243
265
|
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import SE_MultiFactor
|
|
266
|
+
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import SE_MultiFactor2
|
|
244
267
|
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import SE_PerformanceOptimal
|
|
245
268
|
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import SE_Signal
|
|
246
269
|
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import SGN
|
|
@@ -269,6 +292,10 @@ from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 im
|
|
|
269
292
|
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import SPEARMAN
|
|
270
293
|
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import SP_FixedPercent
|
|
271
294
|
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import SP_FixedValue
|
|
295
|
+
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import SP_LogNormal
|
|
296
|
+
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import SP_Normal
|
|
297
|
+
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import SP_TruncNormal
|
|
298
|
+
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import SP_Uniform
|
|
272
299
|
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import SQRT
|
|
273
300
|
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import STDEV
|
|
274
301
|
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import STDEV as STD
|
|
@@ -485,6 +512,7 @@ from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 im
|
|
|
485
512
|
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import active_device
|
|
486
513
|
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import backtest
|
|
487
514
|
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import batch_calculate_inds
|
|
515
|
+
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import bind_email
|
|
488
516
|
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import can_upgrade
|
|
489
517
|
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import close_ostream_to_python
|
|
490
518
|
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import close_spend_time
|
|
@@ -496,7 +524,6 @@ from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 im
|
|
|
496
524
|
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import crt_pf_strategy
|
|
497
525
|
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import crt_sys_strategy
|
|
498
526
|
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import dates_to_np
|
|
499
|
-
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import dates_to_pa
|
|
500
527
|
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import df_to_krecords
|
|
501
528
|
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import fetch_trial_license
|
|
502
529
|
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import find_optimal_system
|
|
@@ -505,13 +532,11 @@ from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 im
|
|
|
505
532
|
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import get_business_name
|
|
506
533
|
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import get_data_from_buffer_server
|
|
507
534
|
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import get_date_range
|
|
508
|
-
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import
|
|
509
|
-
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import
|
|
535
|
+
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import get_expire_date
|
|
536
|
+
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import get_funds_list
|
|
510
537
|
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import get_kdata
|
|
511
538
|
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import get_last_version
|
|
512
539
|
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import get_log_level
|
|
513
|
-
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import get_market_view
|
|
514
|
-
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import get_market_view_pyarrow
|
|
515
540
|
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import get_spot_from_buffer_server
|
|
516
541
|
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import get_stock
|
|
517
542
|
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import get_system_part_enum
|
|
@@ -528,12 +553,12 @@ from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 im
|
|
|
528
553
|
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import isnan
|
|
529
554
|
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import krecords_to_df
|
|
530
555
|
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import krecords_to_np
|
|
531
|
-
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import krecords_to_pa
|
|
532
556
|
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import open_ostream_to_python
|
|
533
557
|
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import open_spend_time
|
|
558
|
+
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import parallel_run_pf
|
|
559
|
+
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import parallel_run_sys
|
|
534
560
|
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import positions_to_df
|
|
535
561
|
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import positions_to_np
|
|
536
|
-
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import positions_to_pa
|
|
537
562
|
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import register_extra_ktype
|
|
538
563
|
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import release_extra_ktype
|
|
539
564
|
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import remove_license
|
|
@@ -556,18 +581,14 @@ from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 im
|
|
|
556
581
|
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import systemweights_to_np
|
|
557
582
|
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import timeline_to_df
|
|
558
583
|
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import timeline_to_np
|
|
559
|
-
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import timeline_to_pa
|
|
560
584
|
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import toPriceList
|
|
561
585
|
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import trades_to_df
|
|
562
586
|
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import trades_to_np
|
|
563
|
-
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import trades_to_pa
|
|
564
587
|
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import translist_to_df
|
|
565
588
|
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import translist_to_np
|
|
566
|
-
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import translist_to_pa
|
|
567
589
|
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import view_license
|
|
568
590
|
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import weights_to_df
|
|
569
591
|
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import weights_to_np
|
|
570
|
-
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import weights_to_pa
|
|
571
592
|
from hikyuu.draw.drawplot import adjust_axes_show
|
|
572
593
|
from hikyuu.draw.drawplot import ax_draw_macd
|
|
573
594
|
from hikyuu.draw.drawplot import ax_draw_macd2
|
|
@@ -578,8 +599,8 @@ from hikyuu.draw.drawplot import gcf
|
|
|
578
599
|
from hikyuu.draw.drawplot import get_current_draw_engine
|
|
579
600
|
from hikyuu.draw.drawplot.matplotlib_draw import DRAWBAND
|
|
580
601
|
from hikyuu.draw.drawplot.matplotlib_draw import DRAWICON
|
|
581
|
-
from hikyuu.draw.drawplot.matplotlib_draw import DRAWIMG as DRAWBMP
|
|
582
602
|
from hikyuu.draw.drawplot.matplotlib_draw import DRAWIMG
|
|
603
|
+
from hikyuu.draw.drawplot.matplotlib_draw import DRAWIMG as DRAWBMP
|
|
583
604
|
from hikyuu.draw.drawplot.matplotlib_draw import DRAWLINE
|
|
584
605
|
from hikyuu.draw.drawplot.matplotlib_draw import DRAWNUMBER
|
|
585
606
|
from hikyuu.draw.drawplot.matplotlib_draw import DRAWNUMBER_FIX
|
|
@@ -681,6 +702,7 @@ from hikyuu.util.mylog import with_trace
|
|
|
681
702
|
from hikyuu.util.notebook import in_interactive_session
|
|
682
703
|
from hikyuu.util.notebook import in_ipython_frontend
|
|
683
704
|
from hikyuu.util.timeout import timeout
|
|
705
|
+
import hikyuu_plugin as hikyuu_plugin
|
|
684
706
|
import io as io
|
|
685
707
|
import locale as locale
|
|
686
708
|
import logging
|
|
@@ -689,7 +711,6 @@ import os as os
|
|
|
689
711
|
import pandas as pd
|
|
690
712
|
from pathlib._local import Path
|
|
691
713
|
import pickle as pickle
|
|
692
|
-
import pyarrow as pa
|
|
693
714
|
import sys as sys
|
|
694
715
|
import traceback as traceback
|
|
695
716
|
import typing
|
|
@@ -701,9 +722,9 @@ from . import extend
|
|
|
701
722
|
from . import hub
|
|
702
723
|
from . import trade_manage
|
|
703
724
|
from . import util
|
|
704
|
-
__all__ = ['A', 'ABS', 'ACOS', 'AD', 'ADVANCE', 'AF_EqualWeight', 'AF_FixedWeight', 'AF_FixedWeightList', 'AF_MultiFactor', 'AGG_COUNT', 'AGG_MAD', 'AGG_MAX', 'AGG_MEAN', 'AGG_MEDIAN', 'AGG_MIN', 'AGG_PROD', 'AGG_QUANTILE', 'AGG_STD', 'AGG_SUM', 'AGG_VAR', 'ALIGN', 'AMA', 'AMO', 'ASIN', 'ATAN', 'ATR', 'AVEDEV', 'AllocateFundsBase', 'BACKSET', 'BARSCOUNT', 'BARSLAST', 'BARSLASTCOUNT', 'BARSSINCE', 'BARSSINCEN', 'BASE_DIR', 'BETWEEN', 'BLOCKSETNUM', 'BUSINESS', 'Block', 'BlockInfoDriver', 'BorrowRecord', 'BrokerPositionRecord', 'C', 'CAPITAL', 'CEILING', 'CLOSE', 'CN_Bool', 'CN_OPLine', 'CONST', 'CONTEXT', 'CONTEXT_K', 'CORR', 'COS', 'COST', 'COUNT', 'CROSS', 'CVAL', 'CYCLE', 'C_AMO', 'C_CLOSE', 'C_HIGH', 'C_KDATA', 'C_LOW', 'C_OPEN', 'C_VOL', 'ConditionBase', 'Constant', 'CostRecord', 'D', 'DATE', 'DAY', 'DEBUG', 'DECLINE', 'DEVSQ', 'DIFF', 'DISCARD', 'DMA', 'DOWNNDAY', 'DRAWBAND', 'DRAWBMP', 'DRAWICON', 'DRAWIMG', 'DRAWLINE', 'DRAWNULL', 'DRAWNUMBER', 'DRAWNUMBER_FIX', 'DRAWRECTREL', 'DRAWSL', 'DRAWTEXT', 'DRAWTEXT_FIX', 'DROPNA', 'DataDriverFactory', 'Datetime', 'DatetimeList', 'DatetimeList_to_df', 'DatetimeList_to_np', 'Datetime_date', 'Datetime_datetime', 'Days', 'EMA', 'ERROR', 'EVERY', 'EV_Bool', 'EV_TwoLine', 'EXIST', 'EXP', 'EasyTraderOrderBroker', 'EnvironmentBase', 'FATAL', 'FILTER', 'FINANCE', 'FLOOR', 'FundsRecord', 'H', 'HHV', 'HHVBARS', 'HIGH', 'HKUCheckError', 'HKUException', 'HOUR', 'HSL', 'Hours', 'IC', 'ICIR', 'IF', 'INBLOCK', 'INDEXA', 'INDEXADV', 'INDEXC', 'INDEXDEC', 'INDEXH', 'INDEXL', 'INDEXO', 'INDEXV', 'INFO', 'INSUM', 'INTPART', 'IR', 'ISINF', 'ISINFA', 'ISLASTBAR', 'ISNA', 'IndParam', 'Indicator', 'IndicatorImp', 'JUMPDOWN', 'JUMPUP', 'K', 'KALMAN', 'KDATA', 'KDATA_PART', 'KDJ', 'KData', 'KDataDriver', 'KDataToHdf5Importer', 'KRecord', 'KRecordList', 'L', 'LAST', 'LASTVALUE', 'LIUTONGPAN', 'LLV', 'LLVBARS', 'LN', 'LOG', 'LOG_LEVEL', 'LONGCROSS', 'LOW', 'LoanRecord', 'LoggingContext', 'MA', 'MACD', 'MAX', 'MDD', 'MF_EqualWeight', 'MF_ICIRWeight', 'MF_ICWeight', 'MF_Weight', 'MIN', 'MINUTE', 'MM_FixedCapital', 'MM_FixedCapitalFunds', 'MM_FixedCount', 'MM_FixedCountTps', 'MM_FixedPercent', 'MM_FixedRisk', 'MM_FixedUnits', 'MM_Nothing', 'MM_WilliamsFixedRisk', 'MOD', 'MONTH', 'MRR', 'MailOrderBroker', 'MarketInfo', 'Microseconds', 'Milliseconds', 'Minutes', 'MoneyManagerBase', 'MultiFactorBase', 'NDAY', 'NOT', 'O', 'OFF', 'OPEN', 'OrderBrokerBase', 'OrderBrokerWrap', 'PF_Simple', 'PF_WithoutAF', 'PG_FixedHoldDays', 'PG_FixedPercent', 'PG_NoGoal', 'PLOYLINE', 'POS', 'POW', 'PRICELIST', 'Parameter', 'Parameter_items', 'Parameter_iter', 'Parameter_keys', 'Parameter_to_dict', 'Path', 'Performance', 'Performance_to_df', 'Portfolio', 'PositionRecord', 'PositionRecordList', 'ProfitGoalBase', 'Q', 'Query', 'RANK', 'RECOVER_BACKWARD', 'RECOVER_EQUAL_BACKWARD', 'RECOVER_EQUAL_FORWARD', 'RECOVER_FORWARD', 'REF', 'REFX', 'REPLACE', 'RESULT', 'REVERSE', 'RGB', 'ROC', 'ROCP', 'ROCR', 'ROCR100', 'ROUND', 'ROUNDDOWN', 'ROUNDUP', 'RSI', 'SAFTYLOSS', 'SE_EvaluateOptimal', 'SE_Fixed', 'SE_MaxFundsOptimal', 'SE_MultiFactor', 'SE_PerformanceOptimal', 'SE_Signal', 'SGN', 'SG_Add', 'SG_AllwaysBuy', 'SG_And', 'SG_Band', 'SG_Bool', 'SG_Buy', 'SG_Cross', 'SG_CrossGold', 'SG_Cycle', 'SG_Div', 'SG_Flex', 'SG_Mul', 'SG_OneSide', 'SG_Or', 'SG_Sell', 'SG_Single', 'SG_Single2', 'SG_Sub', 'SHOWICONS', 'SIN', 'SLICE', 'SLOPE', 'SMA', 'SPEARMAN', 'SP_FixedPercent', 'SP_FixedValue', 'SQRT', 'STD', 'STDEV', 'STDP', 'STICKLINE', 'ST_FixedPercent', 'ST_Indicator', 'ST_Saftyloss', 'SUM', 'SUMBARS', 'SYS_Simple', 'SYS_WalkForward', 'ScoreRecord', 'ScoreRecordList', 'Seconds', 'SelectorBase', 'SignalBase', 'SlippageBase', 'SpotRecord', 'Stock', 'StockManager', 'StockTypeInfo', 'StockWeight', 'StockWeightList', 'StoplossBase', 'Strategy', 'StrategyContext', 'System', 'SystemPart', 'SystemWeight', 'SystemWeightList', 'TAN', 'TA_ACCBANDS', 'TA_ACOS', 'TA_AD', 'TA_ADD', 'TA_ADOSC', 'TA_ADX', 'TA_ADXR', 'TA_APO', 'TA_AROON', 'TA_AROONOSC', 'TA_ASIN', 'TA_ATAN', 'TA_ATR', 'TA_AVGDEV', 'TA_AVGPRICE', 'TA_BBANDS', 'TA_BETA', 'TA_BOP', 'TA_CCI', 'TA_CDL2CROWS', 'TA_CDL3BLACKCROWS', 'TA_CDL3INSIDE', 'TA_CDL3LINESTRIKE', 'TA_CDL3OUTSIDE', 'TA_CDL3STARSINSOUTH', 'TA_CDL3WHITESOLDIERS', 'TA_CDLABANDONEDBABY', 'TA_CDLADVANCEBLOCK', 'TA_CDLBELTHOLD', 'TA_CDLBREAKAWAY', 'TA_CDLCLOSINGMARUBOZU', 'TA_CDLCONCEALBABYSWALL', 'TA_CDLCOUNTERATTACK', 'TA_CDLDARKCLOUDCOVER', 'TA_CDLDOJI', 'TA_CDLDOJISTAR', 'TA_CDLDRAGONFLYDOJI', 'TA_CDLENGULFING', 'TA_CDLEVENINGDOJISTAR', 'TA_CDLEVENINGSTAR', 'TA_CDLGAPSIDESIDEWHITE', 'TA_CDLGRAVESTONEDOJI', 'TA_CDLHAMMER', 'TA_CDLHANGINGMAN', 'TA_CDLHARAMI', 'TA_CDLHARAMICROSS', 'TA_CDLHIGHWAVE', 'TA_CDLHIKKAKE', 'TA_CDLHIKKAKEMOD', 'TA_CDLHOMINGPIGEON', 'TA_CDLIDENTICAL3CROWS', 'TA_CDLINNECK', 'TA_CDLINVERTEDHAMMER', 'TA_CDLKICKING', 'TA_CDLKICKINGBYLENGTH', 'TA_CDLLADDERBOTTOM', 'TA_CDLLONGLEGGEDDOJI', 'TA_CDLLONGLINE', 'TA_CDLMARUBOZU', 'TA_CDLMATCHINGLOW', 'TA_CDLMATHOLD', 'TA_CDLMORNINGDOJISTAR', 'TA_CDLMORNINGSTAR', 'TA_CDLONNECK', 'TA_CDLPIERCING', 'TA_CDLRICKSHAWMAN', 'TA_CDLRISEFALL3METHODS', 'TA_CDLSEPARATINGLINES', 'TA_CDLSHOOTINGSTAR', 'TA_CDLSHORTLINE', 'TA_CDLSPINNINGTOP', 'TA_CDLSTALLEDPATTERN', 'TA_CDLSTICKSANDWICH', 'TA_CDLTAKURI', 'TA_CDLTASUKIGAP', 'TA_CDLTHRUSTING', 'TA_CDLTRISTAR', 'TA_CDLUNIQUE3RIVER', 'TA_CDLUPSIDEGAP2CROWS', 'TA_CDLXSIDEGAP3METHODS', 'TA_CEIL', 'TA_CMO', 'TA_CORREL', 'TA_COS', 'TA_COSH', 'TA_DEMA', 'TA_DIV', 'TA_DX', 'TA_EMA', 'TA_EXP', 'TA_FLOOR', 'TA_HT_DCPERIOD', 'TA_HT_DCPHASE', 'TA_HT_PHASOR', 'TA_HT_SINE', 'TA_HT_TRENDLINE', 'TA_HT_TRENDMODE', 'TA_IMI', 'TA_KAMA', 'TA_LINEARREG', 'TA_LINEARREG_ANGLE', 'TA_LINEARREG_INTERCEPT', 'TA_LINEARREG_SLOPE', 'TA_LN', 'TA_LOG10', 'TA_MA', 'TA_MACD', 'TA_MACDEXT', 'TA_MACDFIX', 'TA_MAMA', 'TA_MAVP', 'TA_MAX', 'TA_MAXINDEX', 'TA_MEDPRICE', 'TA_MFI', 'TA_MIDPOINT', 'TA_MIDPRICE', 'TA_MIN', 'TA_MININDEX', 'TA_MINMAX', 'TA_MINMAXINDEX', 'TA_MINUS_DI', 'TA_MINUS_DM', 'TA_MOM', 'TA_MULT', 'TA_NATR', 'TA_OBV', 'TA_PLUS_DI', 'TA_PLUS_DM', 'TA_PPO', 'TA_ROC', 'TA_ROCP', 'TA_ROCR', 'TA_ROCR100', 'TA_RSI', 'TA_SAR', 'TA_SAREXT', 'TA_SIN', 'TA_SINH', 'TA_SMA', 'TA_SQRT', 'TA_STDDEV', 'TA_STOCH', 'TA_STOCHF', 'TA_STOCHRSI', 'TA_SUB', 'TA_SUM', 'TA_T3', 'TA_TAN', 'TA_TANH', 'TA_TEMA', 'TA_TRANGE', 'TA_TRIMA', 'TA_TRIX', 'TA_TSF', 'TA_TYPPRICE', 'TA_ULTOSC', 'TA_VAR', 'TA_WCLPRICE', 'TA_WILLR', 'TA_WMA', 'TC_FixedA', 'TC_FixedA2015', 'TC_FixedA2017', 'TC_TestStub', 'TC_Zero', 'TIME', 'TIMELINE', 'TIMELINEVOL', 'TR', 'TRACE', 'TURNOVER', 'TestOrderBroker', 'TimeDelta', 'TimeDelta_timedelta', 'TimeLineList', 'TimeLineRecord', 'TradeCostBase', 'TradeManager', 'TradeRecord', 'TradeRecordList', 'TradeRequest', 'TransList', 'TransRecord', 'UPNDAY', 'UTCOffset', 'V', 'VALUE', 'VAR', 'VARP', 'VIGOR', 'VOL', 'WARN', 'WEAVE', 'WEEK', 'WINNER', 'WITHDAY', 'WITHHALFYEAR', 'WITHHOUR', 'WITHHOUR2', 'WITHHOUR4', 'WITHKTYPE', 'WITHMIN', 'WITHMIN15', 'WITHMIN30', 'WITHMIN5', 'WITHMIN60', 'WITHMONTH', 'WITHQUARTER', 'WITHWEEK', 'WITHYEAR', 'WMA', 'YEAR', 'ZHBOND10', 'ZONGGUBEN', 'ZSCORE', 'active_device', 'add_class_logger_handler', 'add_local_hub', 'add_remote_hub', 'adjust_axes_show', 'analysis', 'analysis_sys_list', 'analysis_sys_list_multi', 'atexit', 'ax_draw_macd', 'ax_draw_macd2', 'ax_set_locator_formatter', 'backtest', 'batch_calculate_inds', 'blocka', 'blockbj', 'blockg', 'blocksh', 'blockstart', 'blocksz', 'blockzxb', 'broker', 'broker_easytrader', 'broker_mail', 'build_hub', 'can_upgrade', 'capture_multiprocess_all_logger', 'class_logger', 'close_ostream_to_python', 'close_spend_time', 'combinate_ind', 'combinate_ind_analysis', 'combinate_ind_analysis_multi', 'combinate_index', 'concat_to_df', 'constant', 'core', 'cpp', 'create_figure', 'crtAF', 'crtBrokerTM', 'crtCN', 'crtEV', 'crtMF', 'crtMM', 'crtOB', 'crtPG', 'crtSE', 'crtSEOptimal', 'crtSG', 'crtSP', 'crtST', 'crtTM', 'crt_pf_strategy', 'crt_sys_strategy', 'current_path', 'date', 'dates_to_np', 'dates_to_pa', 'datetime', 'df_to_ind', 'df_to_krecords', 'dll_directory', 'draw', 'el', 'extend', 'fetch_trial_license', 'find_optimal_system', 'find_optimal_system_multi', 'gca', 'gcf', 'get_block', 'get_business_name', 'get_current_draw_engine', 'get_current_hub', 'get_data_from_buffer_server', 'get_date_range', 'get_global_context', 'get_hub_name_list', 'get_hub_path', 'get_inds_view', 'get_inds_view_pyarrow', 'get_kdata', 'get_last_version', 'get_log_level', 'get_market_view', 'get_market_view_pyarrow', 'get_part', 'get_part_info', 'get_part_list', 'get_part_module', 'get_part_name_list', 'get_spot_from_buffer_server', 'get_stock', 'get_system_part_enum', 'get_system_part_name', 'get_version', 'get_version_git', 'get_version_with_build', 'help_part', 'hikyuu_init', 'hku_benchmark', 'hku_catch', 'hku_check', 'hku_check_ignore', 'hku_check_throw', 'hku_cleanup', 'hku_debug', 'hku_debug_if', 'hku_error', 'hku_error_if', 'hku_fatal', 'hku_fatal_if', 'hku_info', 'hku_info_if', 'hku_load', 'hku_logger', 'hku_run_ignore_exception', 'hku_save', 'hku_to_async', 'hku_trace', 'hku_trace_if', 'hku_warn', 'hku_warn_if', 'hub', 'in_interactive_session', 'in_ipython_frontend', 'indicator', 'inner_analysis_sys_list', 'inner_combinate_ind_analysis', 'inner_combinate_ind_analysis_with_block', 'io', 'iodog', 'is_valid_license', 'isinf', 'isnan', 'kf', 'krecords_to_df', 'krecords_to_np', 'krecords_to_pa', 'load_hikyuu', 'locale', 'new_Query_init', 'new_path', 'np', 'old_Query_init', 'open_ostream_to_python', 'open_spend_time', 'os', 'pa', 'part_clone', 'part_init', 'part_iter', 'pd', 'pickle', 'plugin_path', 'positions_to_df', 'positions_to_np', 'positions_to_pa', 'print_part_info', 'pyind', 'realtime_update_inner', 'realtime_update_wrap', 'register_extra_ktype', 'release_extra_ktype', 'remove_hub', 'remove_license', 'roundDown', 'roundEx', 'roundUp', 'run_in_strategy', 'scorerecords_to_df', 'scorerecords_to_np', 'search_part', 'select', 'select2', 'set_global_context', 'set_log_level', 'set_my_logger_file', 'set_python_in_interactive', 'set_python_in_jupyter', 'show_gcf', 'sm', 'spend_time', 'spot_agent_is_connected', 'spot_agent_is_running', 'start_data_server', 'start_spot_agent', 'stop_data_server', 'stop_spot_agent', 'sys', 'systemweights_to_df', 'systemweights_to_np', 'timedelta', 'timeline_to_df', 'timeline_to_np', 'timeline_to_pa', 'timeout', 'toPriceList', 'traceback', 'trade', 'trade_manage', 'trade_sys', 'trades_to_df', 'trades_to_np', 'trades_to_pa', 'translist_to_df', 'translist_to_np', 'translist_to_pa', 'update_hub', 'use_draw_engine', 'util', 'view_license', 'vl', 'weights_to_df', 'weights_to_np', 'weights_to_pa', 'with_trace', 'zsbk_a', 'zsbk_bj', 'zsbk_cyb', 'zsbk_hs300', 'zsbk_sh', 'zsbk_sh180', 'zsbk_sh50', 'zsbk_sz', 'zsbk_zxb', 'zsbk_zz100']
|
|
725
|
+
__all__ = ['A', 'ABS', 'ACOS', 'AD', 'ADVANCE', 'AF_EqualWeight', 'AF_FixedWeight', 'AF_FixedWeightList', 'AF_MultiFactor', 'AGG_COUNT', 'AGG_FUNC', 'AGG_MAD', 'AGG_MAX', 'AGG_MEAN', 'AGG_MEDIAN', 'AGG_MIN', 'AGG_PROD', 'AGG_QUANTILE', 'AGG_STD', 'AGG_SUM', 'AGG_VAR', 'ALIGN', 'AMA', 'AMO', 'ASIN', 'ATAN', 'ATR', 'AVEDEV', 'AllocateFundsBase', 'BACKSET', 'BARSCOUNT', 'BARSLAST', 'BARSLASTCOUNT', 'BARSSINCE', 'BARSSINCEN', 'BASE_DIR', 'BETWEEN', 'BLOCKSETNUM', 'BUSINESS', 'Block', 'BlockInfoDriver', 'BorrowRecord', 'BrokerPositionRecord', 'C', 'CAPITAL', 'CEILING', 'CLOSE', 'CN_Bool', 'CN_OPLine', 'CONST', 'CONTEXT', 'CONTEXT_K', 'CORR', 'COS', 'COST', 'COUNT', 'CROSS', 'CVAL', 'CYCLE', 'C_AMO', 'C_CLOSE', 'C_HIGH', 'C_KDATA', 'C_LOW', 'C_OPEN', 'C_VOL', 'ConditionBase', 'Constant', 'CostRecord', 'D', 'DATE', 'DAY', 'DEBUG', 'DECLINE', 'DEVSQ', 'DIFF', 'DISCARD', 'DMA', 'DOWNNDAY', 'DRAWBAND', 'DRAWBMP', 'DRAWICON', 'DRAWIMG', 'DRAWLINE', 'DRAWNULL', 'DRAWNUMBER', 'DRAWNUMBER_FIX', 'DRAWRECTREL', 'DRAWSL', 'DRAWTEXT', 'DRAWTEXT_FIX', 'DROPNA', 'DataDriverFactory', 'Datetime', 'DatetimeList', 'DatetimeList_to_df', 'DatetimeList_to_np', 'Datetime_date', 'Datetime_datetime', 'Days', 'EMA', 'ERROR', 'EVERY', 'EV_Bool', 'EV_TwoLine', 'EXIST', 'EXP', 'EasyTraderOrderBroker', 'EnvironmentBase', 'FATAL', 'FILTER', 'FINANCE', 'FLOOR', 'FundsRecord', 'GROUP_COUNT', 'GROUP_FUNC', 'GROUP_MAX', 'GROUP_MEAN', 'GROUP_MIN', 'GROUP_PROD', 'GROUP_SUM', 'H', 'HHV', 'HHVBARS', 'HIGH', 'HKUCheckError', 'HKUException', 'HOUR', 'HSL', 'Hours', 'IC', 'ICIR', 'IF', 'INBLOCK', 'INDEXA', 'INDEXADV', 'INDEXC', 'INDEXDEC', 'INDEXH', 'INDEXL', 'INDEXO', 'INDEXV', 'INFO', 'INSUM', 'INTPART', 'IR', 'ISINF', 'ISINFA', 'ISLASTBAR', 'ISNA', 'IndParam', 'Indicator', 'IndicatorImp', 'JUMPDOWN', 'JUMPUP', 'K', 'KALMAN', 'KDATA', 'KDATA_PART', 'KDJ', 'KData', 'KDataDriver', 'KDataToHdf5Importer', 'KRecord', 'KRecordList', 'L', 'LAST', 'LASTVALUE', 'LIUTONGPAN', 'LLV', 'LLVBARS', 'LN', 'LOG', 'LOG_LEVEL', 'LONGCROSS', 'LOW', 'LoanRecord', 'LoggingContext', 'MA', 'MACD', 'MAX', 'MDD', 'MF_EqualWeight', 'MF_ICIRWeight', 'MF_ICWeight', 'MF_Weight', 'MIN', 'MINUTE', 'MM_FixedCapital', 'MM_FixedCapitalFunds', 'MM_FixedCount', 'MM_FixedCountTps', 'MM_FixedPercent', 'MM_FixedRisk', 'MM_FixedUnits', 'MM_Nothing', 'MM_WilliamsFixedRisk', 'MOD', 'MONTH', 'MRR', 'MailOrderBroker', 'MarketInfo', 'Microseconds', 'Milliseconds', 'Minutes', 'MoneyManagerBase', 'MultiFactorBase', 'NDAY', 'NORM_MinMax', 'NORM_NOTHING', 'NORM_Quantile', 'NORM_Quantile_Uniform', 'NORM_Zscore', 'NOT', 'NormalizeBase', 'O', 'OFF', 'OPEN', 'OrderBrokerBase', 'OrderBrokerWrap', 'PF_Simple', 'PF_WithoutAF', 'PG_FixedHoldDays', 'PG_FixedPercent', 'PG_NoGoal', 'PLOYLINE', 'POS', 'POW', 'PRICELIST', 'Parameter', 'Parameter_items', 'Parameter_iter', 'Parameter_keys', 'Parameter_to_dict', 'Path', 'Performance', 'Performance_to_df', 'Portfolio', 'PositionRecord', 'PositionRecordList', 'ProfitGoalBase', 'Q', 'QUANTILE_TRUNC', 'Query', 'RANK', 'RECOVER_BACKWARD', 'RECOVER_EQUAL_BACKWARD', 'RECOVER_EQUAL_FORWARD', 'RECOVER_FORWARD', 'REF', 'REFX', 'REPLACE', 'RESULT', 'REVERSE', 'RGB', 'ROC', 'ROCP', 'ROCR', 'ROCR100', 'ROUND', 'ROUNDDOWN', 'ROUNDUP', 'RSI', 'SAFTYLOSS', 'SCFilter_AmountLimit', 'SCFilter_Group', 'SCFilter_IgnoreNan', 'SCFilter_LessOrEqualValue', 'SCFilter_Price', 'SCFilter_TopN', 'SE_EvaluateOptimal', 'SE_Fixed', 'SE_MaxFundsOptimal', 'SE_MultiFactor', 'SE_MultiFactor2', 'SE_PerformanceOptimal', 'SE_Signal', 'SGN', 'SG_Add', 'SG_AllwaysBuy', 'SG_And', 'SG_Band', 'SG_Bool', 'SG_Buy', 'SG_Cross', 'SG_CrossGold', 'SG_Cycle', 'SG_Div', 'SG_Flex', 'SG_Mul', 'SG_OneSide', 'SG_Or', 'SG_Sell', 'SG_Single', 'SG_Single2', 'SG_Sub', 'SHOWICONS', 'SIN', 'SLICE', 'SLOPE', 'SMA', 'SPEARMAN', 'SP_FixedPercent', 'SP_FixedValue', 'SP_LogNormal', 'SP_Normal', 'SP_TruncNormal', 'SP_Uniform', 'SQRT', 'STD', 'STDEV', 'STDP', 'STICKLINE', 'ST_FixedPercent', 'ST_Indicator', 'ST_Saftyloss', 'SUM', 'SUMBARS', 'SYS_Simple', 'SYS_WalkForward', 'ScoreRecord', 'ScoreRecordList', 'ScoresFilterBase', 'Seconds', 'SelectorBase', 'SignalBase', 'SlippageBase', 'SpotRecord', 'Stock', 'StockManager', 'StockTypeInfo', 'StockWeight', 'StockWeightList', 'StoplossBase', 'Strategy', 'StrategyContext', 'System', 'SystemPart', 'SystemWeight', 'SystemWeightList', 'TAN', 'TA_ACCBANDS', 'TA_ACOS', 'TA_AD', 'TA_ADD', 'TA_ADOSC', 'TA_ADX', 'TA_ADXR', 'TA_APO', 'TA_AROON', 'TA_AROONOSC', 'TA_ASIN', 'TA_ATAN', 'TA_ATR', 'TA_AVGDEV', 'TA_AVGPRICE', 'TA_BBANDS', 'TA_BETA', 'TA_BOP', 'TA_CCI', 'TA_CDL2CROWS', 'TA_CDL3BLACKCROWS', 'TA_CDL3INSIDE', 'TA_CDL3LINESTRIKE', 'TA_CDL3OUTSIDE', 'TA_CDL3STARSINSOUTH', 'TA_CDL3WHITESOLDIERS', 'TA_CDLABANDONEDBABY', 'TA_CDLADVANCEBLOCK', 'TA_CDLBELTHOLD', 'TA_CDLBREAKAWAY', 'TA_CDLCLOSINGMARUBOZU', 'TA_CDLCONCEALBABYSWALL', 'TA_CDLCOUNTERATTACK', 'TA_CDLDARKCLOUDCOVER', 'TA_CDLDOJI', 'TA_CDLDOJISTAR', 'TA_CDLDRAGONFLYDOJI', 'TA_CDLENGULFING', 'TA_CDLEVENINGDOJISTAR', 'TA_CDLEVENINGSTAR', 'TA_CDLGAPSIDESIDEWHITE', 'TA_CDLGRAVESTONEDOJI', 'TA_CDLHAMMER', 'TA_CDLHANGINGMAN', 'TA_CDLHARAMI', 'TA_CDLHARAMICROSS', 'TA_CDLHIGHWAVE', 'TA_CDLHIKKAKE', 'TA_CDLHIKKAKEMOD', 'TA_CDLHOMINGPIGEON', 'TA_CDLIDENTICAL3CROWS', 'TA_CDLINNECK', 'TA_CDLINVERTEDHAMMER', 'TA_CDLKICKING', 'TA_CDLKICKINGBYLENGTH', 'TA_CDLLADDERBOTTOM', 'TA_CDLLONGLEGGEDDOJI', 'TA_CDLLONGLINE', 'TA_CDLMARUBOZU', 'TA_CDLMATCHINGLOW', 'TA_CDLMATHOLD', 'TA_CDLMORNINGDOJISTAR', 'TA_CDLMORNINGSTAR', 'TA_CDLONNECK', 'TA_CDLPIERCING', 'TA_CDLRICKSHAWMAN', 'TA_CDLRISEFALL3METHODS', 'TA_CDLSEPARATINGLINES', 'TA_CDLSHOOTINGSTAR', 'TA_CDLSHORTLINE', 'TA_CDLSPINNINGTOP', 'TA_CDLSTALLEDPATTERN', 'TA_CDLSTICKSANDWICH', 'TA_CDLTAKURI', 'TA_CDLTASUKIGAP', 'TA_CDLTHRUSTING', 'TA_CDLTRISTAR', 'TA_CDLUNIQUE3RIVER', 'TA_CDLUPSIDEGAP2CROWS', 'TA_CDLXSIDEGAP3METHODS', 'TA_CEIL', 'TA_CMO', 'TA_CORREL', 'TA_COS', 'TA_COSH', 'TA_DEMA', 'TA_DIV', 'TA_DX', 'TA_EMA', 'TA_EXP', 'TA_FLOOR', 'TA_HT_DCPERIOD', 'TA_HT_DCPHASE', 'TA_HT_PHASOR', 'TA_HT_SINE', 'TA_HT_TRENDLINE', 'TA_HT_TRENDMODE', 'TA_IMI', 'TA_KAMA', 'TA_LINEARREG', 'TA_LINEARREG_ANGLE', 'TA_LINEARREG_INTERCEPT', 'TA_LINEARREG_SLOPE', 'TA_LN', 'TA_LOG10', 'TA_MA', 'TA_MACD', 'TA_MACDEXT', 'TA_MACDFIX', 'TA_MAMA', 'TA_MAVP', 'TA_MAX', 'TA_MAXINDEX', 'TA_MEDPRICE', 'TA_MFI', 'TA_MIDPOINT', 'TA_MIDPRICE', 'TA_MIN', 'TA_MININDEX', 'TA_MINMAX', 'TA_MINMAXINDEX', 'TA_MINUS_DI', 'TA_MINUS_DM', 'TA_MOM', 'TA_MULT', 'TA_NATR', 'TA_OBV', 'TA_PLUS_DI', 'TA_PLUS_DM', 'TA_PPO', 'TA_ROC', 'TA_ROCP', 'TA_ROCR', 'TA_ROCR100', 'TA_RSI', 'TA_SAR', 'TA_SAREXT', 'TA_SIN', 'TA_SINH', 'TA_SMA', 'TA_SQRT', 'TA_STDDEV', 'TA_STOCH', 'TA_STOCHF', 'TA_STOCHRSI', 'TA_SUB', 'TA_SUM', 'TA_T3', 'TA_TAN', 'TA_TANH', 'TA_TEMA', 'TA_TRANGE', 'TA_TRIMA', 'TA_TRIX', 'TA_TSF', 'TA_TYPPRICE', 'TA_ULTOSC', 'TA_VAR', 'TA_WCLPRICE', 'TA_WILLR', 'TA_WMA', 'TC_FixedA', 'TC_FixedA2015', 'TC_FixedA2017', 'TC_TestStub', 'TC_Zero', 'TIME', 'TIMELINE', 'TIMELINEVOL', 'TR', 'TRACE', 'TURNOVER', 'TestOrderBroker', 'TimeDelta', 'TimeDelta_timedelta', 'TimeLineList', 'TimeLineRecord', 'TradeCostBase', 'TradeManager', 'TradeRecord', 'TradeRecordList', 'TradeRequest', 'TransList', 'TransRecord', 'UPNDAY', 'UTCOffset', 'V', 'VALUE', 'VAR', 'VARP', 'VIGOR', 'VOL', 'WARN', 'WEAVE', 'WEEK', 'WINNER', 'WITHDAY', 'WITHHALFYEAR', 'WITHHOUR', 'WITHHOUR2', 'WITHHOUR4', 'WITHKTYPE', 'WITHMIN', 'WITHMIN15', 'WITHMIN30', 'WITHMIN5', 'WITHMIN60', 'WITHMONTH', 'WITHQUARTER', 'WITHWEEK', 'WITHYEAR', 'WMA', 'YEAR', 'ZHBOND10', 'ZONGGUBEN', 'ZSCORE', 'active_device', 'add_class_logger_handler', 'add_local_hub', 'add_remote_hub', 'adjust_axes_show', 'analysis', 'analysis_sys_list', 'analysis_sys_list_multi', 'atexit', 'ax_draw_macd', 'ax_draw_macd2', 'ax_set_locator_formatter', 'backtest', 'batch_calculate_inds', 'bind_email', 'blocka', 'blockbj', 'blockg', 'blocksh', 'blockstart', 'blocksz', 'blockzxb', 'broker', 'broker_easytrader', 'broker_mail', 'build_hub', 'can_upgrade', 'capture_multiprocess_all_logger', 'class_logger', 'close_ostream_to_python', 'close_spend_time', 'combinate_ind', 'combinate_ind_analysis', 'combinate_ind_analysis_multi', 'combinate_index', 'concat_to_df', 'constant', 'core', 'cpp', 'create_figure', 'crtAF', 'crtBrokerTM', 'crtCN', 'crtEV', 'crtMF', 'crtMM', 'crtOB', 'crtPG', 'crtSE', 'crtSEOptimal', 'crtSG', 'crtSP', 'crtST', 'crtTM', 'crt_pf_strategy', 'crt_sys_strategy', 'current_path', 'date', 'dates_to_np', 'datetime', 'df_to_ind', 'df_to_krecords', 'dll_directory', 'draw', 'el', 'extend', 'fetch_trial_license', 'find_optimal_system', 'find_optimal_system_multi', 'gca', 'gcf', 'get_block', 'get_business_name', 'get_current_draw_engine', 'get_current_hub', 'get_data_from_buffer_server', 'get_date_range', 'get_expire_date', 'get_funds_list', 'get_global_context', 'get_hub_name_list', 'get_hub_path', 'get_kdata', 'get_last_version', 'get_log_level', 'get_major_version', 'get_part', 'get_part_info', 'get_part_list', 'get_part_module', 'get_part_name_list', 'get_spot_from_buffer_server', 'get_stock', 'get_system_part_enum', 'get_system_part_name', 'get_version', 'get_version_git', 'get_version_with_build', 'help_part', 'hikyuu_init', 'hikyuu_major_version', 'hikyuu_plugin', 'hku_benchmark', 'hku_catch', 'hku_check', 'hku_check_ignore', 'hku_check_throw', 'hku_cleanup', 'hku_debug', 'hku_debug_if', 'hku_error', 'hku_error_if', 'hku_fatal', 'hku_fatal_if', 'hku_info', 'hku_info_if', 'hku_load', 'hku_logger', 'hku_run_ignore_exception', 'hku_save', 'hku_to_async', 'hku_trace', 'hku_trace_if', 'hku_warn', 'hku_warn_if', 'hub', 'in_interactive_session', 'in_ipython_frontend', 'indicator', 'inner_analysis_sys_list', 'inner_combinate_ind_analysis', 'inner_combinate_ind_analysis_with_block', 'io', 'iodog', 'is_valid_license', 'isinf', 'isnan', 'kf', 'krecords_to_df', 'krecords_to_np', 'load_hikyuu', 'locale', 'new_Query_init', 'new_path', 'np', 'old_Query_init', 'open_ostream_to_python', 'open_spend_time', 'os', 'parallel_run_pf', 'parallel_run_sys', 'part_clone', 'part_init', 'part_iter', 'pd', 'pickle', 'plugin_major_version', 'plugin_path', 'plugin_version', 'positions_to_df', 'positions_to_np', 'print_part_info', 'pyind', 'realtime_update_inner', 'realtime_update_wrap', 'register_extra_ktype', 'release_extra_ktype', 'remove_hub', 'remove_license', 'roundDown', 'roundEx', 'roundUp', 'run_in_strategy', 'scorerecords_to_df', 'scorerecords_to_np', 'search_part', 'select', 'select2', 'set_global_context', 'set_log_level', 'set_my_logger_file', 'set_python_in_interactive', 'set_python_in_jupyter', 'show_gcf', 'sm', 'spend_time', 'spot_agent_is_connected', 'spot_agent_is_running', 'start_data_server', 'start_spot_agent', 'stop_data_server', 'stop_spot_agent', 'sys', 'systemweights_to_df', 'systemweights_to_np', 'timedelta', 'timeline_to_df', 'timeline_to_np', 'timeout', 'toPriceList', 'traceback', 'trade', 'trade_manage', 'trade_sys', 'trades_to_df', 'trades_to_np', 'translist_to_df', 'translist_to_np', 'update_hub', 'use_draw_engine', 'util', 'view_license', 'vl', 'weights_to_df', 'weights_to_np', 'with_trace', 'zsbk_a', 'zsbk_bj', 'zsbk_cyb', 'zsbk_hs300', 'zsbk_sh', 'zsbk_sh180', 'zsbk_sh50', 'zsbk_sz', 'zsbk_zxb', 'zsbk_zz100']
|
|
705
726
|
class iodog:
|
|
706
|
-
__firstlineno__: typing.ClassVar[int] =
|
|
727
|
+
__firstlineno__: typing.ClassVar[int] = 119
|
|
707
728
|
__static_attributes__: typing.ClassVar[tuple] = tuple()
|
|
708
729
|
@staticmethod
|
|
709
730
|
def close():
|
|
@@ -718,6 +739,8 @@ def get_global_context():
|
|
|
718
739
|
|
|
719
740
|
:rtype: KData
|
|
720
741
|
"""
|
|
742
|
+
def get_major_version(version_str):
|
|
743
|
+
...
|
|
721
744
|
def hku_cleanup():
|
|
722
745
|
...
|
|
723
746
|
def hku_load(filename):
|
|
@@ -841,7 +864,7 @@ V: cpp.core313.Indicator # value = Indicator{...
|
|
|
841
864
|
VOL: cpp.core313.Indicator # value = Indicator{...
|
|
842
865
|
WARN: cpp.core313.LOG_LEVEL # value = <LOG_LEVEL.WARN: 3>
|
|
843
866
|
__copyright__: str = '\nApache License Version 2.0\n\nCopyright (c) 2010-2017 fasiondog\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the "Software"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n'
|
|
844
|
-
__version__: str = '2.
|
|
867
|
+
__version__: str = '2.7.0'
|
|
845
868
|
blocka = None
|
|
846
869
|
blockbj = None
|
|
847
870
|
blockg = None
|
|
@@ -852,9 +875,12 @@ blockzxb = None
|
|
|
852
875
|
constant: cpp.core313.Constant # value = <hikyuu.cpp.core313.Constant object>
|
|
853
876
|
current_path: str = ''
|
|
854
877
|
dll_directory: str = '/Users/fasiondog/workspace/hikyuu/hikyuu/cpp'
|
|
878
|
+
hikyuu_major_version: str = '2.7.0'
|
|
855
879
|
hku_logger: logging.Logger # value = <Logger hikyuu (INFO)>
|
|
856
880
|
new_path: str = '/Users/fasiondog/workspace/hikyuu/hikyuu/cpp'
|
|
857
|
-
|
|
881
|
+
plugin_major_version: str = '2.7.0'
|
|
882
|
+
plugin_path: str = '/Users/fasiondog/workspace/hku_plugin/hikyuu_plugin'
|
|
883
|
+
plugin_version: str = '2.7.0'
|
|
858
884
|
sm: cpp.core313.StockManager # value = <hikyuu.cpp.core313.StockManager object>
|
|
859
885
|
zsbk_a = None
|
|
860
886
|
zsbk_bj = None
|
hikyuu/analysis/__init__.pyi
CHANGED
|
@@ -32,6 +32,7 @@ from hikyuu.cpp.core313 import LoanRecord
|
|
|
32
32
|
from hikyuu.cpp.core313 import MarketInfo
|
|
33
33
|
from hikyuu.cpp.core313 import MoneyManagerBase
|
|
34
34
|
from hikyuu.cpp.core313 import MultiFactorBase
|
|
35
|
+
from hikyuu.cpp.core313 import NormalizeBase
|
|
35
36
|
from hikyuu.cpp.core313 import OrderBrokerBase
|
|
36
37
|
from hikyuu.cpp.core313 import Parameter
|
|
37
38
|
from hikyuu.cpp.core313 import Performance
|
|
@@ -42,6 +43,7 @@ from hikyuu.cpp.core313 import ProfitGoalBase
|
|
|
42
43
|
from hikyuu.cpp.core313 import Query
|
|
43
44
|
from hikyuu.cpp.core313 import ScoreRecord
|
|
44
45
|
from hikyuu.cpp.core313 import ScoreRecordList
|
|
46
|
+
from hikyuu.cpp.core313 import ScoresFilterBase
|
|
45
47
|
from hikyuu.cpp.core313 import SelectorBase
|
|
46
48
|
from hikyuu.cpp.core313 import SignalBase
|
|
47
49
|
from hikyuu.cpp.core313 import SlippageBase
|
|
@@ -77,6 +79,7 @@ from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 im
|
|
|
77
79
|
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import AF_FixedWeightList
|
|
78
80
|
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import AF_MultiFactor
|
|
79
81
|
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import AGG_COUNT
|
|
82
|
+
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import AGG_FUNC
|
|
80
83
|
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import AGG_MAD
|
|
81
84
|
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import AGG_MAX
|
|
82
85
|
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import AGG_MEAN
|
|
@@ -139,6 +142,13 @@ from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 im
|
|
|
139
142
|
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import FILTER
|
|
140
143
|
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import FINANCE
|
|
141
144
|
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import FLOOR
|
|
145
|
+
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import GROUP_COUNT
|
|
146
|
+
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import GROUP_FUNC
|
|
147
|
+
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import GROUP_MAX
|
|
148
|
+
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import GROUP_MEAN
|
|
149
|
+
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import GROUP_MIN
|
|
150
|
+
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import GROUP_PROD
|
|
151
|
+
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import GROUP_SUM
|
|
142
152
|
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import HHV
|
|
143
153
|
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import HHVBARS
|
|
144
154
|
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import HOUR
|
|
@@ -201,6 +211,11 @@ from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 im
|
|
|
201
211
|
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import Milliseconds
|
|
202
212
|
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import Minutes
|
|
203
213
|
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import NDAY
|
|
214
|
+
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import NORM_MinMax
|
|
215
|
+
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import NORM_NOTHING
|
|
216
|
+
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import NORM_Quantile
|
|
217
|
+
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import NORM_Quantile_Uniform
|
|
218
|
+
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import NORM_Zscore
|
|
204
219
|
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import NOT
|
|
205
220
|
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import PF_Simple
|
|
206
221
|
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import PF_WithoutAF
|
|
@@ -210,6 +225,7 @@ from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 im
|
|
|
210
225
|
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import POS
|
|
211
226
|
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import POW
|
|
212
227
|
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import PRICELIST
|
|
228
|
+
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import QUANTILE_TRUNC
|
|
213
229
|
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import RANK
|
|
214
230
|
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import RECOVER_BACKWARD
|
|
215
231
|
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import RECOVER_EQUAL_BACKWARD
|
|
@@ -229,10 +245,17 @@ from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 im
|
|
|
229
245
|
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import ROUNDUP
|
|
230
246
|
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import RSI
|
|
231
247
|
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import SAFTYLOSS
|
|
248
|
+
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import SCFilter_AmountLimit
|
|
249
|
+
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import SCFilter_Group
|
|
250
|
+
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import SCFilter_IgnoreNan
|
|
251
|
+
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import SCFilter_LessOrEqualValue
|
|
252
|
+
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import SCFilter_Price
|
|
253
|
+
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import SCFilter_TopN
|
|
232
254
|
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import SE_EvaluateOptimal
|
|
233
255
|
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import SE_Fixed
|
|
234
256
|
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import SE_MaxFundsOptimal
|
|
235
257
|
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import SE_MultiFactor
|
|
258
|
+
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import SE_MultiFactor2
|
|
236
259
|
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import SE_PerformanceOptimal
|
|
237
260
|
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import SE_Signal
|
|
238
261
|
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import SGN
|
|
@@ -261,6 +284,10 @@ from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 im
|
|
|
261
284
|
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import SPEARMAN
|
|
262
285
|
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import SP_FixedPercent
|
|
263
286
|
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import SP_FixedValue
|
|
287
|
+
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import SP_LogNormal
|
|
288
|
+
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import SP_Normal
|
|
289
|
+
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import SP_TruncNormal
|
|
290
|
+
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import SP_Uniform
|
|
264
291
|
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import SQRT
|
|
265
292
|
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import STDEV
|
|
266
293
|
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import STDP
|
|
@@ -475,6 +502,7 @@ from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 im
|
|
|
475
502
|
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import active_device
|
|
476
503
|
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import backtest
|
|
477
504
|
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import batch_calculate_inds
|
|
505
|
+
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import bind_email
|
|
478
506
|
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import can_upgrade
|
|
479
507
|
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import close_ostream_to_python
|
|
480
508
|
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import close_spend_time
|
|
@@ -486,7 +514,6 @@ from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 im
|
|
|
486
514
|
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import crt_pf_strategy
|
|
487
515
|
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import crt_sys_strategy
|
|
488
516
|
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import dates_to_np
|
|
489
|
-
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import dates_to_pa
|
|
490
517
|
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import df_to_krecords
|
|
491
518
|
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import fetch_trial_license
|
|
492
519
|
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import find_optimal_system
|
|
@@ -495,13 +522,11 @@ from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 im
|
|
|
495
522
|
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import get_business_name
|
|
496
523
|
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import get_data_from_buffer_server
|
|
497
524
|
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import get_date_range
|
|
498
|
-
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import
|
|
499
|
-
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import
|
|
525
|
+
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import get_expire_date
|
|
526
|
+
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import get_funds_list
|
|
500
527
|
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import get_kdata
|
|
501
528
|
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import get_last_version
|
|
502
529
|
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import get_log_level
|
|
503
|
-
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import get_market_view
|
|
504
|
-
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import get_market_view_pyarrow
|
|
505
530
|
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import get_spot_from_buffer_server
|
|
506
531
|
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import get_stock
|
|
507
532
|
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import get_system_part_enum
|
|
@@ -518,12 +543,12 @@ from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 im
|
|
|
518
543
|
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import isnan
|
|
519
544
|
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import krecords_to_df
|
|
520
545
|
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import krecords_to_np
|
|
521
|
-
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import krecords_to_pa
|
|
522
546
|
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import open_ostream_to_python
|
|
523
547
|
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import open_spend_time
|
|
548
|
+
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import parallel_run_pf
|
|
549
|
+
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import parallel_run_sys
|
|
524
550
|
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import positions_to_df
|
|
525
551
|
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import positions_to_np
|
|
526
|
-
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import positions_to_pa
|
|
527
552
|
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import register_extra_ktype
|
|
528
553
|
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import release_extra_ktype
|
|
529
554
|
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import remove_license
|
|
@@ -546,18 +571,14 @@ from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 im
|
|
|
546
571
|
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import systemweights_to_np
|
|
547
572
|
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import timeline_to_df
|
|
548
573
|
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import timeline_to_np
|
|
549
|
-
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import timeline_to_pa
|
|
550
574
|
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import toPriceList
|
|
551
575
|
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import trades_to_df
|
|
552
576
|
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import trades_to_np
|
|
553
|
-
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import trades_to_pa
|
|
554
577
|
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import translist_to_df
|
|
555
578
|
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import translist_to_np
|
|
556
|
-
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import translist_to_pa
|
|
557
579
|
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import view_license
|
|
558
580
|
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import weights_to_df
|
|
559
581
|
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import weights_to_np
|
|
560
|
-
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import weights_to_pa
|
|
561
582
|
import pandas as pd
|
|
562
583
|
import sys as sys
|
|
563
584
|
from . import analysis
|