C++程序化/量化学习视频教程系列 第042节:鼎元C++量化之【交易策略目标止盈出场模块】【C++量化开发出场模块系列】
C++程序化/量化学习视频教程系列 第042节:鼎元C++量化之【交易策略目标止盈出场模块】【C++量化开发出场模块系列】[mp4]http://mp4.qhlt.club/Cpp-Video/042.mp4[/mp4]
C++程序化学习视频教程系列安排如下:
第一楼:教学视频。一般控制在15分钟左右;
第二椄:视频课程中使用的程式源码。
第三楼:视频教学中需要用到的一些文档或资源。
第四楼:其它的一些边角料,特别是一些经典程序化策略的回测类的部分会放到下面楼层里面。
参与模式如下:
1、希望参与到编写策略与调试方面的工作通过上面的联系方式联系管理员咨询即可。记的加群,有问题第一时间交流,也可以在论坛指定版发贴交流,专用版地址:[url=http://www.qhlt.cn/forum-244-1.html]http://www.qhlt.cn/forum-244-1.html[/url];
2、有意申请试用及绑定期货账户跑实盘网友可以联系管理员,以及开通的方式。
3、基于C++策略交易软件具有:1、软件小(50兆不到);2、效率高(C++语言);3、功能精(专注于策略);4、对服务噐或电脑兼容性好(WIN系统)等优势,特别适合长期跑程序化的客户朋友,特别是有稳定交易模式客户更适合使用C++构建的交易系统。
4、最全的C++期货程序化(量化)教程、视频、源码、课件、资源汇总贴【C++期货程序化/量化研究必备资源贴!】:[url=http://www.qhlt.cn/thread-160231-1-1.html]http://www.qhlt.cn/thread-160231-1-1.html[/url];
5、鼎元C++量化程式码技术指标源码C++版模板【建议在test.h和test.cpp中同步至最新,方便统一调用和使用,一次编辑多次使用!】:[url=http://www.qhlt.cn/thread-160230-1-1.html]http://www.qhlt.cn/thread-160230-1-1.html[/url];
6、如何使用鼎元C++量化软件以及需要准备的些什么?[C++量化入门必读!]:[url=http://www.qhlt.cn/thread-160415-1-1.html]http://www.qhlt.cn/thread-160415-1-1.html[/url];
联系方式:
C++微信群:[img=180,180]http://p.algo2.net/2024/0922/23852f86ccf81.png[/img] QQ群:[img=140,180]http://p.algo2.net/2024/0115/3c6af4df957c3.jpg[/img] 管理员微信:[img]http://www.qhlt.cn/link/wx.png[/img];管理员QQ:[img]http://www.qhlt.cn/link/q.png[/img] 第一部分:头文件声明变量[code]
int target; //目标止盈
[/code][code]
int entryprice, exitprice,exit_target;//记录进场价格与出场价格,方便计算盈亏金额
[/code]第二部分:源文件参数窗口及变量调用[code]
t.Name = "盈利目标"; t.Value = "0"; t.Explain = "盈利目标(点数),0默认不启用"; tend(t);
[/code][code]
target = atoi(parm["盈利目标"].Value.c_str());
[/code]第三部分:源文件目标止盈出场模块:[code]
if (target != 0)//启用目标止盈出场模块
{
if (fx == 1)//持有多单模块
{
exit_target = entryprice + target;
if (t->LastPrice >= exit_target ) //最新价格跌破出场价则止损出场
{
fx == 0;
map<string, double>::iterator it;
for (it = mapSub.begin(); it != mapSub.end(); it++)
{
int sl = (int)(ss * it->second);
if (yxpc == 0)
{
closesell1(it->first, sInst, sl, t->BidPrice1 - hd * mapInstrument[sInst].PriceTick);//卖出平仓语句
}
else if (yxpc == 1)
{
closesell2(it->first, sInst, sl, t->BidPrice1 - hd * mapInstrument[sInst].PriceTick);//卖出平仓语句
}
string s = it->first + " 多单达到目标止盈出场条件卖出平仓 " + to_string(sl) + " 手, 价格 " + to_string(t->BidPrice1 - hd * mapInstrument[sInst].PriceTick) + " 基础手数 " + to_string(ss);
maps[num] = s;
num++;
}
if (num != 0)shuchurizhi();
tm = 0;
xieruzhuangtai();
}
}
if (fx == -1) //持有空单模块
{
exit_target = entryprice - target;
if (t->LastPrice <= exit_target )
{
fx = 0;
map<string, double>::iterator it;
for (it = mapSub.begin(); it != mapSub.end(); it++)
{
int sl = (int)(ss * it->second);
if (yxpc == 0)
{
closebuy1(it->first, sInst, sl, t->AskPrice1 + hd * mapInstrument[sInst].PriceTick);//买入平仓语句
}
else if (yxpc == 1)
{
closebuy2(it->first, sInst, sl, t->AskPrice1 + hd * mapInstrument[sInst].PriceTick);//买入平仓语句
}
string s = it->first + " 空单达到目标止盈出场条件买入平仓 " + to_string(sl) + " 手, 价格 " + to_string(t->BidPrice1 + hd * mapInstrument[sInst].PriceTick) + " 基础手数 " + to_string(ss);
maps[num] = s;
num++;
}
if (num != 0) shuchurizhi();
tm = 0;
xieruzhuangtai();
}
}
}
[/code]第四部分:在bar行情中加入输出日志功能[code]
if (dbfx != 0)// 说明启用了单笔风险固定止损出场模块信息输出至log日志板
{
if (fx != 0)InsertLog(" 您启用了单笔最大亏损金额功能,最大亏损额度为: " + to_string(dbfx) + " 元, 持仓手数: " + to_string(lots) + " 手, 止损出场价格: " + to_string(exitprice) + " 持仓方向: " + to_string(fx));
}
if (target != 0)//说明启用了目标止盈出场模块,将必要信息输出至log日志板
{
if (fx != 0) InsertLog(" 您启用了目标止盈出场功能,最大盈利目标为: " + to_string(target) + " 点, 持仓手数: " + to_string(lots) + " 手, 出场价格:" + to_string(exit_target) + " 持仓方向: " + to_string(fx));
}
[/code] 思路:
设置一个变量target,然后在entryprice 上面增加或减少这个target就是exit_target价格了。然后就可以了。
页:
[1]