Axis_Investors

Axis Investors ATR Code

Axis_Investors Updated   
//@version=4

study("RVAT",format=format.price, precision=0)

var buyColor = input(title="Positive Value Color", type=input.color, defval=#006400)
var labelTextColor = input(title="Label Text Color", type=input.color, defval=#000000)
var labelBgColor = input(title="Label Background Color", type=input.color, defval=#C0C0C0)
var tablePosition = input(title="Labels Position", defval="Top Right", options=)
var atr_len = input(14, title="ATR Length")



buycolor = iff( (high==low), 0, volume*(close-low)/(high-low))

float volLast10DayAvg = (security(syminfo.tickerid, "D", volume) + security(syminfo.tickerid, "D", volume) + security(syminfo.tickerid, "D", volume) + security(syminfo.tickerid, "D", volume) + security(syminfo.tickerid, "D", volume) + security(syminfo.tickerid, "D", volume) + security(syminfo.tickerid, "D", volume) + security(syminfo.tickerid, "D", volume) + security(syminfo.tickerid, "D", volume) + security(syminfo.tickerid, "D", volume)) / 10
float todayVolume = security(syminfo.tickerid, "D", volume)
float atr = security(syminfo.tickerid, 'D', atr(atr_len))
float pdc = security(syminfo.tickerid, "D", close)
float avgvol = security(syminfo.tickerid,'D', sma(volume,10))
float range = security(syminfo.tickerid,'D', high - low)
float percent_atr = security(syminfo.tickerid, 'D', (range / atr) * 100 )
float HOD = security(syminfo.tickerid,'D', high)
float LOD = security(syminfo.tickerid,'D', low)

var table box = table.new(tablePosition == "Top Left" ? position.top_left : tablePosition == "Top Right" ? position.top_right : tablePosition == "Bottom Left" ? position.bottom_left : position.bottom_right, 7, 1, labelBgColor, labelBgColor , 0, #000000, 2)


table.cell(box, 1, 0, str.format("Vol {0, number}", round(todayVolume)), text_color=labelTextColor)

int percentOf10Day = round((todayVolume / volLast10DayAvg) * 100)

table.cell(box, 2, 0, str.format("Vol% {0, number}", (percentOf10Day)), bgcolor=percentOf10Day >= 100 ? buyColor : labelBgColor, text_color=labelTextColor)

table.cell(box, 3, 0, str.format("Atr% {0, number}", (percent_atr)), bgcolor=percent_atr >= 100 ? buyColor : labelBgColor, text_color=labelTextColor)

table.cell(box, 4, 0, str.format("Atr {0, number}", (atr)), text_color=labelTextColor)

table.cell(box, 5, 0, str.format("S Target {0, number}", (HOD - atr)), text_color=labelTextColor)

table.cell(box, 6, 0, str.format("L Target {0, number}", (LOD + atr)), text_color=labelTextColor)
Release Notes:
ATR & Vol% indicator
Open-source script

In true TradingView spirit, the author of this script has published it open-source, so traders can understand and verify it. Cheers to the author! You may use it for free, but reuse of this code in a publication is governed by House Rules. You can favorite it to use it on a chart.

Disclaimer

The information and publications are not meant to be, and do not constitute, financial, investment, trading, or other types of advice or recommendations supplied or endorsed by TradingView. Read more in the Terms of Use.

Want to use this script on a chart?