在Pine Script中使用换行来获取一长串函数值

时间:2018-10-30 11:41:16

标签: pine-script

我正在尝试换行,因为太长了,无法在一个屏幕上看到所有内容:

strategy.entry
    ("Long Continuation", 
    true, 1, when = FastMA < SlowMA and SlowMA > SlowMA[5] and ShortDiff < 
    ShortDiff[1]
    and close[1] < _PercentAbove and close[1] > _PercentBelow)

它可以解开,但是当我将其包装时,出现错误,“添加到图表操作失败,原因:第15行:输入'没有行继续的行尾'语法错误

我知道我可以使用更好的代码来缩短它,但是我只是对Pine enter code here中的换行功能感到好奇

1 个答案:

答案 0 :(得分:0)

如果要换行,下一行必须以一个或几个(与4的倍数不同)开头。

您的代码似乎有4个空格,这会导致错误。

以下代码应编译。

strategy.entry("Long Continuation", 
 true, 1, 
  when = FastMA < SlowMA and SlowMA > SlowMA[5] and
   ShortDiff < ShortDiff[1] and close[1] < _PercentAbove and
     close[1] > _PercentBelow)

它分别有0、1、2、3、5个空格。