首页
学习
活动
专区
工具
TVP
发布
精选内容/技术社群/优惠产品,尽在小程序
立即前往

是否有可能获得由另一个pine脚本设置的barcolor?

是的,可以通过使用Pine脚本中的security()函数来获取由另一个Pine脚本设置的barcolor

security()函数用于访问其他脚本的数据。它接受两个参数:syminfo.tickeridresolutionsyminfo.tickerid表示当前脚本所在的图表的标识符,resolution表示当前脚本所在的图表的分辨率。

要获取由另一个Pine脚本设置的barcolor,可以使用以下代码:

代码语言:txt
复制
//@version=4
study("Get Bar Color", overlay=true)

// 使用security函数获取另一个脚本的barcolor
otherScriptBarColor = security(syminfo.tickerid, "15", barcolor)

plot(otherScriptBarColor, color=otherScriptBarColor)

在上面的示例中,security()函数的第一个参数syminfo.tickerid表示当前脚本所在的图表的标识符。第二个参数"15"表示要获取的另一个脚本的分辨率为15分钟。最后一个参数barcolor表示要获取的数据类型为barcolor

通过将获取到的barcolor赋值给变量otherScriptBarColor,我们可以在当前脚本中使用该变量来绘制相应的图表元素,如上面的示例中的plot()函数。

请注意,以上示例中的代码仅用于演示如何获取由另一个Pine脚本设置的barcolor,具体使用时需要根据实际情况进行适当的修改和调整。

腾讯云相关产品和产品介绍链接地址:

以上是腾讯云提供的一些相关产品,可以根据具体需求选择合适的产品来支持云计算和相关领域的开发工作。

页面内容是否对你有帮助?
有帮助
没帮助

相关·内容

  • Qt编写自定义控件5-柱状温度计

    柱状温度计控件,可能是很多人练手控件之一,基本上都是垂直方向展示,底部一个水银柱,中间刻度尺,刻度尺可以在左侧右侧或者两侧都有,自适应分辨率改动,有时候为了美观效果,可能还会整个定时器来实现动画效果,开启动画效果的缺点就是CPU占用会比较高,前阵子有个好友(贾文涛-涛哥)向我推荐了一个opengl绘制的开源东西,QNanoPainter,东西是个好东西,我个人的理解是直接封装了opengl绘制的qpainter,可以使得绘制全部走GPU,这样就可以大大减轻CPU的负担,非常方便,我自己试了下,方法和绘制逻辑和qpainter有点不一样,暂时没有将所有控件改成QNanoPainter版本,以后看情况吧。

    05

    Google Earth Engine——USGS GAP CONUS 2011GAP/LANDFIRE国家陆地生态系统数据代表了美国本土、阿拉斯加、夏威夷和波多黎各的详细植被和土地覆盖分类。

    The GAP/LANDFIRE National Terrestrial Ecosystems data represents a detailed vegetation and land cover classification for the Conterminous U.S., Alaska, Hawaii, and Puerto Rico.GAP/LF 2011 Ecosystems for the Conterminous U.S. is an update of the National Gap Analysis Program Land Cover Data - Version 2.2. Alaska ecosystems have been updated by LANDFIRE to 2012 conditions (LANDFIRE 2012). Hawaii and Puerto Rico data represent the 2001 time-frame (Gon et al. 2006, Gould et al. 2008). The classification scheme used for the Alaska and the lower 48 states is based on NatureServe’s Ecological System Classification (Comer et al. 2003), while Puerto Rico and Hawaii’s map legend are based on island specific classification systems (Gon et al. 2006, Gould et al. 2008).

    01
    领券