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

自己写了个指标 加入TB后会导致未响应。。。 - TradeBlazer公式 [开拓者 TB]

  • 咨询内容: 自己写了个顾比倒数线指标 按道理来说不应该出现这种情况啊
    while应该不会死循环的。。。怎么出现了这种情况
    1. Params
    2.         Numeric Length(5);
    3. Vars
    4.         NumericSeries CBL_High;
    5.         NumericSeries CBL_Low;
    6.         Numeric TmpValue;
    7.         Numeric Hest;
    8.         Numeric Lest;
    9.         Numeric e;
    10. Begin
    11.         Hest = Highest(High[1],Length);
    12.         Lest = Lowest(Low[1],Length);
    13.        
    14.         If(CurrentBar < Length)
    15.         {
    16.                 CBL_High = High;
    17.                 CBL_Low = Low;
    18.         }
    19.         Else
    20.         {
    21.                 If(High < Hest)
    22.                 {
    23.                         CBL_High = CBL_High[1];
    24.                 }
    25.                 Else
    26.                 {
    27.                         e = 1;
    28.                         TmpValue = Low;
    29.                         While(Low[e] > TmpValue Or e < 100) e = e + 1;
    30.                         TmpValue = Low[e];
    31.                         While(Low[e] > TmpValue Or e < 100) e = e + 1;
    32.                         CBL_High = Low[e];
    33.                 }
    34.                
    35.                 If(Low > Lest)
    36.                 {
    37.                         CBL_Low = CBL_Low[1];
    38.                 }
    39.                 Else
    40.                 {
    41.                         e = 1;
    42.                         TmpValue = High;
    43.                         While(High[e] < TmpValue Or e < 100) e = e + 1;
    44.                         TmpValue = High[e];
    45.                         While(High[e] < TmpValue Or e < 100) e = e + 1;
    46.                         CBL_Low = High[e];
    47.                 }
    48.         }
    49.         If(CBL_High < Close)
    50.         {
    51.                 PlotNumeric("CBL_High",CBL_High,0,Yellow);
    52.                 PlotNumeric("CBL_Low",InvalidNumeric);
    53.         }Else
    54.         {
    55.                 PlotNumeric("CBL_High",InvalidNumeric);
    56.                 If(CBL_Low > Close)
    57.                 {
    58.                         PlotNumeric("CBL_Low",CBL_Low,0,Magenta);
    59.                 }Else
    60.                 {
    61.                         PlotNumeric("CBL_Low",InvalidNumeric);
    62.                 }
    63.         }
    64. End

     

  • TB技术人员: while (e<100)
    {
    e=e+1;
    TmpValue=IIF(TmpValue<High[e],High[e],TmpValue);
    }
    类似这样改动呢?

     

  • TB客服: 唔 我那个while的目的是 找到比TmpValue大的high后记录下e 然后退出循环
    如果那么写的话 貌似达不到这个效果吧

     

  • 网友回复: 貌似就是这个意思。。。而且LZ的TmpValue也不是序列变量,这样意思完全一样啊

     

  • 网友回复: 不 如果按照你那么改 便成了找出100个周期内最大High 意思完全不一样啊

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

相关文章

    没有相关内容