C++程序化/量化学习视频教程系列 第048节:鼎元C++量化交易系统范例之【Aberration交易系统】【C++量化交易策略范例系列】
UID 2 积分 2903567 威望 1401815 布 龙e币 1501752 刀 在线时间 13440 小时 注册时间 2009-12-3 最后登录 2025-1-30
C++程序化/量化学习视频教程系列 第048节:鼎元C++量化交易系统范例之【Aberration交易系统】【C++量化交易策略范例系列】
论坛官方微信、群(期货热点、量化探讨、开户与绑定实盘)
期货论坛 - 版权/免责声明
1.本站发布源码(包括函数、指标、策略等)均属开放源码,用意在于让使用者学习程序化语法撰写,使用者可以任意修改语法內容并调整参数。仅限用于个人学习使用,请勿转载、滥用,严禁私自连接实盘账户交易 。
2.本站发布资讯(包括文章、视频、历史记录、教材、评论、资讯、交易方案等)均系转载自网络主流媒体,内容仅为作者当日个人观点,本网转载此文出于传递更多信息之目的,并不意味着赞同其观点或证实其描述。本网不对该类信息或数据做任何保证。不对您构成任何投资建议,不能依靠信息而取代自身独立判断,不对因使用本篇文章所诉信息或观点等导致的损失承担任何责任。
3.本站发布资源(包括书籍、杂志、文档、软件等)均从互联网搜索而来,仅供个人免费交流学习,不可用作商业用途,本站不对显示的内容承担任何责任。请在下载后24小时内删除。如果喜欢,请购买正版,谢谢合作!
4.龙听期货论坛原创文章属本网版权作品,转载须注明来源“龙听期货论坛”,违者本网将保留追究其相关法律责任的权力。本论坛除发布原创文章外,亦致力于优秀财经文章的交流分享,部分文章推送时若未能及时与原作者取得联系并涉及版权问题时,请及时联系删除。联系方式:http://www.qhlt.cn/thread-262-1-1.html
UID 2 积分 2903567 威望 1401815 布 龙e币 1501752 刀 在线时间 13440 小时 注册时间 2009-12-3 最后登录 2025-1-30
策略原理参考:http://www.qhlt.cn/thread-48724-1-1.html ;
第一部分:头文件声明变量//策略变量设置
double ma; //均线变量声明
int lots; //每次交易数量
int dbfx; //每次最大承担亏损金额
int target; //每次交易最大获利目标(点数)
int length; //均线周期参数声明
int jg; //撤单时间间隔
int hd; //滑点
int yxpc; //优先平仓选择(优先平昨,优先平今)
int entryprice, exitprice,exit_target;//记录进场价格与出场价格,方便计算盈亏金额
double UpperBand, LowerBand; 复制代码 第二部分:源文件策略核心部分RsqBar(sPeriod, sInst);
ma = average(sPeriod, sInst, length); //初始计算一次均线值.
UpperBand = ma + StandardDev(sPeriod, sInst, length);//上沿
LowerBand = ma - StandardDev(sPeriod, sInst, length);//下沿
InsertLog("Abberation交易系统, 做多上沿: " + to_string(UpperBand) + "做空下沿: " + to_string(LowerBand)); 复制代码 // 最新tick价格大于均线且持仓为0则进场做多
if (t->LastPrice > UpperBand && fx == 0)
{
fx = 1;
ss = lots;
entryprice = t->LastPrice;
map<string, double>::iterator it;
for (it = mapSub.begin(); it != mapSub.end(); it++)
{
int sl = (int)(ss*it->second);
OrderInsert(it->first, sInst, '0', '0', sl, t->AskPrice1 + hd * mapInstrument[sInst].PriceTick, "", "");//买入开仓语句
//输出至交易界面LOG日志里面
string s = it->first + "突破入场价格多单达到入场条件买入开仓" + to_string(sl) + "手,价格 " + to_string(t->AskPrice1 + hd * mapInstrument[sInst].PriceTick) + "基础手数 " + to_string(ss) + "均线值" + to_string(ma);
maps[num] = s;
num++;
//mail notice edit
//subject = "You have new orders!";
//Message = "Single ma strategy buy order : " + to_string(lots) + " lots, price at: " + to_string(entryprice) + " if you have any question , you can check it on server!";
//mailNotify();//mail sending!
}
if (num != 0) shuchurizhi();
tm = 0;
xieruzhuangtai();
}
//最新价格小于均线且持仓为0则进场做空
if (t->LastPrice < LowerBand && fx == 0)
{
fx = -1;
ss = lots;
entryprice = t->LastPrice;
map<string, double>::iterator it;
for(it = mapSub.begin(); it != mapSub.end();it++)
{
int sl = (int)(ss * it->second);
OrderInsert(it->first, sInst, '1', '0', sl, t->BidPrice1 - hd * mapInstrument[sInst].PriceTick, "", ""); //卖出开仓语句
//输出至交易界面LOG日志里面
string s = it->first + "突破入场价格空单达到入场条件卖出开仓" + to_string(sl) + "手,价格 " + to_string(t->BidPrice1 - hd * mapInstrument[sInst].PriceTick) + "基础手数" + to_string(ss) + "均线值" + to_string(ma);
maps[num] = s;
num++;
//mail notice edit
//subject = "You have new orders!";
//Message = "Single ma strategy sellshort order : " + to_string(lots) + " lots, price at: " + to_string(entryprice) + " if you have any question , you can check it on server!";
//mailNotify();//mail sending
}
if (num != 0)shuchurizhi();
tm = 0;
xieruzhuangtai();
} 复制代码 onbaropen模块: ma = average(sPeriod, sInst, length); //初始计算一次均线值.
UpperBand = ma + StandardDev(sPeriod, sInst, length);//上沿
LowerBand = ma - StandardDev(sPeriod, sInst, length);//下沿
/* 复制代码