gpt4 book ai didi

pine-script - Pine 脚本中一长组函数值的换行

转载 作者:行者123 更新时间:2023-12-03 08:58:30 61 4
gpt4 key购买 nike

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

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 中的换行工作感到好奇在此处输入代码

最佳答案

如果要换行,下一行必须以一个或多个(不同于 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 个空格。

关于pine-script - Pine 脚本中一长组函数值的换行,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53063531/

61 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com