VARIABLES / DATA
# data
# bar_index
Returns current bar index, where 0 is equal to first loaded historical bar # time
Returns unix timestamp (timeseries) # timeframe
Returns current timeframe in minutes (e.g. 1min = 1, 1h = 60, 12h = 720, D = 1440, ...) # open
Open # high
High # low
Low # close
Close # ohlc4
(Open + High + Low + Close)/4 # hlc3
(High + Low + Close)/3 # hl2
(High + Low)/2 # vbuy
Volume buy # vsell
Volume sell # oi_open
Open Interest Open # oi_high
Open Interest High # oi_low
Open Interest Low # oi_close
Open Interest Close # oi_ohlc4
Open Interest (Open + High + Low + Close)/4 # oi_hlc3
Open Interest (High + Low + Close)/3 # oi_hl2
Open Interest (High + Low)/2 # liq_ask
Ask Liquidations # liq_bid
Bid Liquidations # funding
Funding (Current) # funding_predicted
Funding (Predicted) # mark_price
Mark Price # dayofweek
# dayofweek.sunday
Value for Sunday, used with dayofweek(time) function # dayofweek.monday
Value for Monday, used with dayofweek(time) function # dayofweek.tuesday
Value for Tuesday, used with dayofweek(time) function # dayofweek.wednesday
Value for Wednesday, used with dayofweek(time) function # dayofweek.thursday
Value for Thursday, used with dayofweek(time) function # dayofweek.friday
Value for Friday, used with dayofweek(time) function # dayofweek.saturday
Value for Saturday, used with dayofweek(time) function # barstate
# barstate.isfirst
Returns true if current index is first loaded bar # barstate.islast
Returns true if current index is latest bar # barstate.ishistory
Returns true if current index is not latest bar # barstate.isnew
Returns true if current index is being calculated # barstate.isrealtime
Returns true if current index is being updated with new data # color
# color.black
Color for #000000 # color.white
Color for #FFFFFF # color.red
Color for #FF0000 # color.orange
Color for #FFA500 # color.lime
Color for #00FF00 # color.blue
Color for #0000FF # color.yellow
Color for #FFFF00 # color.cyan
Color for #00FFFF # color.magenta
Color for #FF00FF # color.silver
Color for #C0C0C0 # color.gray
Color for #808080 # color.maroon
Color for #800000 # color.olive
Color for #808000 # color.green
Color for #008000 # color.purple
Color for #800080 # color.teal
Color for #008080 # color.navy
Color for #000080