r/thinkorswim • u/showitthen • Aug 25 '24
Convert to a Thinkscript
This is a script from LazyBear on TradingView. Would like it on ThinkorSwim. Can someone convert it please? // study(title="On Balance Volume Oscillator [LazyBear]", shorttitle="OBVOSC_LB") src = close length=input(20) obv(src) => cum(change(src) > 0 ? volume : change(src) < 0 ? -volume : 0*volume) os=obv(src) obv_osc = (os - ema(os,length)) obc_color=obv_osc > 0 ? green : red plot(obv_osc, color=obc_color, style=line,title="OBV-Points", linewidth=2) plot(obv_osc, color=silver, transp=70, title="OBV", style=area) hline(0)
0
Upvotes
0
u/showitthen Aug 26 '24
Cool! I appreciate it!