C++程序化/量化学习视频教程系列 第028节:鼎元C++量化之封装第二个指标之最高/低值(highest/lowest)指标(求N周期最高价highest(N)与N周期最低价lowest(N),方便在策略中调用)及C++量化开发中的注意事项【C++量化指标公式开发系列】
C++程序化/量化学习视频教程系列 第028节:鼎元C++量化之封装第二个指标之最高/低值(highest/lowest)指标(求N周期最高价highest(N)与N周期最低价lowest(N),方便在策略中调用)及C++量化开发中的注意事项【C++量化指标公式开发系列】[mp4]http://mp4.qhlt.club/Cpp-Video/028.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] 第一部分,在头文件test.h中声明highest、lowest变量:[code]
double highest(string period, string inst, int num);
double lowerest(string period, string inst, int num);
[/code]第二部分、源文件公式计算函数[code]
// 计算num周期内bar最高价格
double test::highest(string period, string inst, int num)
{
double hiprice = 0;
int key = 0;
map<string, TKVALUE>::reverse_iterator it;
for (it = mapK[period][inst].rbegin(); it != mapK[period][inst].rend(); ++it)
{
if (hiprice < it->second.dHigh)hiprice = it->second.dHigh;
key++;
if (key >= num)break;
}
return hiprice;
}
[/code][code]
//计算num周期内bar最低价格
double test::lowest(string period, string inst, int num)
{
double lowprice = 0;
int key = 0;
map<string, TKVALUE>::reverse_iterator it;
for (it = mapK[period][inst].rbegin(); it != mapK[period][inst].rend(); ++it)
{
if (lowprice == 0)lowprice = it->second.dLow;
if (lowprice > it->second.dLow)lowprice = it->second.dLow;
key++;
if (key >= num)break;
}
return lowprice;
}
[/code]三、使用方法:
1、范例:[code]
RsqBar(sPeriod, sInst);
lowest(sPeriod, sInst, 20);
[/code] 鼎元C++量化程式码指标与函数模块系列之【highest、lowest的计算方法及调用方法】:[url]http://www.qhlt.cn/thread-160389-1-1.html[/url];
鼎元C++期货量化/程序化教程【highest、lowest的计算方法及调用方法】:[url]http://www.qhlt.cn/thread-160007-1-1.html[/url];
页:
[1]