在Pine Script中获取当前价格可以使用内置函数close
。close
函数返回当前K线的收盘价,即当前价格。
以下是一个示例代码,展示如何在Pine Script中获取当前价格:
//@version=4
study("Current Price Example", overlay=true)
currentPrice = close
plot(currentPrice, color=color.blue, linewidth=2, title="Current Price")
在上述示例中,currentPrice
变量使用close
函数获取当前价格。然后,使用plot
函数将当前价格绘制在图表上,以蓝色线条表示。
领取专属 10元无门槛券
手把手带您无忧上云