欢迎使用金字塔普通技术服务论坛,您可以在相关区域发表技术支持贴。
我司技术服务人员将优先处理 VIP客服论坛 服务贴,普通区问题处理速度慢,请耐心等待。谢谢您对我们的支持与理解。


金字塔客服中心 - 专业程序化交易软件提供商金字塔软件公式模型编写问题提交 → 请问这个 这个指标红色字体错在哪里,应该怎么修改?

   

欢迎使用金字塔普通技术服务论坛,您可以在相关区域发表技术支持贴。
我司技术服务人员将优先处理 VIP客服论坛 服务贴,普通区问题处理速度慢,请耐心等待。谢谢您对我们的支持与理解。    


  共有3018人关注过本帖树形打印复制链接

主题:请问这个 这个指标红色字体错在哪里,应该怎么修改?

帅哥哟,离线,有人找我吗?
wxx212
  1楼 | 信息 | 搜索 | 邮箱 | 主页 | UC


加好友 发短信
等级:论坛游侠 帖子:501 积分:0 威望:0 精华:0 注册:2014/12/15 17:19:54
请问这个 这个指标红色字体错在哪里,应该怎么修改?  发帖心情 Post By:2020/7/19 16:55:12    Post IP:115.199.240.114[只看该作者]

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;

您可以在查看菜单->交易系统模板 中设置自己需要的模板
}

 回到顶部
帅哥哟,离线,有人找我吗?
wenarm
  2楼 | 信息 | 搜索 | 邮箱 | 主页 | UC


加好友 发短信
等级:管理员 帖子:26632 积分:0 威望:0 精华:7 注册:2015/4/9 14:59:07
  发帖心情 Post By:2020/7/20 8:16:21    Post IP:58.246.57.26[只看该作者]

请具体说明你遇到的问题。单独的代码没法具体分析。


编程无捷径,技巧靠积累。
 回到顶部