Aşağıdaki örnek, TradingView platformunda grafikte seçilmiş olan değer için hacim bilgisi olup olmadığını belirleyerek en son barın altında bir etikete yazar:
//@version=5
// This source code is subject to the terms of the Mozilla Public License 2.0 at https://mozilla.org/MPL/2.0/
// © Niteya BG
indicator(title='Hacim bilgi', overlay=true)
if barstate.islast
str = 'Hacim verisi ' + (volume==0 or na(volume) ? 'yok' : 'var')
label.new(bar_index, low, text= str, yloc=yloc.belowbar, color=color.blue, style=label.style_label_up, textcolor=color.white, textalign=text.align_left)