【MultiCharts(MC)程序化(量化)网上培训学习系列】第107节:经典版Dual Thrust写了主框架,可以方便加各种出场策略以及止损止盈方法
[attach]26615[/attach]1、效果图;
2、通过期货论坛推荐新开立期货账号享受特惠政策:[url]http://www.qhlt.cn/thread-25049-1-1.html[/url];
3、通过期货论坛开立期货账号并绑定MC享受专属优惠政策:[url]http://www.qhlt.cn/thread-80442-1-1.html[/url];
4、代写与求助:[url]http://www.qhlt.cn/forum-109-1.html[/url];
5、期货论坛策略源码区:[url]http://www.qhlt.cn/forum-109-1.html[/url] ;
6、期货论坛官方MC量化策略群,对视频中策略有想法、建议、优化以结交量化好友,动动手,扫二维码加入微信群,跟一众量化好友切磋吧:[url]http://www.qhlt.cn/thread-262-1-1.html[/url] ; 视频链接地址:[mp4]http://mp4.qhlt.club/Rec%200107.mp4[/mp4] 视频中策略程序码:
**** Hidden Message *****
指标公式:
**** Hidden Message ***** [img]http://www.qhlt.cn/attachments/month_2101/2101051127c5e51a2183318ed6.png.thumb.jpg[/img]
[attach]26616[/attach] 感谢分享,回复学习 视频没声音? [quote]视频没声音?
[size=2][color=#999999]弹道 发表于 2021-1-5 12:47[/color] [url=http://www.qhlt.cn/redirect.php?goto=findpost&pid=118407&ptid=98910][img]http://www.qhlt.cn/images/common/back.gif[/img][/url][/size][/quote]
今天设备有问题。{:4_135:} 感谢楼主分享!! 谢谢分享 dt策略加上资金比率开仓,交易时间限定以及其它优化后一个稳定版本。【修正了昨天的一些关键词使用错误】
**** Hidden Message *****
指标:
[code]Input:k(0.7),mday(1),p(close of data1);
var:hh(0),hc(0),lc(0),ll(0),buyrange(0),sellrange(0),trigger(0);
hh = High[1] of data2;
hc = close[1] of data2;
lc = close[1] of data2;
ll = low[1] of data2;
trigger =k*maxlist((hh-hc),(lc-ll));
buyrange = OpenD(0) of data1 + trigger;
sellrange = OpenD(0) of data1 - trigger;
plot1(buyrange,"buytrigger",yellow);
plot2(sellrange,"selltrigger",green);
[/code] [attach]26627[/attach] 通过输出各种参考,得到一个比较确定的策略版:
策略信号:
**** Hidden Message *****
指标:
[code]Input:k(0.7),mday(1),p(close of data1),holiday(False);
var:hh(0),hc(0),lc(0),ll(0),buyrange(0),sellrange(0),trigger(0),time1(False),time2(False),openi(0);
time1=time>0900 and time<1500;
time2=time>2100 and time<2300;
hh = High of data2;
hc = close of data2;
lc = close of data2;
ll = low of data2;
if holiday then begin
if time =0901 then openi = open of data1;
end
else begin
if time = 2101 then openi= Open of data1;
end;
trigger =k*maxlist((hh-hc),(lc-ll));
buyrange = openi + trigger;
sellrange= openi - trigger;
if time1 or time2 then begin
plot1(buyrange,"buytrigger",yellow);
plot2(sellrange,"selltrigger",green);
end
else begin
NoPlot(1);
NoPlot(2);
end;
print(date,time,hh,hc,lc,ll,openi,trigger,buyrange,sellrange,buyrange-trigger);
[/code] [attach]26628[/attach]
1、dt检查有一个比较方便的地方就是原理清晰,所以HH,HC ,LC,LL以及当天的开盘价都是可以很方便的输出到面板检查是不是正确的。
2、之前没有注意到的一个地方是关于当天开盘价的问题,若是有长假,节前的夜盘是没有的,所以早晨盘9.01分钟出开盘价,正常是晚上21.01出开盘价,所以当出现长假时就要调整一下参数。将holiday有false调为true.这是之前没有注意到的问题。 第107节:经典版Dual Thrust写了主框架,可以方便加各种出场策略以及止损止盈方法 谢谢分享 y 谢谢 mp = marketposition;
if mp =1 then begin
lep = entryprice;
buystoday = 1;
end;
if mp = -1 then begin
sep = entryprice;
shortstoday = 1;
end;
{ratcheting-set}
if mp = 1 then begin
if high >= lep + (longmult +1)*ratchetamt then longmult = longmult +1;{if high-entryprice>n*ratchtamt then set trailstop at entrprice+(n-1)*rachtamt}
sell("longtrail") next bar at (lep + (longmult-1)*trailamt) stop;
end;
if mp = -1 then begin
if Low <= sep - (shortmult+1)*ratchetamt then shortmult = shortmult +1; {if entryprice - low > n*ratchtamt then set trailstop at entryprice-(n-1)*rachtamt}
buytocover("shorttrail") next bar at(sep - (shortmult-1)*trailamt) stop;
end; 謝謝 感谢楼主分享! 感謝版大分享 感谢楼主 感谢分享,回复学习
页:
[1]