请问这个 这个指标红色字体错在哪里,应该怎么修改? [金字塔]
-
咨询内容:
VARIABLE:status=0,top_line=0,floor_line=0;
{当收盘价上穿top_line的时候, status=1,top_line=x上1 floor_line只能朝上,不能朝下(即 ref(floor_line,1)<= x下1 取 max(ref(floor_line,1), x下1)}
{当收盘价下穿floor_line的时候, status=-1, floor_line=x下1, top_line只能朝下,不能朝上(即 ref(top_line,1)>= x下1 取 min(ref(top_line,1), x上1)}
x上1:=llv(hhv(h,2),2),LINETHICK1,colorred;
x下1:=hhv(llv(l,2),2),LINETHICK1,colorgreen;
floor_line0:=max(ref(floor_line,1),x下1); top_line0:=min(ref(top_line,1),x上1); top_line1:=ref(top_line,1); floor_line1:=ref(floor_line,1);
if status=0 then begin top_line:=x上1; floor_line:=x下1; end; if top_line1>=c and top_line<c then begin status:=1; end; if floor_line1<=c and floor_line>c then begin status:=-1;
end; if status=1 then begin top_line:=x上1; floor_line:=max(floor_line1,x下1); end; if status=-1 then begin top_line:=min(x上1,floor_line1); floor_line:=x下1; end; tt:top_line; pp:floor_line;
STICKLINE(status=-1 and CLOSE<OPEN ,OPEN,CLOSE,8,0),colorgreen; STICKLINE(status=-1 and CLOSE>=OPEN ,OPEN,CLOSE,8,1),colorgreen; STICKLINE(status=-1 , HIGH,MAX(OPEN,CLOSE),0,0),colorgreen; STICKLINE(status=-1 , MIN(OPEN,CLOSE),LOW,0,0),colorgreen; STICKLINE(status=1 and CLOSE>=OPEN ,OPEN,CLOSE,8,1),COLORMAGENTA; STICKLINE(status=1 and CLOSE<OPEN ,OPEN,CLOSE,8,0),COLORMAGENTA; STICKLINE(status=1 , HIGH,MAX(OPEN,CLOSE),0,0),COLORMAGENTA; STICKLINE(status=1 , MIN(OPEN,CLOSE),LOW,0,0),COLORMAGENTA;
{ KD:=; //开多条件 PD:=; //平多条件 KK:=; //开空条件 PK:=; //平空条件
平空:SELLSHORT(PK,1,THISCLOSE); //平空信号 开多:BUY(KD AND HOLDING=0,1,THISCLOSE); //开多信号 平多:SELL(PD,1,THISCLOSE); //平多信号 开空:BUYSHORT(KK AND HOLDING=0,1,THISCLOSE); //开空信号
} { 信号语句排列规则——先平后开 “费率设置”按钮——用于合理设置模型“费率”,以便在图形上正确输出如下帐户信息:
持仓:holding,linethick0; 资产:asset,noaxis; 可用现金:cash(0),linethick0;
您可以在查看菜单->交易系统模板 中设置自己需要的模板 } - 金字塔客服: 请具体说明你遇到的问题。单独的代码没法具体分析。
有思路,想编写各种指标公式,交易模型,选股公式,还原公式的朋友
可联系技术人员 QQ: 262069696 或微信号:cxh99cxh99 进行 有偿收费 编写!
(注:由于人数限制,QQ或微信请选择方便的一个联系我们就行,加好友时请简单备注下您的需求,否则无法通过。谢谢您!)
相关文章
-
没有相关内容