background image

    {
              Myprice=LowerBand;
              If(Open<Myprice)Myprice=Open;
              Sellshort(1,Myprice);
              Return;
      }
      If(MarketPosition==1)
      {
            
            StopLine=UpperBand-DayOpen*StopLossSet*0.01;
            If(Low<=StopLine)
            {
                  MyPrice=StopLine;
                  If(Open<MyPrice)MyPrice=Open;
                  BuyToCover(Lots,MyPrice);
              }
      }
      
      //收盘平仓
      If(Time>=ExitOnCloseMins/100)
      {
              Sell(1,Open);
              BuyToCover(1,Open);
      }
      SetExitOncLOSE;
End