【MultiCharts(MC)程序化(量化)网上培训学习系列】第82节:写一个钱德动量指标及钱德策略程式码+盘中止损盈及回撤止盈并回测效果
[img]http://p.qhlt.cn/filestores/2020/10/17/ac34c7fdf0c19d33e48554e4245990e5.png[/img][img]http://p.qhlt.cn/filestores/2020/10/17/783c0d7171fde461730825ace366d71c.png[/img]
[size=14.4px]1、效果图;[/size]
[size=14.4px]2、通过[/size][size=14.4px]期货[/size][size=14.4px]论坛推荐新开立期货账号享受特惠政策:[/size][url=http://www.qhlt.cn/thread-25049-1-1.html]http://www.qhlt.cn/thread-25049-1-1.html[/url][size=14.4px];[/size]
[size=14.4px]3、通过期货论坛开立期货账号并绑定MC享受专属优惠政策:[/size][url=http://www.qhlt.cn/thread-80442-1-1.html]http://www.qhlt.cn/thread-80442-1-1.html[/url][size=14.4px];[/size]
[size=14.4px]4、代写与求助:[/size][url=http://www.qhlt.cn/forum-109-1.html]http://www.qhlt.cn/forum-109-1.html[/url][size=14.4px];[/size]
[size=14.4px]5、期货论坛[/size][size=14.4px]策略[/size][size=14.4px]源码[/size][size=14.4px]区:[/size][url=http://www.qhlt.cn/forum-109-1.html]http://www.qhlt.cn/forum-109-1.html[/url][size=14.4px] ;[/size]
[size=14.4px]6、视频链接地址:[url=https://www.bilibili.com/video/BV1jf4y1B7Q9/]https://www.bilibili.com/video/BV1jf4y1B7Q9/[/url][/size]
[size=14.4px]7、期货论坛官方MC[/size][size=14.4px]量化[/size][size=14.4px]策略群,对视频中策略有想法、建议、优化以结交量化好友,动动手,扫二维码加入微信群,跟一众量化好友切磋吧[/size] 视频中程式码部分:
CMO指标部分【副图指标】:
[code]Input:length(10);
var:su(0),sd(0),cmo(0),color(white);
su = iff(close >= close[1],close-close[1],0);
sd = iff(close < close[1],close[1]-close,0);
value1 = Summation(su,length);
value2 = Summation(sd,length);
if value1+value2<>0 then begin
cmo = (value1-value2)*100/(value1+value2);
end;
color = iff(cmo>0,red,green);
plot1(cmo,"cmo",color);
[/code]
主图CMO策略程式码部分:
**** Hidden Message ***** 在螺纹指数一小时图上运行效果及回测:
[img]http://p.qhlt.cn/filestores/2020/10/17/d6b86f6ccca2062d443038ed98595eab.png[/img]
[img]http://p.qhlt.cn/filestores/2020/10/17/6ed7a7c4c81d22d57150a01098aafc63.png[/img] 在螺纹指数5分钟图上运行效果及回测:
[img]http://p.qhlt.cn/filestores/2020/10/17/c1d7149658a7260ac2a049a3606bb449.png[/img]
[img]http://p.qhlt.cn/filestores/2020/10/17/39f459f9e8f532ff32fca8478c389421.png[/img] 感谢版主分享 Thank you very much 为什么不能回复? 谢谢分享 第82节:写一个钱德动量指标及钱德策略程式码+盘中止损盈及回撤止盈并回测效果 学习 学习 看看情况 补一下视频:[mp4]http://mp4.qhlt.club/Rec%200082.mp4[/mp4] 謝謝
页:
[1]