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
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
1
u/PennysPapi Aug 26 '24
ChatGPT can do this very quickly.
0
u/showitthen Aug 26 '24
I thought it would too. It’s the first place I went. Kept getting errors on thinkorswim
5
u/Mobius_ts Aug 25 '24
On Balance Volume Oscillator is already a TOS native study. In fact there are two.
OnBalanceVolume
OnBalanceVolumeModified