什么是量化交易?确切地说,量化交易属于人工智能的一个应用分支,它利用计算机的强大运算能力,用数学模型来模仿人的思维作出决策,通过数据建模、统计学分析、程序设计等工具
交易机器人是一种软件,它直接与交易所进行交互(通常使用API获取和解释相关信息),并根据对市场数据的解释代表用户进行买卖交易。机器人做出这些决定,跟踪市场价格变动,并根据预定义和预编程的规则作出反应。.
int PFLD::Impl::LoadModel(const char*root_path){
std::string model_file=std::string(root_path)+"/pfld-lite.mnn";
landmarker_=std::shared_ptr<MNN::Interpreter>(MNN::Interpreter::createFromFile(model_file.c_str()));
MNN::ScheduleConfig config;
config.numThread=1;
config.type=staticcast<MNNForwardType>(device);
MNN::BackendConfig backendConfig;
backendConfig.precision=(MNN::BackendConfig::PrecisionMode)precision_;
backendConfig.power=(MNN::BackendConfig::PowerMode)power_;
backendConfig.memory=(MNN::BackendConfig::MemoryMode)memory_;
config.backendConfig=&backendConfig;
session=landmarker->createSession(config);
//nhwc to nchw
std::vector<int>dims{1,inputSize,inputSize,3};
inputtensor=MNN::Tensor::create<float>(dims,NULL,MNN::Tensor::TENSORFLOW);
initialized_=true;
return 0;
}