1

在查看了 Pine-Script 文档后,我无法弄清楚“Switch”样式的条件语句。

我试图仅从绿色蜡烛中减去开盘价和收盘价。

这是我当前的代码:

//@version=3 study(title="High Minus Low", shorttitle="HM0", overlay=true)

openall  = high[0]+high[1]+high[2]
closeall = open[0]+open[1]+open[2] total = openall + closeall

plot(total)

我只想使用条件语句获取最新的 3 个绿色蜡烛条。

这可能吗?

4

1 回答 1

1

PineScript 中没有“switch”语句。但是,您可以为您的任务使用“if”语句。例如

green_delta = 0.0
if close > open
    green_delta := open - close 
plot(green_delta)    
于 2018-11-29T09:24:50.053 回答