【MultiCharts(MC)程序化(量化)网上培训学习系列】第49节:写一个DPO指标,观察效果情况并在此基础上写一个DPO交易策略,并在国内螺纹期货上面进行回测
【MultiCharts(MC)程序化(量化)网上培训学习系列】第49节:写一个DPO指标,观察效果情况并在此基础上写一个DPO交易策略,并在国内螺纹期货上面进行回测[img]http://p.qhlt.cn/filestores/2020/04/13/4108a025a01138c479d56581965200ba.png[/img]
主图为DPO策略运行效果,副图为DPO指标运行效果。1、效果图
2、通过期货论坛推荐新开立期货账号享受特惠政策:[url]http://www.qhlt.cn/thread-25049-1-1.html[/url];
3、通过期货论坛开立期货账号并绑定MC享受专属优惠政策:[url]http://www.qhlt.cn/thread-80442-1-1.html[/url];
4、量化相关微信/QQ群申请加入链接:[url]http://www.qhlt.cn/thread-262-1-1.html[/url] ;
5、代写与求助:[url]http://www.qhlt.cn/forum-109-1.html[/url];
6、期货论坛策略源码区:[url]http://www.qhlt.cn/forum-109-1.html[/url] ; 视频链接:[mp4]http://mp4.qhlt.club/Rec%200049.mp4[/mp4]
DPO指标源码:dpozb
[code]Input:length(20),up(60),dn(40);
vars:avglen(0),midlen(10),dpo(0);
avglen=Average(close,length);
midlen=IntPortion(length/2)+1;
dpo=close - avglen[midlen];
value1=highest(dpo,89)[1];
value2=Lowest(dpo,89)[1];
plot1(dpo,"dpo",yellow);
plot2(0,"zero",darkgray);
plot3(value1*(1-up/100),"up",red);
plot4(value2*(1+dn/100),"dn",green);
[/code]
dpo策略信号:dpoSYS
**** Hidden Message ***** DPO策略专题贴:[url]http://www.qhlt.cn/thread-43010-1-1.html[/url] 视频中策略在国内螺纹期货品种上面的回测,日线级别:
[img]http://p.qhlt.cn/filestores/2020/04/13/ec390c02f22c76661bbc2e891eb18392.png[/img] 小时线级别:
[img]http://p.qhlt.cn/filestores/2020/04/13/1edfb94e9d4d44cb345b9234362825f1.png[/img] 15分钟周期:
[img]http://p.qhlt.cn/filestores/2020/04/13/235629c2ee7793613bee0a8f9482b1b8.png[/img] 5分钟周期回测
[img]http://p.qhlt.cn/filestores/2020/04/13/559b04f36e6d72a0ee6a582d94a5998e.png[/img] 回复 感谢分享,继续学习 谢谢分享 11111 [b]回复 [url=http://www.qhlt.cn/redirect.php?goto=findpost&pid=134364&ptid=74052]11#[/url] [i]明明[/i] [/b]嗯嗯 {:smile:} DPO 謝謝 看一看
页:
[1]