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

鼎元C++期货量化/程序化教程【交易与委托模块】

鼎元C++期货量化/程序化教程【交易与委托模块】

两种不同数据驱动模块下,不同的进出场语句1:开仓语句

一:tick数据驱动模块事件中:

(1)买入开仓语句:
  1. OrderInsert(it->first, sInst, '0', '0', sl, t->AskPrice1 + hd * mapInstrument[sInst].PriceTick, "", "");//买入开仓语句
复制代码
说明:

1、t->AskPrice1 ,最新tick的价格。
2、hd,滑点,交易参数设置中设定
3、mapInstrument[sInst].PriceTick,最小波动价位,即一跳代表的值。
4、sl,交易数量,委托手数。

(2)卖出开仓语句:
  1. OrderInsert(it->first, sInst, '1', '0', sl, t->BidPrice1 - hd * mapInstrument[sInst].PriceTick, "", "");//卖出开仓语句
复制代码
说明:

1、t->AskPrice1 ,最新tick的价格。
2、hd,滑点,交易参数设置中设定
3、mapInstrument[sInst].PriceTick,最小波动价位,即一跳代表的值。
4、sl,交易数量,委托手数。

二:bar数据驱动模块事件中:

(1)买入开仓语句:
  1. OrderInsert(it->first, sInst, '0', '0', sl, mapMd[sInst].BidPrice1 + hd * mapInstrument[sInst].PriceTick, "", "");//买入开仓语句
复制代码
说明:

1、mapMd[sInst].BidPrice1 ,最新tick的价格。
2、hd,滑点,交易参数设置中设定
3、mapInstrument[sInst].PriceTick,最小波动价位,即一跳代表的值。
4、sl,交易数量,委托手数。

(2)卖出开仓语句:
  1. OrderInsert(it->first, sInst, '1', '0', sl, mapMd[sInst].AskPrice1 - hd * mapInstrument[sInst].PriceTick, "", "");//卖出开仓语句
复制代码
说明:

1、mapMd[sInst].BidPrice1 ,最新tick的价格。
2、hd,滑点,交易参数设置中设定
3、mapInstrument[sInst].PriceTick,最小波动价位,即一跳代表的值。
4、sl,交易数量,委托手数。

论坛官方微信、群(期货热点、量化探讨、开户与绑定实盘)
 
期货论坛 - 版权/免责声明   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

两种不同数据驱动模块下,不同的进出场语句2:平仓语句

一:tick数据驱动模块事件中:

(1)买入平仓语句:
  1. OrderInsert(it->first, sInst, '0', '0', sl, t->AskPrice1 + hd * mapInstrument[sInst].PriceTick, "", "");//买入开仓语句
复制代码
说明:

1、t->AskPrice1 ,最新tick的价格。
2、hd,滑点,交易参数设置中设定
3、mapInstrument[sInst].PriceTick,最小波动价位,即一跳代表的值。
4、sl,交易数量,委托手数。

(2)卖出平仓语句:
  1. OrderInsert(it->first, sInst, '1', '0', sl, t->BidPrice1 - hd * mapInstrument[sInst].PriceTick, "", "");//卖出开仓语句
复制代码
说明:

1、t->AskPrice1 ,最新tick的价格。
2、hd,滑点,交易参数设置中设定
3、mapInstrument[sInst].PriceTick,最小波动价位,即一跳代表的值。
4、sl,交易数量,委托手数。

二:bar数据驱动模块事件中:

(1)买入平仓语句:
  1. closebuy1(it->first, sInst, sl, mapMd[sInst].AskPrice1 + hd * mapInstrument[sInst].PriceTick); //买入平仓,优先平昨仓
复制代码
说明:

1、mapMd[sInst].BidPrice1 ,最新tick的价格。
2、hd,滑点,交易参数设置中设定
3、mapInstrument[sInst].PriceTick,最小波动价位,即一跳代表的值。
4、sl,交易数量,委托手数。

(2)买入平仓语句:
  1. closebuy2(it->first, sInst, sl, mapMd[sInst].AskPrice1 + hd * mapInstrument[sInst].PriceTick); //买入平仓,优先平今仓
复制代码
说明:

1、mapMd[sInst].BidPrice1 ,最新tick的价格。
2、hd,滑点,交易参数设置中设定
3、mapInstrument[sInst].PriceTick,最小波动价位,即一跳代表的值。
4、sl,交易数量,委托手数。

(3)卖出平仓语句:
  1. closesell1(it->first, sInst, sl, mapMd[sInst].BidPrice1 - hd * mapInstrument[sInst].PriceTick);//卖出平仓,优先平昨仓
复制代码
说明:

1、mapMd[sInst].BidPrice1 ,最新tick的价格。
2、hd,滑点,交易参数设置中设定
3、mapInstrument[sInst].PriceTick,最小波动价位,即一跳代表的值。
4、sl,交易数量,委托手数。

(4)卖出平仓语句:
  1. closesell2(it->first, sInst, sl, mapMd[sInst].BidPrice1 - hd * mapInstrument[sInst].PriceTick);//卖出平仓,优先平今仓
复制代码
说明:

1、mapMd[sInst].BidPrice1 ,最新tick的价格。
2、hd,滑点,交易参数设置中设定
3、mapInstrument[sInst].PriceTick,最小波动价位,即一跳代表的值。
4、sl,交易数量,委托手数。
如何访问权限为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数据模式下,最新价使用
  1. t->BidPrice1
复制代码
2、在bar数据模式下,最新价使用
  1. mapMd[sInst].BidPrice1
复制代码
如何访问权限为100/255贴子:/thread-37840-1-1.html;注册后仍无法回复:/thread-23-1-1.html;微信/QQ群:/thread-262-1-1.html;网盘链接失效解决办法:/thread-93307-1-1.html

TOP

bar事件驱动模式下范例:
  1. void test::OnBarOpen(TKVALUE t)
  2. {
  3.         if (state != "run")return;
  4.         if (t.InstrumentID != sInst)return;
  5.         mapK[sPeriod][sInst][t.sDate + t.sDayNight + t.sTime] = t;
  6.         ma = avg(sPeriod, sInst, jxzq);
  7.         string s2 = "    合约    " + sInst + "    均线  " + to_string(ma);
  8.         InsertLog(s2);

  9.         //(1)最新价小于均线价格,无持仓进行卖出开仓模块
  10.         if (mapMd[sInst].LastPrice < ma && fx == 0)
  11.         {
  12.                 fx = -1;
  13.                 ss = dbfx;
  14.                 map<string, double>::iterator it;
  15.                 for (it = mapSub.begin(); it != mapSub.end(); it++)
  16.                 {
  17.                         int sl = (int)(ss * it->second);
  18.                         OrderInsert(it->first, sInst, '1', '0', sl, mapMd[sInst].AskPrice1 - hd * mapInstrument[sInst].PriceTick, "", "");//卖出开仓语句
  19.                         string s = it->first + "    突破入场价格空单达到入场条件卖出开仓    " + to_string(sl) + "    手,价格    " + to_string(mapMd[sInst].AskPrice1 - hd * mapInstrument[sInst].PriceTick) + "  基础手数  " + to_string(ss) + "  均线 " + to_string(ma);
  20.                         maps[num] = s;
  21.                         num++;

  22.                 }
  23.                 if (num != 0)shuchurizhi();
  24.                 tm = 0;
  25.                 xieruzhuangtai();
  26.         }
  27.         //(2)最新价大于均线价格,无持仓进行卖入开仓模块
  28.         if (mapMd[sInst].LastPrice > ma && fx == 0)
  29.         {
  30.                 fx = 1;
  31.                 ss = dbfx;
  32.                 map<string, double>::iterator it;
  33.                 for (it = mapSub.begin(); it != mapSub.end(); it++)
  34.                 {
  35.                         int sl = (int)(ss * it->second); //获取根据单笔风险计算的交易数量并赋值给(sl)数量
  36.                         OrderInsert(it->first, sInst, '0', '0', sl, mapMd[sInst].BidPrice1 + hd * mapInstrument[sInst].PriceTick, "", "");//买入开仓语句
  37.                         //输出至交易界面的log里面
  38.                         string s = it->first + "    突破入场价格多单达到入场条件买入开仓    " + to_string(sl) + "    手,价格    " + to_string(mapMd[sInst].BidPrice1 + hd * mapInstrument[sInst].PriceTick) + "  基础手数  " + to_string(ss) + "  均线 " + to_string(ma);
  39.                         maps[num] = s;
  40.                         num++;
  41.                 }
  42.                 if (num != 0)shuchurizhi();
  43.                 tm = 0;
  44.                 xieruzhuangtai();
  45.         }

  46.         //(3)最新价小于均线价格,持有多单进行平仓模块
  47.         if (mapMd[sInst].LastPrice < ma && fx == 1)
  48.         {
  49.                 fx = 0;
  50.                 map<string, double>::iterator it;
  51.                 for (it = mapSub.begin(); it != mapSub.end(); it++)
  52.                 {
  53.                         int sl = (int)(ss * it->second);
  54.                         if (yxpc == 0)
  55.                         {
  56.                                 closesell1(it->first, sInst, sl, mapMd[sInst].BidPrice1 - hd * mapInstrument[sInst].PriceTick);//卖出平仓,优先平昨仓
  57.                         }
  58.                         else if (yxpc == 1)
  59.                         {
  60.                                 closesell2(it->first, sInst, sl, mapMd[sInst].BidPrice1 - hd * mapInstrument[sInst].PriceTick);//卖出平仓,优先平今仓
  61.                         }
  62.                         string s = it->first + "    多单跌破均线达到出场条件卖出平仓    " + to_string(sl) + "    手,价格    " + to_string(mapMd[sInst].BidPrice1 - hd * mapInstrument[sInst].PriceTick) + "  基础手数  " + to_string(ss) + "  均线 " + to_string(ma);
  63.                         maps[num] = s;
  64.                         num++;
  65.                 }
  66.                 if (num != 0)shuchurizhi();
  67.                 tm = 0;
  68.                 xieruzhuangtai();
  69.         }
  70.         //(4)最新价大于均线价格,持有空单进行平仓模块
  71.         if (mapMd[sInst].LastPrice > ma && fx == -1)
  72.         {
  73.                 fx = 0;
  74.                 map<string, double>::iterator it;
  75.                 for (it = mapSub.begin(); it != mapSub.end(); it++)
  76.                 {
  77.                         int sl = (int)(ss * it->second);
  78.                         if (yxpc == 0)
  79.                         {
  80.                                 closebuy1(it->first, sInst, sl, mapMd[sInst].AskPrice1 + hd * mapInstrument[sInst].PriceTick); //买入平仓,优先平昨仓
  81.                         }
  82.                         else if (yxpc == 1)
  83.                         {
  84.                                 closebuy2(it->first, sInst, sl, mapMd[sInst].AskPrice1 + hd * mapInstrument[sInst].PriceTick); //买入平仓,优先平今仓
  85.                         }
  86.                         string s = it->first + "    空单涨破均线达到出场条件买入平仓    " + to_string(ss) + "    手,价格    " + to_string(mapMd[sInst].AskPrice1 + hd * mapInstrument[sInst].PriceTick) + "  基础手数  " + to_string(ss) + "  均线 " + to_string(ma);
  87.                         maps[num] = s;
  88.                         num++;
  89.                 }
  90.                 if (num != 0)shuchurizhi();
  91.                 tm = 0;
  92.                 xieruzhuangtai();

  93.         }
  94. }
复制代码
如何访问权限为100/255贴子:/thread-37840-1-1.html;注册后仍无法回复:/thread-23-1-1.html;微信/QQ群:/thread-262-1-1.html;网盘链接失效解决办法:/thread-93307-1-1.html

TOP

tick数据驱动模式下范例:
  1. void test::OnMarketData(CThostFtdcDepthMarketDataField* t)
  2. {
  3.         if (state != "run")return;
  4.         if (t->InstrumentID != sInst)return;
  5.         mapMd[t->InstrumentID] = *t;

  6.         if (t->LastPrice > ma && fx == 0)
  7.         {
  8.                 fx = 1;
  9.                 ss = dbfx;
  10.                 map<string, double>::iterator it;
  11.                 for (it = mapSub.begin(); it != mapSub.end(); it++)
  12.                 {
  13.                         int sl = (int)(ss * it->second);
  14.                         OrderInsert(it->first, sInst, '0', '0', sl, t->AskPrice1 + hd * mapInstrument[sInst].PriceTick, "", "");//买入开仓语句
  15.                         //输出至交易界面的log里面
  16.                         string s = it->first + " 突破入场价格多单达到入场条件买入开仓 " + to_string(sl) + " 手,价格 " + to_string(t->AskPrice1 + hd * mapInstrument[sInst].PriceTick) + " 基础手数 " + to_string(ss) + " 均线 " + to_string(ma);
  17.                         maps[num] = s;
  18.                         num++;
  19.                 }
  20.                 if (num != 0)shuchurizhi();
  21.                 tm = 0;
  22.                 xieruzhuangtai();
  23.         }
  24.         if (t->LastPrice < ma && fx == 0)
  25.         {
  26.                 fx = -1;
  27.                 ss = dbfx;
  28.                 map<string, double>::iterator it;
  29.                 for (it = mapSub.begin(); it != mapSub.end(); it++)
  30.                 {
  31.                         int sl = (int)(ss * it->second);
  32.                         OrderInsert(it->first, sInst, '1', '0', sl, t->BidPrice1 - hd * mapInstrument[sInst].PriceTick, "", "");
  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.         }
  41. }
复制代码
如何访问权限为100/255贴子:/thread-37840-1-1.html;注册后仍无法回复:/thread-23-1-1.html;微信/QQ群:/thread-262-1-1.html;网盘链接失效解决办法:/thread-93307-1-1.html

TOP

返回列表