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

第六部分、跨期函数【逆序版,适合直接做逻辑判断用】

第六部分、跨期函数【逆序版,适合直接做逻辑判断用】

头文件声明变量:
  1.         //跨期调用函数(开始)【返回逆序数组变量,适合直接做逻辑判断用】
  2.         vector<double>CrossOverPeriod(string PriceType, string periodType); //返回数组形式的period期(day,min60,min30,min15,min15,min10,min5)的pricetype(close,high,low,open)相关价格数据,注意跨的周期一定要比运行周期大
  3.         vector<double>CrossOverPeriodInst(string PriceType, string periodType, string inst); //返回数组形式的合约(rb2510等)period期(day,min60,min30,min15,min15,min10,min5)的pricetype(close,high,low,open)相关价格数据
  4.         //跨期调用函数(结束)
复制代码

论坛官方微信、群(期货热点、量化探讨、开户与绑定实盘)
 
期货论坛 - 版权/免责声明   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. //第六类函数(跨期函数,逆序版,适合直接做逻辑判断用)
  2. //返回数组形式的period期(day,min60,min30,min15,min15,min10,min5)的pricetype(close,high,low,open)相关价格数据,注意跨的周期一定要比运行周期大(返回逆序数组形式,最新序列号是[0])
  3. vector<double> test::CrossOverPeriod(string PriceType, string periodType)
  4. {
  5.         vector<double>newprice;
  6.         newprice.clear();
  7.         RsqBar(periodType, sInst);
  8.         map<string, TKVALUE >::iterator it;
  9.         if (PriceType == "close") {
  10.                 for (it = mapK[periodType][sInst].begin(); it != mapK[periodType][sInst].end(); it++)
  11.                 {
  12.                         newprice.push_back(it->second.dClose);
  13.                 }
  14.         }
  15.         else        if (PriceType == "open") {
  16.                 for (it = mapK[periodType][sInst].begin(); it != mapK[periodType][sInst].end(); it++)
  17.                 {
  18.                         newprice.push_back(it->second.dOpen);
  19.                 }
  20.         }
  21.         else        if (PriceType == "high") {
  22.                 for (it = mapK[periodType][sInst].begin(); it != mapK[periodType][sInst].end(); it++)
  23.                 {
  24.                         newprice.push_back(it->second.dHigh);
  25.                 }
  26.         }
  27.         else        if (PriceType == "low") {
  28.                 for (it = mapK[periodType][sInst].begin(); it != mapK[periodType][sInst].end(); it++)
  29.                 {
  30.                         newprice.push_back(it->second.dLow);
  31.                 }
  32.         }
  33.         reverse(newprice.begin(), newprice.end());//调转数组顺序以与行业规范统一
  34.         return newprice;
  35. }
  36. //跨周期中品种调用数据(返回数组形式)(返回逆序数组形式,最新序列号是[0])
  37. vector<double> test::CrossOverPeriodInst(string PriceType, string periodType, string inst)
  38. {
  39.         vector<double>newprice;
  40.         RsqBar(periodType, inst);
  41.         map<string, TKVALUE >::iterator it;
  42.         if (PriceType == "close") {
  43.                 for (it = mapK[periodType][inst].begin(); it != mapK[periodType][inst].end(); it++)
  44.                 {
  45.                         newprice.push_back(it->second.dClose);
  46.                 }
  47.         }
  48.         else        if (PriceType == "open") {
  49.                 for (it = mapK[periodType][inst].begin(); it != mapK[periodType][inst].end(); it++)
  50.                 {
  51.                         newprice.push_back(it->second.dOpen);
  52.                 }
  53.         }
  54.         else        if (PriceType == "high") {
  55.                 for (it = mapK[periodType][inst].begin(); it != mapK[periodType][inst].end(); it++)
  56.                 {
  57.                         newprice.push_back(it->second.dHigh);
  58.                 }
  59.         }
  60.         else        if (PriceType == "low") {
  61.                 for (it = mapK[periodType][inst].begin(); it != mapK[periodType][inst].end(); it++)
  62.                 {
  63.                         newprice.push_back(it->second.dLow);
  64.                 }
  65.         }
  66.         reverse(newprice.begin(), newprice.end());//调转数组顺序以与行业规范统一
  67.         return newprice;
  68. }
  69. //第六类函数(跨期函数,逆序版,适合直接做逻辑判断用)
复制代码
如何访问权限为100/255贴子:/thread-37840-1-1.html;注册后仍无法回复:/thread-23-1-1.html;微信/QQ群:/thread-262-1-1.html;网盘链接失效解决办法:/thread-93307-1-1.html

TOP

返回列表