龙听期货论坛's Archiver

C
+
+


 微信: QQ:

龙听 发表于 2019-12-10 10:27

【MultiCharts(MC)程序化(量化)网上培训学习系列】第8节:做一个四周规则策略,向上突破做多,向下突破做空

视频
[mp4]http://mp4.qhlt.club/Rec%200008.mp4[/mp4]

龙听 发表于 2020-1-31 15:59

指标部分源码:[code]
Inputs:price(close),n(20);
vars:top(0),bottom(0);

top = Highest(high,n);
bottom=Lowest(low,20);

plot1(top,"4weekhigh",red);
plot2(bottom,"4weeklow",green);
[/code]
策略信号源码:

[code]
Inputs:price(close),n(20);
vars:top(0),bottom(0);

top = Highest(high,n);
bottom=Lowest(low,20);

if Close > top[1] then buy("LE") 1 shares next bar at market;

if Close < bottom[1] then sellshort("SE") 1 shares next bar at market;
[/code]关注程序化课程微信公众号(每天上架新策略、跟着视频学编程)
[img]http://www.qhlt.cn/diypic/Public.png[/img]

龙听 发表于 2020-1-31 17:36

演示里面的四周规则是最基础最简单的策略 ,因为在实际交易过程中会加上一系列的其它限制条件,也就是更复杂更完善的才能拿来实盘,这里有一个比较完善的版本,链接:[url]http://www.qhlt.cn/thread-16252-1-1.html[/url]

龙听 发表于 2020-1-31 17:37

更多平台上面的四周规则:[url]http://www.qhlt.cn/thread-28962-1-1.html[/url]

龙听 发表于 2020-1-31 17:39

MC官网版:[url]http://www.qhlt.cn/thread-16449-1-1.html[/url]

徐永礼 发表于 2020-10-28 02:22

感谢版主分享

发大水 发表于 2021-11-17 20:47

11111

小小白 发表于 2022-6-20 22:03

好哦

页: [1]