TradingView
D7R
Jul 21, 2019 1:35 PM

OBV 𝝙 

Bitcoin Liquid IndexBrave New Coin

Description

OBV Delta: OBV enhanced with standard deviation bands.

Switch to "expanded mode" in options.

Release Notes

update

Release Notes

.

Release Notes

Histogram Mode active by default. It can be changed back to normal OBV in options menu.

Release Notes

+ added bands by default
- removed color from band
+ ma now change color depending OBV above/bellow it
• simplified options further

Release Notes

+ Histogram smoothness is now active by default .

Release Notes

• script rename

Release Notes

• fix
Comments
DiFlip
Hello D7R, the configuration of obv in conjunction with histogram is very good for visual monitoring of candles, I managed to reproduce the same indicator because I have the need to implement the source code a ia. But I have not been able to add the soft histogram option, could you help me with smoothing the histogram?
I just have the need to use the indicator of the way it is pre plotted, just need to add smoothing to the histogram.

both indicators:



Source Code:
This source code is subject to the terms of the Mozilla Public License 2.0 at mozilla.org/MPL/2.0/
© DiFlip
@version=3

study(title="On Balance Volume Oscillator", shorttitle="DiFlip OBV (1)")

src = close

length=input(14)

obv(src) => cum(change(src) > 0 ? volume : change(src) < 0 ? -volume : 0*volume)

os=obv(src)

obv_osc = (os - ema(os,length))

col_grow_above = #64ffda
col_grow_below = #cc5252
col_fall_above = #4db6ac
col_fall_below = #ff5252

plot(obv_osc, title="Histogram", style=area, color=(obv_osc>=0 ? (obv_osc[1] < obv_osc : col_grow_above col_fall_above) : (obv_osc[1] < obv_osc ? col_grow_below : col_fall_below) ), transp=50 )
B3TOgozze
@DiFlip, good day!
could you update the Source Code please?
I'm not able to open the indicator with this script.
CryptoCuz44
hey how can i get my hands on your trading view script?
D7R
@CryptoCuz44, install / add to favorite/ refresh browser. you should be able to see it in your favorites
riddick.low
hello, any chance i can have a view on your script? thanks
More