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/analysis/analysis.pyi
CHANGED
|
@@ -28,6 +28,7 @@ from hikyuu.cpp.core313 import LoanRecord
|
|
|
28
28
|
from hikyuu.cpp.core313 import MarketInfo
|
|
29
29
|
from hikyuu.cpp.core313 import MoneyManagerBase
|
|
30
30
|
from hikyuu.cpp.core313 import MultiFactorBase
|
|
31
|
+
from hikyuu.cpp.core313 import NormalizeBase
|
|
31
32
|
from hikyuu.cpp.core313 import OrderBrokerBase
|
|
32
33
|
from hikyuu.cpp.core313 import Parameter
|
|
33
34
|
from hikyuu.cpp.core313 import Performance
|
|
@@ -38,6 +39,7 @@ from hikyuu.cpp.core313 import ProfitGoalBase
|
|
|
38
39
|
from hikyuu.cpp.core313 import Query
|
|
39
40
|
from hikyuu.cpp.core313 import ScoreRecord
|
|
40
41
|
from hikyuu.cpp.core313 import ScoreRecordList
|
|
42
|
+
from hikyuu.cpp.core313 import ScoresFilterBase
|
|
41
43
|
from hikyuu.cpp.core313 import SelectorBase
|
|
42
44
|
from hikyuu.cpp.core313 import SignalBase
|
|
43
45
|
from hikyuu.cpp.core313 import SlippageBase
|
|
@@ -73,6 +75,7 @@ from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 im
|
|
|
73
75
|
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import AF_FixedWeightList
|
|
74
76
|
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import AF_MultiFactor
|
|
75
77
|
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import AGG_COUNT
|
|
78
|
+
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import AGG_FUNC
|
|
76
79
|
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import AGG_MAD
|
|
77
80
|
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import AGG_MAX
|
|
78
81
|
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import AGG_MEAN
|
|
@@ -135,6 +138,13 @@ from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 im
|
|
|
135
138
|
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import FILTER
|
|
136
139
|
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import FINANCE
|
|
137
140
|
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import FLOOR
|
|
141
|
+
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import GROUP_COUNT
|
|
142
|
+
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import GROUP_FUNC
|
|
143
|
+
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import GROUP_MAX
|
|
144
|
+
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import GROUP_MEAN
|
|
145
|
+
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import GROUP_MIN
|
|
146
|
+
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import GROUP_PROD
|
|
147
|
+
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import GROUP_SUM
|
|
138
148
|
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import HHV
|
|
139
149
|
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import HHVBARS
|
|
140
150
|
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import HOUR
|
|
@@ -197,6 +207,11 @@ from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 im
|
|
|
197
207
|
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import Milliseconds
|
|
198
208
|
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import Minutes
|
|
199
209
|
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import NDAY
|
|
210
|
+
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import NORM_MinMax
|
|
211
|
+
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import NORM_NOTHING
|
|
212
|
+
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import NORM_Quantile
|
|
213
|
+
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import NORM_Quantile_Uniform
|
|
214
|
+
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import NORM_Zscore
|
|
200
215
|
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import NOT
|
|
201
216
|
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import PF_Simple
|
|
202
217
|
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import PF_WithoutAF
|
|
@@ -206,6 +221,7 @@ from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 im
|
|
|
206
221
|
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import POS
|
|
207
222
|
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import POW
|
|
208
223
|
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import PRICELIST
|
|
224
|
+
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import QUANTILE_TRUNC
|
|
209
225
|
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import RANK
|
|
210
226
|
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import RECOVER_BACKWARD
|
|
211
227
|
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import RECOVER_EQUAL_BACKWARD
|
|
@@ -225,10 +241,17 @@ from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 im
|
|
|
225
241
|
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import ROUNDUP
|
|
226
242
|
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import RSI
|
|
227
243
|
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import SAFTYLOSS
|
|
244
|
+
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import SCFilter_AmountLimit
|
|
245
|
+
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import SCFilter_Group
|
|
246
|
+
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import SCFilter_IgnoreNan
|
|
247
|
+
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import SCFilter_LessOrEqualValue
|
|
248
|
+
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import SCFilter_Price
|
|
249
|
+
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import SCFilter_TopN
|
|
228
250
|
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import SE_EvaluateOptimal
|
|
229
251
|
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import SE_Fixed
|
|
230
252
|
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import SE_MaxFundsOptimal
|
|
231
253
|
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import SE_MultiFactor
|
|
254
|
+
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import SE_MultiFactor2
|
|
232
255
|
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import SE_PerformanceOptimal
|
|
233
256
|
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import SE_Signal
|
|
234
257
|
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import SGN
|
|
@@ -257,6 +280,10 @@ from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 im
|
|
|
257
280
|
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import SPEARMAN
|
|
258
281
|
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import SP_FixedPercent
|
|
259
282
|
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import SP_FixedValue
|
|
283
|
+
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import SP_LogNormal
|
|
284
|
+
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import SP_Normal
|
|
285
|
+
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import SP_TruncNormal
|
|
286
|
+
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import SP_Uniform
|
|
260
287
|
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import SQRT
|
|
261
288
|
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import STDEV
|
|
262
289
|
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import STDP
|
|
@@ -471,6 +498,7 @@ from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 im
|
|
|
471
498
|
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import active_device
|
|
472
499
|
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import backtest
|
|
473
500
|
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import batch_calculate_inds
|
|
501
|
+
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import bind_email
|
|
474
502
|
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import can_upgrade
|
|
475
503
|
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import close_ostream_to_python
|
|
476
504
|
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import close_spend_time
|
|
@@ -482,7 +510,6 @@ from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 im
|
|
|
482
510
|
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import crt_pf_strategy
|
|
483
511
|
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import crt_sys_strategy
|
|
484
512
|
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import dates_to_np
|
|
485
|
-
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import dates_to_pa
|
|
486
513
|
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import df_to_krecords
|
|
487
514
|
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import fetch_trial_license
|
|
488
515
|
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import find_optimal_system
|
|
@@ -491,13 +518,11 @@ from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 im
|
|
|
491
518
|
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import get_business_name
|
|
492
519
|
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import get_data_from_buffer_server
|
|
493
520
|
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import get_date_range
|
|
494
|
-
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import
|
|
495
|
-
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import
|
|
521
|
+
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import get_expire_date
|
|
522
|
+
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import get_funds_list
|
|
496
523
|
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import get_kdata
|
|
497
524
|
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import get_last_version
|
|
498
525
|
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import get_log_level
|
|
499
|
-
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import get_market_view
|
|
500
|
-
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import get_market_view_pyarrow
|
|
501
526
|
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import get_spot_from_buffer_server
|
|
502
527
|
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import get_stock
|
|
503
528
|
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import get_system_part_enum
|
|
@@ -514,12 +539,12 @@ from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 im
|
|
|
514
539
|
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import isnan
|
|
515
540
|
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import krecords_to_df
|
|
516
541
|
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import krecords_to_np
|
|
517
|
-
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import krecords_to_pa
|
|
518
542
|
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import open_ostream_to_python
|
|
519
543
|
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import open_spend_time
|
|
544
|
+
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import parallel_run_pf
|
|
545
|
+
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import parallel_run_sys
|
|
520
546
|
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import positions_to_df
|
|
521
547
|
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import positions_to_np
|
|
522
|
-
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import positions_to_pa
|
|
523
548
|
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import register_extra_ktype
|
|
524
549
|
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import release_extra_ktype
|
|
525
550
|
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import remove_license
|
|
@@ -542,21 +567,17 @@ from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 im
|
|
|
542
567
|
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import systemweights_to_np
|
|
543
568
|
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import timeline_to_df
|
|
544
569
|
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import timeline_to_np
|
|
545
|
-
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import timeline_to_pa
|
|
546
570
|
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import toPriceList
|
|
547
571
|
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import trades_to_df
|
|
548
572
|
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import trades_to_np
|
|
549
|
-
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import trades_to_pa
|
|
550
573
|
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import translist_to_df
|
|
551
574
|
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import translist_to_np
|
|
552
|
-
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import translist_to_pa
|
|
553
575
|
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import view_license
|
|
554
576
|
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import weights_to_df
|
|
555
577
|
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import weights_to_np
|
|
556
|
-
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import weights_to_pa
|
|
557
578
|
import pandas as pd
|
|
558
579
|
import sys as sys
|
|
559
|
-
__all__ = ['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', 'ASIN', 'ATAN', 'ATR', 'AVEDEV', 'AllocateFundsBase', 'BACKSET', 'BARSCOUNT', 'BARSLAST', 'BARSLASTCOUNT', 'BARSSINCE', 'BARSSINCEN', 'BETWEEN', 'BLOCKSETNUM', 'BUSINESS', 'Block', 'BlockInfoDriver', 'BorrowRecord', 'BrokerPositionRecord', 'CEILING', 'CN_Bool', 'CN_OPLine', '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', 'DATE', 'DAY', 'DEBUG', 'DECLINE', 'DEVSQ', 'DIFF', 'DISCARD', 'DMA', 'DOWNNDAY', 'DROPNA', 'DataDriverFactory', 'Datetime', 'DatetimeList', 'Days', 'EMA', 'ERROR', 'EVERY', 'EV_Bool', 'EV_TwoLine', 'EXIST', 'EXP', 'EnvironmentBase', 'FATAL', 'FILTER', 'FINANCE', 'FLOOR', 'FundsRecord', 'HHV', 'HHVBARS', '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', 'KALMAN', 'KDATA_PART', 'KData', 'KDataDriver', 'KDataToHdf5Importer', 'KRecord', 'KRecordList', 'LAST', 'LASTVALUE', 'LIUTONGPAN', 'LLV', 'LLVBARS', 'LN', 'LOG', 'LOG_LEVEL', 'LONGCROSS', 'LoanRecord', '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', 'MarketInfo', 'Microseconds', 'Milliseconds', 'Minutes', 'MoneyManagerBase', 'MultiFactorBase', 'NDAY', 'NOT', 'OFF', 'OrderBrokerBase', 'PF_Simple', 'PF_WithoutAF', 'PG_FixedHoldDays', 'PG_FixedPercent', 'PG_NoGoal', 'POS', 'POW', 'PRICELIST', 'Parameter', 'Performance', 'Portfolio', 'PositionRecord', 'PositionRecordList', 'ProfitGoalBase', 'Query', 'RANK', 'RECOVER_BACKWARD', 'RECOVER_EQUAL_BACKWARD', 'RECOVER_EQUAL_FORWARD', 'RECOVER_FORWARD', 'REF', 'REFX', 'REPLACE', 'RESULT', 'REVERSE', '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', 'SIN', 'SLICE', 'SLOPE', 'SMA', 'SPEARMAN', 'SP_FixedPercent', 'SP_FixedValue', 'SQRT', 'STDEV', 'STDP', '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', 'TimeDelta', 'TimeLineList', 'TimeLineRecord', 'TradeCostBase', 'TradeManager', 'TradeRecord', 'TradeRecordList', 'TradeRequest', 'TransList', 'TransRecord', 'UPNDAY', 'UTCOffset', 'VAR', 'VARP', 'VIGOR', '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', 'analysis_sys_list', 'analysis_sys_list_multi', 'backtest', 'batch_calculate_inds', 'can_upgrade', 'close_ostream_to_python', 'close_spend_time', 'combinate_ind', 'combinate_ind_analysis', 'combinate_ind_analysis_multi', 'combinate_index', 'constant', 'crtBrokerTM', 'crtSEOptimal', 'crtTM', 'crt_pf_strategy', 'crt_sys_strategy', 'dates_to_np', '
|
|
580
|
+
__all__ = ['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', 'ASIN', 'ATAN', 'ATR', 'AVEDEV', 'AllocateFundsBase', 'BACKSET', 'BARSCOUNT', 'BARSLAST', 'BARSLASTCOUNT', 'BARSSINCE', 'BARSSINCEN', 'BETWEEN', 'BLOCKSETNUM', 'BUSINESS', 'Block', 'BlockInfoDriver', 'BorrowRecord', 'BrokerPositionRecord', 'CEILING', 'CN_Bool', 'CN_OPLine', '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', 'DATE', 'DAY', 'DEBUG', 'DECLINE', 'DEVSQ', 'DIFF', 'DISCARD', 'DMA', 'DOWNNDAY', 'DROPNA', 'DataDriverFactory', 'Datetime', 'DatetimeList', 'Days', 'EMA', 'ERROR', 'EVERY', 'EV_Bool', 'EV_TwoLine', 'EXIST', 'EXP', 'EnvironmentBase', 'FATAL', 'FILTER', 'FINANCE', 'FLOOR', 'FundsRecord', 'GROUP_COUNT', 'GROUP_FUNC', 'GROUP_MAX', 'GROUP_MEAN', 'GROUP_MIN', 'GROUP_PROD', 'GROUP_SUM', 'HHV', 'HHVBARS', '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', 'KALMAN', 'KDATA_PART', 'KData', 'KDataDriver', 'KDataToHdf5Importer', 'KRecord', 'KRecordList', 'LAST', 'LASTVALUE', 'LIUTONGPAN', 'LLV', 'LLVBARS', 'LN', 'LOG', 'LOG_LEVEL', 'LONGCROSS', 'LoanRecord', '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', 'MarketInfo', 'Microseconds', 'Milliseconds', 'Minutes', 'MoneyManagerBase', 'MultiFactorBase', 'NDAY', 'NORM_MinMax', 'NORM_NOTHING', 'NORM_Quantile', 'NORM_Quantile_Uniform', 'NORM_Zscore', 'NOT', 'NormalizeBase', 'OFF', 'OrderBrokerBase', 'PF_Simple', 'PF_WithoutAF', 'PG_FixedHoldDays', 'PG_FixedPercent', 'PG_NoGoal', 'POS', 'POW', 'PRICELIST', 'Parameter', 'Performance', 'Portfolio', 'PositionRecord', 'PositionRecordList', 'ProfitGoalBase', 'QUANTILE_TRUNC', 'Query', 'RANK', 'RECOVER_BACKWARD', 'RECOVER_EQUAL_BACKWARD', 'RECOVER_EQUAL_FORWARD', 'RECOVER_FORWARD', 'REF', 'REFX', 'REPLACE', 'RESULT', 'REVERSE', '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', 'SIN', 'SLICE', 'SLOPE', 'SMA', 'SPEARMAN', 'SP_FixedPercent', 'SP_FixedValue', 'SP_LogNormal', 'SP_Normal', 'SP_TruncNormal', 'SP_Uniform', 'SQRT', 'STDEV', 'STDP', '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', 'TimeDelta', 'TimeLineList', 'TimeLineRecord', 'TradeCostBase', 'TradeManager', 'TradeRecord', 'TradeRecordList', 'TradeRequest', 'TransList', 'TransRecord', 'UPNDAY', 'UTCOffset', 'VAR', 'VARP', 'VIGOR', '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', 'analysis_sys_list', 'analysis_sys_list_multi', 'backtest', 'batch_calculate_inds', 'bind_email', 'can_upgrade', 'close_ostream_to_python', 'close_spend_time', 'combinate_ind', 'combinate_ind_analysis', 'combinate_ind_analysis_multi', 'combinate_index', 'constant', 'crtBrokerTM', 'crtSEOptimal', 'crtTM', 'crt_pf_strategy', 'crt_sys_strategy', 'dates_to_np', 'df_to_krecords', 'fetch_trial_license', 'find_optimal_system', 'find_optimal_system_multi', 'get_block', 'get_business_name', 'get_data_from_buffer_server', 'get_date_range', 'get_expire_date', 'get_funds_list', 'get_kdata', 'get_last_version', 'get_log_level', 'get_spot_from_buffer_server', 'get_stock', 'get_system_part_enum', 'get_system_part_name', 'get_version', 'get_version_git', 'get_version_with_build', 'hikyuu_init', 'inner_analysis_sys_list', 'inner_combinate_ind_analysis', 'inner_combinate_ind_analysis_with_block', 'is_valid_license', 'isinf', 'isnan', 'krecords_to_df', 'krecords_to_np', 'open_ostream_to_python', 'open_spend_time', 'parallel_run_pf', 'parallel_run_sys', 'pd', 'positions_to_df', 'positions_to_np', 'register_extra_ktype', 'release_extra_ktype', 'remove_license', 'roundDown', 'roundEx', 'roundUp', 'run_in_strategy', 'scorerecords_to_df', 'scorerecords_to_np', 'set_log_level', 'set_python_in_interactive', 'set_python_in_jupyter', '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', 'timeline_to_df', 'timeline_to_np', 'toPriceList', 'trades_to_df', 'trades_to_np', 'translist_to_df', 'translist_to_np', 'view_license', 'weights_to_df', 'weights_to_np']
|
|
560
581
|
def analysis_sys_list(stks, query, sys_proto, keys = ['累计投入本金', '当前总资产', '现金余额', '未平仓头寸净值', '赢利交易比例%', '赢利交易数', '亏损交易数']):
|
|
561
582
|
...
|
|
562
583
|
def analysis_sys_list_multi(stks, query, sys_proto, keys = ['累计投入本金', '当前总资产', '现金余额', '未平仓头寸净值', '赢利交易比例%', '赢利交易数', '亏损交易数']):
|
hikyuu/core.py
CHANGED
hikyuu/core.pyi
CHANGED
|
@@ -28,6 +28,7 @@ from hikyuu.cpp.core313 import LoanRecord
|
|
|
28
28
|
from hikyuu.cpp.core313 import MarketInfo
|
|
29
29
|
from hikyuu.cpp.core313 import MoneyManagerBase
|
|
30
30
|
from hikyuu.cpp.core313 import MultiFactorBase
|
|
31
|
+
from hikyuu.cpp.core313 import NormalizeBase
|
|
31
32
|
from hikyuu.cpp.core313 import OrderBrokerBase
|
|
32
33
|
from hikyuu.cpp.core313 import Parameter
|
|
33
34
|
from hikyuu.cpp.core313 import Performance
|
|
@@ -38,6 +39,7 @@ from hikyuu.cpp.core313 import ProfitGoalBase
|
|
|
38
39
|
from hikyuu.cpp.core313 import Query
|
|
39
40
|
from hikyuu.cpp.core313 import ScoreRecord
|
|
40
41
|
from hikyuu.cpp.core313 import ScoreRecordList
|
|
42
|
+
from hikyuu.cpp.core313 import ScoresFilterBase
|
|
41
43
|
from hikyuu.cpp.core313 import SelectorBase
|
|
42
44
|
from hikyuu.cpp.core313 import SignalBase
|
|
43
45
|
from hikyuu.cpp.core313 import SlippageBase
|
|
@@ -73,6 +75,7 @@ from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 im
|
|
|
73
75
|
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import AF_FixedWeightList
|
|
74
76
|
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import AF_MultiFactor
|
|
75
77
|
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import AGG_COUNT
|
|
78
|
+
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import AGG_FUNC
|
|
76
79
|
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import AGG_MAD
|
|
77
80
|
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import AGG_MAX
|
|
78
81
|
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import AGG_MEAN
|
|
@@ -135,6 +138,13 @@ from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 im
|
|
|
135
138
|
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import FILTER
|
|
136
139
|
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import FINANCE
|
|
137
140
|
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import FLOOR
|
|
141
|
+
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import GROUP_COUNT
|
|
142
|
+
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import GROUP_FUNC
|
|
143
|
+
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import GROUP_MAX
|
|
144
|
+
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import GROUP_MEAN
|
|
145
|
+
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import GROUP_MIN
|
|
146
|
+
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import GROUP_PROD
|
|
147
|
+
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import GROUP_SUM
|
|
138
148
|
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import HHV
|
|
139
149
|
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import HHVBARS
|
|
140
150
|
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import HOUR
|
|
@@ -197,6 +207,11 @@ from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 im
|
|
|
197
207
|
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import Milliseconds
|
|
198
208
|
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import Minutes
|
|
199
209
|
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import NDAY
|
|
210
|
+
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import NORM_MinMax
|
|
211
|
+
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import NORM_NOTHING
|
|
212
|
+
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import NORM_Quantile
|
|
213
|
+
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import NORM_Quantile_Uniform
|
|
214
|
+
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import NORM_Zscore
|
|
200
215
|
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import NOT
|
|
201
216
|
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import PF_Simple
|
|
202
217
|
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import PF_WithoutAF
|
|
@@ -206,6 +221,7 @@ from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 im
|
|
|
206
221
|
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import POS
|
|
207
222
|
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import POW
|
|
208
223
|
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import PRICELIST
|
|
224
|
+
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import QUANTILE_TRUNC
|
|
209
225
|
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import RANK
|
|
210
226
|
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import RECOVER_BACKWARD
|
|
211
227
|
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import RECOVER_EQUAL_BACKWARD
|
|
@@ -225,10 +241,17 @@ from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 im
|
|
|
225
241
|
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import ROUNDUP
|
|
226
242
|
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import RSI
|
|
227
243
|
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import SAFTYLOSS
|
|
244
|
+
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import SCFilter_AmountLimit
|
|
245
|
+
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import SCFilter_Group
|
|
246
|
+
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import SCFilter_IgnoreNan
|
|
247
|
+
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import SCFilter_LessOrEqualValue
|
|
248
|
+
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import SCFilter_Price
|
|
249
|
+
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import SCFilter_TopN
|
|
228
250
|
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import SE_EvaluateOptimal
|
|
229
251
|
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import SE_Fixed
|
|
230
252
|
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import SE_MaxFundsOptimal
|
|
231
253
|
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import SE_MultiFactor
|
|
254
|
+
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import SE_MultiFactor2
|
|
232
255
|
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import SE_PerformanceOptimal
|
|
233
256
|
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import SE_Signal
|
|
234
257
|
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import SGN
|
|
@@ -257,6 +280,10 @@ from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 im
|
|
|
257
280
|
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import SPEARMAN
|
|
258
281
|
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import SP_FixedPercent
|
|
259
282
|
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import SP_FixedValue
|
|
283
|
+
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import SP_LogNormal
|
|
284
|
+
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import SP_Normal
|
|
285
|
+
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import SP_TruncNormal
|
|
286
|
+
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import SP_Uniform
|
|
260
287
|
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import SQRT
|
|
261
288
|
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import STDEV
|
|
262
289
|
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import STDP
|
|
@@ -471,6 +498,7 @@ from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 im
|
|
|
471
498
|
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import active_device
|
|
472
499
|
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import backtest
|
|
473
500
|
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import batch_calculate_inds
|
|
501
|
+
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import bind_email
|
|
474
502
|
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import can_upgrade
|
|
475
503
|
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import close_ostream_to_python
|
|
476
504
|
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import close_spend_time
|
|
@@ -482,7 +510,6 @@ from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 im
|
|
|
482
510
|
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import crt_pf_strategy
|
|
483
511
|
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import crt_sys_strategy
|
|
484
512
|
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import dates_to_np
|
|
485
|
-
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import dates_to_pa
|
|
486
513
|
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import df_to_krecords
|
|
487
514
|
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import fetch_trial_license
|
|
488
515
|
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import find_optimal_system
|
|
@@ -491,13 +518,11 @@ from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 im
|
|
|
491
518
|
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import get_business_name
|
|
492
519
|
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import get_data_from_buffer_server
|
|
493
520
|
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import get_date_range
|
|
494
|
-
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import
|
|
495
|
-
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import
|
|
521
|
+
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import get_expire_date
|
|
522
|
+
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import get_funds_list
|
|
496
523
|
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import get_kdata
|
|
497
524
|
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import get_last_version
|
|
498
525
|
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import get_log_level
|
|
499
|
-
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import get_market_view
|
|
500
|
-
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import get_market_view_pyarrow
|
|
501
526
|
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import get_spot_from_buffer_server
|
|
502
527
|
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import get_stock
|
|
503
528
|
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import get_system_part_enum
|
|
@@ -514,12 +539,12 @@ from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 im
|
|
|
514
539
|
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import isnan
|
|
515
540
|
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import krecords_to_df
|
|
516
541
|
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import krecords_to_np
|
|
517
|
-
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import krecords_to_pa
|
|
518
542
|
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import open_ostream_to_python
|
|
519
543
|
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import open_spend_time
|
|
544
|
+
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import parallel_run_pf
|
|
545
|
+
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import parallel_run_sys
|
|
520
546
|
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import positions_to_df
|
|
521
547
|
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import positions_to_np
|
|
522
|
-
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import positions_to_pa
|
|
523
548
|
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import register_extra_ktype
|
|
524
549
|
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import release_extra_ktype
|
|
525
550
|
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import remove_license
|
|
@@ -542,20 +567,16 @@ from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 im
|
|
|
542
567
|
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import systemweights_to_np
|
|
543
568
|
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import timeline_to_df
|
|
544
569
|
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import timeline_to_np
|
|
545
|
-
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import timeline_to_pa
|
|
546
570
|
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import toPriceList
|
|
547
571
|
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import trades_to_df
|
|
548
572
|
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import trades_to_np
|
|
549
|
-
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import trades_to_pa
|
|
550
573
|
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import translist_to_df
|
|
551
574
|
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import translist_to_np
|
|
552
|
-
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import translist_to_pa
|
|
553
575
|
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import view_license
|
|
554
576
|
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import weights_to_df
|
|
555
577
|
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import weights_to_np
|
|
556
|
-
from hikyuu.cpp.core313.pybind11_detail_function_record_v1_system_libcpp_abi1 import weights_to_pa
|
|
557
578
|
import sys as sys
|
|
558
|
-
__all__ = ['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', 'ASIN', 'ATAN', 'ATR', 'AVEDEV', 'AllocateFundsBase', 'BACKSET', 'BARSCOUNT', 'BARSLAST', 'BARSLASTCOUNT', 'BARSSINCE', 'BARSSINCEN', 'BETWEEN', 'BLOCKSETNUM', 'BUSINESS', 'Block', 'BlockInfoDriver', 'BorrowRecord', 'BrokerPositionRecord', 'CEILING', 'CN_Bool', 'CN_OPLine', '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', 'DATE', 'DAY', 'DEBUG', 'DECLINE', 'DEVSQ', 'DIFF', 'DISCARD', 'DMA', 'DOWNNDAY', 'DROPNA', 'DataDriverFactory', 'Datetime', 'DatetimeList', 'Days', 'EMA', 'ERROR', 'EVERY', 'EV_Bool', 'EV_TwoLine', 'EXIST', 'EXP', 'EnvironmentBase', 'FATAL', 'FILTER', 'FINANCE', 'FLOOR', 'FundsRecord', 'HHV', 'HHVBARS', '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', 'KALMAN', 'KDATA_PART', 'KData', 'KDataDriver', 'KDataToHdf5Importer', 'KRecord', 'KRecordList', 'LAST', 'LASTVALUE', 'LIUTONGPAN', 'LLV', 'LLVBARS', 'LN', 'LOG', 'LOG_LEVEL', 'LONGCROSS', 'LoanRecord', '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', 'MarketInfo', 'Microseconds', 'Milliseconds', 'Minutes', 'MoneyManagerBase', 'MultiFactorBase', 'NDAY', 'NOT', 'OFF', 'OrderBrokerBase', 'PF_Simple', 'PF_WithoutAF', 'PG_FixedHoldDays', 'PG_FixedPercent', 'PG_NoGoal', 'POS', 'POW', 'PRICELIST', 'Parameter', 'Performance', 'Portfolio', 'PositionRecord', 'PositionRecordList', 'ProfitGoalBase', 'Query', 'RANK', 'RECOVER_BACKWARD', 'RECOVER_EQUAL_BACKWARD', 'RECOVER_EQUAL_FORWARD', 'RECOVER_FORWARD', 'REF', 'REFX', 'REPLACE', 'RESULT', 'REVERSE', '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', 'SIN', 'SLICE', 'SLOPE', 'SMA', 'SPEARMAN', 'SP_FixedPercent', 'SP_FixedValue', 'SQRT', 'STDEV', 'STDP', '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', 'TimeDelta', 'TimeLineList', 'TimeLineRecord', 'TradeCostBase', 'TradeManager', 'TradeRecord', 'TradeRecordList', 'TradeRequest', 'TransList', 'TransRecord', 'UPNDAY', 'UTCOffset', 'VAR', 'VARP', 'VIGOR', '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', 'backtest', 'batch_calculate_inds', 'can_upgrade', 'close_ostream_to_python', 'close_spend_time', 'combinate_ind', 'combinate_index', 'constant', 'crtBrokerTM', 'crtSEOptimal', 'crtTM', 'crt_pf_strategy', 'crt_sys_strategy', 'dates_to_np', '
|
|
579
|
+
__all__ = ['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', 'ASIN', 'ATAN', 'ATR', 'AVEDEV', 'AllocateFundsBase', 'BACKSET', 'BARSCOUNT', 'BARSLAST', 'BARSLASTCOUNT', 'BARSSINCE', 'BARSSINCEN', 'BETWEEN', 'BLOCKSETNUM', 'BUSINESS', 'Block', 'BlockInfoDriver', 'BorrowRecord', 'BrokerPositionRecord', 'CEILING', 'CN_Bool', 'CN_OPLine', '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', 'DATE', 'DAY', 'DEBUG', 'DECLINE', 'DEVSQ', 'DIFF', 'DISCARD', 'DMA', 'DOWNNDAY', 'DROPNA', 'DataDriverFactory', 'Datetime', 'DatetimeList', 'Days', 'EMA', 'ERROR', 'EVERY', 'EV_Bool', 'EV_TwoLine', 'EXIST', 'EXP', 'EnvironmentBase', 'FATAL', 'FILTER', 'FINANCE', 'FLOOR', 'FundsRecord', 'GROUP_COUNT', 'GROUP_FUNC', 'GROUP_MAX', 'GROUP_MEAN', 'GROUP_MIN', 'GROUP_PROD', 'GROUP_SUM', 'HHV', 'HHVBARS', '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', 'KALMAN', 'KDATA_PART', 'KData', 'KDataDriver', 'KDataToHdf5Importer', 'KRecord', 'KRecordList', 'LAST', 'LASTVALUE', 'LIUTONGPAN', 'LLV', 'LLVBARS', 'LN', 'LOG', 'LOG_LEVEL', 'LONGCROSS', 'LoanRecord', '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', 'MarketInfo', 'Microseconds', 'Milliseconds', 'Minutes', 'MoneyManagerBase', 'MultiFactorBase', 'NDAY', 'NORM_MinMax', 'NORM_NOTHING', 'NORM_Quantile', 'NORM_Quantile_Uniform', 'NORM_Zscore', 'NOT', 'NormalizeBase', 'OFF', 'OrderBrokerBase', 'PF_Simple', 'PF_WithoutAF', 'PG_FixedHoldDays', 'PG_FixedPercent', 'PG_NoGoal', 'POS', 'POW', 'PRICELIST', 'Parameter', 'Performance', 'Portfolio', 'PositionRecord', 'PositionRecordList', 'ProfitGoalBase', 'QUANTILE_TRUNC', 'Query', 'RANK', 'RECOVER_BACKWARD', 'RECOVER_EQUAL_BACKWARD', 'RECOVER_EQUAL_FORWARD', 'RECOVER_FORWARD', 'REF', 'REFX', 'REPLACE', 'RESULT', 'REVERSE', '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', 'SIN', 'SLICE', 'SLOPE', 'SMA', 'SPEARMAN', 'SP_FixedPercent', 'SP_FixedValue', 'SP_LogNormal', 'SP_Normal', 'SP_TruncNormal', 'SP_Uniform', 'SQRT', 'STDEV', 'STDP', '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', 'TimeDelta', 'TimeLineList', 'TimeLineRecord', 'TradeCostBase', 'TradeManager', 'TradeRecord', 'TradeRecordList', 'TradeRequest', 'TransList', 'TransRecord', 'UPNDAY', 'UTCOffset', 'VAR', 'VARP', 'VIGOR', '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', 'backtest', 'batch_calculate_inds', 'bind_email', 'can_upgrade', 'close_ostream_to_python', 'close_spend_time', 'combinate_ind', 'combinate_index', 'constant', 'crtBrokerTM', 'crtSEOptimal', 'crtTM', 'crt_pf_strategy', 'crt_sys_strategy', 'dates_to_np', 'df_to_krecords', 'fetch_trial_license', 'find_optimal_system', 'find_optimal_system_multi', 'get_block', 'get_business_name', 'get_data_from_buffer_server', 'get_date_range', 'get_expire_date', 'get_funds_list', 'get_kdata', 'get_last_version', 'get_log_level', 'get_spot_from_buffer_server', 'get_stock', 'get_system_part_enum', 'get_system_part_name', 'get_version', 'get_version_git', 'get_version_with_build', 'hikyuu_init', 'inner_analysis_sys_list', 'inner_combinate_ind_analysis', 'inner_combinate_ind_analysis_with_block', 'is_valid_license', 'isinf', 'isnan', 'krecords_to_df', 'krecords_to_np', 'open_ostream_to_python', 'open_spend_time', 'parallel_run_pf', 'parallel_run_sys', 'positions_to_df', 'positions_to_np', 'register_extra_ktype', 'release_extra_ktype', 'remove_license', 'roundDown', 'roundEx', 'roundUp', 'run_in_strategy', 'scorerecords_to_df', 'scorerecords_to_np', 'set_log_level', 'set_python_in_interactive', 'set_python_in_jupyter', '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', 'timeline_to_df', 'timeline_to_np', 'toPriceList', 'trades_to_df', 'trades_to_np', 'translist_to_df', 'translist_to_np', 'view_license', 'weights_to_df', 'weights_to_np']
|
|
559
580
|
DEBUG: hikyuu.cpp.core313.LOG_LEVEL # value = <LOG_LEVEL.DEBUG: 1>
|
|
560
581
|
ERROR: hikyuu.cpp.core313.LOG_LEVEL # value = <LOG_LEVEL.ERROR: 4>
|
|
561
582
|
FATAL: hikyuu.cpp.core313.LOG_LEVEL # value = <LOG_LEVEL.FATAL: 5>
|
|
@@ -563,5 +584,5 @@ INFO: hikyuu.cpp.core313.LOG_LEVEL # value = <LOG_LEVEL.INFO: 2>
|
|
|
563
584
|
OFF: hikyuu.cpp.core313.LOG_LEVEL # value = <LOG_LEVEL.OFF: 6>
|
|
564
585
|
TRACE: hikyuu.cpp.core313.LOG_LEVEL # value = <LOG_LEVEL.TRACE: 0>
|
|
565
586
|
WARN: hikyuu.cpp.core313.LOG_LEVEL # value = <LOG_LEVEL.WARN: 3>
|
|
566
|
-
__version__: str = '2.
|
|
587
|
+
__version__: str = '2.7.0'
|
|
567
588
|
constant: hikyuu.cpp.core313.Constant # value = <hikyuu.cpp.core313.Constant object>
|