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


金字塔客服中心 - 专业程序化交易软件提供商金字塔软件公式模型编写问题提交 → 不会玩啊

   

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


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

主题:不会玩啊

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


加好友 发短信 原leevolvo
等级:版主 帖子:2160 积分:10563 威望:0 精华:11 注册:2010/11/3 11:21:19
[贴图][注意]实际下单数,为何不同于定义的下单手数?  发帖心情 Post By:2011/4/14 16:11:34    Post IP:202.101.153.55[显示全部帖子]

你的目的无须用到taccount函数

用全局变量即可

variable:kuisun=0;//该变量记录亏损

entertime:=time<closetime(0);

buycond:=ref(c>o,1) and c>o;

sellcond:=reef(c<o,1) and c<o;

 

if holding>0 and sellcond then begin

  kuisun:=kuisun+min(0,c-enterprice);//平仓之后,把盈亏点数累加到变量kuisun上

  sell(1,1,limitr,c);

end

 

if holding<0 and buycond then begin

  kuisun:=kuisun+min(o,enterprice-c););//平仓之后,把盈亏点数累加到变量kuisun上

  sellshort(1,1,limitr,c);

end

 

if holding=0 and entertime and kuisun<100 and buycond then buy(1,1,limitr,c);

 

if holding=0 and entertime and kuisun<100 and sellcond then buyshort(1,1,limitr,c);

 

//收盘平仓

if time=closetime(0) then begin

  sell(holding>0,1,limitr,o);

  sellshort(holding<0,1,limitr,o);

  kuisun:=0;  //收盘时,要亏损这个变量重新 归零

end


 回到顶部