: | : | :期货量化学习 | :期货量化 |
返回列表 发帖

C++程序化/量化学习视频教程系列 第041节:鼎元C++量化之【固定金额止损出场模块】【C++量化开发出场模块系列】

C++程序化/量化学习视频教程系列 第041节:鼎元C++量化之【固定金额止损出场模块】【C++量化开发出场模块系列】

C++程序化/量化学习视频教程系列 第041节:鼎元C++量化之【固定金额止损出场模块】【C++量化开发出场模块系列】



C++程序化学习视频教程系列安排如下:
第一楼:教学视频。一般控制在15分钟左右;
第二椄:视频课程中使用的程式源码。
第三楼:视频教学中需要用到的一些文档或资源。
第四楼:其它的一些边角料,特别是一些经典程序化策略的回测类的部分会放到下面楼层里面。

参与模式如下:
1、希望参与到编写策略与调试方面的工作通过上面的联系方式联系管理员咨询即可。记的加群,有问题第一时间交流,也可以在论坛指定版发贴交流,专用版地址:http://www.qhlt.cn/forum-244-1.html
2、有意申请试用及绑定期货账户跑实盘网友可以联系管理员,以及开通的方式。
3、基于C++策略交易软件具有:1、软件小(50兆不到);2、效率高(C++语言);3、功能精(专注于策略);4、对服务噐或电脑兼容性好(WIN系统)等优势,特别适合长期跑程序化的客户朋友,特别是有稳定交易模式客户更适合使用C++构建的交易系统。
4、最全的C++期货程序化(量化)教程、视频、源码、课件、资源汇总贴【C++期货程序化/量化研究必备资源贴!】:http://www.qhlt.cn/thread-160231-1-1.html
5、鼎元C++量化程式码技术指标源码C++版模板【建议在test.h和test.cpp中同步至最新,方便统一调用和使用,一次编辑多次使用!】:http://www.qhlt.cn/thread-160230-1-1.html
6、如何使用鼎元C++量化软件以及需要准备的些什么?[C++量化入门必读!]:http://www.qhlt.cn/thread-160415-1-1.html

联系方式:
C++微信群:  QQ群: 管理员微信:;管理员QQ:

论坛官方微信、群(期货热点、量化探讨、开户与绑定实盘)
 
期货论坛 - 版权/免责声明   1.本站发布源码(包括函数、指标、策略等)均属开放源码,用意在于让使用者学习程序化语法撰写,使用者可以任意修改语法內容并调整参数。仅限用于个人学习使用,请勿转载、滥用,严禁私自连接实盘账户交易
  2.本站发布资讯(包括文章、视频、历史记录、教材、评论、资讯、交易方案等)均系转载自网络主流媒体,内容仅为作者当日个人观点,本网转载此文出于传递更多信息之目的,并不意味着赞同其观点或证实其描述。本网不对该类信息或数据做任何保证。不对您构成任何投资建议,不能依靠信息而取代自身独立判断,不对因使用本篇文章所诉信息或观点等导致的损失承担任何责任。
  3.本站发布资源(包括书籍、杂志、文档、软件等)均从互联网搜索而来,仅供个人免费交流学习,不可用作商业用途,本站不对显示的内容承担任何责任。请在下载后24小时内删除。如果喜欢,请购买正版,谢谢合作!
  4.龙听期货论坛原创文章属本网版权作品,转载须注明来源“龙听期货论坛”,违者本网将保留追究其相关法律责任的权力。本论坛除发布原创文章外,亦致力于优秀财经文章的交流分享,部分文章推送时若未能及时与原作者取得联系并涉及版权问题时,请及时联系删除。联系方式:http://www.qhlt.cn/thread-262-1-1.html
如何访问权限为100/255贴子:/thread-37840-1-1.html;注册后仍无法回复:/thread-23-1-1.html;微信/QQ群:/thread-262-1-1.html;网盘链接失效解决办法:/thread-93307-1-1.html

第一部分:头文件申请全局变量
  1.         int    dbfx;   //每次最大承担亏损金额
  2.         int    lots;   //交易手数,在进出场模块设计时统一设置,方便统一格式
复制代码
  1.         int entryprice;//记录进场价格
  2.         int exitprice; //计算出场价格
复制代码
第二部分:参数设置与引用
  1. //****************************************************************交易界面参数编辑与设计模块开始
  2. void test::InitParm()
  3. {
  4.         TDLLPARM t;
  5.         //Name 参数名, Value 默认值, Explain 参数说明, tend 表示一个参数结束
  6.         t.Name = "指标周期"; t.Value = "5"; t.Explain = "均线的周期参数"; tend(t);
  7.         t.Name = "交易手数"; t.Value = "1"; t.Explain = "交易手数,默认1手"; tend(t);
  8.         t.Name = "单笔风险"; t.Value = "0"; t.Explain = "每次最大亏损金额(具体金额),0默认不启用"; tend(t);
  9.         t.Name = "滑点值";   t.Value = "1"; t.Explain = "每笔交易滑点值"; tend(t);
  10.         t.Name = "优先平仓"; t.Value = "0"; t.Explain = "优先平仓,1优先平今,0优先平昨"; tend(t);
  11.         t.Name = "撤单时间"; t.Value = "5"; t.Explain = "委托后多少秒检查一下是否有成交,小于0不撤单"; tend(t);
  12.         t.Name = "策略说明"; t.Value = "0"; t.Explain = "价格超越均线做多,跌破均线做空,tick线进场,bar线出场"; tend(t);
  13.         end();
  14. }
  15. //****************************************************************交易界面参数编辑与设计模块结束
复制代码
  1.         //交易策略参数变量传递开始*******************************************************************************************************
  2.         num = 0;
  3.         length = atoi(parm["指标周期"].Value.c_str());
  4.         lots = atoi(parm["交易手数"].Value.c_str());
  5.         dbfx = atoi(parm["单笔风险"].Value.c_str());
  6.         hd = atoi(parm["滑点值"].Value.c_str());
  7.         yxpc = atoi(parm["优先平仓"].Value.c_str());
  8.         jg = atoi(parm["撤单时间"].Value.c_str());
  9.         //交易策略参数变量传递结束*******************************************************************************************************
复制代码
第三部分:tick行情数据模块设计固定金额止损出场模块
  1. //按单笔金额亏损出场法模块
  2.         if (dbfx != 0) //启用单笔风险出场模块
  3.         {
  4.                 if (fx == 1) //持有多单
  5.                 {
  6.                         exitprice = entryprice - (int)(dbfx / mapInstrument[sInst].VolumeMultiple); //单笔风险除合约乘数获得单笔亏损点数与进场价减获得止损出场价格
  7.                         if (t->LastPrice < exitprice)
  8.                         {
  9.                                 fx == 0;
  10.                                 map<string, double>::iterator it;
  11.                                 for (it = mapSub.begin(); it != mapSub.end(); it++)
  12.                                 {
  13.                                         int sl = (int)(ss * it->second);
  14.                                         if (yxpc == 0)
  15.                                         {
  16.                                                 closesell1(it->first, sInst, sl, t->BidPrice1 - hd * mapInstrument[sInst].PriceTick);//卖出平仓语句
  17.                                         }
  18.                                         else if (yxpc == 1)
  19.                                         {
  20.                                                 closesell2(it->first, sInst, sl, t->BidPrice1 - hd * mapInstrument[sInst].PriceTick); //卖出平仓语句
  21.                                         }
  22.                                         string s = it->first + " 多单达到止损出场条件卖出平仓    " + to_string(sl) + " 手 , 价格 " + to_string(t->BidPrice1 - hd * mapInstrument[sInst].PriceTick) + "  基础手数  " + to_string(ss);
  23.                                         maps[num] = s;
  24.                                         num++;
  25.                                 }
  26.                                 if (num != 0)shuchurizhi();
  27.                                 tm = 0;
  28.                                 xieruzhuangtai();
  29.                         }
  30.                 }
  31.                 if (fx == -1) //持有空单
  32.                 {
  33.                         exitprice = entryprice + (int)(dbfx / mapInstrument[sInst].VolumeMultiple); //单笔风险除合约乘数获得单笔亏损点数与进场价加获得止损出场价格
  34.                         if (t->LastPrice > exitprice)
  35.                         {
  36.                                 fx == 0;
  37.                                 map<string, double>::iterator it;
  38.                                 for (it = mapSub.begin(); it != mapSub.end(); it++)
  39.                                 {
  40.                                         int sl = (int)(ss * it->second);
  41.                                         if (yxpc == 0)
  42.                                         {
  43.                                                 closebuy1(it->first, sInst, sl, t->AskPrice1 + hd * mapInstrument[sInst].PriceTick);//买入平仓语句
  44.                                         }
  45.                                         else if (yxpc == 1)
  46.                                         {
  47.                                                 closebuy2(it->first, sInst, sl, t->AskPrice1 + hd * mapInstrument[sInst].PriceTick);//买入平仓语句
  48.                                         }
  49.                                         string s = it->first + " 空单达到止损出场条件买入平仓 " + to_string(ss) + "  手,价格  " + to_string(t->AskPrice1 + hd * mapInstrument[sInst].PriceTick) + "  基础手数  " + to_string(ss);
  50.                                         maps[num] = s;
  51.                                         num++;
  52.                                 }
  53.                                 if (num != 0)shuchurizhi();
  54.                                 tm = 0;
  55.                                 xieruzhuangtai();
  56.                         }
  57.                 }
  58.         }
复制代码
第四部分:bar行情模式下每个bar新生成时输出一次log到日志板
  1. if (dbfx != 0) //启用单笔风险出场模块信息输出到log日志板
  2.         {
  3.         if (fx == 1)InsertLog(" 您启用了单笔最大亏损金额功能,最大亏损额度为: " + to_string(dbfx) + "元, 持仓手数: " + to_string(lots) + " 手, 止损出场价格: " + to_string(exitprice));
  4.         if (fx ==-1)InsertLog(" 您启用了单笔最大亏损金额功能,最大亏损额度为: " + to_string(dbfx) + "元, 持仓手数: " + to_string(lots) + " 手, 止损出场价格: " + to_string(exitprice));
  5.         }
复制代码
如何访问权限为100/255贴子:/thread-37840-1-1.html;注册后仍无法回复:/thread-23-1-1.html;微信/QQ群:/thread-262-1-1.html;网盘链接失效解决办法:/thread-93307-1-1.html

TOP

在上面有一个引用进场价格的模块,由于代码过多,我在这里列出:
  1. // 最新tick价格大于均线且持仓为0则进场做多
  2.         if (t->LastPrice > ma && fx == 0)
  3.         {
  4.                 fx = 1;
  5.                 ss = lots;
  6.                 entryprice = t->LastPrice;
  7.                 map<string, double>::iterator it;
  8.                 for (it = mapSub.begin(); it != mapSub.end(); it++)
  9.                 {
  10.                         int sl = (int)(ss*it->second);
  11.                         OrderInsert(it->first, sInst, '0', '0', sl, t->AskPrice1 + hd * mapInstrument[sInst].PriceTick, "", "");//买入开仓语句
  12.                         //输出至交易界面LOG日志里面
  13.                         string s = it->first + "突破入场价格多单达到入场条件买入开仓" + to_string(sl) + "手,价格 " + to_string(t->AskPrice1 + hd * mapInstrument[sInst].PriceTick) + "基础手数 " + to_string(ss) + "均线值" + to_string(ma);
  14.                         maps[num] = s;
  15.                         num++;
  16.                 }
  17.                 if (num != 0) shuchurizhi();
  18.                 tm = 0;
  19.                 xieruzhuangtai();
  20.         }
  21. //最新价格小于均线且持仓为0则进场做空
  22.         if (t->LastPrice < ma && fx == 0)
  23.         {
  24.                 fx = -1;
  25.                 ss = lots;
  26.                 entryprice = t->LastPrice;
  27.                 map<string, double>::iterator it;
  28.                 for(it = mapSub.begin(); it != mapSub.end();it++)
  29.                 {
  30.                         int sl = (int)(ss * it->second);
  31.                         OrderInsert(it->first, sInst, '1', '0', sl, t->BidPrice1 - hd * mapInstrument[sInst].PriceTick, "", ""); //卖出开仓语句
  32.                         //输出至交易界面LOG日志里面
  33.                         string s = it->first + "突破入场价格空单达到入场条件卖出开仓" + to_string(sl) + "手,价格 " + to_string(t->BidPrice1 - hd * mapInstrument[sInst].PriceTick) + "基础手数" + to_string(ss) + "均线值" + to_string(ma);
  34.                         maps[num] = s;
  35.                         num++;
  36.                 }
  37.                 if (num != 0)shuchurizhi();
  38.                 tm = 0;
  39.                 xieruzhuangtai();
  40.         }
复制代码
核心在这里
  1.                 entryprice = t->LastPrice;
复制代码
如何访问权限为100/255贴子:/thread-37840-1-1.html;注册后仍无法回复:/thread-23-1-1.html;微信/QQ群:/thread-262-1-1.html;网盘链接失效解决办法:/thread-93307-1-1.html

TOP

返回列表