松树脚本:为当前蜡烛着色不同的颜色
pine script : color the current candle different color
我想给所有蜡烛上色,所有向下的蜡烛都是红色的,所有向上的蜡烛都是绿色的,当前的蜡烛是黑色的(如果还没有关闭)
例如
//@version=4
study("color all except current candle", overlay=true)
this_is_current_candle_function = ?????????????
redbar = close < open
greenbar = close > open
barcolor(not this_is_current_candle_function and redbar ? color.red:color.black)
barcolor(not this_is_current_candle_function and greenbar ? color.green:color.black)
你使用了barstate.isconfirmed
函数
//@version=5
indicator("barcolor example", overlay=true)
barcolor(barstate.isconfirmed ? na : color.black)
我想给所有蜡烛上色,所有向下的蜡烛都是红色的,所有向上的蜡烛都是绿色的,当前的蜡烛是黑色的(如果还没有关闭)
例如
//@version=4
study("color all except current candle", overlay=true)
this_is_current_candle_function = ?????????????
redbar = close < open
greenbar = close > open
barcolor(not this_is_current_candle_function and redbar ? color.red:color.black)
barcolor(not this_is_current_candle_function and greenbar ? color.green:color.black)
你使用了barstate.isconfirmed
函数
//@version=5
indicator("barcolor example", overlay=true)
barcolor(barstate.isconfirmed ? na : color.black)