【MultiCharts(MC)程序化(量化)网上培训学习系列】第287节:跟踪交易中达到的最高价或最低价并利用来做为移动止损/的一个参考(top/bot after entry as a trailing-stop method)设计和编写范例
【MultiCharts(MC)程序化(量化)网上培训学习系列】第287节:跟踪交易中达到的最高价或最低价并利用来做为移动止损/的一个参考(top/bot after entry as a trailing-stop method)设计和编写范例[mp4]http://mp4.qhlt.club/Rec%200287.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];[/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] 程式码部分:
1、创建两个公式:Function: MaxTradeHigh[code]if marketposition <> 1 then maxtradehigh = -999999; //no long position,value very small
if marketposition = 1 and high > maxtradehigh[1] then maxtradehigh = high; // 1,long position,2,high of bar value bigger than last maxtradehigh ,then new maxtradehigh = high[/code]公式二:Funct ion: MinTradeLow
**** Hidden Message *****
2、多头开仓后最高点及空头开仓后最低点跟踪止盈模块:信号:exit - trailing from topbot drawdown atr exit
**** Hidden Message *****
专题链接:[url]http://www.qhlt.cn/thread-125839-1-1.html[/url] 运行效果及回测部分:
[img]http://p.algo2.net/2022/0706/b3ef8c0cd3ab4.png[/img]
[img]http://p.algo2.net/2022/0706/c30253e87ec4e.png[/img]
[img]http://p.algo2.net/2022/0706/0931d0375ac88.png[/img] 点评:一般写跟踪进场后达到的最高或最低价多在策略信号中,这一方面加大的策略的复杂性,另一方面也不利于优化。所以这里进行了一个分离。以后需要追踪交易中达到的最高价或最低价时直接用这个简单的公式就能求出来了。
做为移动止损盈方面整体效果还是不错的。 谢谢分享 学习 谢谢分享 学习 学习 {:lol:} 謝謝 思路简单但是效果还可以
页:
[1]