我想在我进入关闭状态时关闭第一个早晨蜡烛,它返回最后一个蜡烛关闭值。如何在五分钟的图表中获得第一支早盘蜡烛的收盘价? (9.15至9.20)
答案 0 :(得分:0)
下一个代码绘制会话的第一个小节的close
。
//@version=4
study("Close of first bar of a day")
// If start of the daily session changed, then it's first bar of the new session
isNewDay = time("D") != time("D")[1]
var firstBarCloseValue = close
if isNewDay
firstBarCloseValue := close
plot(firstBarCloseValue)