龙听期货论坛's Archiver

C
+
+


 微信: QQ:

龙听 发表于 2024-11-16 06:49

【MultiCharts(MC)程序化(量化)网上培训学习系列】第393节:经典策略范例利用“相关趋势 (The Correlation Trend Indicator)指标"设计量化策略、编写程式码、绩效展示及进行初步测试

【MultiCharts(MC)程序化(量化)网上培训学习系列】第393节:经典策略范例利用“相关趋势 (The Correlation Trend Indicator)指标"设计量化策略、编写程式码、绩效展示及进行初步测试

[mp4]http://mp4.qhlt.club/Rec%200393.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]

龙听 发表于 2024-11-16 06:54

程式 码部分:[code]inputs: FastLength( 20 ), SlowLength( 40 ),  BuyThreshold( 0.5 ), SellThreshold( 0 ) ;
variables: CorrF( 0 ), CorrS( 0 ) ;

CorrF = CorrelationTrend( FastLength ) ;
CorrS = CorrelationTrend( SlowLength ) ;

if CorrF crosses over BuyThreshold then Buy next bar at Market ;
        
if CorrS crosses under SellThreshold then sellshort next bar at Market ;
[/code]【CorrelationTrend】相关趋势指标公式计算:[url]http://www.qhlt.cn/thread-160357-1-1.html[/url];

研究专题:[url]http://www.qhlt.cn/thread-159202-1-1.html[/url];

龙听 发表于 2024-11-16 07:17

运行效果与测试:
[img]http://p.algo2.net/2024/1116/a5faf35ccbdce.png[/img]
[img]http://p.algo2.net/2024/1116/df11b9bbcf76d.png[/img]
[img]http://p.algo2.net/2024/1116/e06e893a9e8e9.png[/img]
[img]http://p.algo2.net/2024/1116/e5f3cebc73bbf.png[/img]
[img]http://p.algo2.net/2024/1116/206afa54aa4fa.png[/img]
[img]http://p.algo2.net/2024/1116/88a8cfad65070.png[/img]
[img]http://p.algo2.net/2024/1116/bbf7b1cc020a4.png[/img]
[img]http://p.algo2.net/2024/1116/98831189e8c45.png[/img]

龙听 发表于 2024-11-16 07:26

简评:

1、优化空间大。
2、思路好。
3、还是看品种下碟的策略,选好品种是关键。

页: [1]