0

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

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

4

1 回答 1

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 个空格。

于 2018-10-31T11:00:17.323 回答