【MultiCharts(MC)程序化(量化)网上培训学习系列】第315节:经典策略Deviation Dictates strategy trading system程式码、进行展示效果及对螺纹期货进行初步回测
- UID
- 2
- 积分
- 2874674
- 威望
- 1387366 布
- 龙e币
- 1487308 刀
- 在线时间
- 13156 小时
- 注册时间
- 2009-12-3
- 最后登录
- 2024-11-24
|
【MultiCharts(MC)程序化(量化)网上培训学习系列】第315节:经典策略Deviation Dictates strategy trading system程式码、进行展示效果及对螺纹期货进行初步回测
论坛官方微信、群(期货热点、量化探讨、开户与绑定实盘)
|
|
|
|
|
|
- UID
- 2
- 积分
- 2874674
- 威望
- 1387366 布
- 龙e币
- 1487308 刀
- 在线时间
- 13156 小时
- 注册时间
- 2009-12-3
- 最后登录
- 2024-11-24
|
程式码部分:multicharts平台
本帖隐藏的内容需要回复才可以浏览
另附atr移动止盈程式码模块(仅供参考)- Input:atrlen(30),trailatrmult(3);
- var:lexit(0),sexit(0),atr1(0),top(0),bot(0);
- atr1 = atr(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*atr1;
- if barssinceentry=0 and Close < lexit then sell("Atr-nextdayout") all shares next bar at Open;
- if barssinceentry>0 then begin
- sell("atr-tail-stop") 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*atr1;
- if barssinceentry=0 and Close > sexit then sell("atr-nextdayout") all shares next bar at Open;
- if barssinceentry>0 then begin
- buytocover("atr-trail-stop") all shares next bar at sexit stop;
- value1 = tl_new(date[1],time,sexit[1],date,time,sexit);
- end;
- end;
复制代码 |
|
|
|
|
|
|
- UID
- 2
- 积分
- 2874674
- 威望
- 1387366 布
- 龙e币
- 1487308 刀
- 在线时间
- 13156 小时
- 注册时间
- 2009-12-3
- 最后登录
- 2024-11-24
|
|
|
|
|
|
|
- UID
- 2
- 积分
- 2874674
- 威望
- 1387366 布
- 龙e币
- 1487308 刀
- 在线时间
- 13156 小时
- 注册时间
- 2009-12-3
- 最后登录
- 2024-11-24
|
简评:
1、此策略适合中大周期。
2、在回测我发现有时会有做返情况,出场较晚,所以加上一个atr或其它的一个顺势的止盈模块或止损模块效果会好一些。
3、在短周期上面效果就比较一般了。这应该跟短周期中趋势性下降有关。 |
|
|
|
|
|
|
- UID
- 23213
- 积分
- 728
- 威望
- 364 布
- 龙e币
- 364 刀
- 在线时间
- 14 小时
- 注册时间
- 2024-2-25
- 最后登录
- 2024-9-29
|
|
|
|
|
|
|