我有这个脚本可以使当前未关闭的栏透明化
//@version=4
study("", "", true)
i_transp = 80
barcolor(barstate.islast ? close > open ? color.new(color.teal, i_transp) : color.new(color.red, i_transp) : na)
问题在于,即使出现新蜡烛,蜡烛也保持透明,直到刷新页面为止。 我可以使用pine脚本自动执行此操作吗?还是有办法将任何封闭的蜡烛更改为纯色?
谢谢!
答案 0 :(得分:2)
不知道为什么TypeError: console.log is not a function. (In 'console.log(error)', 'console.log' is undefined)
在此示例中不起作用(以及barstate.islast
,barstate.isrealtime
-它们的所有组合都具有相同的问题)。
但是我找到了使用barstate.ishistory
实现目标的方法:
barstate.isconfirmed