hikyuu2/hikyuu_pywrap/trade_sys/_Environment.cpp

120 lines
3.6 KiB
C++
Raw Normal View History

2015-01-07 01:26:14 +08:00
/*
* _Environment.cpp
*
* Created on: 2013-3-2
* Author: fasiondog
*/
/*
* _TradeRecord.cpp
*
* Created on: 2013-2-25
* Author: fasiondog
*/
#include <boost/python.hpp>
#include <hikyuu/trade_sys/environment/EnvironmentBase.h>
2016-05-19 01:06:00 +08:00
#include <hikyuu/trade_sys/environment/build_in.h>
2017-07-21 01:13:51 +08:00
#include "../_Parameter.h"
#include "../pickle_support.h"
2015-01-07 01:26:14 +08:00
using namespace boost::python;
using namespace hku;
2020-07-13 23:52:35 +08:00
class EnvironmentWrap : public EnvironmentBase, public wrapper<EnvironmentBase> {
2015-01-07 01:26:14 +08:00
public:
2017-07-21 01:13:51 +08:00
EnvironmentWrap() : EnvironmentBase() {}
2020-07-13 23:52:35 +08:00
EnvironmentWrap(const string& name) : EnvironmentBase(name) {}
2015-01-07 01:26:14 +08:00
2016-05-18 02:03:29 +08:00
void _reset() {
if (override func = get_override("_reset")) {
func();
2017-04-13 02:03:02 +08:00
} else {
EnvironmentBase::_reset();
2016-05-18 02:03:29 +08:00
}
2015-01-07 01:26:14 +08:00
}
2016-05-18 02:03:29 +08:00
void default_reset() {
this->EnvironmentBase::_reset();
2015-01-07 01:26:14 +08:00
}
EnvironmentPtr _clone() {
return this->get_override("_clone")();
}
2016-05-18 02:03:29 +08:00
void _calculate() {
this->get_override("_calculate")();
}
2015-01-07 01:26:14 +08:00
};
2017-06-17 16:59:15 +08:00
string (EnvironmentBase::*ev_get_name)() const = &EnvironmentBase::name;
void (EnvironmentBase::*ev_set_name)(const string&) = &EnvironmentBase::name;
2016-05-16 01:45:01 +08:00
2015-01-07 01:26:14 +08:00
void export_Environment() {
2020-07-13 23:52:35 +08:00
class_<EnvironmentWrap, boost::noncopyable>("EnvironmentBase",
R"(市场环境判定策略基类
- _calculate :
- _clone :
- _reset : )",
init<>())
.def(init<const string&>())
.def(self_ns::str(self))
.def(self_ns::repr(self))
.add_property("name", ev_get_name, ev_set_name, "名称")
.add_property("query", &EnvironmentBase::getQuery, &EnvironmentBase::setQuery,
"设置或获取查询条件")
.def("get_param", &EnvironmentBase::getParam<boost::any>, R"(get_param(self, name)
:param str name:
:return:
:raises out_of_range: )")
.def("set_param", &EnvironmentBase::setParam<object>, R"(set_param(self, name, value)
:param str name:
:param value:
:raises logic_error: Unsupported type! )")
.def("haveParam", &EnvironmentBase::haveParam, "是否存在指定参数")
.def("is_valid", &EnvironmentBase::isValid, R"(is_valid(self, datetime)
:param Datetime datetime:
:return: True | False )")
.def("_add_valid", &EnvironmentBase::_addValid, R"(_add_valid(self, datetime)
_calculate中调用
:param Datetime datetime: )")
.def("reset", &EnvironmentBase::reset, "复位操作")
.def("clone", &EnvironmentBase::clone, "克隆操作")
.def("_reset", &EnvironmentBase::_reset, &EnvironmentWrap::default_reset,
"【重载接口】子类复位接口,用于复位内部私有变量")
.def("_clone", pure_virtual(&EnvironmentBase::_clone), "【重载接口】子类克隆接口")
.def("_calculate", pure_virtual(&EnvironmentBase::_calculate), "【重载接口】子类计算接口");
2015-01-07 01:26:14 +08:00
register_ptr_to_python<EnvironmentPtr>();
2016-05-19 01:06:00 +08:00
2020-07-13 23:52:35 +08:00
def("EV_TwoLine", EV_TwoLine, (arg("fast"), arg("slow"), arg("market") = "SH"),
R"(EV_TwoLine(fast, slow[, market = 'SH'])
2015-01-07 01:26:14 +08:00
2020-07-13 23:52:35 +08:00
线线线
2015-01-07 01:26:14 +08:00
2020-07-13 23:52:35 +08:00
:param Indicator fast: 线
:param Indicator slow: 线
:param string market: )");
}