hikyuu2/hikyuu_pywrap/trade_sys/_Selector.cpp

198 lines
7.4 KiB
C++
Raw Normal View History

2016-04-03 00:08:31 +08:00
/*
* _Selector.cpp
*
* Created on: 2016328
2016-04-14 01:36:53 +08:00
* Author: fasiondog
2016-04-03 00:08:31 +08:00
*/
#include <hikyuu/trade_sys/selector/build_in.h>
2022-02-15 22:13:47 +08:00
#include "../pybind_utils.h"
2016-04-03 00:08:31 +08:00
2023-12-27 18:13:05 +08:00
namespace py = pybind11;
2016-04-03 00:08:31 +08:00
using namespace hku;
2023-12-27 18:13:05 +08:00
class PySelectorBase : public SelectorBase {
PY_CLONE(PySelectorBase, SelectorBase)
2016-04-03 00:08:31 +08:00
2023-12-27 18:13:05 +08:00
public:
using SelectorBase::SelectorBase;
2016-04-03 00:08:31 +08:00
2023-12-27 18:13:05 +08:00
void _reset() override {
PYBIND11_OVERLOAD(void, SelectorBase, _reset, );
2022-02-26 22:12:53 +08:00
}
2023-12-27 18:13:05 +08:00
void _calculate() override {
PYBIND11_OVERLOAD_PURE(void, SelectorBase, _calculate, );
2022-02-21 01:57:18 +08:00
}
2024-03-19 22:05:13 +08:00
SystemWeightList getSelected(Datetime date) override {
// PYBIND11_OVERLOAD_PURE_NAME(SystemWeightList, SelectorBase, "get_selected", getSelected,
// date);
auto self = py::cast(this);
py::sequence py_ret = self.attr("get_selected")(date);
auto c_ret = python_list_to_vector<SystemWeight>(py_ret);
return c_ret;
2016-04-03 00:08:31 +08:00
}
2022-02-19 18:44:31 +08:00
2023-12-27 18:13:05 +08:00
bool isMatchAF(const AFPtr& af) override {
PYBIND11_OVERLOAD_PURE_NAME(bool, SelectorBase, "is_match_af", isMatchAF, af);
2022-02-19 18:44:31 +08:00
}
2016-04-03 00:08:31 +08:00
};
2023-12-27 18:13:05 +08:00
void export_Selector(py::module& m) {
2024-03-18 04:25:14 +08:00
py::class_<SystemWeight>(m, "SystemWeight",
"系统权重系数结构,在资产分配时,指定对应系统的资产占比系数")
.def(py::init<>())
.def(py::init<const SystemPtr&, price_t>())
.def("__str__", to_py_str<SystemWeight>)
.def("__repr__", to_py_str<SystemWeight>)
.def_readwrite("sys", &SystemWeight::sys, "对应的 System 实例")
.def_readwrite("weight", &SystemWeight::weight)
DEF_PICKLE(SystemWeight);
2023-12-27 18:13:05 +08:00
py::class_<SelectorBase, SEPtr, PySelectorBase>(
m, "SelectorBase",
R"(选择器策略基类,实现标的、系统策略的评估和选取算法,自定义选择器策略子类接口:
2024-03-21 18:01:45 +08:00
- get_selected -
- _calculate -
- _reset -
2023-12-27 18:13:05 +08:00
- _clone - )")
.def(py::init<>())
.def(py::init<const string&>(), R"(初始化构造函数
:param str name: )")
.def("__str__", to_py_str<SelectorBase>)
.def("__repr__", to_py_str<SelectorBase>)
.def_property("name", py::overload_cast<>(&SelectorBase::name, py::const_),
2023-12-27 18:13:05 +08:00
py::overload_cast<const string&>(&SelectorBase::name),
py::return_value_policy::copy, "算法名称")
.def_property_readonly("proto_sys_list", &SelectorBase::getProtoSystemList,
py::return_value_policy::copy, "原型系统列表")
.def_property_readonly("real_sys_list", &SelectorBase::getRealSystemList,
py::return_value_policy::copy, "由 PF 运行时设定的实际运行系统列表")
.def("get_param", &SelectorBase::getParam<boost::any>, R"(get_param(self, name)
:param str name:
:return:
:raises out_of_range: )")
2023-12-27 18:13:05 +08:00
.def("set_param", &SelectorBase::setParam<boost::any>, R"(set_param(self, name, value)
2020-08-31 23:51:24 +08:00
:param str name:
:param value:
:raises logic_error: Unsupported type! )")
.def("have_param", &SelectorBase::haveParam, "是否存在指定参数")
.def("reset", &SelectorBase::reset, "复位操作")
.def("clone", &SelectorBase::clone, "克隆操作")
2022-02-27 08:55:30 +08:00
.def("remove_all", &SelectorBase::removeAll, "清除所有已加入的原型系统")
2023-12-27 18:13:05 +08:00
.def("add_stock", &SelectorBase::addStock, py::arg("stock"), py::arg("sys"),
R"(add_stock(self, stock, sys)
:param Stock stock:
:param System sys: )")
2024-03-30 15:42:59 +08:00
.def(
"add_stock_list",
[](SelectorBase& self, py::sequence stk_list, const SYSPtr& sys) {
self.addStockList(python_list_to_vector<Stock>(stk_list), sys);
},
py::arg("stk_list"), py::arg("sys"),
R"(add_stock_list(self, stk_list, sys)
:param StockList stk_list:
:param System sys: )")
2024-03-16 19:12:01 +08:00
.def("get_proto_sys_list", &SelectorBase::getProtoSystemList, py::return_value_policy::copy)
.def("get_real_sys_list", &SelectorBase::getRealSystemList, py::return_value_policy::copy)
.def("calculate", &SelectorBase::calculate)
2023-12-27 18:13:05 +08:00
.def("_reset", &SelectorBase::_reset, "子类复位操作实现")
.def("_calculate", &SelectorBase::_calculate, "【重载接口】子类计算接口")
2023-12-27 18:13:05 +08:00
.def("is_match_af", &SelectorBase::isMatchAF, R"(is_match_af(self)
2022-02-26 22:12:53 +08:00
AF
:param AllocateFundsBase af: )")
2024-03-19 22:05:13 +08:00
.def("get_selected", &SelectorBase::getSelected,
R"(get_selected(self, datetime)
2024-03-19 22:05:13 +08:00
:param Datetime datetime:
:return:
:rtype: SystemList)")
2023-12-27 18:13:05 +08:00
DEF_PICKLE(SEPtr);
m.def("SE_Fixed", py::overload_cast<>(SE_Fixed));
2023-12-27 18:13:05 +08:00
m.def("SE_Fixed", py::overload_cast<const StockList&, const SystemPtr&>(SE_Fixed),
R"(SE_Fixed([stk_list, sys])
:param list stk_list:
:param System sys:
:return: SE选择器实例)");
m.def("SE_Signal", py::overload_cast<>(SE_Signal));
2023-12-27 18:13:05 +08:00
m.def("SE_Signal", py::overload_cast<const StockList&, const SystemPtr&>(SE_Signal),
R"(SE_Signal([stk_list, sys])
:param list stk_list:
:param System sys:
:return: SE选择器实例)");
m.def("SE_MultiFactor", py::overload_cast<const MFPtr&, int>(SE_MultiFactor), py::arg("mf"),
py::arg("topn") = 10);
m.def(
"SE_MultiFactor",
[](const py::sequence& inds, const py::sequence& stks, const KQuery& query, int topn,
int ic_n, int ic_rolling_n, const py::object& ref_stk, const string& mode) {
IndicatorList c_inds = python_list_to_vector<Indicator>(inds);
StockList c_stks = python_list_to_vector<Stock>(stks);
Stock c_ref_stk = ref_stk.is_none() ? getStock("sh000300") : ref_stk.cast<Stock>();
return SE_MultiFactor(c_inds, c_stks, query, topn, ic_n, ic_rolling_n, c_ref_stk, mode);
},
py::arg("inds"), py::arg("stks"), py::arg("query"), py::arg("topn") = 10, py::arg("ic_n") = 5,
py::arg("ic_rolling_n") = 120, py::arg("ref_stk") = py::none(),
py::arg("mode") = "MF_ICIRWeight",
R"(SE_MultiFactor
- MF:
:param MultiFactorBase mf:
:param int topn: topn
- :
:param sequense(Indicator) inds:
:param sequense(stock) stks:
:param Query query:
:param Stock ref_stk: ( sh000300 300)
:param int ic_n: IC N
:param int ic_rolling_n: IC
:param str mode: "MF_ICIRWeight" | "MF_ICWeight" | "MF_EqualWeight"
)");
2016-04-03 00:08:31 +08:00
}