未声明的标识符"直方图"



当我编写以下代码时,我收到一个错误。但它适用于版本 3。

//@version=4
study("Plot Deneme 2", overlay=false)
plot(close, linewidth=2, style=histogram)

错误:第 3 行:未声明的标识符histogram

始终按函数Ctrl + Click (PC)Cmd + Click (Mac)来阅读文档。此页面似乎没有更新。

plot()函数的style参数(以及其他一些参数(已更改。

它现在采用以下类型:

可能的值为:plot.style_line、plot.style_stepline、plot.style_histogram、plot.style_cross、plot.style_area、 plot.style_columns,plot.style_circles。默认值为 plot.style_line。

相关内容

  • 没有找到相关文章

最新更新