您现在的位置:程序化交易>> 期货公式>> 交易开拓者(TB)>> 开拓者知识>>正文内容

帮忙看一下,为什么没信号,BOLL公式 - TradeBlazer公式 [开拓者 TB]

  • 咨询内容: //沪胶指数,5分钟线,2月23日11:15分,为什么没有卖开指令???
    Params
            Numeric Length(20);                        
            Numeric Offset(2);                           
    Vars
            Numeric UpLine;                //上轨
            Numeric DownLine;                //下轨
            NumericSeries MidLine;        //中间线
            Numeric Band;
            Numeric StartTime(09.00);
            Numeric EndTime1(14.40);
            Numeric EndTime(14.55);
    Begin
            MidLine = AverageFC(Close,Length);
            Band = StandardDev(Close,Length,2);
            UpLine = MidLine + Offset * Band;
            DownLine = MidLine - Offset * Band;
            PlotNumeric("UpLine",UpLine);
            PlotNumeric("DownLine",DownLine);
            PlotNumeric("MidLine",MidLine);

    If(time>=StartTime/100&&time<EndTime1/100)        
    {
      If(open>Close&&Close>=UpLine)
      {
       SellShort(1,Close);
      }Else
      If(Open>=Close&&Close[1]>=UpLine)
      {
      SellShort(1,Close);
      }
    }



    //收盘平仓
    If(Time>=EndTime/100)
    {
    sell(0,Close);
    BuyToCover(0,close);
    }
            End

     

  • TB技术人员: 自己顶一下

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

相关文章

    没有相关内容