交易视图pinescript中输入不匹配的“语句块”错误

时间:2020-08-22 09:13:54

标签: pine-script tradingview-api

我正在尝试通过pine脚本测试tradingview的策略。我需要返回5支蜡烛的RSI数据,而我正在使用此代码执行此操作,在这里我尝试使用for循环来获取此数据。

//for loop test
`enter code here`RSIBonus = 0
for i = 5 to 1 by 1
    if RSI [abs(i)] > 35
RSIBonus := RSIBonus + abs(i)`enter code here`

但是每次我收到block of statements end expecting 'block of statements'的错误。有谁知道如何解决这个问题?

1 个答案:

答案 0 :(得分:0)

与 Python 类似,Pine Script 要求 iffor 块中的代码缩进。尝试缩进最后一行:

for i = 5 to 1 by 1
    if RSI [abs(i)] > 35
        RSIBonus := RSIBonus + abs(i)

因为没有块作用域大括号,例如。在 Javascript 中,pine 脚本不知道哪些代码属于条件/循环以及主程序在哪里继续,否则。

有关示例,请参阅 documentation