qq859531913 发表于 2017-11-30 22:48:35

循环取值LOW[]值不改变, 原因何在?

Params
Vars
  Numeric i;
  String DisplayMsg;
Begin
  for i=0 To BarCount
  {
      DisplayMsg =  "序列:[ " + Text(CurrentBar) + "/" + Text(BarCount) + " ]" +
                                        "价格= [ " +   Text( low ) + " ]";  
      FileAppend("J:\\Formula.log",  DisplayMsg);  
  }
End
页: [1]
查看完整版本: 循环取值LOW[]值不改变, 原因何在?