以文本方式查看主题

-  金字塔客服中心 - 专业程序化交易软件提供商  (http://weistock.com/bbs/index.asp)
--  交易策略发布专区  (http://weistock.com/bbs/list.asp?boardid=10)
----  Dual Thrust金字塔修改版  (http://weistock.com/bbs/dispbbs.asp?boardid=10&id=15430)

--  作者:airmusic
--  发布时间:2012/8/25 0:37:16
--  Dual Thrust金字塔修改版

适合日线以下 任何周期 中间直接调用 日线数据 不过每天要把画面切换到 日线周期 刷新一个昨日的日线数据

还有注意费率设置 要改成期货 15% 合约单位 按该品种自己调整 手续费自己调整

input:k(0.7,0.1,1,0.1);
predayhigh:=callstock(stklabel,vthigh,6,-1);//昨日最高价
predaylow:=callstock(stklabel,vtlow,6,-1);//昨日最低价
predayclose:=callstock(stklabel,vtclose,6,-1);//昨日收盘价
predayrange:=max(predayhigh-predayclose,predayclose-predaylow);//取大波动值
dayopen:=callstock(stklabel,vtopen,6,0);//今天开盘价
upperband:intpart(dayopen+k*predayrange),colorred;//区间上沿
lowerband:intpart(dayopen-k*predayrange),colorgreen;//区间下沿

下日波动:max(callstock(stklabel,vthigh,6,0)-callstock(stklabel,vtclose,6,0),callstock(stklabel,vtclose,6,0)-callstock(stklabel,vtlow,6,0))*0.7;
if holding=0 then begin
 if high>=upperband then
  buy(1,volunit,limitr,max(open,upperband));
end
if holding=0 then begin
 if low<=lowerband then
  buyshort(1,volunit,limitr,min(open,lowerband));
end
if holding>0 then begin
 if low<=lowerband then begin
  sell(1,holding,limitr,min(open,lowerband));
  buyshort(1,volunit,limitr,min(open,lowerband));
 end
 
if time>=closetime(0) then
  sell(1,holding,limitr,close);
end

if holding<0 then begin
 if high>=upperband then begin
  sellshort(1,holding,limitr,max(open,upperband));
  buy(1,volunit,limitr,max(open,upperband));
 end
 
 if time>=closetime(0) then
  sellshort(1,holding,limitr,close);
end


资产:ASSET,PRECISION0,NOAXIS,COLORFF00FF;
goodin:=(1-(asset/hhv(asset,5520)))*100;
资产回撤百分比:goodin;
资产实际亏损:hhv(asset,5520)-asset,COLORgreen;


--  作者:蓝山四季
--  发布时间:2012/8/25 16:03:04
--  
这些代码版主“Z7C9”在很早以前就发表在论坛了。
--  作者:lanhai123
--  发布时间:2012/9/4 7:34:51
--  

谢谢楼主!

再请教楼主,这一句好像没用着:

下日波动:max(callstock(stklabel,vthigh,6,0)-callstock(stklabel,vtclose,6,0),callstock(stklabel,vtclose,6,0)-callstock(stklabel,vtlow,6,0))*0.7;

 


--  作者:airmusic
--  发布时间:2012/9/5 20:06:55
--  

下日波动是让你今天收盘后看的 对于明天的突破区间心理有个底


--  作者:Q1304230834
--  发布时间:2012/9/21 12:52:10
--  
试试看
--  作者:lzql888
--  发布时间:2012/10/16 20:52:49
--  
楼主好人 能否帮忙改一下 改成触碰上轨或下轨后 5分钟周期收盘价开仓的模式 (触碰上下轨开仓 滑点很大的)加入个定额止损0.5%幅度 止损后又回到开仓点 2次开仓 谢谢
--  作者:lzql888
--  发布时间:2012/10/16 21:10:41
--  
楼主大哥,你在吗?帮个忙啊。
--  作者:Q1304230834
--  发布时间:2012/10/31 17:45:31
--  
试看看
--  作者:Q1304230834
--  发布时间:2012/12/7 0:20:50
--  
支持