*已解决* Pine Script 输入不匹配,期待“行尾没有续行”
Posted
技术标签:
【中文标题】*已解决* Pine Script 输入不匹配,期待“行尾没有续行”【英文标题】:*Resolved* Pine Script mismatched input, expecting 'end of line without line continuation' 【发布时间】:2022-01-19 18:22:00 【问题描述】:我正在尝试用 pine 脚本编写交易策略。我只是在第 100 行的代码中有一个小问题:
第 100 行:不匹配的输入“strategy.entry”期望“行尾没有续行”
我尝试自己搜索但一无所获,这就是我在这里询问的原因。顺便说一句,我在第 4 版的 pine 脚本中。
buytrend = 0
if supertrend == 1 and supertrend2 == 1
buytrend = 1
else if supertrend3 == 1 and supertrend == 1
buytrend = 1
if supertrend2 == 1 and supertrend3 == 1
buytrend = 1
if supertrend == -1 and supertrend2 == -1
buytrend = 0
else if supertrend3 == -1 and supertrend == -1
buytrend = 0
if supertrend2 == -1 and supertrend3 == -1
buytrend = 0
//plot marketprice
marketprice = ema(close,1)
plot(marketprice,"Marketprice",color.yellow)
//signals
Buysignal = crossover(k, d) and k < 20 and marketprice > ema and buytrend == 1
Sellsignal = crossunder(k, d)
Sellsignal2 = if buytrend == 0
//strategy
strategy.entry("Trade",strategy.long,when = Buysignal)
strategy.close("Trade",when = Sellsignal)
strategy.exit("Trade",when = Sellsignal2) ```
【问题讨论】:
【参考方案1】:vitruvius 的回答是正确的,但特别是如果您尝试将Sellsignal2
设置为等于True
或False
,那么您不需要if
只需将buytrend == 0
的评估结果分配给它,如下所示:
Sellsignal2 = buytrend == 0
【讨论】:
【参考方案2】:Sellsignal2 = if buytrend == 0
这是一个未完成的声明。你的问题就在那里。
【讨论】:
以上是关于*已解决* Pine Script 输入不匹配,期待“行尾没有续行”的主要内容,如果未能解决你的问题,请参考以下文章