【MultiCharts(MC)程序化(量化)网上培训学习系列】第8节:做一个四周规则策略,向上突破做多,向下突破做空
视频[mp4]http://mp4.qhlt.club/Rec%200008.mp4[/mp4] 指标部分源码:[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] 演示里面的四周规则是最基础最简单的策略 ,因为在实际交易过程中会加上一系列的其它限制条件,也就是更复杂更完善的才能拿来实盘,这里有一个比较完善的版本,链接:[url]http://www.qhlt.cn/thread-16252-1-1.html[/url] 更多平台上面的四周规则:[url]http://www.qhlt.cn/thread-28962-1-1.html[/url] MC官网版:[url]http://www.qhlt.cn/thread-16449-1-1.html[/url] 感谢版主分享 11111 好哦
页:
[1]