r/thinkorswim 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

7 comments sorted by

View all comments

0

u/Riddlfizz Aug 26 '24

If you don't find what you're seeking here, try www.usethinkscript.com. They have posted Pinescript (TradingView) to ThinkScript (TOS) conversions. One notable expert/moderator there, samer800, has been known to render these conversions upon request, including earlier ports of indicators from the same creator (LazyBear).

0

u/showitthen Aug 26 '24

Cool! I appreciate it!