【MultiCharts(MC)程序化(量化)网上培训学习系列】第326节:经典策略范例"瞬时趋势线指标量化策略"程式码、进行展示效果及对螺纹期货进行初步回测
【MultiCharts(MC)程序化(量化)网上培训学习系列】第326节:经典策略范例"瞬时趋势线指标量化策略"程式码、进行展示效果及对螺纹期货进行初步回测[mp4]http://mp4.qhlt.club/Rec%200326.mp4[/mp4]
[size=14.4px]1、注册论坛会员即可免费获得公开课视频[/size][size=14.4px]源码[/size][size=14.4px]及文档;升级至付费会员免回复查看[/size][size=14.4px]策略源码[/size][size=14.4px]、文档;升级至prime会员无阻碍畅游全站[/size][size=14.4px]期货[/size][size=14.4px]策略、源码、回测、优化、视频、教程、图书、文档,具体参考:[/size][url=http://www.qhlt.cn/thread-37840-1-1.html]http://www.qhlt.cn/thread-37840-1-1.html[/url][size=14.4px];[/size]
[size=14.4px]2、通过期货论坛推荐新开立期货账号,可免费获得付费会员或prime会员资格并享受账户特惠政策,参考:[/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、PC购买/服务器托管如何选择及量化软件相关设置指导:[/size][url=http://www.qhlt.cn/thread-105169-1-1.html]http://www.qhlt.cn/thread-105169-1-1.html[/url][size=14.4px];[/size]
[size=14.4px]5、全网最大策略源码区:[/size][url=http://www.qhlt.cn/forum-109-1.html]http://www.qhlt.cn/forum-109-1.html[/url][size=14.4px] ;策略精选推荐优化区:[/size][url=http://www.qhlt.cn/forum-874-1.html]http://www.qhlt.cn/forum-874-1.html[/url][size=14.4px];回测排名:[url=http://www.qhlt.cn/forum-877-1.html]http://www.qhlt.cn/forum-877-1.html[/url];[/size]
[size=14.4px]6、对视频中策略有困惑、想法、建议、优化?欢迎关注管理员微信进行切磋与交流。动动手,扫二维码加入微信群跟一众量化爱好者切磋吧:[/size]
[size=14.4px]管理员微信:[/size][img=120,120]http://www.qhlt.cn/link/wx.png[/img][size=14.4px] 论坛官方微信群:[/size][img=120,121]http://www.qhlt.cn/link/wg.png[/img][size=14.4px]电报群:[/size][img=120,120]http://p.algo2.net/2023/0622/54be45e3f790e.png[/img][size=14.4px];[/size] 程式码:
**** Hidden Message ***** 附atr出场模块:[code]
Input:atrlen(30),trailatrmult(3);
var:lexit(0),sexit(0),atr(0),top(0),bot(0);
atr = AvgTrueRange(atrlen);
if barssinceentry = 0 then begin //inital high and low
top = high;
bot = Low;
end;
if high > top then top = high; //find the highest point since entry
if Low < bot then bot = low; // find then lowest point sine entry
if marketposition = 1 then begin // manage long position
lexit = top - trailatrmult*atr;
if barssinceentry=0 and Close < entryprice then sell("nextdayout1") all shares next bar at Open;
if barssinceentry>0 then begin
sell("atr-exit1") all shares next bar at lexit stop;
value1 = tl_new(date[1],time,lexit[1],date,time,lexit);
end;
end;
if marketposition = -1 then begin //manage short position
sexit = bot + trailatrmult*atr;
if barssinceentry=0 and Close > entryprice then buytocover("nextdayout2") all shares next bar at Open;
if barssinceentry>0 then begin
buytocover("atr-exit2") all shares next bar at sexit stop;
value1 = tl_new(date[1],time,sexit[1],date,time,sexit);
end;
end;
[/code] multicharts平台修改进场条件测试策略:
**** Hidden Message ***** 原始策略绩效:
[img]http://p.algo2.net/2023/0819/05ed52c488419.png[/img]
[img]http://p.algo2.net/2023/0819/56aa4e9d21066.png[/img]
[img]http://p.algo2.net/2023/0819/5de1ea72bf502.png[/img]
[img]http://p.algo2.net/2023/0819/fedd5ff76d3f8.png[/img]
[img]http://p.algo2.net/2023/0819/7330c2ff33fc4.png[/img]
[img]http://p.algo2.net/2023/0819/254d651cc6ce1.png[/img]
[img]http://p.algo2.net/2023/0819/7e029db159f81.png[/img]
[img]http://p.algo2.net/2023/0819/3b8e03492f615.png[/img] 增加atr止盈模块后绩效:
[img]http://p.algo2.net/2023/0819/0e5c2aec1683f.png[/img]
[img]http://p.algo2.net/2023/0819/3310b58b16109.png[/img]
[img]http://p.algo2.net/2023/0819/804cc1d24a245.png[/img]
[img]http://p.algo2.net/2023/0819/d924bd4676a64.png[/img]
[img]http://p.algo2.net/2023/0819/0bb6b77fbf5de.png[/img]
[img]http://p.algo2.net/2023/0819/c0bdb0ee2450b.png[/img]
[img]http://p.algo2.net/2023/0819/c9fc1eeb44449.png[/img]
[img]http://p.algo2.net/2023/0819/6b6ac4fcc837f.png[/img] 绩化进场策略后绩效:
[img]http://p.algo2.net/2023/0819/81e85d1c9b665.png[/img]
[img]http://p.algo2.net/2023/0819/3a07ddcc457ce.png[/img] 简评:
1、进场条件可以灵活的变动,而效果却也是可以明显的提高。
2、这个策略适合中小周期,可能会更多人喜欢。 {:handshake:} 学习 谢谢老师,学习一下 学习 學習
页:
[1]