这将为您提供股票代码的开/关时间。您可以在 Time 的用户手册
中找到有关日期/时间格式的更多信息。
//@version=5
indicator('time market open close', overlay=true, precision=1)
var string dateTimeFormat = "{0,time,full}"
var color myColor = color.new(color.yellow, 70)
var int market_open = na
var int market_close = na
newDay = dayofmonth != dayofmonth[1]
if newDay
market_open := time
market_close := time_close[1]
if barstate.islast
market_open_str = str.format(dateTimeFormat, market_open)
market_close_str = str.format(dateTimeFormat, market_close)
label_str = 'open : ' + market_open_str + '\nclose : ' + market_close_str
label.new(bar_index, close, label_str, style=label.style_label_left)
bgcolor(newDay ? myColor : na) // show start of a new day
哪个产量