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

C++程序化/量化学习视频教程系列 第048节:鼎元C++量化交易系统范例之【Aberration交易系统】【C++量化交易策略范例系列】

C++程序化/量化学习视频教程系列 第048节:鼎元C++量化交易系统范例之【Aberration交易系统】【C++量化交易策略范例系列】

C++程序化/量化学习视频教程系列 第048节:鼎元C++量化交易系统范例之【Aberration交易系统】【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

策略原理参考:http://www.qhlt.cn/thread-48724-1-1.html;

第一部分:头文件声明变量
  1. //策略变量设置
  2.         double ma;     //均线变量声明
  3.         int    lots;    //每次交易数量
  4.         int    dbfx;   //每次最大承担亏损金额
  5.         int    target; //每次交易最大获利目标(点数)
  6.         int    length; //均线周期参数声明
  7.         int    jg;     //撤单时间间隔
  8.         int    hd;     //滑点
  9.         int    yxpc;   //优先平仓选择(优先平昨,优先平今)
  10.         int entryprice, exitprice,exit_target;//记录进场价格与出场价格,方便计算盈亏金额
  11.         double UpperBand, LowerBand;
复制代码
第二部分:源文件策略核心部分
  1. RsqBar(sPeriod, sInst);
  2.     ma = average(sPeriod, sInst, length); //初始计算一次均线值.
  3.         UpperBand = ma + StandardDev(sPeriod, sInst, length);//上沿
  4.         LowerBand = ma - StandardDev(sPeriod, sInst, length);//下沿

  5.         InsertLog("Abberation交易系统, 做多上沿: " + to_string(UpperBand) + "做空下沿: " + to_string(LowerBand));
复制代码
  1. // 最新tick价格大于均线且持仓为0则进场做多
  2.         if (t->LastPrice > UpperBand && 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.                         //mail notice edit
  17.                         //subject = "You have new orders!";
  18.                         //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!";
  19.                         //mailNotify();//mail sending!
  20.                 }
  21.                 if (num != 0) shuchurizhi();
  22.                 tm = 0;
  23.                 xieruzhuangtai();
  24.         }
  25. //最新价格小于均线且持仓为0则进场做空
  26.         if (t->LastPrice < LowerBand && fx == 0)
  27.         {
  28.                 fx = -1;
  29.                 ss = lots;
  30.                 entryprice = t->LastPrice;
  31.                 map<string, double>::iterator it;
  32.                 for(it = mapSub.begin(); it != mapSub.end();it++)
  33.                 {
  34.                         int sl = (int)(ss * it->second);
  35.                         OrderInsert(it->first, sInst, '1', '0', sl, t->BidPrice1 - hd * mapInstrument[sInst].PriceTick, "", ""); //卖出开仓语句
  36.                         //输出至交易界面LOG日志里面
  37.                         string s = it->first + "突破入场价格空单达到入场条件卖出开仓" + to_string(sl) + "手,价格 " + to_string(t->BidPrice1 - hd * mapInstrument[sInst].PriceTick) + "基础手数" + to_string(ss) + "均线值" + to_string(ma);
  38.                         maps[num] = s;
  39.                         num++;
  40.                         //mail notice edit
  41.                         //subject = "You have new orders!";
  42.                         //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!";
  43.                         //mailNotify();//mail sending
  44.                 }
  45.                 if (num != 0)shuchurizhi();
  46.                 tm = 0;
  47.                 xieruzhuangtai();
  48.         }
复制代码
onbaropen模块:
  1.         ma = average(sPeriod, sInst, length); //初始计算一次均线值.
  2.         UpperBand = ma + StandardDev(sPeriod, sInst, length);//上沿
  3.         LowerBand = ma - StandardDev(sPeriod, sInst, length);//下沿
  4. /*
复制代码
如何访问权限为100/255贴子:/thread-37840-1-1.html;注册后仍无法回复:/thread-23-1-1.html;微信/QQ群:/thread-262-1-1.html;网盘链接失效解决办法:/thread-93307-1-1.html

TOP

返回列表