您现在的位置:程序化交易>> 期货公式>> 金字塔等>> 其他期货软件知识>>正文内容

请问高手:我的介入价止损代码对不对,是不是这样写 [金字塔]

  • 咨询内容:

    //建立多头的进场条件
    long :=VBuy and time>=092700 and time<=150000;

    if long then
     begin
     sellshort(holding < 0, 0, limitr, open);
     buy(holding = 0, 1, limitr, open);
     Price:=AVGENTERPRICE;//持仓价位
     SELL(HOLDING>0,HOLDING,Stopr,Price*0.9977);//止损
     end
    //Price:=AVGENTERPRICE;//持仓价位
    //画出多头的止损线
    partline(holding>0,Price*0.9977,colorred);

    //开空条件
    short := VSell and time >= 092700 and time <= 150000;

    if short then
     begin
     sell(holding > 0, 0, limitr, open);
     buyshort(holding = 0, 1, limitr, open);
     Price:=AVGENTERPRICE;//持仓价位
     sellshort(holding > 0, 0, Stopr,Price*1.0027);
     end

    //画出空头的止损线
    partline(holding<0, Price*1.0027, colorgreen);

    //收盘前5分钟平仓
    if time >= 151200 then
     begin
     sell(holding > 0, 0, limitr, open);
     sellshort(holding < 0, 0, limitr, open);
     end

     

  • 金字塔客服: 把止损单独写出来,和收盘前平仓那样

     

  • 用户回复: 尽量不要用buy跟sell里面的止损指令,这个需要交易所支持的,外盘的大部分支持,但是国内的就大部分不支持,下了指令也没用,单子发不到交易所的,止损最好就像楼上说的,单独写出来作为一个平仓条件用

 

如果以上指标公式不适用于您常用的行情软件

或者您想改编成选股公式,以便快速选出某种形态个股的话,

可以联系我们相关技术人员 QQ: 262069696  点击在线交流进行 有偿 改编!

 


【字体: 】【打印文章】【查看评论

相关文章

    没有相关内容