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

日盘和夜盘的最低价和最高价如何得到? [开拓者 TB]

  • 咨询内容: 想划线,分别画出日盘和夜盘的最低价和最高价。如何取得画出来?

     

     来源:CXH99.COM

  • TB技术人员:
    1. Vars
    2.         NumericSeries dayhigh;
    3.         NumericSeries daylow;
    4.         NumericSeries Nhigh;
    5.         NumericSeries Nlow;
    6. Begin
    7.         if(barstatus==0 || time==0.09  )
    8.         {
    9.                 dayhigh = high;
    10.                 daylow = low;
    11.         }else if(time >0.09 && time<=0.15)
    12.         {
    13.                 dayhigh = Max(dayhigh,high);
    14.                 daylow = min(daylow,low);
    15.         }
    16.         if(barstatus ==0 || time==0.21)
    17.         {
    18.                 Nhigh = high;
    19.                 Nlow = low;
    20.         }else if(time>0.21 || time<0.08)
    21.         {
    22.                 Nhigh = Max(Nhigh,high);
    23.                 Nlow = Min(Nlow,low);
    24.         }
    25.         if(time>=0.09 && time<=0.15)
    26.         {
    27.                 PlotNumeric("dayhigh",dayhigh);
    28.                 PlotNumeric("daylow",daylow);
    29.         }
    30.         if(time>=0.21 || time<0.08)
    31.         {
    32.                 PlotNumeric("Nhigh",Nhigh);
    33.                 PlotNumeric("Nlow",Nlow);
    34.         }
    35. end
    复制代码

 

有思路,想编写各种指标公式,程序化交易模型,选股公式,预警公式的朋友

可联系技术人员 QQ: 511411198  点击这里给我发消息进行 有偿 编写!不贵!点击查看价格!


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

相关文章

    没有相关内容